mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-13 16:21:06 +00:00
562f12cd9b
* WIP Starting to write book; extrinsics first pass done * cargo fmt * Ongoing work; events, constants, wip blocks * at_latest() and wip blocks * remove need to import parity-scale-codec crate with Subxt for macro to work * More docs; expanding on setup guide and finish pass of main sections * Tidy and remove example section for now * format book lines to 100chars * Fix example code * cargo fmt * cargo fmt * fix example * Fix typos * fix broken doc links, pub mods * Update Subxt macro docs * can't link to Subxt here * move macro docs to Subxt to make linking better and fix example code * note on macro about docs * cargo fmt * document the no_default_derives macro feature * Address feedback and remove redundant text * address review comments; minor tweaks * WIP add Runtime calls to book * Improve Runtime API docs * expose thing we forgot to expose and doc link fixes
31 lines
1.1 KiB
Rust
31 lines
1.1 KiB
Rust
use subxt::{
|
|
config::{substrate::SubstrateExtrinsicParams, Config, SubstrateConfig},
|
|
OnlineClient,
|
|
};
|
|
|
|
/// Define a custom config type (see the `subxt::config::Config` docs for
|
|
/// more information about each type):
|
|
enum MyConfig {}
|
|
impl Config for MyConfig {
|
|
// This is different from the default `u32`:
|
|
type Index = u64;
|
|
// We can point to the default types if we don't need to change things:
|
|
type Hash = <SubstrateConfig as Config>::Hash;
|
|
type Hasher = <SubstrateConfig as Config>::Hasher;
|
|
type Header = <SubstrateConfig as Config>::Header;
|
|
type AccountId = <SubstrateConfig as Config>::AccountId;
|
|
type Address = <SubstrateConfig as Config>::Address;
|
|
type Signature = <SubstrateConfig as Config>::Signature;
|
|
// ExtrinsicParams makes use of the index type, so we need to tweak it
|
|
// too to align with our modified index type, above:
|
|
type ExtrinsicParams = SubstrateExtrinsicParams<Self>;
|
|
}
|
|
|
|
#[tokio::main]
|
|
async fn main() -> Result<(), Box<dyn std::error::Error>> {
|
|
// Create a client which uses the custom config:
|
|
let _api = OnlineClient::<MyConfig>::new().await?;
|
|
|
|
Ok(())
|
|
}
|