Skip to content

Commit

Permalink
Update gh-pages
Browse files Browse the repository at this point in the history
Store path: /nix/store/1dypmxhc2ilhcxj6ciwc1cf2vmiihywq-tx-village-github-pages
  • Loading branch information
hercules-ci[bot] committed Nov 12, 2024
1 parent e067349 commit c4a1c25
Show file tree
Hide file tree
Showing 294 changed files with 1,923 additions and 9,198 deletions.
2 changes: 1 addition & 1 deletion artifacts/tx-bakery-ogmios/search-index.js

Large diffs are not rendered by default.

16 changes: 4 additions & 12 deletions artifacts/tx-bakery-ogmios/src/tx_bakery_ogmios/api.rs.html
Original file line number Diff line number Diff line change
Expand Up @@ -737,27 +737,19 @@ <h2>Files</h2></div></nav><div class="sidebar-resizer"></div>
<a href="#735" id="735">735</a>
<a href="#736" id="736">736</a>
<a href="#737" id="737">737</a>
<a href="#738" id="738">738</a>
<a href="#739" id="739">739</a>
<a href="#740" id="740">740</a>
<a href="#741" id="741">741</a>
</pre></div><pre class="rust"><code><span class="kw">use </span>anyhow::anyhow;
</pre></div><pre class="rust"><code><span class="kw">use </span><span class="kw">super</span>::error::OgmiosError;
<span class="kw">use </span>anyhow::anyhow;
<span class="kw">use </span>chrono::Duration;
<span class="kw">use </span>data_encoding::HEXLOWER;
<span class="kw">use </span>jsonrpsee::core::traits::ToRpcParams;
<span class="kw">use </span>num_bigint::BigInt;
<span class="kw">use </span>plutus_ledger_api <span class="kw">as </span>pla;
<span class="kw">use </span>plutus_ledger_api::csl::{csl_to_pla::TryToPLA, lib <span class="kw">as </span>csl, pla_to_csl::TryToCSL};
<span class="kw">use </span>serde::{Deserialize, Serialize};
<span class="kw">use </span>serde_json::value::{RawValue, Value <span class="kw">as </span>JsonValue};
<span class="kw">use </span>std::collections::BTreeMap;
<span class="kw">use </span>std::str::FromStr;
<span class="kw">use </span>tx_bakery::csl;
<span class="kw">use </span>tx_bakery::{
chain_query::{<span class="self">self</span>, FullTransactionOutput},
utils::{csl_to_pla::TryToPLA, pla_to_csl::TryToCSLWithDef},
};

<span class="kw">use </span><span class="kw">super</span>::error::OgmiosError;
<span class="kw">use </span>tx_bakery::chain_query::{<span class="self">self</span>, FullTransactionOutput};

<span class="kw">pub type </span><span class="prelude-ty">Result</span>&lt;T&gt; = std::result::Result&lt;T, OgmiosError&gt;;

Expand Down
22 changes: 13 additions & 9 deletions artifacts/tx-bakery-ogmios/src/tx_bakery_ogmios/client.rs.html
Original file line number Diff line number Diff line change
Expand Up @@ -428,6 +428,8 @@ <h2>Files</h2></div></nav><div class="sidebar-resizer"></div>
<a href="#426" id="426">426</a>
<a href="#427" id="427">427</a>
<a href="#428" id="428">428</a>
<a href="#429" id="429">429</a>
<a href="#430" id="430">430</a>
</pre></div><pre class="rust"><code><span class="kw">use </span>std::collections::BTreeMap;
<span class="kw">use </span>std::time;

