mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-26 17:01:07 +00:00
b316301d61
* begin porting over traits; remove Config use of Hash * port over the Header bits that we need * sp_core_hashing where possible, move Verify to PairSigner, remove unused errors * tidy up Config things and move related bits into one place * fix codegen * copy Era over * move AccountId, Address, Signer to Signer trait and a pass over fixing examples * impl MultiAddress, MultiSignature, AccountId32 and add back to Config (for decoding later) * Copy over StorageKey, StorageData, StorageChangeSet * subxt core compiling with no sp_core or sp_runtime * Get examples compiling * pass over fixing tests * cargo fmt * clippy tweaks and update polkadot.rs * fix codegen docs * port over special DigestItem encoding/decoding * clippy and doc fixes * cargo fmt and example fix * more cargo fmt-ing... * substrate-extra to substrate-compat * cargo.toml comments * simplify PairSigner trait bounds * move RPC types to a separate file * fix docs * Add some tests for things and other PR feedback * bump to latest sp deps * avoid needing substrate-compat feature in a test
116 lines
3.0 KiB
Rust
116 lines
3.0 KiB
Rust
// Copyright 2019-2022 Parity Technologies (UK) Ltd.
|
|
// This file is dual-licensed as Apache-2.0 or GPL-3.0.
|
|
// see LICENSE for license details.
|
|
|
|
//! Miscellaneous utility helpers.
|
|
|
|
pub mod account_id;
|
|
pub mod bits;
|
|
pub mod multi_address;
|
|
pub mod multi_signature;
|
|
|
|
use codec::{
|
|
Decode,
|
|
DecodeAll,
|
|
Encode,
|
|
};
|
|
use derivative::Derivative;
|
|
|
|
pub use account_id::AccountId32;
|
|
pub use multi_address::MultiAddress;
|
|
pub use multi_signature::MultiSignature;
|
|
|
|
// Used in codegen
|
|
#[doc(hidden)]
|
|
pub use primitive_types::{
|
|
H160,
|
|
H256,
|
|
H512,
|
|
};
|
|
|
|
/// Wraps an already encoded byte vector, prevents being encoded as a raw byte vector as part of
|
|
/// the transaction payload
|
|
#[derive(Clone, Debug, Eq, PartialEq)]
|
|
pub struct Encoded(pub Vec<u8>);
|
|
|
|
impl codec::Encode for Encoded {
|
|
fn encode(&self) -> Vec<u8> {
|
|
self.0.to_owned()
|
|
}
|
|
}
|
|
|
|
/// A wrapper for any type `T` which implement encode/decode in a way compatible with `Vec<u8>`.
|
|
///
|
|
/// [`WrapperKeepOpaque`] stores the type only in its opaque format, aka as a `Vec<u8>`. To
|
|
/// access the real type `T` [`Self::try_decode`] needs to be used.
|
|
#[derive(Derivative, Encode, Decode)]
|
|
#[derivative(
|
|
Debug(bound = ""),
|
|
Clone(bound = ""),
|
|
PartialEq(bound = ""),
|
|
Eq(bound = ""),
|
|
Default(bound = ""),
|
|
Hash(bound = "")
|
|
)]
|
|
pub struct WrapperKeepOpaque<T> {
|
|
data: Vec<u8>,
|
|
_phantom: PhantomDataSendSync<T>,
|
|
}
|
|
|
|
impl<T: Decode> WrapperKeepOpaque<T> {
|
|
/// Try to decode the wrapped type from the inner `data`.
|
|
///
|
|
/// Returns `None` if the decoding failed.
|
|
pub fn try_decode(&self) -> Option<T> {
|
|
T::decode_all(&mut &self.data[..]).ok()
|
|
}
|
|
|
|
/// Returns the length of the encoded `T`.
|
|
pub fn encoded_len(&self) -> usize {
|
|
self.data.len()
|
|
}
|
|
|
|
/// Returns the encoded data.
|
|
pub fn encoded(&self) -> &[u8] {
|
|
&self.data
|
|
}
|
|
|
|
/// Create from the given encoded `data`.
|
|
pub fn from_encoded(data: Vec<u8>) -> Self {
|
|
Self {
|
|
data,
|
|
_phantom: PhantomDataSendSync::new(),
|
|
}
|
|
}
|
|
}
|
|
|
|
/// A version of [`std::marker::PhantomData`] that is also Send and Sync (which is fine
|
|
/// because regardless of the generic param, it is always possible to Send + Sync this
|
|
/// 0 size type).
|
|
#[derive(Derivative, Encode, Decode, scale_info::TypeInfo)]
|
|
#[derivative(
|
|
Clone(bound = ""),
|
|
PartialEq(bound = ""),
|
|
Debug(bound = ""),
|
|
Eq(bound = ""),
|
|
Default(bound = ""),
|
|
Hash(bound = "")
|
|
)]
|
|
#[scale_info(skip_type_params(T))]
|
|
#[doc(hidden)]
|
|
pub struct PhantomDataSendSync<T>(core::marker::PhantomData<T>);
|
|
|
|
impl<T> PhantomDataSendSync<T> {
|
|
pub(crate) fn new() -> Self {
|
|
Self(core::marker::PhantomData)
|
|
}
|
|
}
|
|
|
|
unsafe impl<T> Send for PhantomDataSendSync<T> {}
|
|
unsafe impl<T> Sync for PhantomDataSendSync<T> {}
|
|
|
|
/// This represents a key-value collection and is SCALE compatible
|
|
/// with collections like BTreeMap. This has the same type params
|
|
/// as `BTreeMap` which allows us to easily swap the two during codegen.
|
|
pub type KeyedVec<K, V> = Vec<(K, V)>;
|