@argonprotocol/mainchain 1.4.7 → 1.4.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/browser/index.d.ts +248 -175
- package/browser/index.js +99 -28
- package/browser/index.js.map +1 -1
- package/lib/index.cjs +122 -48
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +248 -175
- package/lib/index.d.ts +248 -175
- package/lib/index.js +101 -27
- package/lib/index.js.map +1 -1
- package/package.json +2 -2
- package/src/interfaces/augment-api-consts.ts +10 -16
- package/src/interfaces/augment-api-errors.ts +24 -0
- package/src/interfaces/augment-api-query.ts +17 -0
- package/src/interfaces/augment-api-tx.ts +27 -13
- package/src/interfaces/lookup.ts +167 -140
- package/src/interfaces/registry.ts +4 -0
- package/src/interfaces/types-lookup.ts +174 -143
package/src/interfaces/lookup.ts
CHANGED
|
@@ -310,7 +310,7 @@ export default {
|
|
|
310
310
|
'MiningBidRealPaysFee',
|
|
311
311
|
'Bitcoin',
|
|
312
312
|
'VaultAdmin',
|
|
313
|
-
'
|
|
313
|
+
'VaultDelegate',
|
|
314
314
|
],
|
|
315
315
|
},
|
|
316
316
|
/**
|
|
@@ -2119,7 +2119,7 @@ export default {
|
|
|
2119
2119
|
collect: {
|
|
2120
2120
|
vaultId: 'u32',
|
|
2121
2121
|
},
|
|
2122
|
-
|
|
2122
|
+
set_delegate_account: {
|
|
2123
2123
|
delegateAccountId: 'Option<AccountId32>',
|
|
2124
2124
|
},
|
|
2125
2125
|
set_name: {
|
|
@@ -2131,11 +2131,12 @@ export default {
|
|
|
2131
2131
|
},
|
|
2132
2132
|
},
|
|
2133
2133
|
/**
|
|
2134
|
-
* Lookup205: pallet_vaults::pallet::VaultConfig<Balance>
|
|
2134
|
+
* Lookup205: pallet_vaults::pallet::VaultConfig<sp_core::crypto::AccountId32, Balance>
|
|
2135
2135
|
**/
|
|
2136
2136
|
PalletVaultsVaultConfig: {
|
|
2137
2137
|
terms: 'ArgonPrimitivesVaultVaultTerms',
|
|
2138
2138
|
name: 'Option<Bytes>',
|
|
2139
|
+
delegateAccountId: 'Option<AccountId32>',
|
|
2139
2140
|
securitization: 'Compact<u128>',
|
|
2140
2141
|
bitcoinXpubkey: 'ArgonPrimitivesBitcoinOpaqueBitcoinXpub',
|
|
2141
2142
|
securitizationRatio: 'Compact<u128>',
|
|
@@ -2147,6 +2148,7 @@ export default {
|
|
|
2147
2148
|
bitcoinAnnualPercentRate: 'Compact<u128>',
|
|
2148
2149
|
bitcoinBaseFee: 'Compact<u128>',
|
|
2149
2150
|
treasuryProfitSharing: 'Compact<Permill>',
|
|
2151
|
+
treasuryBonusProfitSharing: 'Compact<Permill>',
|
|
2150
2152
|
},
|
|
2151
2153
|
/**
|
|
2152
2154
|
* Lookup212: argon_primitives::bitcoin::OpaqueBitcoinXpub
|
|
@@ -2636,6 +2638,7 @@ export default {
|
|
|
2636
2638
|
buy_bonds: {
|
|
2637
2639
|
vaultId: 'u32',
|
|
2638
2640
|
bonds: 'u32',
|
|
2641
|
+
bonusApproval: 'Option<ArgonPrimitivesVaultTreasuryBonusApprovalProof>',
|
|
2639
2642
|
},
|
|
2640
2643
|
liquidate_bond_lot: {
|
|
2641
2644
|
bondLotId: 'u64',
|
|
@@ -2643,7 +2646,16 @@ export default {
|
|
|
2643
2646
|
},
|
|
2644
2647
|
},
|
|
2645
2648
|
/**
|
|
2646
|
-
*
|
|
2649
|
+
* Lookup272: argon_primitives::vault::TreasuryBonusApprovalProof
|
|
2650
|
+
**/
|
|
2651
|
+
ArgonPrimitivesVaultTreasuryBonusApprovalProof: {
|
|
2652
|
+
vaultId: 'Compact<u32>',
|
|
2653
|
+
beneficiary: 'AccountId32',
|
|
2654
|
+
expiresAtFrame: 'Compact<u64>',
|
|
2655
|
+
signature: 'SpRuntimeMultiSignature',
|
|
2656
|
+
},
|
|
2657
|
+
/**
|
|
2658
|
+
* Lookup273: pallet_operational_accounts::pallet::Call<T>
|
|
2647
2659
|
**/
|
|
2648
2660
|
PalletOperationalAccountsCall: {
|
|
2649
2661
|
_enum: {
|
|
@@ -2671,7 +2683,7 @@ export default {
|
|
|
2671
2683
|
},
|
|
2672
2684
|
},
|
|
2673
2685
|
/**
|
|
2674
|
-
*
|
|
2686
|
+
* Lookup274: pallet_operational_accounts::pallet::Registration<T>
|
|
2675
2687
|
**/
|
|
2676
2688
|
PalletOperationalAccountsRegistration: {
|
|
2677
2689
|
_enum: {
|
|
@@ -2679,7 +2691,7 @@ export default {
|
|
|
2679
2691
|
},
|
|
2680
2692
|
},
|
|
2681
2693
|
/**
|
|
2682
|
-
*
|
|
2694
|
+
* Lookup275: pallet_operational_accounts::pallet::RegistrationV1<T>
|
|
2683
2695
|
**/
|
|
2684
2696
|
PalletOperationalAccountsRegistrationV1: {
|
|
2685
2697
|
operationalAccount: 'AccountId32',
|
|
@@ -2694,17 +2706,17 @@ export default {
|
|
|
2694
2706
|
referralProof: 'Option<PalletOperationalAccountsReferralProof>',
|
|
2695
2707
|
},
|
|
2696
2708
|
/**
|
|
2697
|
-
*
|
|
2709
|
+
* Lookup276: pallet_operational_accounts::pallet::OpaqueEncryptionPubkey
|
|
2698
2710
|
**/
|
|
2699
2711
|
PalletOperationalAccountsOpaqueEncryptionPubkey: '[u8;32]',
|
|
2700
2712
|
/**
|
|
2701
|
-
*
|
|
2713
|
+
* Lookup277: pallet_operational_accounts::pallet::AccountOwnershipProof
|
|
2702
2714
|
**/
|
|
2703
2715
|
PalletOperationalAccountsAccountOwnershipProof: {
|
|
2704
2716
|
signature: 'SpRuntimeMultiSignature',
|
|
2705
2717
|
},
|
|
2706
2718
|
/**
|
|
2707
|
-
*
|
|
2719
|
+
* Lookup279: pallet_operational_accounts::pallet::ReferralProof<sp_core::crypto::AccountId32>
|
|
2708
2720
|
**/
|
|
2709
2721
|
PalletOperationalAccountsReferralProof: {
|
|
2710
2722
|
referralCode: '[u8;32]',
|
|
@@ -2714,7 +2726,7 @@ export default {
|
|
|
2714
2726
|
sponsorSignature: 'SpRuntimeMultiSignature',
|
|
2715
2727
|
},
|
|
2716
2728
|
/**
|
|
2717
|
-
*
|
|
2729
|
+
* Lookup280: pallet_operational_accounts::pallet::OperationalProgressPatch<Balance>
|
|
2718
2730
|
**/
|
|
2719
2731
|
PalletOperationalAccountsOperationalProgressPatch: {
|
|
2720
2732
|
hasUniswapTransfer: 'Option<bool>',
|
|
@@ -2724,7 +2736,7 @@ export default {
|
|
|
2724
2736
|
observedMiningSeatTotal: 'Option<u32>',
|
|
2725
2737
|
},
|
|
2726
2738
|
/**
|
|
2727
|
-
*
|
|
2739
|
+
* Lookup282: pallet_ethereum_verifier::pallet::Call<T>
|
|
2728
2740
|
**/
|
|
2729
2741
|
PalletEthereumVerifierCall: {
|
|
2730
2742
|
_enum: {
|
|
@@ -2746,7 +2758,7 @@ export default {
|
|
|
2746
2758
|
},
|
|
2747
2759
|
},
|
|
2748
2760
|
/**
|
|
2749
|
-
*
|
|
2761
|
+
* Lookup283: pallet_ethereum_verifier::types::CheckpointUpdate
|
|
2750
2762
|
**/
|
|
2751
2763
|
PalletEthereumVerifierCheckpointUpdate: {
|
|
2752
2764
|
header: 'SnowbridgeBeaconPrimitivesBeaconHeader',
|
|
@@ -2756,7 +2768,7 @@ export default {
|
|
|
2756
2768
|
executionHeaderProof: 'PalletEthereumVerifierExecutionHeaderProof',
|
|
2757
2769
|
},
|
|
2758
2770
|
/**
|
|
2759
|
-
*
|
|
2771
|
+
* Lookup284: snowbridge_beacon_primitives::types::BeaconHeader
|
|
2760
2772
|
**/
|
|
2761
2773
|
SnowbridgeBeaconPrimitivesBeaconHeader: {
|
|
2762
2774
|
slot: 'u64',
|
|
@@ -2766,25 +2778,25 @@ export default {
|
|
|
2766
2778
|
bodyRoot: 'H256',
|
|
2767
2779
|
},
|
|
2768
2780
|
/**
|
|
2769
|
-
*
|
|
2781
|
+
* Lookup285: pallet_ethereum_verifier::types::SyncCommittee
|
|
2770
2782
|
**/
|
|
2771
2783
|
PalletEthereumVerifierSyncCommittee: {
|
|
2772
2784
|
pubkeys: 'Vec<SnowbridgeBeaconPrimitivesPublicKey>',
|
|
2773
2785
|
aggregatePubkey: 'SnowbridgeBeaconPrimitivesPublicKey',
|
|
2774
2786
|
},
|
|
2775
2787
|
/**
|
|
2776
|
-
*
|
|
2788
|
+
* Lookup287: snowbridge_beacon_primitives::types::PublicKey
|
|
2777
2789
|
**/
|
|
2778
2790
|
SnowbridgeBeaconPrimitivesPublicKey: '[u8;48]',
|
|
2779
2791
|
/**
|
|
2780
|
-
*
|
|
2792
|
+
* Lookup291: pallet_ethereum_verifier::types::ExecutionHeaderProof
|
|
2781
2793
|
**/
|
|
2782
2794
|
PalletEthereumVerifierExecutionHeaderProof: {
|
|
2783
2795
|
executionHeader: 'SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader',
|
|
2784
2796
|
executionBranch: 'Vec<H256>',
|
|
2785
2797
|
},
|
|
2786
2798
|
/**
|
|
2787
|
-
*
|
|
2799
|
+
* Lookup292: snowbridge_beacon_primitives::types::VersionedExecutionPayloadHeader
|
|
2788
2800
|
**/
|
|
2789
2801
|
SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader: {
|
|
2790
2802
|
_enum: {
|
|
@@ -2793,7 +2805,7 @@ export default {
|
|
|
2793
2805
|
},
|
|
2794
2806
|
},
|
|
2795
2807
|
/**
|
|
2796
|
-
*
|
|
2808
|
+
* Lookup293: snowbridge_beacon_primitives::types::ExecutionPayloadHeader
|
|
2797
2809
|
**/
|
|
2798
2810
|
SnowbridgeBeaconPrimitivesExecutionPayloadHeader: {
|
|
2799
2811
|
parentHash: 'H256',
|
|
@@ -2813,7 +2825,7 @@ export default {
|
|
|
2813
2825
|
withdrawalsRoot: 'H256',
|
|
2814
2826
|
},
|
|
2815
2827
|
/**
|
|
2816
|
-
*
|
|
2828
|
+
* Lookup294: snowbridge_beacon_primitives::types::deneb::ExecutionPayloadHeader
|
|
2817
2829
|
**/
|
|
2818
2830
|
SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader: {
|
|
2819
2831
|
parentHash: 'H256',
|
|
@@ -2835,7 +2847,7 @@ export default {
|
|
|
2835
2847
|
excessBlobGas: 'u64',
|
|
2836
2848
|
},
|
|
2837
2849
|
/**
|
|
2838
|
-
*
|
|
2850
|
+
* Lookup295: pallet_ethereum_verifier::types::ForkVersions
|
|
2839
2851
|
**/
|
|
2840
2852
|
PalletEthereumVerifierForkVersions: {
|
|
2841
2853
|
genesis: 'PalletEthereumVerifierFork',
|
|
@@ -2847,14 +2859,14 @@ export default {
|
|
|
2847
2859
|
fulu: 'PalletEthereumVerifierFork',
|
|
2848
2860
|
},
|
|
2849
2861
|
/**
|
|
2850
|
-
*
|
|
2862
|
+
* Lookup296: pallet_ethereum_verifier::types::Fork
|
|
2851
2863
|
**/
|
|
2852
2864
|
PalletEthereumVerifierFork: {
|
|
2853
2865
|
version: '[u8;4]',
|
|
2854
2866
|
epoch: 'Compact<u64>',
|
|
2855
2867
|
},
|
|
2856
2868
|
/**
|
|
2857
|
-
*
|
|
2869
|
+
* Lookup297: pallet_ethereum_verifier::types::Update
|
|
2858
2870
|
**/
|
|
2859
2871
|
PalletEthereumVerifierUpdate: {
|
|
2860
2872
|
attestedHeader: 'SnowbridgeBeaconPrimitivesBeaconHeader',
|
|
@@ -2866,25 +2878,25 @@ export default {
|
|
|
2866
2878
|
executionHeaderProof: 'PalletEthereumVerifierExecutionHeaderProof',
|
|
2867
2879
|
},
|
|
2868
2880
|
/**
|
|
2869
|
-
*
|
|
2881
|
+
* Lookup298: pallet_ethereum_verifier::types::SyncAggregate
|
|
2870
2882
|
**/
|
|
2871
2883
|
PalletEthereumVerifierSyncAggregate: {
|
|
2872
2884
|
syncCommitteeBits: 'Bytes',
|
|
2873
2885
|
syncCommitteeSignature: 'SnowbridgeBeaconPrimitivesSignature',
|
|
2874
2886
|
},
|
|
2875
2887
|
/**
|
|
2876
|
-
*
|
|
2888
|
+
* Lookup300: snowbridge_beacon_primitives::types::Signature
|
|
2877
2889
|
**/
|
|
2878
2890
|
SnowbridgeBeaconPrimitivesSignature: '[u8;96]',
|
|
2879
2891
|
/**
|
|
2880
|
-
*
|
|
2892
|
+
* Lookup303: pallet_ethereum_verifier::types::NextSyncCommitteeUpdate
|
|
2881
2893
|
**/
|
|
2882
2894
|
PalletEthereumVerifierNextSyncCommitteeUpdate: {
|
|
2883
2895
|
nextSyncCommittee: 'PalletEthereumVerifierSyncCommittee',
|
|
2884
2896
|
nextSyncCommitteeBranch: 'Vec<H256>',
|
|
2885
2897
|
},
|
|
2886
2898
|
/**
|
|
2887
|
-
*
|
|
2899
|
+
* Lookup304: pallet_crosschain_transfer::pallet::Call<T>
|
|
2888
2900
|
**/
|
|
2889
2901
|
PalletCrosschainTransferCall: {
|
|
2890
2902
|
_enum: {
|
|
@@ -2950,7 +2962,7 @@ export default {
|
|
|
2950
2962
|
},
|
|
2951
2963
|
},
|
|
2952
2964
|
/**
|
|
2953
|
-
*
|
|
2965
|
+
* Lookup305: pallet_crosschain_transfer::pallet::ChainConfig
|
|
2954
2966
|
**/
|
|
2955
2967
|
PalletCrosschainTransferChainConfig: {
|
|
2956
2968
|
_enum: {
|
|
@@ -2963,7 +2975,7 @@ export default {
|
|
|
2963
2975
|
},
|
|
2964
2976
|
},
|
|
2965
2977
|
/**
|
|
2966
|
-
*
|
|
2978
|
+
* Lookup307: pallet_crosschain_transfer::pallet::MintingAuthorityActivationRepaymentPricing<T>
|
|
2967
2979
|
**/
|
|
2968
2980
|
PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing: {
|
|
2969
2981
|
activationGasCost: 'Compact<u128>',
|
|
@@ -2972,27 +2984,27 @@ export default {
|
|
|
2972
2984
|
estimatedMicrogonsPerEth: 'u128',
|
|
2973
2985
|
},
|
|
2974
2986
|
/**
|
|
2975
|
-
*
|
|
2987
|
+
* Lookup310: argon_primitives::ethereum::EthereumReceiptLogProofBatch<MaxProofBlocks, MaxReceiptLogs>
|
|
2976
2988
|
**/
|
|
2977
2989
|
ArgonPrimitivesEthereumEthereumReceiptLogProofBatch: {
|
|
2978
2990
|
executionBlockProof: 'ArgonPrimitivesEthereumEthereumExecutionBlockProof',
|
|
2979
2991
|
blocks: 'Vec<ArgonPrimitivesEthereumEthereumReceiptLogProofBlock>',
|
|
2980
2992
|
},
|
|
2981
2993
|
/**
|
|
2982
|
-
*
|
|
2994
|
+
* Lookup311: argon_primitives::ethereum::EthereumExecutionBlockProof
|
|
2983
2995
|
**/
|
|
2984
2996
|
ArgonPrimitivesEthereumEthereumExecutionBlockProof: {
|
|
2985
2997
|
anchorBlockHash: 'H256',
|
|
2986
2998
|
targetToAnchorHeaderChain: 'Vec<ArgonPrimitivesEthereumEthereumExecutionHeader>',
|
|
2987
2999
|
},
|
|
2988
3000
|
/**
|
|
2989
|
-
*
|
|
3001
|
+
* Lookup313: argon_primitives::ethereum::EthereumExecutionHeader
|
|
2990
3002
|
**/
|
|
2991
3003
|
ArgonPrimitivesEthereumEthereumExecutionHeader: {
|
|
2992
3004
|
rlp: 'Bytes',
|
|
2993
3005
|
},
|
|
2994
3006
|
/**
|
|
2995
|
-
*
|
|
3007
|
+
* Lookup317: argon_primitives::ethereum::EthereumReceiptLogProofBlock<MaxReceiptLogs>
|
|
2996
3008
|
**/
|
|
2997
3009
|
ArgonPrimitivesEthereumEthereumReceiptLogProofBlock: {
|
|
2998
3010
|
targetBlockNumber: 'Compact<u64>',
|
|
@@ -3000,28 +3012,28 @@ export default {
|
|
|
3000
3012
|
receiptLogs: 'Vec<ArgonPrimitivesEthereumEthereumReceiptLog>',
|
|
3001
3013
|
},
|
|
3002
3014
|
/**
|
|
3003
|
-
*
|
|
3015
|
+
* Lookup318: argon_primitives::ethereum::EthereumCombinedReceiptProof
|
|
3004
3016
|
**/
|
|
3005
3017
|
ArgonPrimitivesEthereumEthereumCombinedReceiptProof: {
|
|
3006
3018
|
nodes: 'Vec<Bytes>',
|
|
3007
3019
|
receipts: 'Vec<ArgonPrimitivesEthereumEthereumReceiptProofReceipt>',
|
|
3008
3020
|
},
|
|
3009
3021
|
/**
|
|
3010
|
-
*
|
|
3022
|
+
* Lookup322: argon_primitives::ethereum::EthereumReceiptProofReceipt
|
|
3011
3023
|
**/
|
|
3012
3024
|
ArgonPrimitivesEthereumEthereumReceiptProofReceipt: {
|
|
3013
3025
|
transactionIndex: 'Compact<u64>',
|
|
3014
3026
|
nodeIndexes: 'Vec<u16>',
|
|
3015
3027
|
},
|
|
3016
3028
|
/**
|
|
3017
|
-
*
|
|
3029
|
+
* Lookup327: argon_primitives::ethereum::EthereumReceiptLog
|
|
3018
3030
|
**/
|
|
3019
3031
|
ArgonPrimitivesEthereumEthereumReceiptLog: {
|
|
3020
3032
|
transactionIndex: 'Compact<u64>',
|
|
3021
3033
|
eventLog: 'ArgonPrimitivesEthereumEthereumLog',
|
|
3022
3034
|
},
|
|
3023
3035
|
/**
|
|
3024
|
-
*
|
|
3036
|
+
* Lookup328: argon_primitives::ethereum::EthereumLog
|
|
3025
3037
|
**/
|
|
3026
3038
|
ArgonPrimitivesEthereumEthereumLog: {
|
|
3027
3039
|
address: 'H160',
|
|
@@ -3029,7 +3041,7 @@ export default {
|
|
|
3029
3041
|
data: 'Bytes',
|
|
3030
3042
|
},
|
|
3031
3043
|
/**
|
|
3032
|
-
*
|
|
3044
|
+
* Lookup334: pallet_multisig::pallet::Error<T>
|
|
3033
3045
|
**/
|
|
3034
3046
|
PalletMultisigError: {
|
|
3035
3047
|
_enum: [
|
|
@@ -3050,7 +3062,7 @@ export default {
|
|
|
3050
3062
|
],
|
|
3051
3063
|
},
|
|
3052
3064
|
/**
|
|
3053
|
-
*
|
|
3065
|
+
* Lookup337: pallet_proxy::ProxyDefinition<sp_core::crypto::AccountId32, argon_runtime::ProxyType, BlockNumber>
|
|
3054
3066
|
**/
|
|
3055
3067
|
PalletProxyProxyDefinition: {
|
|
3056
3068
|
delegate: 'AccountId32',
|
|
@@ -3058,7 +3070,7 @@ export default {
|
|
|
3058
3070
|
delay: 'u32',
|
|
3059
3071
|
},
|
|
3060
3072
|
/**
|
|
3061
|
-
*
|
|
3073
|
+
* Lookup341: pallet_proxy::Announcement<sp_core::crypto::AccountId32, primitive_types::H256, BlockNumber>
|
|
3062
3074
|
**/
|
|
3063
3075
|
PalletProxyAnnouncement: {
|
|
3064
3076
|
real: 'AccountId32',
|
|
@@ -3066,7 +3078,7 @@ export default {
|
|
|
3066
3078
|
height: 'u32',
|
|
3067
3079
|
},
|
|
3068
3080
|
/**
|
|
3069
|
-
*
|
|
3081
|
+
* Lookup343: pallet_proxy::pallet::Error<T>
|
|
3070
3082
|
**/
|
|
3071
3083
|
PalletProxyError: {
|
|
3072
3084
|
_enum: [
|
|
@@ -3081,18 +3093,18 @@ export default {
|
|
|
3081
3093
|
],
|
|
3082
3094
|
},
|
|
3083
3095
|
/**
|
|
3084
|
-
*
|
|
3096
|
+
* Lookup344: argon_primitives::tick::Ticker
|
|
3085
3097
|
**/
|
|
3086
3098
|
ArgonPrimitivesTickTicker: {
|
|
3087
3099
|
tickDurationMillis: 'Compact<u64>',
|
|
3088
3100
|
channelHoldExpirationTicks: 'Compact<u64>',
|
|
3089
3101
|
},
|
|
3090
3102
|
/**
|
|
3091
|
-
*
|
|
3103
|
+
* Lookup346: pallet_ticks::pallet::Error<T>
|
|
3092
3104
|
**/
|
|
3093
3105
|
PalletTicksError: 'Null',
|
|
3094
3106
|
/**
|
|
3095
|
-
*
|
|
3107
|
+
* Lookup349: pallet_mining_slot::MinerNonceScoring<T>
|
|
3096
3108
|
**/
|
|
3097
3109
|
PalletMiningSlotMinerNonceScoring: {
|
|
3098
3110
|
nonce: 'U256',
|
|
@@ -3101,7 +3113,7 @@ export default {
|
|
|
3101
3113
|
frameStartBlocksWonSurplus: 'i16',
|
|
3102
3114
|
},
|
|
3103
3115
|
/**
|
|
3104
|
-
*
|
|
3116
|
+
* Lookup361: argon_primitives::block_seal::MiningBidStats
|
|
3105
3117
|
**/
|
|
3106
3118
|
ArgonPrimitivesBlockSealMiningBidStats: {
|
|
3107
3119
|
bidsCount: 'u32',
|
|
@@ -3110,7 +3122,7 @@ export default {
|
|
|
3110
3122
|
bidAmountSum: 'u128',
|
|
3111
3123
|
},
|
|
3112
3124
|
/**
|
|
3113
|
-
*
|
|
3125
|
+
* Lookup365: argon_primitives::block_seal::MiningSlotConfig
|
|
3114
3126
|
**/
|
|
3115
3127
|
ArgonPrimitivesBlockSealMiningSlotConfig: {
|
|
3116
3128
|
ticksBeforeBidEndForVrfClose: 'Compact<u64>',
|
|
@@ -3118,7 +3130,7 @@ export default {
|
|
|
3118
3130
|
slotBiddingStartAfterTicks: 'Compact<u64>',
|
|
3119
3131
|
},
|
|
3120
3132
|
/**
|
|
3121
|
-
*
|
|
3133
|
+
* Lookup375: pallet_mining_slot::pallet::Error<T>
|
|
3122
3134
|
**/
|
|
3123
3135
|
PalletMiningSlotError: {
|
|
3124
3136
|
_enum: [
|
|
@@ -3135,7 +3147,7 @@ export default {
|
|
|
3135
3147
|
],
|
|
3136
3148
|
},
|
|
3137
3149
|
/**
|
|
3138
|
-
*
|
|
3150
|
+
* Lookup376: argon_primitives::bitcoin::UtxoValue
|
|
3139
3151
|
**/
|
|
3140
3152
|
ArgonPrimitivesBitcoinUtxoValue: {
|
|
3141
3153
|
utxoId: 'u64',
|
|
@@ -3145,7 +3157,7 @@ export default {
|
|
|
3145
3157
|
watchForSpentUntilHeight: 'Compact<u64>',
|
|
3146
3158
|
},
|
|
3147
3159
|
/**
|
|
3148
|
-
*
|
|
3160
|
+
* Lookup377: argon_primitives::bitcoin::BitcoinCosignScriptPubkey
|
|
3149
3161
|
**/
|
|
3150
3162
|
ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey: {
|
|
3151
3163
|
_enum: {
|
|
@@ -3155,13 +3167,13 @@ export default {
|
|
|
3155
3167
|
},
|
|
3156
3168
|
},
|
|
3157
3169
|
/**
|
|
3158
|
-
*
|
|
3170
|
+
* Lookup386: argon_primitives::bitcoin::BitcoinNetwork
|
|
3159
3171
|
**/
|
|
3160
3172
|
ArgonPrimitivesBitcoinBitcoinNetwork: {
|
|
3161
3173
|
_enum: ['Bitcoin', 'Testnet', 'Signet', 'Regtest'],
|
|
3162
3174
|
},
|
|
3163
3175
|
/**
|
|
3164
|
-
*
|
|
3176
|
+
* Lookup387: pallet_bitcoin_utxos::pallet::Error<T>
|
|
3165
3177
|
**/
|
|
3166
3178
|
PalletBitcoinUtxosError: {
|
|
3167
3179
|
_enum: [
|
|
@@ -3183,11 +3195,11 @@ export default {
|
|
|
3183
3195
|
],
|
|
3184
3196
|
},
|
|
3185
3197
|
/**
|
|
3186
|
-
*
|
|
3198
|
+
* Lookup388: argon_primitives::vault::Vault<sp_core::crypto::AccountId32, Balance>
|
|
3187
3199
|
**/
|
|
3188
3200
|
ArgonPrimitivesVault: {
|
|
3189
3201
|
operatorAccountId: 'AccountId32',
|
|
3190
|
-
|
|
3202
|
+
delegateAccountId: 'Option<AccountId32>',
|
|
3191
3203
|
name: 'Option<Bytes>',
|
|
3192
3204
|
lastNameChangeTick: 'Option<u64>',
|
|
3193
3205
|
securitization: 'Compact<u128>',
|
|
@@ -3205,14 +3217,14 @@ export default {
|
|
|
3205
3217
|
operationalMinimumReleaseTick: 'Option<u64>',
|
|
3206
3218
|
},
|
|
3207
3219
|
/**
|
|
3208
|
-
*
|
|
3220
|
+
* Lookup395: argon_primitives::vault::VaultArgonotCommitment<Balance>
|
|
3209
3221
|
**/
|
|
3210
3222
|
ArgonPrimitivesVaultVaultArgonotCommitment: {
|
|
3211
3223
|
committedMicronots: 'Compact<u128>',
|
|
3212
3224
|
encumberedMicronots: 'Compact<u128>',
|
|
3213
3225
|
},
|
|
3214
3226
|
/**
|
|
3215
|
-
*
|
|
3227
|
+
* Lookup397: argon_primitives::bitcoin::BitcoinXPub
|
|
3216
3228
|
**/
|
|
3217
3229
|
ArgonPrimitivesBitcoinBitcoinXPub: {
|
|
3218
3230
|
publicKey: 'ArgonPrimitivesBitcoinCompressedBitcoinPubkey',
|
|
@@ -3223,13 +3235,13 @@ export default {
|
|
|
3223
3235
|
network: 'ArgonPrimitivesBitcoinNetworkKind',
|
|
3224
3236
|
},
|
|
3225
3237
|
/**
|
|
3226
|
-
*
|
|
3238
|
+
* Lookup399: argon_primitives::bitcoin::NetworkKind
|
|
3227
3239
|
**/
|
|
3228
3240
|
ArgonPrimitivesBitcoinNetworkKind: {
|
|
3229
3241
|
_enum: ['Main', 'Test'],
|
|
3230
3242
|
},
|
|
3231
3243
|
/**
|
|
3232
|
-
*
|
|
3244
|
+
* Lookup408: pallet_vaults::pallet::VaultFrameRevenue<T>
|
|
3233
3245
|
**/
|
|
3234
3246
|
PalletVaultsVaultFrameRevenue: {
|
|
3235
3247
|
frameId: 'Compact<u64>',
|
|
@@ -3250,7 +3262,7 @@ export default {
|
|
|
3250
3262
|
uncollectedRevenue: 'Compact<u128>',
|
|
3251
3263
|
},
|
|
3252
3264
|
/**
|
|
3253
|
-
*
|
|
3265
|
+
* Lookup411: pallet_vaults::pallet::RecentCapacityDrop<Balance, BlockNumber>
|
|
3254
3266
|
**/
|
|
3255
3267
|
PalletVaultsRecentCapacityDrop: {
|
|
3256
3268
|
blockNumber: 'Compact<u32>',
|
|
@@ -3259,7 +3271,7 @@ export default {
|
|
|
3259
3271
|
noFeeFailuresUsed: 'Compact<u32>',
|
|
3260
3272
|
},
|
|
3261
3273
|
/**
|
|
3262
|
-
*
|
|
3274
|
+
* Lookup413: pallet_vaults::pallet::Error<T>
|
|
3263
3275
|
**/
|
|
3264
3276
|
PalletVaultsError: {
|
|
3265
3277
|
_enum: [
|
|
@@ -3289,6 +3301,7 @@ export default {
|
|
|
3289
3301
|
'InternalError',
|
|
3290
3302
|
'UnableToGenerateVaultBitcoinPubkey',
|
|
3291
3303
|
'FundingChangeAlreadyScheduled',
|
|
3304
|
+
'InvalidBondSharingTerms',
|
|
3292
3305
|
'InvalidVaultName',
|
|
3293
3306
|
'PendingCosignsBeforeCollect',
|
|
3294
3307
|
'PendingOrphanedUtxoCosignsBeforeCollect',
|
|
@@ -3298,7 +3311,7 @@ export default {
|
|
|
3298
3311
|
],
|
|
3299
3312
|
},
|
|
3300
3313
|
/**
|
|
3301
|
-
*
|
|
3314
|
+
* Lookup414: pallet_bitcoin_locks::pallet::LockedBitcoin<T>
|
|
3302
3315
|
**/
|
|
3303
3316
|
PalletBitcoinLocksLockedBitcoin: {
|
|
3304
3317
|
vaultId: 'Compact<u32>',
|
|
@@ -3323,7 +3336,7 @@ export default {
|
|
|
3323
3336
|
createdAtArgonBlock: 'Compact<u32>',
|
|
3324
3337
|
},
|
|
3325
3338
|
/**
|
|
3326
|
-
*
|
|
3339
|
+
* Lookup417: pallet_bitcoin_locks::pallet::LockReleaseRequest<Balance>
|
|
3327
3340
|
**/
|
|
3328
3341
|
PalletBitcoinLocksLockReleaseRequest: {
|
|
3329
3342
|
utxoId: 'Compact<u64>',
|
|
@@ -3334,7 +3347,7 @@ export default {
|
|
|
3334
3347
|
redemptionAmount: 'Compact<u128>',
|
|
3335
3348
|
},
|
|
3336
3349
|
/**
|
|
3337
|
-
*
|
|
3350
|
+
* Lookup419: pallet_bitcoin_locks::pallet::OrphanedUtxo<BlockNumber>
|
|
3338
3351
|
**/
|
|
3339
3352
|
PalletBitcoinLocksOrphanedUtxo: {
|
|
3340
3353
|
utxoId: 'Compact<u64>',
|
|
@@ -3344,7 +3357,7 @@ export default {
|
|
|
3344
3357
|
cosignRequest: 'Option<PalletBitcoinLocksOrphanedUtxoCosignRequest>',
|
|
3345
3358
|
},
|
|
3346
3359
|
/**
|
|
3347
|
-
*
|
|
3360
|
+
* Lookup421: pallet_bitcoin_locks::pallet::OrphanedUtxoCosignRequest<BlockNumber>
|
|
3348
3361
|
**/
|
|
3349
3362
|
PalletBitcoinLocksOrphanedUtxoCosignRequest: {
|
|
3350
3363
|
bitcoinNetworkFee: 'u64',
|
|
@@ -3352,7 +3365,7 @@ export default {
|
|
|
3352
3365
|
createdAtArgonBlockNumber: 'u32',
|
|
3353
3366
|
},
|
|
3354
3367
|
/**
|
|
3355
|
-
*
|
|
3368
|
+
* Lookup428: pallet_bitcoin_locks::pallet::Error<T>
|
|
3356
3369
|
**/
|
|
3357
3370
|
PalletBitcoinLocksError: {
|
|
3358
3371
|
_enum: {
|
|
@@ -3394,7 +3407,7 @@ export default {
|
|
|
3394
3407
|
},
|
|
3395
3408
|
},
|
|
3396
3409
|
/**
|
|
3397
|
-
*
|
|
3410
|
+
* Lookup429: argon_primitives::vault::VaultError
|
|
3398
3411
|
**/
|
|
3399
3412
|
ArgonPrimitivesVaultVaultError: {
|
|
3400
3413
|
_enum: [
|
|
@@ -3414,7 +3427,7 @@ export default {
|
|
|
3414
3427
|
],
|
|
3415
3428
|
},
|
|
3416
3429
|
/**
|
|
3417
|
-
*
|
|
3430
|
+
* Lookup441: pallet_notaries::pallet::Error<T>
|
|
3418
3431
|
**/
|
|
3419
3432
|
PalletNotariesError: {
|
|
3420
3433
|
_enum: [
|
|
@@ -3430,7 +3443,7 @@ export default {
|
|
|
3430
3443
|
],
|
|
3431
3444
|
},
|
|
3432
3445
|
/**
|
|
3433
|
-
*
|
|
3446
|
+
* Lookup445: argon_primitives::notary::NotaryNotebookKeyDetails
|
|
3434
3447
|
**/
|
|
3435
3448
|
ArgonPrimitivesNotaryNotaryNotebookKeyDetails: {
|
|
3436
3449
|
notebookNumber: 'Compact<u32>',
|
|
@@ -3440,7 +3453,7 @@ export default {
|
|
|
3440
3453
|
parentSecret: 'Option<H256>',
|
|
3441
3454
|
},
|
|
3442
3455
|
/**
|
|
3443
|
-
*
|
|
3456
|
+
* Lookup448: pallet_notebook::pallet::Error<T>
|
|
3444
3457
|
**/
|
|
3445
3458
|
PalletNotebookError: {
|
|
3446
3459
|
_enum: [
|
|
@@ -3462,7 +3475,7 @@ export default {
|
|
|
3462
3475
|
],
|
|
3463
3476
|
},
|
|
3464
3477
|
/**
|
|
3465
|
-
*
|
|
3478
|
+
* Lookup449: pallet_localchain_transfer::QueuedTransferOut<sp_core::crypto::AccountId32, Balance>
|
|
3466
3479
|
**/
|
|
3467
3480
|
PalletLocalchainTransferQueuedTransferOut: {
|
|
3468
3481
|
accountId: 'AccountId32',
|
|
@@ -3471,11 +3484,11 @@ export default {
|
|
|
3471
3484
|
notaryId: 'u32',
|
|
3472
3485
|
},
|
|
3473
3486
|
/**
|
|
3474
|
-
*
|
|
3487
|
+
* Lookup451: frame_support::PalletId
|
|
3475
3488
|
**/
|
|
3476
3489
|
FrameSupportPalletId: '[u8;8]',
|
|
3477
3490
|
/**
|
|
3478
|
-
*
|
|
3491
|
+
* Lookup452: pallet_localchain_transfer::pallet::Error<T>
|
|
3479
3492
|
**/
|
|
3480
3493
|
PalletLocalchainTransferError: {
|
|
3481
3494
|
_enum: [
|
|
@@ -3490,7 +3503,7 @@ export default {
|
|
|
3490
3503
|
],
|
|
3491
3504
|
},
|
|
3492
3505
|
/**
|
|
3493
|
-
*
|
|
3506
|
+
* Lookup456: argon_primitives::notary::NotaryNotebookVoteDigestDetails
|
|
3494
3507
|
**/
|
|
3495
3508
|
ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails: {
|
|
3496
3509
|
notaryId: 'Compact<u32>',
|
|
@@ -3500,13 +3513,13 @@ export default {
|
|
|
3500
3513
|
blockVotingPower: 'Compact<u128>',
|
|
3501
3514
|
},
|
|
3502
3515
|
/**
|
|
3503
|
-
*
|
|
3516
|
+
* Lookup461: pallet_block_seal_spec::pallet::Error<T>
|
|
3504
3517
|
**/
|
|
3505
3518
|
PalletBlockSealSpecError: {
|
|
3506
3519
|
_enum: ['MaxNotebooksAtTickExceeded'],
|
|
3507
3520
|
},
|
|
3508
3521
|
/**
|
|
3509
|
-
*
|
|
3522
|
+
* Lookup463: pallet_domains::pallet::Error<T>
|
|
3510
3523
|
**/
|
|
3511
3524
|
PalletDomainsError: {
|
|
3512
3525
|
_enum: [
|
|
@@ -3518,7 +3531,7 @@ export default {
|
|
|
3518
3531
|
],
|
|
3519
3532
|
},
|
|
3520
3533
|
/**
|
|
3521
|
-
*
|
|
3534
|
+
* Lookup465: pallet_price_index::CpiMeasurementBucket
|
|
3522
3535
|
**/
|
|
3523
3536
|
PalletPriceIndexCpiMeasurementBucket: {
|
|
3524
3537
|
tickRange: '(u64,u64)',
|
|
@@ -3526,7 +3539,15 @@ export default {
|
|
|
3526
3539
|
measurementsCount: 'u32',
|
|
3527
3540
|
},
|
|
3528
3541
|
/**
|
|
3529
|
-
*
|
|
3542
|
+
* Lookup469: pallet_price_index::ArgonotAverageFrameAccumulator<Balance>
|
|
3543
|
+
**/
|
|
3544
|
+
PalletPriceIndexArgonotAverageFrameAccumulator: {
|
|
3545
|
+
frameId: 'Compact<u64>',
|
|
3546
|
+
totalMicrogonsPerArgonot: 'Compact<u128>',
|
|
3547
|
+
sampleCount: 'Compact<u32>',
|
|
3548
|
+
},
|
|
3549
|
+
/**
|
|
3550
|
+
* Lookup470: pallet_price_index::pallet::Error<T>
|
|
3530
3551
|
**/
|
|
3531
3552
|
PalletPriceIndexError: {
|
|
3532
3553
|
_enum: [
|
|
@@ -3537,7 +3558,7 @@ export default {
|
|
|
3537
3558
|
],
|
|
3538
3559
|
},
|
|
3539
3560
|
/**
|
|
3540
|
-
*
|
|
3561
|
+
* Lookup471: pallet_grandpa::StoredState<N>
|
|
3541
3562
|
**/
|
|
3542
3563
|
PalletGrandpaStoredState: {
|
|
3543
3564
|
_enum: {
|
|
@@ -3554,7 +3575,7 @@ export default {
|
|
|
3554
3575
|
},
|
|
3555
3576
|
},
|
|
3556
3577
|
/**
|
|
3557
|
-
*
|
|
3578
|
+
* Lookup472: pallet_grandpa::StoredPendingChange<N, Limit>
|
|
3558
3579
|
**/
|
|
3559
3580
|
PalletGrandpaStoredPendingChange: {
|
|
3560
3581
|
scheduledAt: 'u32',
|
|
@@ -3563,7 +3584,7 @@ export default {
|
|
|
3563
3584
|
forced: 'Option<u32>',
|
|
3564
3585
|
},
|
|
3565
3586
|
/**
|
|
3566
|
-
*
|
|
3587
|
+
* Lookup474: pallet_grandpa::pallet::Error<T>
|
|
3567
3588
|
**/
|
|
3568
3589
|
PalletGrandpaError: {
|
|
3569
3590
|
_enum: [
|
|
@@ -3577,7 +3598,7 @@ export default {
|
|
|
3577
3598
|
],
|
|
3578
3599
|
},
|
|
3579
3600
|
/**
|
|
3580
|
-
*
|
|
3601
|
+
* Lookup475: argon_primitives::providers::BlockSealerInfo<sp_core::crypto::AccountId32, argon_primitives::block_seal::app::Public>
|
|
3581
3602
|
**/
|
|
3582
3603
|
ArgonPrimitivesProvidersBlockSealerInfo: {
|
|
3583
3604
|
blockAuthorAccountId: 'AccountId32',
|
|
@@ -3585,7 +3606,7 @@ export default {
|
|
|
3585
3606
|
blockSealAuthority: 'Option<ArgonPrimitivesBlockSealAppPublic>',
|
|
3586
3607
|
},
|
|
3587
3608
|
/**
|
|
3588
|
-
*
|
|
3609
|
+
* Lookup477: pallet_block_seal::pallet::Error<T>
|
|
3589
3610
|
**/
|
|
3590
3611
|
PalletBlockSealError: {
|
|
3591
3612
|
_enum: [
|
|
@@ -3613,11 +3634,11 @@ export default {
|
|
|
3613
3634
|
],
|
|
3614
3635
|
},
|
|
3615
3636
|
/**
|
|
3616
|
-
*
|
|
3637
|
+
* Lookup481: pallet_block_rewards::pallet::Error<T>
|
|
3617
3638
|
**/
|
|
3618
3639
|
PalletBlockRewardsError: 'Null',
|
|
3619
3640
|
/**
|
|
3620
|
-
*
|
|
3641
|
+
* Lookup487: pallet_mint::pallet::MintAction<B>
|
|
3621
3642
|
**/
|
|
3622
3643
|
PalletMintMintAction: {
|
|
3623
3644
|
argonBurned: 'u128',
|
|
@@ -3625,13 +3646,13 @@ export default {
|
|
|
3625
3646
|
bitcoinMinted: 'u128',
|
|
3626
3647
|
},
|
|
3627
3648
|
/**
|
|
3628
|
-
*
|
|
3649
|
+
* Lookup488: pallet_mint::pallet::Error<T>
|
|
3629
3650
|
**/
|
|
3630
3651
|
PalletMintError: {
|
|
3631
3652
|
_enum: ['TooManyPendingMints'],
|
|
3632
3653
|
},
|
|
3633
3654
|
/**
|
|
3634
|
-
*
|
|
3655
|
+
* Lookup490: pallet_balances::types::BalanceLock<Balance>
|
|
3635
3656
|
**/
|
|
3636
3657
|
PalletBalancesBalanceLock: {
|
|
3637
3658
|
id: '[u8;8]',
|
|
@@ -3639,34 +3660,34 @@ export default {
|
|
|
3639
3660
|
reasons: 'PalletBalancesReasons',
|
|
3640
3661
|
},
|
|
3641
3662
|
/**
|
|
3642
|
-
*
|
|
3663
|
+
* Lookup491: pallet_balances::types::Reasons
|
|
3643
3664
|
**/
|
|
3644
3665
|
PalletBalancesReasons: {
|
|
3645
3666
|
_enum: ['Fee', 'Misc', 'All'],
|
|
3646
3667
|
},
|
|
3647
3668
|
/**
|
|
3648
|
-
*
|
|
3669
|
+
* Lookup494: pallet_balances::types::ReserveData<ReserveIdentifier, Balance>
|
|
3649
3670
|
**/
|
|
3650
3671
|
PalletBalancesReserveData: {
|
|
3651
3672
|
id: '[u8;8]',
|
|
3652
3673
|
amount: 'u128',
|
|
3653
3674
|
},
|
|
3654
3675
|
/**
|
|
3655
|
-
*
|
|
3676
|
+
* Lookup497: frame_support::traits::tokens::misc::IdAmount<argon_runtime::RuntimeHoldReason, Balance>
|
|
3656
3677
|
**/
|
|
3657
3678
|
FrameSupportTokensMiscIdAmountRuntimeHoldReason: {
|
|
3658
3679
|
id: 'ArgonRuntimeRuntimeHoldReason',
|
|
3659
3680
|
amount: 'u128',
|
|
3660
3681
|
},
|
|
3661
3682
|
/**
|
|
3662
|
-
*
|
|
3683
|
+
* Lookup500: frame_support::traits::tokens::misc::IdAmount<argon_runtime::RuntimeFreezeReason, Balance>
|
|
3663
3684
|
**/
|
|
3664
3685
|
FrameSupportTokensMiscIdAmountRuntimeFreezeReason: {
|
|
3665
3686
|
id: 'ArgonRuntimeRuntimeFreezeReason',
|
|
3666
3687
|
amount: 'u128',
|
|
3667
3688
|
},
|
|
3668
3689
|
/**
|
|
3669
|
-
*
|
|
3690
|
+
* Lookup501: argon_runtime::RuntimeFreezeReason
|
|
3670
3691
|
**/
|
|
3671
3692
|
ArgonRuntimeRuntimeFreezeReason: {
|
|
3672
3693
|
_enum: {
|
|
@@ -3693,13 +3714,13 @@ export default {
|
|
|
3693
3714
|
},
|
|
3694
3715
|
},
|
|
3695
3716
|
/**
|
|
3696
|
-
*
|
|
3717
|
+
* Lookup502: pallet_block_rewards::pallet::FreezeReason
|
|
3697
3718
|
**/
|
|
3698
3719
|
PalletBlockRewardsFreezeReason: {
|
|
3699
3720
|
_enum: ['MaturationPeriod'],
|
|
3700
3721
|
},
|
|
3701
3722
|
/**
|
|
3702
|
-
*
|
|
3723
|
+
* Lookup504: pallet_balances::pallet::Error<T, I>
|
|
3703
3724
|
**/
|
|
3704
3725
|
PalletBalancesError: {
|
|
3705
3726
|
_enum: [
|
|
@@ -3718,68 +3739,69 @@ export default {
|
|
|
3718
3739
|
],
|
|
3719
3740
|
},
|
|
3720
3741
|
/**
|
|
3721
|
-
*
|
|
3742
|
+
* Lookup506: pallet_tx_pause::pallet::Error<T>
|
|
3722
3743
|
**/
|
|
3723
3744
|
PalletTxPauseError: {
|
|
3724
3745
|
_enum: ['IsPaused', 'IsUnpaused', 'Unpausable', 'NotFound'],
|
|
3725
3746
|
},
|
|
3726
3747
|
/**
|
|
3727
|
-
*
|
|
3748
|
+
* Lookup507: pallet_transaction_payment::Releases
|
|
3728
3749
|
**/
|
|
3729
3750
|
PalletTransactionPaymentReleases: {
|
|
3730
3751
|
_enum: ['V1Ancient', 'V2'],
|
|
3731
3752
|
},
|
|
3732
3753
|
/**
|
|
3733
|
-
*
|
|
3754
|
+
* Lookup508: frame_support::traits::storage::NoDrop<frame_support::traits::tokens::fungible::imbalance::Imbalance<B, OnDrop, OppositeOnDrop>>
|
|
3734
3755
|
**/
|
|
3735
3756
|
FrameSupportStorageNoDrop: 'FrameSupportTokensFungibleImbalance',
|
|
3736
3757
|
/**
|
|
3737
|
-
*
|
|
3758
|
+
* Lookup509: frame_support::traits::tokens::fungible::imbalance::Imbalance<B, OnDrop, OppositeOnDrop>
|
|
3738
3759
|
**/
|
|
3739
3760
|
FrameSupportTokensFungibleImbalance: {
|
|
3740
3761
|
amount: 'u128',
|
|
3741
3762
|
},
|
|
3742
3763
|
/**
|
|
3743
|
-
*
|
|
3764
|
+
* Lookup510: pallet_utility::pallet::Error<T>
|
|
3744
3765
|
**/
|
|
3745
3766
|
PalletUtilityError: {
|
|
3746
3767
|
_enum: ['TooManyCalls'],
|
|
3747
3768
|
},
|
|
3748
3769
|
/**
|
|
3749
|
-
*
|
|
3770
|
+
* Lookup511: pallet_sudo::pallet::Error<T>
|
|
3750
3771
|
**/
|
|
3751
3772
|
PalletSudoError: {
|
|
3752
3773
|
_enum: ['RequireSudo'],
|
|
3753
3774
|
},
|
|
3754
3775
|
/**
|
|
3755
|
-
*
|
|
3776
|
+
* Lookup512: pallet_treasury::pallet::FrameVaultCapital<T>
|
|
3756
3777
|
**/
|
|
3757
3778
|
PalletTreasuryFrameVaultCapital: {
|
|
3758
3779
|
frameId: 'Compact<u64>',
|
|
3759
3780
|
vaults: 'BTreeMap<u32, PalletTreasuryVaultCapital>',
|
|
3760
3781
|
},
|
|
3761
3782
|
/**
|
|
3762
|
-
*
|
|
3783
|
+
* Lookup514: pallet_treasury::pallet::VaultCapital<T>
|
|
3763
3784
|
**/
|
|
3764
3785
|
PalletTreasuryVaultCapital: {
|
|
3765
3786
|
bondLotAllocations: 'Vec<PalletTreasuryBondLotAllocation>',
|
|
3766
3787
|
eligibleBonds: 'Compact<u32>',
|
|
3767
|
-
vaultSharingPercent: 'Compact<Permill>',
|
|
3768
3788
|
},
|
|
3769
3789
|
/**
|
|
3770
|
-
*
|
|
3790
|
+
* Lookup516: pallet_treasury::pallet::BondLotAllocation
|
|
3771
3791
|
**/
|
|
3772
3792
|
PalletTreasuryBondLotAllocation: {
|
|
3773
3793
|
bondLotId: 'Compact<u64>',
|
|
3774
3794
|
prorata: 'u128',
|
|
3775
3795
|
},
|
|
3776
3796
|
/**
|
|
3777
|
-
*
|
|
3797
|
+
* Lookup521: pallet_treasury::pallet::BondLot<T>
|
|
3778
3798
|
**/
|
|
3779
3799
|
PalletTreasuryBondLot: {
|
|
3780
3800
|
owner: 'AccountId32',
|
|
3781
3801
|
vaultId: 'Compact<u32>',
|
|
3782
3802
|
bonds: 'Compact<u32>',
|
|
3803
|
+
sharingPercent: 'Compact<Permill>',
|
|
3804
|
+
bonusPercent: 'Compact<Permill>',
|
|
3783
3805
|
createdFrameId: 'Compact<u64>',
|
|
3784
3806
|
participatedFrames: 'Compact<u32>',
|
|
3785
3807
|
lastFrameEarningsFrameId: 'Option<u64>',
|
|
@@ -3789,14 +3811,14 @@ export default {
|
|
|
3789
3811
|
releaseReason: 'Option<PalletTreasuryBondReleaseReason>',
|
|
3790
3812
|
},
|
|
3791
3813
|
/**
|
|
3792
|
-
*
|
|
3814
|
+
* Lookup526: pallet_treasury::pallet::BondLotSummary
|
|
3793
3815
|
**/
|
|
3794
3816
|
PalletTreasuryBondLotSummary: {
|
|
3795
3817
|
bondLotId: 'Compact<u64>',
|
|
3796
3818
|
bonds: 'Compact<u32>',
|
|
3797
3819
|
},
|
|
3798
3820
|
/**
|
|
3799
|
-
*
|
|
3821
|
+
* Lookup529: pallet_treasury::pallet::Error<T>
|
|
3800
3822
|
**/
|
|
3801
3823
|
PalletTreasuryError: {
|
|
3802
3824
|
_enum: [
|
|
@@ -3811,16 +3833,21 @@ export default {
|
|
|
3811
3833
|
'BondLotAlreadyReleasing',
|
|
3812
3834
|
'BondPurchaseAboveSecurity',
|
|
3813
3835
|
'ActiveBondAmountBelowEncumberedBacking',
|
|
3836
|
+
'BonusApprovalWrongVault',
|
|
3837
|
+
'BonusApprovalWrongAccount',
|
|
3838
|
+
'BonusApprovalExpired',
|
|
3839
|
+
'BonusApprovalExistingBondLot',
|
|
3840
|
+
'InvalidBonusApprovalSignature',
|
|
3814
3841
|
],
|
|
3815
3842
|
},
|
|
3816
3843
|
/**
|
|
3817
|
-
*
|
|
3844
|
+
* Lookup530: pallet_fee_control::pallet::Error<T>
|
|
3818
3845
|
**/
|
|
3819
3846
|
PalletFeeControlError: {
|
|
3820
3847
|
_enum: ['SponsoredFeeTooHigh'],
|
|
3821
3848
|
},
|
|
3822
3849
|
/**
|
|
3823
|
-
*
|
|
3850
|
+
* Lookup531: pallet_operational_accounts::pallet::OperationalAccount<T>
|
|
3824
3851
|
**/
|
|
3825
3852
|
PalletOperationalAccountsOperationalAccount: {
|
|
3826
3853
|
vaultAccount: 'AccountId32',
|
|
@@ -3844,14 +3871,14 @@ export default {
|
|
|
3844
3871
|
isOperational: 'bool',
|
|
3845
3872
|
},
|
|
3846
3873
|
/**
|
|
3847
|
-
*
|
|
3874
|
+
* Lookup533: pallet_operational_accounts::pallet::RewardsConfig<Balance>
|
|
3848
3875
|
**/
|
|
3849
3876
|
PalletOperationalAccountsRewardsConfig: {
|
|
3850
3877
|
operationalReferralReward: 'Compact<u128>',
|
|
3851
3878
|
referralBonusReward: 'Compact<u128>',
|
|
3852
3879
|
},
|
|
3853
3880
|
/**
|
|
3854
|
-
*
|
|
3881
|
+
* Lookup535: pallet_operational_accounts::pallet::Error<T>
|
|
3855
3882
|
**/
|
|
3856
3883
|
PalletOperationalAccountsError: {
|
|
3857
3884
|
_enum: [
|
|
@@ -3875,13 +3902,13 @@ export default {
|
|
|
3875
3902
|
],
|
|
3876
3903
|
},
|
|
3877
3904
|
/**
|
|
3878
|
-
*
|
|
3905
|
+
* Lookup536: pallet_ethereum_verifier::types::FinalizedBeaconHeaderState
|
|
3879
3906
|
**/
|
|
3880
3907
|
PalletEthereumVerifierFinalizedBeaconHeaderState: {
|
|
3881
3908
|
slot: 'Compact<u64>',
|
|
3882
3909
|
},
|
|
3883
3910
|
/**
|
|
3884
|
-
*
|
|
3911
|
+
* Lookup537: pallet_ethereum_verifier::types::ExecutionHeaderAnchor
|
|
3885
3912
|
**/
|
|
3886
3913
|
PalletEthereumVerifierExecutionHeaderAnchor: {
|
|
3887
3914
|
blockNumber: 'Compact<u64>',
|
|
@@ -3892,7 +3919,7 @@ export default {
|
|
|
3892
3919
|
receiptsRoot: 'H256',
|
|
3893
3920
|
},
|
|
3894
3921
|
/**
|
|
3895
|
-
*
|
|
3922
|
+
* Lookup538: pallet_ethereum_verifier::types::SyncCommitteePrepared
|
|
3896
3923
|
**/
|
|
3897
3924
|
PalletEthereumVerifierSyncCommitteePrepared: {
|
|
3898
3925
|
root: 'H256',
|
|
@@ -3900,13 +3927,13 @@ export default {
|
|
|
3900
3927
|
aggregatePubkey: 'SnowbridgeMilagroBlsKeysPublicKey',
|
|
3901
3928
|
},
|
|
3902
3929
|
/**
|
|
3903
|
-
*
|
|
3930
|
+
* Lookup540: snowbridge_milagro_bls::keys::PublicKey
|
|
3904
3931
|
**/
|
|
3905
3932
|
SnowbridgeMilagroBlsKeysPublicKey: {
|
|
3906
3933
|
point: 'SnowbridgeAmclBls381Ecp',
|
|
3907
3934
|
},
|
|
3908
3935
|
/**
|
|
3909
|
-
*
|
|
3936
|
+
* Lookup541: snowbridge_amcl::bls381::ecp::ECP
|
|
3910
3937
|
**/
|
|
3911
3938
|
SnowbridgeAmclBls381Ecp: {
|
|
3912
3939
|
x: 'SnowbridgeAmclBls381Fp',
|
|
@@ -3914,26 +3941,26 @@ export default {
|
|
|
3914
3941
|
z: 'SnowbridgeAmclBls381Fp',
|
|
3915
3942
|
},
|
|
3916
3943
|
/**
|
|
3917
|
-
*
|
|
3944
|
+
* Lookup542: snowbridge_amcl::bls381::fp::FP
|
|
3918
3945
|
**/
|
|
3919
3946
|
SnowbridgeAmclBls381Fp: {
|
|
3920
3947
|
x: 'SnowbridgeAmclBls381Big',
|
|
3921
3948
|
xes: 'i32',
|
|
3922
3949
|
},
|
|
3923
3950
|
/**
|
|
3924
|
-
*
|
|
3951
|
+
* Lookup543: snowbridge_amcl::bls381::big::Big
|
|
3925
3952
|
**/
|
|
3926
3953
|
SnowbridgeAmclBls381Big: {
|
|
3927
3954
|
w: '[i32;14]',
|
|
3928
3955
|
},
|
|
3929
3956
|
/**
|
|
3930
|
-
*
|
|
3957
|
+
* Lookup547: argon_primitives::ethereum::EthereumBeaconPreset
|
|
3931
3958
|
**/
|
|
3932
3959
|
ArgonPrimitivesEthereumEthereumBeaconPreset: {
|
|
3933
3960
|
_enum: ['Mainnet', 'Minimal'],
|
|
3934
3961
|
},
|
|
3935
3962
|
/**
|
|
3936
|
-
*
|
|
3963
|
+
* Lookup548: pallet_ethereum_verifier::pallet::Error<T>
|
|
3937
3964
|
**/
|
|
3938
3965
|
PalletEthereumVerifierError: {
|
|
3939
3966
|
_enum: [
|
|
@@ -3964,7 +3991,7 @@ export default {
|
|
|
3964
3991
|
],
|
|
3965
3992
|
},
|
|
3966
3993
|
/**
|
|
3967
|
-
*
|
|
3994
|
+
* Lookup550: pallet_crosschain_transfer::pallet::GlobalIssuanceCouncil<T>
|
|
3968
3995
|
**/
|
|
3969
3996
|
PalletCrosschainTransferGlobalIssuanceCouncil: {
|
|
3970
3997
|
epochMicrogonsPerArgonot: 'u128',
|
|
@@ -3972,7 +3999,7 @@ export default {
|
|
|
3972
3999
|
totalWeight: 'u128',
|
|
3973
4000
|
},
|
|
3974
4001
|
/**
|
|
3975
|
-
*
|
|
4002
|
+
* Lookup552: pallet_crosschain_transfer::pallet::GlobalIssuanceCouncilMember<T>
|
|
3976
4003
|
**/
|
|
3977
4004
|
PalletCrosschainTransferGlobalIssuanceCouncilMember: {
|
|
3978
4005
|
accountId: 'AccountId32',
|
|
@@ -3980,7 +4007,7 @@ export default {
|
|
|
3980
4007
|
weight: 'u128',
|
|
3981
4008
|
},
|
|
3982
4009
|
/**
|
|
3983
|
-
*
|
|
4010
|
+
* Lookup557: pallet_crosschain_transfer::pallet::CouncilApprovalQueueEntry<T>
|
|
3984
4011
|
**/
|
|
3985
4012
|
PalletCrosschainTransferCouncilApprovalQueueEntry: {
|
|
3986
4013
|
approvingCouncilHash: 'H256',
|
|
@@ -3993,7 +4020,7 @@ export default {
|
|
|
3993
4020
|
signatures: 'BTreeMap<H160, [u8;65]>',
|
|
3994
4021
|
},
|
|
3995
4022
|
/**
|
|
3996
|
-
*
|
|
4023
|
+
* Lookup562: pallet_crosschain_transfer::pallet::MintingAuthority<T>
|
|
3997
4024
|
**/
|
|
3998
4025
|
PalletCrosschainTransferMintingAuthority: {
|
|
3999
4026
|
accountId: 'AccountId32',
|
|
@@ -4011,13 +4038,13 @@ export default {
|
|
|
4011
4038
|
deactivationApprovalQueueNonce: 'Option<u64>',
|
|
4012
4039
|
},
|
|
4013
4040
|
/**
|
|
4014
|
-
*
|
|
4041
|
+
* Lookup563: pallet_crosschain_transfer::pallet::MintingAuthorityState
|
|
4015
4042
|
**/
|
|
4016
4043
|
PalletCrosschainTransferMintingAuthorityState: {
|
|
4017
4044
|
_enum: ['PendingActivation', 'Active', 'Deactivating'],
|
|
4018
4045
|
},
|
|
4019
4046
|
/**
|
|
4020
|
-
*
|
|
4047
|
+
* Lookup565: pallet_crosschain_transfer::transfer_out::TransferOutOfArgon<T>
|
|
4021
4048
|
**/
|
|
4022
4049
|
PalletCrosschainTransferTransferOutTransferOutOfArgon: {
|
|
4023
4050
|
argonAccountId: 'AccountId32',
|
|
@@ -4035,7 +4062,7 @@ export default {
|
|
|
4035
4062
|
state: 'PalletCrosschainTransferTransferOutTransferOutState',
|
|
4036
4063
|
},
|
|
4037
4064
|
/**
|
|
4038
|
-
*
|
|
4065
|
+
* Lookup567: pallet_crosschain_transfer::transfer_out::MintingAuthorityTransferReservation<T>
|
|
4039
4066
|
**/
|
|
4040
4067
|
PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation: {
|
|
4041
4068
|
microgonCollateral: 'u128',
|
|
@@ -4044,13 +4071,13 @@ export default {
|
|
|
4044
4071
|
signature: '[u8;65]',
|
|
4045
4072
|
},
|
|
4046
4073
|
/**
|
|
4047
|
-
*
|
|
4074
|
+
* Lookup571: pallet_crosschain_transfer::transfer_out::TransferOutState
|
|
4048
4075
|
**/
|
|
4049
4076
|
PalletCrosschainTransferTransferOutTransferOutState: {
|
|
4050
4077
|
_enum: ['Started', 'Ready'],
|
|
4051
4078
|
},
|
|
4052
4079
|
/**
|
|
4053
|
-
*
|
|
4080
|
+
* Lookup573: pallet_crosschain_transfer::transfer_out::PendingCollateralizationRequest<T>
|
|
4054
4081
|
**/
|
|
4055
4082
|
PalletCrosschainTransferTransferOutPendingCollateralizationRequest: {
|
|
4056
4083
|
transferId: 'H256',
|
|
@@ -4058,14 +4085,14 @@ export default {
|
|
|
4058
4085
|
remainingMintingAuthorityTip: 'u128',
|
|
4059
4086
|
},
|
|
4060
4087
|
/**
|
|
4061
|
-
*
|
|
4088
|
+
* Lookup575: pallet_crosschain_transfer::pallet::SourceChainCirculation<T>
|
|
4062
4089
|
**/
|
|
4063
4090
|
PalletCrosschainTransferSourceChainCirculation: {
|
|
4064
4091
|
argonCirculation: 'u128',
|
|
4065
4092
|
argonotCirculation: 'u128',
|
|
4066
4093
|
},
|
|
4067
4094
|
/**
|
|
4068
|
-
*
|
|
4095
|
+
* Lookup576: pallet_crosschain_transfer::pallet::Error<T>
|
|
4069
4096
|
**/
|
|
4070
4097
|
PalletCrosschainTransferError: {
|
|
4071
4098
|
_enum: [
|
|
@@ -4126,55 +4153,55 @@ export default {
|
|
|
4126
4153
|
],
|
|
4127
4154
|
},
|
|
4128
4155
|
/**
|
|
4129
|
-
*
|
|
4156
|
+
* Lookup579: frame_system::extensions::authorize_call::AuthorizeCall<T>
|
|
4130
4157
|
**/
|
|
4131
4158
|
FrameSystemExtensionsAuthorizeCall: 'Null',
|
|
4132
4159
|
/**
|
|
4133
|
-
*
|
|
4160
|
+
* Lookup580: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
|
|
4134
4161
|
**/
|
|
4135
4162
|
FrameSystemExtensionsCheckNonZeroSender: 'Null',
|
|
4136
4163
|
/**
|
|
4137
|
-
*
|
|
4164
|
+
* Lookup581: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
|
|
4138
4165
|
**/
|
|
4139
4166
|
FrameSystemExtensionsCheckSpecVersion: 'Null',
|
|
4140
4167
|
/**
|
|
4141
|
-
*
|
|
4168
|
+
* Lookup582: frame_system::extensions::check_tx_version::CheckTxVersion<T>
|
|
4142
4169
|
**/
|
|
4143
4170
|
FrameSystemExtensionsCheckTxVersion: 'Null',
|
|
4144
4171
|
/**
|
|
4145
|
-
*
|
|
4172
|
+
* Lookup583: frame_system::extensions::check_genesis::CheckGenesis<T>
|
|
4146
4173
|
**/
|
|
4147
4174
|
FrameSystemExtensionsCheckGenesis: 'Null',
|
|
4148
4175
|
/**
|
|
4149
|
-
*
|
|
4176
|
+
* Lookup586: frame_system::extensions::check_nonce::CheckNonce<T>
|
|
4150
4177
|
**/
|
|
4151
4178
|
FrameSystemExtensionsCheckNonce: 'Compact<u32>',
|
|
4152
4179
|
/**
|
|
4153
|
-
*
|
|
4180
|
+
* Lookup587: frame_system::extensions::check_weight::CheckWeight<T>
|
|
4154
4181
|
**/
|
|
4155
4182
|
FrameSystemExtensionsCheckWeight: 'Null',
|
|
4156
4183
|
/**
|
|
4157
|
-
*
|
|
4184
|
+
* Lookup588: pallet_transaction_payment::ChargeTransactionPayment<T>
|
|
4158
4185
|
**/
|
|
4159
4186
|
PalletTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
|
|
4160
4187
|
/**
|
|
4161
|
-
*
|
|
4188
|
+
* Lookup589: frame_metadata_hash_extension::CheckMetadataHash<T>
|
|
4162
4189
|
**/
|
|
4163
4190
|
FrameMetadataHashExtensionCheckMetadataHash: {
|
|
4164
4191
|
mode: 'FrameMetadataHashExtensionMode',
|
|
4165
4192
|
},
|
|
4166
4193
|
/**
|
|
4167
|
-
*
|
|
4194
|
+
* Lookup590: frame_metadata_hash_extension::Mode
|
|
4168
4195
|
**/
|
|
4169
4196
|
FrameMetadataHashExtensionMode: {
|
|
4170
4197
|
_enum: ['Disabled', 'Enabled'],
|
|
4171
4198
|
},
|
|
4172
4199
|
/**
|
|
4173
|
-
*
|
|
4200
|
+
* Lookup591: frame_system::extensions::weight_reclaim::WeightReclaim<T>
|
|
4174
4201
|
**/
|
|
4175
4202
|
FrameSystemExtensionsWeightReclaim: 'Null',
|
|
4176
4203
|
/**
|
|
4177
|
-
*
|
|
4204
|
+
* Lookup593: argon_runtime::Runtime
|
|
4178
4205
|
**/
|
|
4179
4206
|
ArgonRuntimeRuntime: 'Null',
|
|
4180
4207
|
};
|