mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-22 23:08:00 +00:00
14b71279ba
* subxt: Remove unstable lints that cause compile warnings Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * cargo: Switch to workspace lints Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * cargo: Fix codec package at root level Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * cargo: Move profiles to the root level Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * Fix lightclient and metadata crates Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * Revert "cargo: Fix codec package at root level" This reverts commit cdf9e1628d708a972673eb3a9e967b6896edbd73. * Fix complexity clippy Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * cargo: Remove lints to be replaced by `cargo machete` Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * cargo: Remove unused dependencies (detected by machete) Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * ci: Add machete step Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * cargo: Bump rust version Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * ci: Rename machete step Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * ci: Rename cargo machete step Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> --------- Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
49 lines
1.5 KiB
Rust
49 lines
1.5 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?;
|
|
|
|
// Get events for the latest block:
|
|
let events = api.events().at_latest().await?;
|
|
|
|
// We can dynamically decode events:
|
|
println!("Dynamic event details:");
|
|
for event in events.iter() {
|
|
let event = event?;
|
|
|
|
let pallet = event.pallet_name();
|
|
let variant = event.variant_name();
|
|
let field_values = event.field_values()?;
|
|
|
|
println!("{pallet}::{variant}: {field_values}");
|
|
}
|
|
|
|
// Or we can attempt to statically decode them into the root Event type:
|
|
println!("Static event details:");
|
|
for event in events.iter() {
|
|
let event = event?;
|
|
|
|
if let Ok(ev) = event.as_root_event::<polkadot::Event>() {
|
|
println!("{ev:?}");
|
|
} else {
|
|
println!("<Cannot decode event>");
|
|
}
|
|
}
|
|
|
|
// Or we can look for specific events which match our statically defined ones:
|
|
let transfer_event = events.find_first::<polkadot::balances::events::Transfer>()?;
|
|
if let Some(ev) = transfer_event {
|
|
println!(" - Balance transfer success: value: {:?}", ev.amount);
|
|
} else {
|
|
println!(" - No balance transfer event found in this block");
|
|
}
|
|
|
|
Ok(())
|
|
}
|