// Copyright 2019-2022 Parity Technologies (UK) Ltd. // This file is part of subxt. // // subxt is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // subxt is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with subxt. If not, see . use sp_keyring::AccountKeyring; use subxt::{ ClientBuilder, Config, DefaultConfig, DefaultExtra, PairSigner, }; #[subxt::subxt(runtime_metadata_path = "examples/polkadot_metadata.scale")] pub mod polkadot {} /// Custom [`Config`] impl where the default types for the target chain differ from the /// [`DefaultConfig`] #[derive(Clone, Debug, Default, Eq, PartialEq)] pub struct MyConfig; impl Config for MyConfig { // This is different from the default `u32`. // // *Note* that in this example it does differ from the actual `Index` type in the // polkadot runtime used, so some operations will fail. Normally when using a custom `Config` // impl types MUST match exactly those used in the actual runtime. type Index = u64; type BlockNumber = ::BlockNumber; type Hash = ::Hash; type Hashing = ::Hashing; type AccountId = ::AccountId; type Address = ::Address; type Header = ::Header; type Signature = ::Signature; type Extrinsic = ::Extrinsic; } #[async_std::main] async fn main() -> Result<(), Box> { let api = ClientBuilder::new() .build() .await? .to_runtime_api::>>(); let signer = PairSigner::new(AccountKeyring::Alice.pair()); let dest = AccountKeyring::Bob.to_account_id().into(); let hash = api .tx() .balances() .transfer(dest, 10_000) .sign_and_submit(&signer) .await?; println!("Balance transfer extrinsic submitted: {}", hash); Ok(()) }