mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-28 14:27:57 +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
64 lines
2.2 KiB
Rust
64 lines
2.2 KiB
Rust
#![allow(missing_docs)]
|
|
use subxt::{OnlineClient, PolkadotConfig};
|
|
|
|
#[subxt::subxt(runtime_metadata_path = "../artifacts/polkadot_metadata_small.scale")]
|
|
pub mod polkadot {}
|
|
|
|
#[tokio::main]
|
|
async fn main() -> Result<(), Box<dyn std::error::Error>> {
|
|
// Create a client to use:
|
|
let api = OnlineClient::<PolkadotConfig>::new().await?;
|
|
|
|
// Subscribe to all finalized blocks:
|
|
let mut blocks_sub = api.blocks().subscribe_finalized().await?;
|
|
|
|
// For each block, print a bunch of information about it:
|
|
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}:");
|
|
println!(" Hash: {block_hash}");
|
|
println!(" Extrinsics:");
|
|
|
|
// Log each of the extrinsic with it's associated events:
|
|
let extrinsics = block.extrinsics().await?;
|
|
for ext in extrinsics.iter() {
|
|
let idx = ext.index();
|
|
let events = ext.events().await?;
|
|
let bytes_hex = format!("0x{}", hex::encode(ext.bytes()));
|
|
|
|
// See the API docs for more ways to decode extrinsics:
|
|
let decoded_ext = ext.as_root_extrinsic::<polkadot::Call>();
|
|
|
|
println!(" Extrinsic #{idx}:");
|
|
println!(" Bytes: {bytes_hex}");
|
|
println!(" Decoded: {decoded_ext:?}");
|
|
|
|
println!(" Events:");
|
|
for evt in events.iter() {
|
|
let evt = evt?;
|
|
let pallet_name = evt.pallet_name();
|
|
let event_name = evt.variant_name();
|
|
let event_values = evt.field_values()?;
|
|
|
|
println!(" {pallet_name}_{event_name}");
|
|
println!(" {}", event_values);
|
|
}
|
|
|
|
println!(" Transaction Extensions:");
|
|
if let Some(transaction_extensions) = ext.transaction_extensions() {
|
|
for transaction_extension in transaction_extensions.iter() {
|
|
let name = transaction_extension.name();
|
|
let value = transaction_extension.value()?.to_string();
|
|
println!(" {name}: {value}");
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
Ok(())
|
|
}
|