gear-subxt 0.29.0

Submit extrinsics (transactions) to a substrate node via RPC
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright 2019-2023 Parity Technologies (UK) Ltd.
// This file is dual-licensed as Apache-2.0 or GPL-3.0.
// see LICENSE for license details.

//! Types representing the metadata obtained from a node.

mod decode_encode_traits;
mod metadata_type;

pub use decode_encode_traits::{DecodeWithMetadata, EncodeWithMetadata};
pub use metadata_type::Metadata;

// Expose metadata types under a sub module in case somebody needs to reference them:
pub use subxt_metadata as types;