Files
pezkuwi-subxt/src/lib.rs
T
Andrew Jones d46b6a975e Allow either submit or submit_and_watch on the builder. (#9)
* Refactor: allow submit and submit_and_watch, separate module builders

* Convert Balances, and use generic ModuleCalls

* Convert System, and use generic ModuleCalls

* Extract common calls to set_call

* rustfmt

* Test contract put_code with valid contract

* Patch jsonrpc client dependency for bugfix

* Handle result from call builder inside submit

* Use patched version of jsonrpc

* Lift module calls to Error

* jsonrpc 13.0

* Remove unused static constraints
2019-08-20 16:57:06 +01:00

572 lines
17 KiB
Rust

// Copyright 2019 Parity Technologies (UK) Ltd.
// This file is part of substrate-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 substrate-subxt. If not, see <http://www.gnu.org/licenses/>.
//! A library to **sub**mit e**xt**rinsics to a
//! [substrate](https://github.com/paritytech/substrate) node via RPC.
#![deny(missing_docs)]
#![deny(warnings)]
use futures::future::{
self,
Either,
Future,
IntoFuture,
};
use jsonrpc_core_client::transports::ws;
use metadata::Metadata;
use parity_scale_codec::{
Codec,
Decode,
Encode,
};
use runtime_primitives::{
generic::UncheckedExtrinsic,
traits::StaticLookup,
};
use std::marker::PhantomData;
use substrate_primitives::{
blake2_256,
storage::{
StorageChangeSet,
StorageKey,
},
Pair,
};
use url::Url;
use crate::{
codec::Encoded,
metadata::MetadataError,
rpc::{
MapStream,
Rpc,
},
srml::{
system::{
System,
SystemStore,
},
ModuleCalls,
},
};
pub use error::Error;
mod codec;
mod error;
mod metadata;
mod rpc;
pub mod srml;
/// Captures data for when an extrinsic is successfully included in a block
#[derive(Debug)]
pub struct ExtrinsicSuccess<T: System> {
/// Block hash.
pub block: T::Hash,
/// Extinsic hash.
pub extrinsic: T::Hash,
/// List of events.
pub events: Vec<T::Event>,
}
fn connect<T: System>(url: &Url) -> impl Future<Item = Rpc<T>, Error = Error> {
ws::connect(url.as_str())
.expect("Url is a valid url; qed")
.map_err(Into::into)
}
/// ClientBuilder for constructing a Client.
pub struct ClientBuilder<T: System> {
_marker: std::marker::PhantomData<T>,
url: Option<Url>,
}
impl<T: System> ClientBuilder<T> {
/// Creates a new ClientBuilder.
pub fn new() -> Self {
Self {
_marker: std::marker::PhantomData,
url: None,
}
}
/// Set the substrate rpc address.
pub fn set_url(mut self, url: Url) -> Self {
self.url = Some(url);
self
}
/// Creates a new Client.
pub fn build(self) -> impl Future<Item = Client<T>, Error = Error> {
let url = self.url.unwrap_or_else(|| {
Url::parse("ws://127.0.0.1:9944").expect("Is valid url; qed")
});
connect::<T>(&url).and_then(|rpc| {
rpc.metadata()
.join(rpc.genesis_hash())
.map(|(metadata, genesis_hash)| {
Client {
url,
genesis_hash,
metadata,
}
})
})
}
}
/// Client to interface with a substrate node.
pub struct Client<T: System> {
url: Url,
genesis_hash: T::Hash,
metadata: Metadata,
}
impl<T: System> Clone for Client<T> {
fn clone(&self) -> Self {
Self {
url: self.url.clone(),
genesis_hash: self.genesis_hash.clone(),
metadata: self.metadata.clone(),
}
}
}
impl<T: System + 'static> Client<T> {
fn connect(&self) -> impl Future<Item = Rpc<T>, Error = Error> {
connect(&self.url)
}
/// Returns the chain metadata.
pub fn metadata(&self) -> &Metadata {
&self.metadata
}
/// Fetch a StorageKey.
pub fn fetch<V: Decode>(
&self,
key: StorageKey,
) -> impl Future<Item = Option<V>, Error = Error> {
self.connect().and_then(|rpc| rpc.storage::<V>(key))
}
/// Fetch a StorageKey or return the default.
pub fn fetch_or<V: Decode>(
&self,
key: StorageKey,
default: V,
) -> impl Future<Item = V, Error = Error> {
self.fetch(key).map(|value| value.unwrap_or(default))
}
/// Fetch a StorageKey or return the default.
pub fn fetch_or_default<V: Decode + Default>(
&self,
key: StorageKey,
) -> impl Future<Item = V, Error = Error> {
self.fetch(key).map(|value| value.unwrap_or_default())
}
/// Subscribe to events.
pub fn subscribe_events(
&self,
) -> impl Future<Item = MapStream<StorageChangeSet<T::Hash>>, Error = Error> {
self.connect().and_then(|rpc| rpc.subscribe_events())
}
/// Subscribe to new blocks.
pub fn subscribe_blocks(
&self,
) -> impl Future<Item = MapStream<T::Header>, Error = Error> {
self.connect().and_then(|rpc| rpc.subscribe_blocks())
}
/// Subscribe to finalized blocks.
pub fn subscribe_finalized_blocks(
&self,
) -> impl Future<Item = MapStream<T::Header>, Error = Error> {
self.connect()
.and_then(|rpc| rpc.subscribe_finalized_blocks())
}
/// Create a transaction builder for a private key.
pub fn xt<P>(
&self,
signer: P,
nonce: Option<T::Index>,
) -> impl Future<Item = XtBuilder<T, P>, Error = Error>
where
P: Pair,
P::Public: Into<T::AccountId> + Into<<T::Lookup as StaticLookup>::Source>,
P::Signature: Codec,
{
let client = self.clone();
match nonce {
Some(nonce) => Either::A(future::ok(nonce)),
None => Either::B(self.account_nonce(signer.public().into())),
}
.map(|nonce| {
let genesis_hash = client.genesis_hash.clone();
XtBuilder {
client,
nonce,
genesis_hash,
signer,
call: None,
marker: PhantomData,
}
})
}
}
/// The extrinsic builder is ready to finalize construction.
pub enum Valid {}
/// The extrinsic builder is not ready to finalize construction.
pub enum Invalid {}
/// Transaction builder.
pub struct XtBuilder<T: System, P, V = Invalid> {
client: Client<T>,
nonce: T::Index,
genesis_hash: T::Hash,
signer: P,
call: Option<Result<Encoded, MetadataError>>,
marker: PhantomData<fn() -> V>,
}
impl<T: System + 'static, P, V> XtBuilder<T, P, V>
where
P: Pair,
{
/// Returns the chain metadata.
pub fn metadata(&self) -> &Metadata {
self.client.metadata()
}
/// Returns the nonce.
pub fn nonce(&self) -> T::Index {
self.nonce.clone()
}
/// Sets the nonce to a new value.
pub fn set_nonce(&mut self, nonce: T::Index) -> &mut XtBuilder<T, P, V> {
self.nonce = nonce;
self
}
/// Increment the nonce
pub fn increment_nonce(&mut self) -> &mut XtBuilder<T, P, V> {
self.set_nonce(self.nonce() + 1.into());
self
}
/// Sets the module call to a new value
pub fn set_call<F>(&self, module: &'static str, f: F) -> XtBuilder<T, P, Valid>
where
F: FnOnce(ModuleCalls<T, P>) -> Result<Encoded, MetadataError>,
{
let call = self
.metadata()
.module(module)
.and_then(|module| f(ModuleCalls::new(module)))
.map_err(Into::into);
XtBuilder {
client: self.client.clone(),
nonce: self.nonce.clone(),
genesis_hash: self.genesis_hash.clone(),
signer: self.signer.clone(),
call: Some(call),
marker: PhantomData,
}
}
}
impl<T: System + 'static, P> XtBuilder<T, P, Valid>
where
P: Pair,
P::Public: Into<<T::Lookup as StaticLookup>::Source>,
P::Signature: Codec,
{
/// Creates and signs an Extrinsic for the supplied `Call`
pub fn create_and_sign(
&self,
) -> Result<
UncheckedExtrinsic<
<T::Lookup as StaticLookup>::Source,
Encoded,
P::Signature,
T::SignedExtra,
>,
MetadataError,
>
where
P: Pair,
P::Public: Into<<T::Lookup as StaticLookup>::Source>,
P::Signature: Codec,
{
let signer = self.signer.clone();
let account_nonce = self.nonce.clone();
let genesis_hash = self.genesis_hash.clone();
let call = self
.call
.clone()
.expect("A Valid extrinisic builder has a call; qed")?;
log::info!(
"Creating Extrinsic with genesis hash {:?} and account nonce {:?}",
genesis_hash,
account_nonce
);
let extra = T::extra(account_nonce);
let raw_payload = (call.clone(), extra.clone(), (&genesis_hash, &genesis_hash));
let signature = raw_payload.using_encoded(|payload| {
if payload.len() > 256 {
signer.sign(&blake2_256(payload)[..])
} else {
signer.sign(payload)
}
});
Ok(UncheckedExtrinsic::new_signed(
raw_payload.0,
signer.public().into(),
signature.into(),
extra,
))
}
/// Submits a transaction to the chain.
pub fn submit(&self) -> impl Future<Item = T::Hash, Error = Error> {
let cli = self.client.connect();
self.create_and_sign()
.into_future()
.map_err(Into::into)
.and_then(move |extrinsic| {
cli.and_then(move |rpc| rpc.submit_extrinsic(extrinsic))
})
}
/// Submits transaction to the chain and watch for events.
pub fn submit_and_watch(
&self,
) -> impl Future<Item = ExtrinsicSuccess<T>, Error = Error> {
let cli = self.client.connect();
self.create_and_sign()
.into_future()
.map_err(Into::into)
.and_then(move |extrinsic| {
cli.and_then(move |rpc| rpc.submit_and_watch_extrinsic(extrinsic))
})
}
}
#[cfg(test)]
mod tests {
use super::*;
use crate::srml::{
balances::{
Balances,
BalancesStore,
BalancesXt,
},
contracts::{
Contracts,
ContractsXt,
},
};
use futures::stream::Stream;
use parity_scale_codec::Encode;
use runtime_primitives::generic::Era;
use runtime_support::StorageMap;
use substrate_keyring::AccountKeyring;
use substrate_primitives::{
blake2_256,
storage::StorageKey,
Pair,
};
struct Runtime;
impl System for Runtime {
type Index = <node_runtime::Runtime as srml_system::Trait>::Index;
type BlockNumber = <node_runtime::Runtime as srml_system::Trait>::BlockNumber;
type Hash = <node_runtime::Runtime as srml_system::Trait>::Hash;
type Hashing = <node_runtime::Runtime as srml_system::Trait>::Hashing;
type AccountId = <node_runtime::Runtime as srml_system::Trait>::AccountId;
type Lookup = <node_runtime::Runtime as srml_system::Trait>::Lookup;
type Header = <node_runtime::Runtime as srml_system::Trait>::Header;
type Event = <node_runtime::Runtime as srml_system::Trait>::Event;
type SignedExtra = (
srml_system::CheckGenesis<node_runtime::Runtime>,
srml_system::CheckEra<node_runtime::Runtime>,
srml_system::CheckNonce<node_runtime::Runtime>,
srml_system::CheckWeight<node_runtime::Runtime>,
srml_balances::TakeFees<node_runtime::Runtime>,
);
fn extra(nonce: Self::Index) -> Self::SignedExtra {
(
srml_system::CheckGenesis::<node_runtime::Runtime>::new(),
srml_system::CheckEra::<node_runtime::Runtime>::from(Era::Immortal),
srml_system::CheckNonce::<node_runtime::Runtime>::from(nonce),
srml_system::CheckWeight::<node_runtime::Runtime>::new(),
srml_balances::TakeFees::<node_runtime::Runtime>::from(0),
)
}
}
impl Balances for Runtime {
type Balance = <node_runtime::Runtime as srml_balances::Trait>::Balance;
}
impl Contracts for Runtime {}
type Index = <Runtime as System>::Index;
type AccountId = <Runtime as System>::AccountId;
type Address = <<Runtime as System>::Lookup as StaticLookup>::Source;
type Balance = <Runtime as Balances>::Balance;
fn test_setup() -> (tokio::runtime::Runtime, Client<Runtime>) {
env_logger::try_init().ok();
let mut rt = tokio::runtime::Runtime::new().unwrap();
let client_future = ClientBuilder::<Runtime>::new().build();
let client = rt.block_on(client_future).unwrap();
(rt, client)
}
#[test]
#[ignore] // requires locally running substrate node
fn test_tx_transfer_balance() {
let (mut rt, client) = test_setup();
let signer = AccountKeyring::Alice.pair();
let mut xt = rt.block_on(client.xt(signer, None)).unwrap();
let dest = AccountKeyring::Bob.pair().public();
let transfer = xt
.balances(|calls| calls.transfer(dest.clone().into(), 10_000))
.submit();
rt.block_on(transfer).unwrap();
// check that nonce is handled correctly
let transfer = xt
.increment_nonce()
.balances(|calls| calls.transfer(dest.clone().into(), 10_000))
.submit();
rt.block_on(transfer).unwrap();
}
#[test]
#[ignore] // requires locally running substrate node
fn test_tx_contract_put_code() {
let (mut rt, client) = test_setup();
let signer = AccountKeyring::Alice.pair();
let xt = rt.block_on(client.xt(signer, None)).unwrap();
const CONTRACT: &str = r#"
(module
(func (export "call"))
(func (export "deploy"))
)
"#;
let wasm = wabt::wat2wasm(CONTRACT).expect("invalid wabt");
let put_code = xt
.contracts(|call| call.put_code(500_000, wasm))
.submit_and_watch();
rt.block_on(put_code)
.expect("Extrinsic should be included in a block");
}
#[test]
#[ignore] // requires locally running substrate node
fn test_state_read_free_balance() {
let (mut rt, client) = test_setup();
let account = AccountKeyring::Alice.pair().public();
rt.block_on(client.free_balance(account.into())).unwrap();
}
#[test]
#[ignore] // requires locally running substrate node
fn test_chain_subscribe_blocks() {
let (mut rt, client) = test_setup();
let stream = rt.block_on(client.subscribe_blocks()).unwrap();
let (_header, _) = rt
.block_on(stream.into_future().map_err(|(e, _)| e))
.unwrap();
}
#[test]
#[ignore] // requires locally running substrate node
fn test_chain_subscribe_finalized_blocks() {
let (mut rt, client) = test_setup();
let stream = rt.block_on(client.subscribe_finalized_blocks()).unwrap();
let (_header, _) = rt
.block_on(stream.into_future().map_err(|(e, _)| e))
.unwrap();
}
#[test]
#[ignore] // requires locally running substrate node
fn test_chain_read_metadata() {
let (_, client) = test_setup();
let balances = client.metadata().module("Balances").unwrap();
let dest = substrate_keyring::AccountKeyring::Bob.pair().public();
let address: Address = dest.clone().into();
let amount: Balance = 10_000;
let transfer = srml_balances::Call::transfer(address.clone(), amount);
let call = node_runtime::Call::Balances(transfer);
let call2 = balances
.call("transfer", (address, codec::compact(amount)))
.unwrap();
assert_eq!(call.encode().to_vec(), call2.0);
let free_balance =
<srml_balances::FreeBalance<node_runtime::Runtime>>::key_for(&dest);
let free_balance_key = StorageKey(blake2_256(&free_balance).to_vec());
let free_balance_key2 = balances
.storage("FreeBalance")
.unwrap()
.get_map::<AccountId, Balance>()
.unwrap()
.key(dest.clone());
assert_eq!(free_balance_key, free_balance_key2);
let account_nonce =
<srml_system::AccountNonce<node_runtime::Runtime>>::key_for(&dest);
let account_nonce_key = StorageKey(blake2_256(&account_nonce).to_vec());
let account_nonce_key2 = client
.metadata()
.module("System")
.unwrap()
.storage("AccountNonce")
.unwrap()
.get_map::<AccountId, Index>()
.unwrap()
.key(dest);
assert_eq!(account_nonce_key, account_nonce_key2);
}
}