1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
#![allow(clippy::all)]
pub type MaxU32 = sp_runtime::traits::ConstU32<{ core::u32::MAX }>;
pub type UnboundedBridgeMessage = bridge_types::substrate::BridgeMessage<MaxU32>;
pub type UnboundedGenericCommitment = bridge_types::GenericCommitment<MaxU32, MaxU32>;
#[subxt::subxt(
runtime_metadata_path = "src/bytes/parachain_metadata.scale",
derive_for_all_types = "Clone"
)]
pub mod parachain_runtime {
#[subxt(substitute_type = "bridge_types::substrate::BridgeMessage")]
use crate::UnboundedBridgeMessage;
#[subxt(substitute_type = "bridge_types::GenericCommitment")]
use crate::UnboundedGenericCommitment;
#[subxt(substitute_type = "bridge_common::beefy_types::BeefyMMRLeaf")]
use ::bridge_common::beefy_types::BeefyMMRLeaf;
#[subxt(substitute_type = "bridge_common::beefy_types::Commitment")]
use ::bridge_common::beefy_types::Commitment;
#[subxt(substitute_type = "bridge_common::beefy_types::ValidatorProof")]
use ::bridge_common::beefy_types::ValidatorProof;
#[subxt(substitute_type = "bridge_common::beefy_types::ValidatorSet")]
use ::bridge_common::beefy_types::ValidatorSet;
#[subxt(substitute_type = "bridge_common::simplified_proof::Proof")]
use ::bridge_common::simplified_proof::Proof;
#[subxt(substitute_type = "bridge_types::ethashproof::DoubleNodeWithMerkleProof")]
use ::bridge_types::ethashproof::DoubleNodeWithMerkleProof;
#[subxt(substitute_type = "bridge_types::network_config::NetworkConfig")]
use ::bridge_types::network_config::NetworkConfig;
#[subxt(substitute_type = "bridge_types::types::AssetKind")]
use ::bridge_types::types::AssetKind;
#[subxt(substitute_type = "bridge_types::types::AuxiliaryDigest")]
use ::bridge_types::types::AuxiliaryDigest;
#[subxt(substitute_type = "bridge_types::types::LeafExtraData")]
use ::bridge_types::types::LeafExtraData;
#[subxt(substitute_type = "bridge_types::types::Message")]
use ::bridge_types::types::Message;
#[subxt(substitute_type = "bridge_types::GenericNetworkId")]
use ::bridge_types::GenericNetworkId;
#[subxt(substitute_type = "bridge_types::header::Header")]
use ::bridge_types::Header;
#[subxt(substitute_type = "bridge_types::header::HeaderId")]
use ::bridge_types::HeaderId;
#[subxt(substitute_type = "bridge_types::SubNetworkId")]
use ::bridge_types::SubNetworkId;
#[subxt(substitute_type = "sp_beefy::crypto::Public")]
use ::sp_beefy::crypto::Public;
#[subxt(substitute_type = "sp_beefy::mmr::BeefyAuthoritySet")]
use ::sp_beefy::mmr::BeefyAuthoritySet;
#[subxt(substitute_type = "sp_beefy::mmr::MmrLeaf")]
use ::sp_beefy::mmr::MmrLeaf;
#[subxt(substitute_type = "sp_beefy::commitment::Commitment")]
use ::sp_beefy::Commitment;
#[subxt(substitute_type = "sp_core::ecdsa::Public")]
use ::sp_core::ecdsa::Public;
#[subxt(substitute_type = "sp_core::ecdsa::Signature")]
use ::sp_core::ecdsa::Signature;
#[subxt(substitute_type = "primitive_types::H160")]
use ::sp_core::H160;
#[subxt(substitute_type = "primitive_types::H256")]
use ::sp_core::H256;
#[subxt(substitute_type = "primitive_types::H128")]
use ::sp_core::H512;
#[subxt(substitute_type = "primitive_types::U256")]
use ::sp_core::U256;
#[subxt(substitute_type = "sp_runtime::MultiSignature")]
use ::sp_runtime::MultiSignature;
#[subxt(substitute_type = "sp_runtime::MultiSigner")]
use ::sp_runtime::MultiSigner;
#[subxt(substitute_type = "sp_core::bounded::bounded_btree_map::BoundedBTreeMap")]
use ::std::collections::btree_map::BTreeMap;
#[subxt(substitute_type = "sp_core::bounded::bounded_btree_set::BoundedBTreeSet")]
use ::std::collections::btree_set::BTreeSet;
#[subxt(substitute_type = "sp_core::bounded::bounded_vec::BoundedVec")]
use ::std::vec::Vec;
#[subxt(substitute_type = "sp_runtime::bounded::bounded_vec::BoundedVec")]
use ::std::vec::Vec;
}
pub use config::*;
pub mod config {
use std::fmt::Debug;
use subxt::{tx::PolkadotExtrinsicParams, Config};
pub type SoraExtrinsicParams = PolkadotExtrinsicParams<DefaultConfig>;
#[derive(Clone, Debug, Default, Eq, PartialEq)]
pub struct DefaultConfig;
impl Config for DefaultConfig {
type Index = u32;
type BlockNumber = u32;
type Hash = sp_core::H256;
type Hashing = sp_runtime::traits::BlakeTwo256;
type AccountId = <<Self::Signature as sp_runtime::traits::Verify>::Signer as sp_runtime::traits::IdentifyAccount>::AccountId;
type Address = sp_runtime::MultiAddress<Self::AccountId, ()>;
type Header =
sp_runtime::generic::Header<Self::BlockNumber, sp_runtime::traits::BlakeTwo256>;
type Signature = sp_runtime::MultiSignature;
type ExtrinsicParams = SoraExtrinsicParams;
}
}