Expand All @@ -441,23 +443,24 @@ <h2>Files</h2></div></nav><div class="sidebar-resizer"></div>
rpc_params,
ws_client::{WsClient, WsClientBuilder},
};
<span class="kw">use </span>plutus_ledger_api::v2::{
address::Address,
transaction::{TransactionHash, TransactionInput},
<span class="kw">use </span>plutus_ledger_api::csl::pla_to_csl::TryToCSL;
<span class="kw">use </span>plutus_ledger_api::{
csl::lib <span class="kw">as </span>csl,
v2::{
address::Address,
transaction::{TransactionHash, TransactionInput},
},
};
<span class="kw">use </span>serde::Serialize;
<span class="kw">use </span>tracing::{debug, error, info, warn};
<span class="kw">use </span>tx_bakery::csl;
<span class="kw">use </span>url::Url;

<span class="kw">use </span>tx_bakery::{
chain_query::{
ChainQuery, ChainQueryError, ChainTip, EraSummary, FullTransactionOutput, Network,
ProtocolParameters,
},
submitter::{Submitter, SubmitterError},
utils::pla_to_csl::TryToCSL,
};
<span class="kw">use </span>url::Url;

<span class="kw">use super</span>::{
api::{
Expand Down Expand Up @@ -666,7 +669,8 @@ <h2>Files</h2></div></nav><div class="sidebar-resizer"></div>
{
<span class="macro">debug!</span>(<span class="question-mark">?</span>address, <span class="string">"Query UTxOs by address"</span>);
<span class="kw">let </span>addr: csl::Address = address
.try_to_csl_with(<span class="self">self</span>.config.network.to_network_id())
.with_extra_info(<span class="self">self</span>.config.network.to_network_id())
.try_to_csl()
.map_err(OgmiosError::TryFromPLAError)<span class="question-mark">?</span>;

<span class="kw">let </span>addr = addr.to_bech32(<span class="prelude-val">Some</span>(<span class="string">"addr"</span>.to_owned())).map_err(|source| {
Expand Down Expand Up @@ -767,7 +771,7 @@ <h2>Files</h2></div></nav><div class="sidebar-resizer"></div>

<span class="kw">async fn </span>submit_transaction(
<span class="kw-2">&amp;</span><span class="self">self</span>,
tx: <span class="kw-2">&amp;</span>csl::Transaction,
tx: <span class="kw-2">&amp;</span>csl::FixedTransaction,
) -&gt; std::result::Result&lt;TransactionHash, SubmitterError&gt; {
<span class="macro">debug!</span>(<span class="string">"Submitting transaction"</span>);
<span class="kw">let </span>params = SubmitTransactionParams {
Expand Down
10 changes: 2 additions & 8 deletions artifacts/tx-bakery-ogmios/src/tx_bakery_ogmios/error.rs.html
Original file line number Diff line number Diff line change
Expand Up @@ -55,18 +55,12 @@ <h2>Files</h2></div></nav><div class="sidebar-resizer"></div>
<a href="#53" id="53">53</a>
<a href="#54" id="54">54</a>
<a href="#55" id="55">55</a>
<a href="#56" id="56">56</a>
<a href="#57" id="57">57</a>
<a href="#58" id="58">58</a>
</pre></div><pre class="rust"><code><span class="kw">use </span>anyhow::anyhow;
<span class="kw">use </span>plutus_ledger_api::csl::{csl_to_pla::TryFromCSLError, pla_to_csl::TryFromPLAError};
<span class="kw">use </span>serde::{Deserialize, Serialize};
<span class="kw">use </span>serde_json::Value;
<span class="kw">use </span>thiserror::Error;
<span class="kw">use </span>tx_bakery::{
chain_query::ChainQueryError,
submitter::SubmitterError,
utils::{csl_to_pla::TryFromCSLError, pla_to_csl::TryFromPLAError},
};
<span class="kw">use </span>tx_bakery::{chain_query::ChainQueryError, submitter::SubmitterError};

<span class="kw">pub type </span><span class="prelude-ty">Result</span>&lt;T&gt; = std::result::Result&lt;T, OgmiosError&gt;;

Expand Down
Loading

0 comments on commit c4a1c25

Please sign in to comment.