mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-22 11:27:58 +00:00
b6b9ac65c7
* TransactionExtensions basic support for V5 VerifySignature and renames * WIP: subxt-core v5 transaction support * Subxt to support V5 extrinsics * WIP tests failing with wsm trap error * Actually encode mortality to fix tx encode issue * fmt * rename to sign_with_account_and_signature * Add explicit methods for v4 and v5 ext construction * clippy * fix wasm example and no mut self where not needed * fix doc example * another doc fix * Add tests for tx encoding and fix v5 encode issue * add copyright and todo * refactor APIs to have clear v4/v5 split in core and slightly nicer split in subxt proper * rename Partial/SubmittableExtrinsic to *Transaction * Remove SignerT::address since it's not needed * doc fixes * fmt * doc fixes * Fix comment number * Clarify panic behaviour of inject_signature * fmt
44 lines
1.7 KiB
Rust
44 lines
1.7 KiB
Rust
#![allow(missing_docs)]
|
|
use subxt::{OnlineClient, PolkadotConfig};
|
|
|
|
#[tokio::main]
|
|
async fn main() -> Result<(), Box<dyn std::error::Error>> {
|
|
// Create a client that subscribes to blocks of the Polkadot network.
|
|
let api = OnlineClient::<PolkadotConfig>::from_url("wss://rpc.polkadot.io:443").await?;
|
|
|
|
// Subscribe to all finalized blocks:
|
|
let mut blocks_sub = api.blocks().subscribe_finalized().await?;
|
|
while let Some(block) = blocks_sub.next().await {
|
|
let block = block?;
|
|
let block_number = block.header().number;
|
|
let block_hash = block.hash();
|
|
println!("Block #{block_number} ({block_hash})");
|
|
|
|
// Decode each signed extrinsic in the block dynamically
|
|
let extrinsics = block.extrinsics().await?;
|
|
for ext in extrinsics.iter() {
|
|
let Some(transaction_extensions) = ext.transaction_extensions() else {
|
|
continue; // we do not look at inherents in this example
|
|
};
|
|
|
|
let meta = ext.extrinsic_metadata()?;
|
|
let fields = ext.field_values()?;
|
|
|
|
println!(" {}/{}", meta.pallet.name(), meta.variant.name);
|
|
println!(" Transaction Extensions:");
|
|
for signed_ext in transaction_extensions.iter() {
|
|
// We only want to take a look at these 3 signed extensions, because the others all just have unit fields.
|
|
if ["CheckMortality", "CheckNonce", "ChargeTransactionPayment"]
|
|
.contains(&signed_ext.name())
|
|
{
|
|
println!(" {}: {}", signed_ext.name(), signed_ext.value()?);
|
|
}
|
|
}
|
|
println!(" Fields:");
|
|
println!(" {}\n", fields);
|
|
}
|
|
}
|
|
|
|
Ok(())
|
|
}
|