Add 20-byte account id to subxt_core (#1638)

* Add accountId20 impl to subxt_core

closes #1576
This commit is contained in:
Pavlo Khrystenko
2024-06-19 13:31:04 +02:00
committed by GitHub
parent d66f306b37
commit 5a5c5fc382
8 changed files with 253 additions and 81 deletions
+2
View File
@@ -5,6 +5,7 @@
//! Miscellaneous utility helpers.
mod account_id;
mod account_id20;
pub mod bits;
mod era;
mod multi_address;
@@ -21,6 +22,7 @@ use codec::{Compact, Decode, Encode};
use derive_where::derive_where;
pub use account_id::AccountId32;
pub use account_id20::AccountId20;
pub use era::Era;
pub use multi_address::MultiAddress;
pub use multi_signature::MultiSignature;