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
// This file is part of the SORA network and Polkaswap app.

// Copyright (c) 2020, 2021, Polka Biome Ltd. All rights reserved.
// SPDX-License-Identifier: BSD-4-Clause

// Redistribution and use in source and binary forms, with or without modification,
// are permitted provided that the following conditions are met:

// Redistributions of source code must retain the above copyright notice, this list
// of conditions and the following disclaimer.
// Redistributions in binary form must reproduce the above copyright notice, this
// list of conditions and the following disclaimer in the documentation and/or other
// materials provided with the distribution.
//
// All advertising materials mentioning features or use of this software must display
// the following acknowledgement: This product includes software developed by Polka Biome
// Ltd., SORA, and Polkaswap.
//
// Neither the name of the Polka Biome Ltd. nor the names of its contributors may be used
// to endorse or promote products derived from this software without specific prior written permission.

// THIS SOFTWARE IS PROVIDED BY Polka Biome Ltd. AS IS AND ANY EXPRESS OR IMPLIED WARRANTIES,
// INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL Polka Biome Ltd. BE LIABLE FOR ANY
// DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
// BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
// OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
// STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
// USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

// TODO #167: fix clippy warnings
#![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;
    }
}