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