@argonprotocol/mainchain 1.4.9-dev.fdaf0dc8 → 1.4.10-dev.459cb75f
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 +280 -280
- package/browser/index.js +119 -24
- package/browser/index.js.map +1 -1
- package/lib/index.cjs +142 -48
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +280 -280
- package/lib/index.d.ts +280 -280
- package/lib/index.js +118 -24
- package/lib/index.js.map +1 -1
- package/package.json +2 -2
- package/src/interfaces/augment-api-consts.ts +26 -25
- package/src/interfaces/augment-api-errors.ts +26 -30
- package/src/interfaces/augment-api-events.ts +29 -21
- package/src/interfaces/augment-api-query.ts +12 -2
- package/src/interfaces/augment-api-tx.ts +5 -12
- package/src/interfaces/lookup.ts +173 -170
- package/src/interfaces/registry.ts +2 -0
- package/src/interfaces/types-lookup.ts +189 -191
package/src/interfaces/lookup.ts
CHANGED
|
@@ -1450,16 +1450,12 @@ export default {
|
|
|
1450
1450
|
operationalAccount: 'AccountId32',
|
|
1451
1451
|
vaultAccount: 'AccountId32',
|
|
1452
1452
|
miningAccount: 'AccountId32',
|
|
1453
|
-
|
|
1453
|
+
upstreamAccount: 'Option<AccountId32>',
|
|
1454
1454
|
},
|
|
1455
|
-
|
|
1455
|
+
AccountMeetsMinimums: {
|
|
1456
1456
|
account: 'AccountId32',
|
|
1457
|
-
referrer: 'AccountId32',
|
|
1458
1457
|
},
|
|
1459
|
-
|
|
1460
|
-
account: 'AccountId32',
|
|
1461
|
-
},
|
|
1462
|
-
AccountWentOperational: {
|
|
1458
|
+
AccountOperationallyCertified: {
|
|
1463
1459
|
account: 'AccountId32',
|
|
1464
1460
|
},
|
|
1465
1461
|
OperationalRewardEarned: {
|
|
@@ -1474,13 +1470,13 @@ export default {
|
|
|
1474
1470
|
remainingPending: 'u128',
|
|
1475
1471
|
},
|
|
1476
1472
|
RewardsConfigUpdated: {
|
|
1477
|
-
|
|
1478
|
-
|
|
1473
|
+
operationalCertificationReward: 'u128',
|
|
1474
|
+
operationalCertificationBonusReward: 'u128',
|
|
1479
1475
|
},
|
|
1480
1476
|
OperationalProgressForced: {
|
|
1481
1477
|
account: 'AccountId32',
|
|
1482
1478
|
updateOperationalProgress: 'bool',
|
|
1483
|
-
|
|
1479
|
+
meetsMinimums: 'bool',
|
|
1484
1480
|
uniswapArgonTransfersInAmount: 'u128',
|
|
1485
1481
|
accountBitcoinAmount: 'u128',
|
|
1486
1482
|
accountVaultBondAmount: 'u128',
|
|
@@ -1489,7 +1485,7 @@ export default {
|
|
|
1489
1485
|
miningSeatCount: 'u32',
|
|
1490
1486
|
},
|
|
1491
1487
|
EncryptedServerUpdated: {
|
|
1492
|
-
|
|
1488
|
+
upstreamAccount: 'AccountId32',
|
|
1493
1489
|
downstreamAccount: 'AccountId32',
|
|
1494
1490
|
},
|
|
1495
1491
|
},
|
|
@@ -1498,7 +1494,7 @@ export default {
|
|
|
1498
1494
|
* Lookup126: argon_primitives::providers::OperationalRewardKind
|
|
1499
1495
|
**/
|
|
1500
1496
|
ArgonPrimitivesProvidersOperationalRewardKind: {
|
|
1501
|
-
_enum: ['
|
|
1497
|
+
_enum: ['Certification', 'OperationalCertificationBonus'],
|
|
1502
1498
|
},
|
|
1503
1499
|
/**
|
|
1504
1500
|
* Lookup127: pallet_ethereum_verifier::pallet::Event<T>
|
|
@@ -1546,6 +1542,11 @@ export default {
|
|
|
1546
1542
|
destinationChain: 'PalletCrosschainTransferSourceChain',
|
|
1547
1543
|
councilHash: 'H256',
|
|
1548
1544
|
},
|
|
1545
|
+
GlobalIssuanceCouncilRotationQueued: {
|
|
1546
|
+
destinationChain: 'PalletCrosschainTransferSourceChain',
|
|
1547
|
+
councilHash: 'H256',
|
|
1548
|
+
approvalQueueNonce: 'u64',
|
|
1549
|
+
},
|
|
1549
1550
|
CouncilSignerRegistered: {
|
|
1550
1551
|
destinationChain: 'PalletCrosschainTransferSourceChain',
|
|
1551
1552
|
accountId: 'AccountId32',
|
|
@@ -2697,12 +2698,10 @@ export default {
|
|
|
2697
2698
|
register: {
|
|
2698
2699
|
registration: 'PalletOperationalAccountsRegistration',
|
|
2699
2700
|
},
|
|
2700
|
-
|
|
2701
|
-
accountId: 'AccountId32',
|
|
2702
|
-
},
|
|
2701
|
+
__Unused1: 'Null',
|
|
2703
2702
|
set_reward_config: {
|
|
2704
|
-
|
|
2705
|
-
|
|
2703
|
+
operationalCertificationReward: 'u128',
|
|
2704
|
+
operationalCertificationBonusReward: 'u128',
|
|
2706
2705
|
},
|
|
2707
2706
|
force_set_progress: {
|
|
2708
2707
|
owner: 'AccountId32',
|
|
@@ -2738,7 +2737,7 @@ export default {
|
|
|
2738
2737
|
miningAccount: 'AccountId32',
|
|
2739
2738
|
vaultAccountProof: 'PalletOperationalAccountsAccountOwnershipProof',
|
|
2740
2739
|
miningAccountProof: 'PalletOperationalAccountsAccountOwnershipProof',
|
|
2741
|
-
|
|
2740
|
+
accessProof: 'Option<PalletOperationalAccountsUpstreamAccessProof>',
|
|
2742
2741
|
},
|
|
2743
2742
|
/**
|
|
2744
2743
|
* Lookup277: pallet_operational_accounts::pallet::OpaqueEncryptionPubkey
|
|
@@ -2751,7 +2750,14 @@ export default {
|
|
|
2751
2750
|
signature: 'SpRuntimeMultiSignature',
|
|
2752
2751
|
},
|
|
2753
2752
|
/**
|
|
2754
|
-
*
|
|
2753
|
+
* Lookup280: pallet_operational_accounts::pallet::UpstreamAccessProof<sp_core::crypto::AccountId32>
|
|
2754
|
+
**/
|
|
2755
|
+
PalletOperationalAccountsUpstreamAccessProof: {
|
|
2756
|
+
upstreamAccount: 'AccountId32',
|
|
2757
|
+
signature: 'SpRuntimeMultiSignature',
|
|
2758
|
+
},
|
|
2759
|
+
/**
|
|
2760
|
+
* Lookup281: pallet_operational_accounts::pallet::OperationalProgressPatch<Balance>
|
|
2755
2761
|
**/
|
|
2756
2762
|
PalletOperationalAccountsOperationalProgressPatch: {
|
|
2757
2763
|
uniswapArgonTransfersInAmount: 'Option<u128>',
|
|
@@ -2762,7 +2768,7 @@ export default {
|
|
|
2762
2768
|
miningSeatCount: 'Option<u32>',
|
|
2763
2769
|
},
|
|
2764
2770
|
/**
|
|
2765
|
-
*
|
|
2771
|
+
* Lookup283: pallet_ethereum_verifier::pallet::Call<T>
|
|
2766
2772
|
**/
|
|
2767
2773
|
PalletEthereumVerifierCall: {
|
|
2768
2774
|
_enum: {
|
|
@@ -2784,7 +2790,7 @@ export default {
|
|
|
2784
2790
|
},
|
|
2785
2791
|
},
|
|
2786
2792
|
/**
|
|
2787
|
-
*
|
|
2793
|
+
* Lookup284: pallet_ethereum_verifier::types::CheckpointUpdate
|
|
2788
2794
|
**/
|
|
2789
2795
|
PalletEthereumVerifierCheckpointUpdate: {
|
|
2790
2796
|
header: 'SnowbridgeBeaconPrimitivesBeaconHeader',
|
|
@@ -2794,7 +2800,7 @@ export default {
|
|
|
2794
2800
|
executionHeaderProof: 'PalletEthereumVerifierExecutionHeaderProof',
|
|
2795
2801
|
},
|
|
2796
2802
|
/**
|
|
2797
|
-
*
|
|
2803
|
+
* Lookup285: snowbridge_beacon_primitives::types::BeaconHeader
|
|
2798
2804
|
**/
|
|
2799
2805
|
SnowbridgeBeaconPrimitivesBeaconHeader: {
|
|
2800
2806
|
slot: 'u64',
|
|
@@ -2804,25 +2810,25 @@ export default {
|
|
|
2804
2810
|
bodyRoot: 'H256',
|
|
2805
2811
|
},
|
|
2806
2812
|
/**
|
|
2807
|
-
*
|
|
2813
|
+
* Lookup286: pallet_ethereum_verifier::types::SyncCommittee
|
|
2808
2814
|
**/
|
|
2809
2815
|
PalletEthereumVerifierSyncCommittee: {
|
|
2810
2816
|
pubkeys: 'Vec<SnowbridgeBeaconPrimitivesPublicKey>',
|
|
2811
2817
|
aggregatePubkey: 'SnowbridgeBeaconPrimitivesPublicKey',
|
|
2812
2818
|
},
|
|
2813
2819
|
/**
|
|
2814
|
-
*
|
|
2820
|
+
* Lookup288: snowbridge_beacon_primitives::types::PublicKey
|
|
2815
2821
|
**/
|
|
2816
2822
|
SnowbridgeBeaconPrimitivesPublicKey: '[u8;48]',
|
|
2817
2823
|
/**
|
|
2818
|
-
*
|
|
2824
|
+
* Lookup292: pallet_ethereum_verifier::types::ExecutionHeaderProof
|
|
2819
2825
|
**/
|
|
2820
2826
|
PalletEthereumVerifierExecutionHeaderProof: {
|
|
2821
2827
|
executionHeader: 'SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader',
|
|
2822
2828
|
executionBranch: 'Vec<H256>',
|
|
2823
2829
|
},
|
|
2824
2830
|
/**
|
|
2825
|
-
*
|
|
2831
|
+
* Lookup293: snowbridge_beacon_primitives::types::VersionedExecutionPayloadHeader
|
|
2826
2832
|
**/
|
|
2827
2833
|
SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader: {
|
|
2828
2834
|
_enum: {
|
|
@@ -2831,7 +2837,7 @@ export default {
|
|
|
2831
2837
|
},
|
|
2832
2838
|
},
|
|
2833
2839
|
/**
|
|
2834
|
-
*
|
|
2840
|
+
* Lookup294: snowbridge_beacon_primitives::types::ExecutionPayloadHeader
|
|
2835
2841
|
**/
|
|
2836
2842
|
SnowbridgeBeaconPrimitivesExecutionPayloadHeader: {
|
|
2837
2843
|
parentHash: 'H256',
|
|
@@ -2851,7 +2857,7 @@ export default {
|
|
|
2851
2857
|
withdrawalsRoot: 'H256',
|
|
2852
2858
|
},
|
|
2853
2859
|
/**
|
|
2854
|
-
*
|
|
2860
|
+
* Lookup295: snowbridge_beacon_primitives::types::deneb::ExecutionPayloadHeader
|
|
2855
2861
|
**/
|
|
2856
2862
|
SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader: {
|
|
2857
2863
|
parentHash: 'H256',
|
|
@@ -2873,7 +2879,7 @@ export default {
|
|
|
2873
2879
|
excessBlobGas: 'u64',
|
|
2874
2880
|
},
|
|
2875
2881
|
/**
|
|
2876
|
-
*
|
|
2882
|
+
* Lookup296: pallet_ethereum_verifier::types::ForkVersions
|
|
2877
2883
|
**/
|
|
2878
2884
|
PalletEthereumVerifierForkVersions: {
|
|
2879
2885
|
genesis: 'PalletEthereumVerifierFork',
|
|
@@ -2885,14 +2891,14 @@ export default {
|
|
|
2885
2891
|
fulu: 'PalletEthereumVerifierFork',
|
|
2886
2892
|
},
|
|
2887
2893
|
/**
|
|
2888
|
-
*
|
|
2894
|
+
* Lookup297: pallet_ethereum_verifier::types::Fork
|
|
2889
2895
|
**/
|
|
2890
2896
|
PalletEthereumVerifierFork: {
|
|
2891
2897
|
version: '[u8;4]',
|
|
2892
2898
|
epoch: 'Compact<u64>',
|
|
2893
2899
|
},
|
|
2894
2900
|
/**
|
|
2895
|
-
*
|
|
2901
|
+
* Lookup298: pallet_ethereum_verifier::types::Update
|
|
2896
2902
|
**/
|
|
2897
2903
|
PalletEthereumVerifierUpdate: {
|
|
2898
2904
|
attestedHeader: 'SnowbridgeBeaconPrimitivesBeaconHeader',
|
|
@@ -2904,25 +2910,25 @@ export default {
|
|
|
2904
2910
|
executionHeaderProof: 'PalletEthereumVerifierExecutionHeaderProof',
|
|
2905
2911
|
},
|
|
2906
2912
|
/**
|
|
2907
|
-
*
|
|
2913
|
+
* Lookup299: pallet_ethereum_verifier::types::SyncAggregate
|
|
2908
2914
|
**/
|
|
2909
2915
|
PalletEthereumVerifierSyncAggregate: {
|
|
2910
2916
|
syncCommitteeBits: 'Bytes',
|
|
2911
2917
|
syncCommitteeSignature: 'SnowbridgeBeaconPrimitivesSignature',
|
|
2912
2918
|
},
|
|
2913
2919
|
/**
|
|
2914
|
-
*
|
|
2920
|
+
* Lookup301: snowbridge_beacon_primitives::types::Signature
|
|
2915
2921
|
**/
|
|
2916
2922
|
SnowbridgeBeaconPrimitivesSignature: '[u8;96]',
|
|
2917
2923
|
/**
|
|
2918
|
-
*
|
|
2924
|
+
* Lookup304: pallet_ethereum_verifier::types::NextSyncCommitteeUpdate
|
|
2919
2925
|
**/
|
|
2920
2926
|
PalletEthereumVerifierNextSyncCommitteeUpdate: {
|
|
2921
2927
|
nextSyncCommittee: 'PalletEthereumVerifierSyncCommittee',
|
|
2922
2928
|
nextSyncCommitteeBranch: 'Vec<H256>',
|
|
2923
2929
|
},
|
|
2924
2930
|
/**
|
|
2925
|
-
*
|
|
2931
|
+
* Lookup305: pallet_crosschain_transfer::pallet::Call<T>
|
|
2926
2932
|
**/
|
|
2927
2933
|
PalletCrosschainTransferCall: {
|
|
2928
2934
|
_enum: {
|
|
@@ -2988,7 +2994,7 @@ export default {
|
|
|
2988
2994
|
},
|
|
2989
2995
|
},
|
|
2990
2996
|
/**
|
|
2991
|
-
*
|
|
2997
|
+
* Lookup306: pallet_crosschain_transfer::pallet::ChainConfig
|
|
2992
2998
|
**/
|
|
2993
2999
|
PalletCrosschainTransferChainConfig: {
|
|
2994
3000
|
_enum: {
|
|
@@ -3001,7 +3007,7 @@ export default {
|
|
|
3001
3007
|
},
|
|
3002
3008
|
},
|
|
3003
3009
|
/**
|
|
3004
|
-
*
|
|
3010
|
+
* Lookup308: pallet_crosschain_transfer::pallet::MintingAuthorityActivationRepaymentPricing<T>
|
|
3005
3011
|
**/
|
|
3006
3012
|
PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing: {
|
|
3007
3013
|
activationGasCost: 'Compact<u128>',
|
|
@@ -3010,27 +3016,27 @@ export default {
|
|
|
3010
3016
|
estimatedMicrogonsPerEth: 'u128',
|
|
3011
3017
|
},
|
|
3012
3018
|
/**
|
|
3013
|
-
*
|
|
3019
|
+
* Lookup311: argon_primitives::ethereum::EthereumReceiptLogProofBatch<MaxProofBlocks, MaxReceiptLogs>
|
|
3014
3020
|
**/
|
|
3015
3021
|
ArgonPrimitivesEthereumEthereumReceiptLogProofBatch: {
|
|
3016
3022
|
executionBlockProof: 'ArgonPrimitivesEthereumEthereumExecutionBlockProof',
|
|
3017
3023
|
blocks: 'Vec<ArgonPrimitivesEthereumEthereumReceiptLogProofBlock>',
|
|
3018
3024
|
},
|
|
3019
3025
|
/**
|
|
3020
|
-
*
|
|
3026
|
+
* Lookup312: argon_primitives::ethereum::EthereumExecutionBlockProof
|
|
3021
3027
|
**/
|
|
3022
3028
|
ArgonPrimitivesEthereumEthereumExecutionBlockProof: {
|
|
3023
3029
|
anchorBlockHash: 'H256',
|
|
3024
3030
|
targetToAnchorHeaderChain: 'Vec<ArgonPrimitivesEthereumEthereumExecutionHeader>',
|
|
3025
3031
|
},
|
|
3026
3032
|
/**
|
|
3027
|
-
*
|
|
3033
|
+
* Lookup314: argon_primitives::ethereum::EthereumExecutionHeader
|
|
3028
3034
|
**/
|
|
3029
3035
|
ArgonPrimitivesEthereumEthereumExecutionHeader: {
|
|
3030
3036
|
rlp: 'Bytes',
|
|
3031
3037
|
},
|
|
3032
3038
|
/**
|
|
3033
|
-
*
|
|
3039
|
+
* Lookup318: argon_primitives::ethereum::EthereumReceiptLogProofBlock<MaxReceiptLogs>
|
|
3034
3040
|
**/
|
|
3035
3041
|
ArgonPrimitivesEthereumEthereumReceiptLogProofBlock: {
|
|
3036
3042
|
targetBlockNumber: 'Compact<u64>',
|
|
@@ -3038,28 +3044,28 @@ export default {
|
|
|
3038
3044
|
receiptLogs: 'Vec<ArgonPrimitivesEthereumEthereumReceiptLog>',
|
|
3039
3045
|
},
|
|
3040
3046
|
/**
|
|
3041
|
-
*
|
|
3047
|
+
* Lookup319: argon_primitives::ethereum::EthereumCombinedReceiptProof
|
|
3042
3048
|
**/
|
|
3043
3049
|
ArgonPrimitivesEthereumEthereumCombinedReceiptProof: {
|
|
3044
3050
|
nodes: 'Vec<Bytes>',
|
|
3045
3051
|
receipts: 'Vec<ArgonPrimitivesEthereumEthereumReceiptProofReceipt>',
|
|
3046
3052
|
},
|
|
3047
3053
|
/**
|
|
3048
|
-
*
|
|
3054
|
+
* Lookup323: argon_primitives::ethereum::EthereumReceiptProofReceipt
|
|
3049
3055
|
**/
|
|
3050
3056
|
ArgonPrimitivesEthereumEthereumReceiptProofReceipt: {
|
|
3051
3057
|
transactionIndex: 'Compact<u64>',
|
|
3052
3058
|
nodeIndexes: 'Vec<u16>',
|
|
3053
3059
|
},
|
|
3054
3060
|
/**
|
|
3055
|
-
*
|
|
3061
|
+
* Lookup328: argon_primitives::ethereum::EthereumReceiptLog
|
|
3056
3062
|
**/
|
|
3057
3063
|
ArgonPrimitivesEthereumEthereumReceiptLog: {
|
|
3058
3064
|
transactionIndex: 'Compact<u64>',
|
|
3059
3065
|
eventLog: 'ArgonPrimitivesEthereumEthereumLog',
|
|
3060
3066
|
},
|
|
3061
3067
|
/**
|
|
3062
|
-
*
|
|
3068
|
+
* Lookup329: argon_primitives::ethereum::EthereumLog
|
|
3063
3069
|
**/
|
|
3064
3070
|
ArgonPrimitivesEthereumEthereumLog: {
|
|
3065
3071
|
address: 'H160',
|
|
@@ -3067,7 +3073,7 @@ export default {
|
|
|
3067
3073
|
data: 'Bytes',
|
|
3068
3074
|
},
|
|
3069
3075
|
/**
|
|
3070
|
-
*
|
|
3076
|
+
* Lookup335: pallet_multisig::pallet::Error<T>
|
|
3071
3077
|
**/
|
|
3072
3078
|
PalletMultisigError: {
|
|
3073
3079
|
_enum: [
|
|
@@ -3088,7 +3094,7 @@ export default {
|
|
|
3088
3094
|
],
|
|
3089
3095
|
},
|
|
3090
3096
|
/**
|
|
3091
|
-
*
|
|
3097
|
+
* Lookup338: pallet_proxy::ProxyDefinition<sp_core::crypto::AccountId32, argon_runtime::ProxyType, BlockNumber>
|
|
3092
3098
|
**/
|
|
3093
3099
|
PalletProxyProxyDefinition: {
|
|
3094
3100
|
delegate: 'AccountId32',
|
|
@@ -3096,7 +3102,7 @@ export default {
|
|
|
3096
3102
|
delay: 'u32',
|
|
3097
3103
|
},
|
|
3098
3104
|
/**
|
|
3099
|
-
*
|
|
3105
|
+
* Lookup342: pallet_proxy::Announcement<sp_core::crypto::AccountId32, primitive_types::H256, BlockNumber>
|
|
3100
3106
|
**/
|
|
3101
3107
|
PalletProxyAnnouncement: {
|
|
3102
3108
|
real: 'AccountId32',
|
|
@@ -3104,7 +3110,7 @@ export default {
|
|
|
3104
3110
|
height: 'u32',
|
|
3105
3111
|
},
|
|
3106
3112
|
/**
|
|
3107
|
-
*
|
|
3113
|
+
* Lookup344: pallet_proxy::pallet::Error<T>
|
|
3108
3114
|
**/
|
|
3109
3115
|
PalletProxyError: {
|
|
3110
3116
|
_enum: [
|
|
@@ -3119,18 +3125,18 @@ export default {
|
|
|
3119
3125
|
],
|
|
3120
3126
|
},
|
|
3121
3127
|
/**
|
|
3122
|
-
*
|
|
3128
|
+
* Lookup345: argon_primitives::tick::Ticker
|
|
3123
3129
|
**/
|
|
3124
3130
|
ArgonPrimitivesTickTicker: {
|
|
3125
3131
|
tickDurationMillis: 'Compact<u64>',
|
|
3126
3132
|
channelHoldExpirationTicks: 'Compact<u64>',
|
|
3127
3133
|
},
|
|
3128
3134
|
/**
|
|
3129
|
-
*
|
|
3135
|
+
* Lookup347: pallet_ticks::pallet::Error<T>
|
|
3130
3136
|
**/
|
|
3131
3137
|
PalletTicksError: 'Null',
|
|
3132
3138
|
/**
|
|
3133
|
-
*
|
|
3139
|
+
* Lookup350: pallet_mining_slot::MinerNonceScoring<T>
|
|
3134
3140
|
**/
|
|
3135
3141
|
PalletMiningSlotMinerNonceScoring: {
|
|
3136
3142
|
nonce: 'U256',
|
|
@@ -3139,7 +3145,7 @@ export default {
|
|
|
3139
3145
|
frameStartBlocksWonSurplus: 'i16',
|
|
3140
3146
|
},
|
|
3141
3147
|
/**
|
|
3142
|
-
*
|
|
3148
|
+
* Lookup362: argon_primitives::block_seal::MiningBidStats
|
|
3143
3149
|
**/
|
|
3144
3150
|
ArgonPrimitivesBlockSealMiningBidStats: {
|
|
3145
3151
|
bidsCount: 'u32',
|
|
@@ -3148,7 +3154,7 @@ export default {
|
|
|
3148
3154
|
bidAmountSum: 'u128',
|
|
3149
3155
|
},
|
|
3150
3156
|
/**
|
|
3151
|
-
*
|
|
3157
|
+
* Lookup366: argon_primitives::block_seal::MiningSlotConfig
|
|
3152
3158
|
**/
|
|
3153
3159
|
ArgonPrimitivesBlockSealMiningSlotConfig: {
|
|
3154
3160
|
ticksBeforeBidEndForVrfClose: 'Compact<u64>',
|
|
@@ -3156,7 +3162,7 @@ export default {
|
|
|
3156
3162
|
slotBiddingStartAfterTicks: 'Compact<u64>',
|
|
3157
3163
|
},
|
|
3158
3164
|
/**
|
|
3159
|
-
*
|
|
3165
|
+
* Lookup376: pallet_mining_slot::pallet::Error<T>
|
|
3160
3166
|
**/
|
|
3161
3167
|
PalletMiningSlotError: {
|
|
3162
3168
|
_enum: [
|
|
@@ -3174,7 +3180,7 @@ export default {
|
|
|
3174
3180
|
],
|
|
3175
3181
|
},
|
|
3176
3182
|
/**
|
|
3177
|
-
*
|
|
3183
|
+
* Lookup377: argon_primitives::bitcoin::UtxoValue
|
|
3178
3184
|
**/
|
|
3179
3185
|
ArgonPrimitivesBitcoinUtxoValue: {
|
|
3180
3186
|
utxoId: 'u64',
|
|
@@ -3184,7 +3190,7 @@ export default {
|
|
|
3184
3190
|
watchForSpentUntilHeight: 'Compact<u64>',
|
|
3185
3191
|
},
|
|
3186
3192
|
/**
|
|
3187
|
-
*
|
|
3193
|
+
* Lookup378: argon_primitives::bitcoin::BitcoinCosignScriptPubkey
|
|
3188
3194
|
**/
|
|
3189
3195
|
ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey: {
|
|
3190
3196
|
_enum: {
|
|
@@ -3194,13 +3200,13 @@ export default {
|
|
|
3194
3200
|
},
|
|
3195
3201
|
},
|
|
3196
3202
|
/**
|
|
3197
|
-
*
|
|
3203
|
+
* Lookup387: argon_primitives::bitcoin::BitcoinNetwork
|
|
3198
3204
|
**/
|
|
3199
3205
|
ArgonPrimitivesBitcoinBitcoinNetwork: {
|
|
3200
3206
|
_enum: ['Bitcoin', 'Testnet', 'Signet', 'Regtest'],
|
|
3201
3207
|
},
|
|
3202
3208
|
/**
|
|
3203
|
-
*
|
|
3209
|
+
* Lookup388: pallet_bitcoin_utxos::pallet::Error<T>
|
|
3204
3210
|
**/
|
|
3205
3211
|
PalletBitcoinUtxosError: {
|
|
3206
3212
|
_enum: [
|
|
@@ -3222,7 +3228,7 @@ export default {
|
|
|
3222
3228
|
],
|
|
3223
3229
|
},
|
|
3224
3230
|
/**
|
|
3225
|
-
*
|
|
3231
|
+
* Lookup389: argon_primitives::vault::Vault<sp_core::crypto::AccountId32, Balance>
|
|
3226
3232
|
**/
|
|
3227
3233
|
ArgonPrimitivesVault: {
|
|
3228
3234
|
operatorAccountId: 'AccountId32',
|
|
@@ -3244,14 +3250,14 @@ export default {
|
|
|
3244
3250
|
operationalMinimumReleaseTick: 'Option<u64>',
|
|
3245
3251
|
},
|
|
3246
3252
|
/**
|
|
3247
|
-
*
|
|
3253
|
+
* Lookup396: argon_primitives::vault::VaultArgonotCommitment<Balance>
|
|
3248
3254
|
**/
|
|
3249
3255
|
ArgonPrimitivesVaultVaultArgonotCommitment: {
|
|
3250
3256
|
committedMicronots: 'Compact<u128>',
|
|
3251
3257
|
encumberedMicronots: 'Compact<u128>',
|
|
3252
3258
|
},
|
|
3253
3259
|
/**
|
|
3254
|
-
*
|
|
3260
|
+
* Lookup398: argon_primitives::bitcoin::BitcoinXPub
|
|
3255
3261
|
**/
|
|
3256
3262
|
ArgonPrimitivesBitcoinBitcoinXPub: {
|
|
3257
3263
|
publicKey: 'ArgonPrimitivesBitcoinCompressedBitcoinPubkey',
|
|
@@ -3262,13 +3268,13 @@ export default {
|
|
|
3262
3268
|
network: 'ArgonPrimitivesBitcoinNetworkKind',
|
|
3263
3269
|
},
|
|
3264
3270
|
/**
|
|
3265
|
-
*
|
|
3271
|
+
* Lookup400: argon_primitives::bitcoin::NetworkKind
|
|
3266
3272
|
**/
|
|
3267
3273
|
ArgonPrimitivesBitcoinNetworkKind: {
|
|
3268
3274
|
_enum: ['Main', 'Test'],
|
|
3269
3275
|
},
|
|
3270
3276
|
/**
|
|
3271
|
-
*
|
|
3277
|
+
* Lookup409: pallet_vaults::pallet::VaultFrameRevenue<T>
|
|
3272
3278
|
**/
|
|
3273
3279
|
PalletVaultsVaultFrameRevenue: {
|
|
3274
3280
|
frameId: 'Compact<u64>',
|
|
@@ -3289,7 +3295,7 @@ export default {
|
|
|
3289
3295
|
uncollectedRevenue: 'Compact<u128>',
|
|
3290
3296
|
},
|
|
3291
3297
|
/**
|
|
3292
|
-
*
|
|
3298
|
+
* Lookup412: pallet_vaults::pallet::RecentCapacityDrop<Balance, BlockNumber>
|
|
3293
3299
|
**/
|
|
3294
3300
|
PalletVaultsRecentCapacityDrop: {
|
|
3295
3301
|
blockNumber: 'Compact<u32>',
|
|
@@ -3298,7 +3304,7 @@ export default {
|
|
|
3298
3304
|
noFeeFailuresUsed: 'Compact<u32>',
|
|
3299
3305
|
},
|
|
3300
3306
|
/**
|
|
3301
|
-
*
|
|
3307
|
+
* Lookup414: pallet_vaults::pallet::Error<T>
|
|
3302
3308
|
**/
|
|
3303
3309
|
PalletVaultsError: {
|
|
3304
3310
|
_enum: [
|
|
@@ -3339,7 +3345,7 @@ export default {
|
|
|
3339
3345
|
],
|
|
3340
3346
|
},
|
|
3341
3347
|
/**
|
|
3342
|
-
*
|
|
3348
|
+
* Lookup415: pallet_bitcoin_locks::pallet::LockedBitcoin<T>
|
|
3343
3349
|
**/
|
|
3344
3350
|
PalletBitcoinLocksLockedBitcoin: {
|
|
3345
3351
|
vaultId: 'Compact<u32>',
|
|
@@ -3364,7 +3370,7 @@ export default {
|
|
|
3364
3370
|
createdAtArgonBlock: 'Compact<u32>',
|
|
3365
3371
|
},
|
|
3366
3372
|
/**
|
|
3367
|
-
*
|
|
3373
|
+
* Lookup419: pallet_bitcoin_locks::pallet::LockReleaseRequest<Balance>
|
|
3368
3374
|
**/
|
|
3369
3375
|
PalletBitcoinLocksLockReleaseRequest: {
|
|
3370
3376
|
utxoId: 'Compact<u64>',
|
|
@@ -3375,7 +3381,7 @@ export default {
|
|
|
3375
3381
|
redemptionAmount: 'Compact<u128>',
|
|
3376
3382
|
},
|
|
3377
3383
|
/**
|
|
3378
|
-
*
|
|
3384
|
+
* Lookup421: pallet_bitcoin_locks::pallet::OrphanedUtxo<BlockNumber>
|
|
3379
3385
|
**/
|
|
3380
3386
|
PalletBitcoinLocksOrphanedUtxo: {
|
|
3381
3387
|
utxoId: 'Compact<u64>',
|
|
@@ -3385,7 +3391,7 @@ export default {
|
|
|
3385
3391
|
cosignRequest: 'Option<PalletBitcoinLocksOrphanedUtxoCosignRequest>',
|
|
3386
3392
|
},
|
|
3387
3393
|
/**
|
|
3388
|
-
*
|
|
3394
|
+
* Lookup423: pallet_bitcoin_locks::pallet::OrphanedUtxoCosignRequest<BlockNumber>
|
|
3389
3395
|
**/
|
|
3390
3396
|
PalletBitcoinLocksOrphanedUtxoCosignRequest: {
|
|
3391
3397
|
bitcoinNetworkFee: 'u64',
|
|
@@ -3393,7 +3399,7 @@ export default {
|
|
|
3393
3399
|
createdAtArgonBlockNumber: 'u32',
|
|
3394
3400
|
},
|
|
3395
3401
|
/**
|
|
3396
|
-
*
|
|
3402
|
+
* Lookup430: pallet_bitcoin_locks::pallet::Error<T>
|
|
3397
3403
|
**/
|
|
3398
3404
|
PalletBitcoinLocksError: {
|
|
3399
3405
|
_enum: {
|
|
@@ -3435,7 +3441,7 @@ export default {
|
|
|
3435
3441
|
},
|
|
3436
3442
|
},
|
|
3437
3443
|
/**
|
|
3438
|
-
*
|
|
3444
|
+
* Lookup431: argon_primitives::vault::VaultError
|
|
3439
3445
|
**/
|
|
3440
3446
|
ArgonPrimitivesVaultVaultError: {
|
|
3441
3447
|
_enum: [
|
|
@@ -3455,7 +3461,7 @@ export default {
|
|
|
3455
3461
|
],
|
|
3456
3462
|
},
|
|
3457
3463
|
/**
|
|
3458
|
-
*
|
|
3464
|
+
* Lookup443: pallet_notaries::pallet::Error<T>
|
|
3459
3465
|
**/
|
|
3460
3466
|
PalletNotariesError: {
|
|
3461
3467
|
_enum: [
|
|
@@ -3471,7 +3477,7 @@ export default {
|
|
|
3471
3477
|
],
|
|
3472
3478
|
},
|
|
3473
3479
|
/**
|
|
3474
|
-
*
|
|
3480
|
+
* Lookup447: argon_primitives::notary::NotaryNotebookKeyDetails
|
|
3475
3481
|
**/
|
|
3476
3482
|
ArgonPrimitivesNotaryNotaryNotebookKeyDetails: {
|
|
3477
3483
|
notebookNumber: 'Compact<u32>',
|
|
@@ -3481,7 +3487,7 @@ export default {
|
|
|
3481
3487
|
parentSecret: 'Option<H256>',
|
|
3482
3488
|
},
|
|
3483
3489
|
/**
|
|
3484
|
-
*
|
|
3490
|
+
* Lookup450: pallet_notebook::pallet::Error<T>
|
|
3485
3491
|
**/
|
|
3486
3492
|
PalletNotebookError: {
|
|
3487
3493
|
_enum: [
|
|
@@ -3503,7 +3509,7 @@ export default {
|
|
|
3503
3509
|
],
|
|
3504
3510
|
},
|
|
3505
3511
|
/**
|
|
3506
|
-
*
|
|
3512
|
+
* Lookup451: pallet_localchain_transfer::QueuedTransferOut<sp_core::crypto::AccountId32, Balance>
|
|
3507
3513
|
**/
|
|
3508
3514
|
PalletLocalchainTransferQueuedTransferOut: {
|
|
3509
3515
|
accountId: 'AccountId32',
|
|
@@ -3512,11 +3518,11 @@ export default {
|
|
|
3512
3518
|
notaryId: 'u32',
|
|
3513
3519
|
},
|
|
3514
3520
|
/**
|
|
3515
|
-
*
|
|
3521
|
+
* Lookup453: frame_support::PalletId
|
|
3516
3522
|
**/
|
|
3517
3523
|
FrameSupportPalletId: '[u8;8]',
|
|
3518
3524
|
/**
|
|
3519
|
-
*
|
|
3525
|
+
* Lookup454: pallet_localchain_transfer::pallet::Error<T>
|
|
3520
3526
|
**/
|
|
3521
3527
|
PalletLocalchainTransferError: {
|
|
3522
3528
|
_enum: [
|
|
@@ -3531,7 +3537,7 @@ export default {
|
|
|
3531
3537
|
],
|
|
3532
3538
|
},
|
|
3533
3539
|
/**
|
|
3534
|
-
*
|
|
3540
|
+
* Lookup458: argon_primitives::notary::NotaryNotebookVoteDigestDetails
|
|
3535
3541
|
**/
|
|
3536
3542
|
ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails: {
|
|
3537
3543
|
notaryId: 'Compact<u32>',
|
|
@@ -3541,13 +3547,13 @@ export default {
|
|
|
3541
3547
|
blockVotingPower: 'Compact<u128>',
|
|
3542
3548
|
},
|
|
3543
3549
|
/**
|
|
3544
|
-
*
|
|
3550
|
+
* Lookup463: pallet_block_seal_spec::pallet::Error<T>
|
|
3545
3551
|
**/
|
|
3546
3552
|
PalletBlockSealSpecError: {
|
|
3547
3553
|
_enum: ['MaxNotebooksAtTickExceeded'],
|
|
3548
3554
|
},
|
|
3549
3555
|
/**
|
|
3550
|
-
*
|
|
3556
|
+
* Lookup465: pallet_domains::pallet::Error<T>
|
|
3551
3557
|
**/
|
|
3552
3558
|
PalletDomainsError: {
|
|
3553
3559
|
_enum: [
|
|
@@ -3559,7 +3565,7 @@ export default {
|
|
|
3559
3565
|
],
|
|
3560
3566
|
},
|
|
3561
3567
|
/**
|
|
3562
|
-
*
|
|
3568
|
+
* Lookup467: pallet_price_index::CpiMeasurementBucket
|
|
3563
3569
|
**/
|
|
3564
3570
|
PalletPriceIndexCpiMeasurementBucket: {
|
|
3565
3571
|
tickRange: '(u64,u64)',
|
|
@@ -3567,7 +3573,7 @@ export default {
|
|
|
3567
3573
|
measurementsCount: 'u32',
|
|
3568
3574
|
},
|
|
3569
3575
|
/**
|
|
3570
|
-
*
|
|
3576
|
+
* Lookup471: pallet_price_index::ArgonotAverageFrameAccumulator<Balance>
|
|
3571
3577
|
**/
|
|
3572
3578
|
PalletPriceIndexArgonotAverageFrameAccumulator: {
|
|
3573
3579
|
frameId: 'Compact<u64>',
|
|
@@ -3575,7 +3581,7 @@ export default {
|
|
|
3575
3581
|
sampleCount: 'Compact<u32>',
|
|
3576
3582
|
},
|
|
3577
3583
|
/**
|
|
3578
|
-
*
|
|
3584
|
+
* Lookup472: pallet_price_index::pallet::Error<T>
|
|
3579
3585
|
**/
|
|
3580
3586
|
PalletPriceIndexError: {
|
|
3581
3587
|
_enum: [
|
|
@@ -3586,7 +3592,7 @@ export default {
|
|
|
3586
3592
|
],
|
|
3587
3593
|
},
|
|
3588
3594
|
/**
|
|
3589
|
-
*
|
|
3595
|
+
* Lookup473: pallet_grandpa::StoredState<N>
|
|
3590
3596
|
**/
|
|
3591
3597
|
PalletGrandpaStoredState: {
|
|
3592
3598
|
_enum: {
|
|
@@ -3603,7 +3609,7 @@ export default {
|
|
|
3603
3609
|
},
|
|
3604
3610
|
},
|
|
3605
3611
|
/**
|
|
3606
|
-
*
|
|
3612
|
+
* Lookup474: pallet_grandpa::StoredPendingChange<N, Limit>
|
|
3607
3613
|
**/
|
|
3608
3614
|
PalletGrandpaStoredPendingChange: {
|
|
3609
3615
|
scheduledAt: 'u32',
|
|
@@ -3612,7 +3618,7 @@ export default {
|
|
|
3612
3618
|
forced: 'Option<u32>',
|
|
3613
3619
|
},
|
|
3614
3620
|
/**
|
|
3615
|
-
*
|
|
3621
|
+
* Lookup476: pallet_grandpa::pallet::Error<T>
|
|
3616
3622
|
**/
|
|
3617
3623
|
PalletGrandpaError: {
|
|
3618
3624
|
_enum: [
|
|
@@ -3626,7 +3632,7 @@ export default {
|
|
|
3626
3632
|
],
|
|
3627
3633
|
},
|
|
3628
3634
|
/**
|
|
3629
|
-
*
|
|
3635
|
+
* Lookup477: argon_primitives::providers::BlockSealerInfo<sp_core::crypto::AccountId32, argon_primitives::block_seal::app::Public>
|
|
3630
3636
|
**/
|
|
3631
3637
|
ArgonPrimitivesProvidersBlockSealerInfo: {
|
|
3632
3638
|
blockAuthorAccountId: 'AccountId32',
|
|
@@ -3634,7 +3640,7 @@ export default {
|
|
|
3634
3640
|
blockSealAuthority: 'Option<ArgonPrimitivesBlockSealAppPublic>',
|
|
3635
3641
|
},
|
|
3636
3642
|
/**
|
|
3637
|
-
*
|
|
3643
|
+
* Lookup479: pallet_block_seal::pallet::Error<T>
|
|
3638
3644
|
**/
|
|
3639
3645
|
PalletBlockSealError: {
|
|
3640
3646
|
_enum: [
|
|
@@ -3662,11 +3668,11 @@ export default {
|
|
|
3662
3668
|
],
|
|
3663
3669
|
},
|
|
3664
3670
|
/**
|
|
3665
|
-
*
|
|
3671
|
+
* Lookup483: pallet_block_rewards::pallet::Error<T>
|
|
3666
3672
|
**/
|
|
3667
3673
|
PalletBlockRewardsError: 'Null',
|
|
3668
3674
|
/**
|
|
3669
|
-
*
|
|
3675
|
+
* Lookup484: pallet_mint::pallet::PendingMintUtxo<T>
|
|
3670
3676
|
**/
|
|
3671
3677
|
PalletMintPendingMintUtxo: {
|
|
3672
3678
|
utxoId: 'Compact<u64>',
|
|
@@ -3675,7 +3681,7 @@ export default {
|
|
|
3675
3681
|
maxAmountPerFrame: 'Compact<u128>',
|
|
3676
3682
|
},
|
|
3677
3683
|
/**
|
|
3678
|
-
*
|
|
3684
|
+
* Lookup486: pallet_mint::pallet::MintQueueCursor
|
|
3679
3685
|
**/
|
|
3680
3686
|
PalletMintMintQueueCursor: {
|
|
3681
3687
|
payoutStartIndex: 'Compact<u64>',
|
|
@@ -3683,7 +3689,7 @@ export default {
|
|
|
3683
3689
|
payoutCursorFrameId: 'Option<u64>',
|
|
3684
3690
|
},
|
|
3685
3691
|
/**
|
|
3686
|
-
*
|
|
3692
|
+
* Lookup489: pallet_mint::pallet::MintAction<B>
|
|
3687
3693
|
**/
|
|
3688
3694
|
PalletMintMintAction: {
|
|
3689
3695
|
argonBurned: 'u128',
|
|
@@ -3691,13 +3697,13 @@ export default {
|
|
|
3691
3697
|
bitcoinMinted: 'u128',
|
|
3692
3698
|
},
|
|
3693
3699
|
/**
|
|
3694
|
-
*
|
|
3700
|
+
* Lookup491: pallet_mint::pallet::Error<T>
|
|
3695
3701
|
**/
|
|
3696
3702
|
PalletMintError: {
|
|
3697
3703
|
_enum: ['TooManyPendingMints'],
|
|
3698
3704
|
},
|
|
3699
3705
|
/**
|
|
3700
|
-
*
|
|
3706
|
+
* Lookup493: pallet_balances::types::BalanceLock<Balance>
|
|
3701
3707
|
**/
|
|
3702
3708
|
PalletBalancesBalanceLock: {
|
|
3703
3709
|
id: '[u8;8]',
|
|
@@ -3705,34 +3711,34 @@ export default {
|
|
|
3705
3711
|
reasons: 'PalletBalancesReasons',
|
|
3706
3712
|
},
|
|
3707
3713
|
/**
|
|
3708
|
-
*
|
|
3714
|
+
* Lookup494: pallet_balances::types::Reasons
|
|
3709
3715
|
**/
|
|
3710
3716
|
PalletBalancesReasons: {
|
|
3711
3717
|
_enum: ['Fee', 'Misc', 'All'],
|
|
3712
3718
|
},
|
|
3713
3719
|
/**
|
|
3714
|
-
*
|
|
3720
|
+
* Lookup497: pallet_balances::types::ReserveData<ReserveIdentifier, Balance>
|
|
3715
3721
|
**/
|
|
3716
3722
|
PalletBalancesReserveData: {
|
|
3717
3723
|
id: '[u8;8]',
|
|
3718
3724
|
amount: 'u128',
|
|
3719
3725
|
},
|
|
3720
3726
|
/**
|
|
3721
|
-
*
|
|
3727
|
+
* Lookup500: frame_support::traits::tokens::misc::IdAmount<argon_runtime::RuntimeHoldReason, Balance>
|
|
3722
3728
|
**/
|
|
3723
3729
|
FrameSupportTokensMiscIdAmountRuntimeHoldReason: {
|
|
3724
3730
|
id: 'ArgonRuntimeRuntimeHoldReason',
|
|
3725
3731
|
amount: 'u128',
|
|
3726
3732
|
},
|
|
3727
3733
|
/**
|
|
3728
|
-
*
|
|
3734
|
+
* Lookup503: frame_support::traits::tokens::misc::IdAmount<argon_runtime::RuntimeFreezeReason, Balance>
|
|
3729
3735
|
**/
|
|
3730
3736
|
FrameSupportTokensMiscIdAmountRuntimeFreezeReason: {
|
|
3731
3737
|
id: 'ArgonRuntimeRuntimeFreezeReason',
|
|
3732
3738
|
amount: 'u128',
|
|
3733
3739
|
},
|
|
3734
3740
|
/**
|
|
3735
|
-
*
|
|
3741
|
+
* Lookup504: argon_runtime::RuntimeFreezeReason
|
|
3736
3742
|
**/
|
|
3737
3743
|
ArgonRuntimeRuntimeFreezeReason: {
|
|
3738
3744
|
_enum: {
|
|
@@ -3759,13 +3765,13 @@ export default {
|
|
|
3759
3765
|
},
|
|
3760
3766
|
},
|
|
3761
3767
|
/**
|
|
3762
|
-
*
|
|
3768
|
+
* Lookup505: pallet_block_rewards::pallet::FreezeReason
|
|
3763
3769
|
**/
|
|
3764
3770
|
PalletBlockRewardsFreezeReason: {
|
|
3765
3771
|
_enum: ['MaturationPeriod'],
|
|
3766
3772
|
},
|
|
3767
3773
|
/**
|
|
3768
|
-
*
|
|
3774
|
+
* Lookup507: pallet_balances::pallet::Error<T, I>
|
|
3769
3775
|
**/
|
|
3770
3776
|
PalletBalancesError: {
|
|
3771
3777
|
_enum: [
|
|
@@ -3784,62 +3790,62 @@ export default {
|
|
|
3784
3790
|
],
|
|
3785
3791
|
},
|
|
3786
3792
|
/**
|
|
3787
|
-
*
|
|
3793
|
+
* Lookup509: pallet_tx_pause::pallet::Error<T>
|
|
3788
3794
|
**/
|
|
3789
3795
|
PalletTxPauseError: {
|
|
3790
3796
|
_enum: ['IsPaused', 'IsUnpaused', 'Unpausable', 'NotFound'],
|
|
3791
3797
|
},
|
|
3792
3798
|
/**
|
|
3793
|
-
*
|
|
3799
|
+
* Lookup510: pallet_transaction_payment::Releases
|
|
3794
3800
|
**/
|
|
3795
3801
|
PalletTransactionPaymentReleases: {
|
|
3796
3802
|
_enum: ['V1Ancient', 'V2'],
|
|
3797
3803
|
},
|
|
3798
3804
|
/**
|
|
3799
|
-
*
|
|
3805
|
+
* Lookup511: frame_support::traits::storage::NoDrop<frame_support::traits::tokens::fungible::imbalance::Imbalance<B, OnDrop, OppositeOnDrop>>
|
|
3800
3806
|
**/
|
|
3801
3807
|
FrameSupportStorageNoDrop: 'FrameSupportTokensFungibleImbalance',
|
|
3802
3808
|
/**
|
|
3803
|
-
*
|
|
3809
|
+
* Lookup512: frame_support::traits::tokens::fungible::imbalance::Imbalance<B, OnDrop, OppositeOnDrop>
|
|
3804
3810
|
**/
|
|
3805
3811
|
FrameSupportTokensFungibleImbalance: {
|
|
3806
3812
|
amount: 'u128',
|
|
3807
3813
|
},
|
|
3808
3814
|
/**
|
|
3809
|
-
*
|
|
3815
|
+
* Lookup513: pallet_utility::pallet::Error<T>
|
|
3810
3816
|
**/
|
|
3811
3817
|
PalletUtilityError: {
|
|
3812
3818
|
_enum: ['TooManyCalls'],
|
|
3813
3819
|
},
|
|
3814
3820
|
/**
|
|
3815
|
-
*
|
|
3821
|
+
* Lookup514: pallet_sudo::pallet::Error<T>
|
|
3816
3822
|
**/
|
|
3817
3823
|
PalletSudoError: {
|
|
3818
3824
|
_enum: ['RequireSudo'],
|
|
3819
3825
|
},
|
|
3820
3826
|
/**
|
|
3821
|
-
*
|
|
3827
|
+
* Lookup515: pallet_treasury::pallet::FrameVaultCapital<T>
|
|
3822
3828
|
**/
|
|
3823
3829
|
PalletTreasuryFrameVaultCapital: {
|
|
3824
3830
|
frameId: 'Compact<u64>',
|
|
3825
3831
|
vaults: 'BTreeMap<u32, PalletTreasuryVaultCapital>',
|
|
3826
3832
|
},
|
|
3827
3833
|
/**
|
|
3828
|
-
*
|
|
3834
|
+
* Lookup517: pallet_treasury::pallet::VaultCapital<T>
|
|
3829
3835
|
**/
|
|
3830
3836
|
PalletTreasuryVaultCapital: {
|
|
3831
3837
|
bondLotAllocations: 'Vec<PalletTreasuryBondLotAllocation>',
|
|
3832
3838
|
eligibleBonds: 'Compact<u32>',
|
|
3833
3839
|
},
|
|
3834
3840
|
/**
|
|
3835
|
-
*
|
|
3841
|
+
* Lookup519: pallet_treasury::pallet::BondLotAllocation
|
|
3836
3842
|
**/
|
|
3837
3843
|
PalletTreasuryBondLotAllocation: {
|
|
3838
3844
|
bondLotId: 'Compact<u64>',
|
|
3839
3845
|
prorata: 'u128',
|
|
3840
3846
|
},
|
|
3841
3847
|
/**
|
|
3842
|
-
*
|
|
3848
|
+
* Lookup524: pallet_treasury::pallet::FrameArgonotBondParticipants<T>
|
|
3843
3849
|
**/
|
|
3844
3850
|
PalletTreasuryFrameArgonotBondParticipants: {
|
|
3845
3851
|
frameId: 'Compact<u64>',
|
|
@@ -3847,14 +3853,14 @@ export default {
|
|
|
3847
3853
|
bondLots: 'Vec<PalletTreasuryBondLotSummary>',
|
|
3848
3854
|
},
|
|
3849
3855
|
/**
|
|
3850
|
-
*
|
|
3856
|
+
* Lookup526: pallet_treasury::pallet::BondLotSummary
|
|
3851
3857
|
**/
|
|
3852
3858
|
PalletTreasuryBondLotSummary: {
|
|
3853
3859
|
bondLotId: 'Compact<u64>',
|
|
3854
3860
|
bonds: 'Compact<u32>',
|
|
3855
3861
|
},
|
|
3856
3862
|
/**
|
|
3857
|
-
*
|
|
3863
|
+
* Lookup528: pallet_treasury::pallet::BondLot<T>
|
|
3858
3864
|
**/
|
|
3859
3865
|
PalletTreasuryBondLot: {
|
|
3860
3866
|
owner: 'AccountId32',
|
|
@@ -3869,7 +3875,7 @@ export default {
|
|
|
3869
3875
|
releaseReason: 'Option<PalletTreasuryBondReleaseReason>',
|
|
3870
3876
|
},
|
|
3871
3877
|
/**
|
|
3872
|
-
*
|
|
3878
|
+
* Lookup529: pallet_treasury::pallet::BondProgram
|
|
3873
3879
|
**/
|
|
3874
3880
|
PalletTreasuryBondProgram: {
|
|
3875
3881
|
_enum: {
|
|
@@ -3882,7 +3888,7 @@ export default {
|
|
|
3882
3888
|
},
|
|
3883
3889
|
},
|
|
3884
3890
|
/**
|
|
3885
|
-
*
|
|
3891
|
+
* Lookup533: pallet_treasury::pallet::Error<T>
|
|
3886
3892
|
**/
|
|
3887
3893
|
PalletTreasuryError: {
|
|
3888
3894
|
_enum: [
|
|
@@ -3907,21 +3913,19 @@ export default {
|
|
|
3907
3913
|
],
|
|
3908
3914
|
},
|
|
3909
3915
|
/**
|
|
3910
|
-
*
|
|
3916
|
+
* Lookup534: pallet_fee_control::pallet::Error<T>
|
|
3911
3917
|
**/
|
|
3912
3918
|
PalletFeeControlError: {
|
|
3913
3919
|
_enum: ['SponsoredFeeTooHigh'],
|
|
3914
3920
|
},
|
|
3915
3921
|
/**
|
|
3916
|
-
*
|
|
3922
|
+
* Lookup535: pallet_operational_accounts::pallet::OperationalAccount<T>
|
|
3917
3923
|
**/
|
|
3918
3924
|
PalletOperationalAccountsOperationalAccount: {
|
|
3919
3925
|
vaultAccount: 'AccountId32',
|
|
3920
3926
|
miningAccount: 'AccountId32',
|
|
3921
3927
|
encryptionPubkey: 'PalletOperationalAccountsOpaqueEncryptionPubkey',
|
|
3922
|
-
|
|
3923
|
-
isTreasuryCertified: 'bool',
|
|
3924
|
-
isUpgradedToOperations: 'bool',
|
|
3928
|
+
upstreamAccount: 'Option<AccountId32>',
|
|
3925
3929
|
uniswapArgonTransfersInAmount: 'u128',
|
|
3926
3930
|
accountBitcoinAmount: 'u128',
|
|
3927
3931
|
accountVaultBondAmount: 'u128',
|
|
@@ -3930,23 +3934,23 @@ export default {
|
|
|
3930
3934
|
vaultBitcoinAppliedTotal: 'u128',
|
|
3931
3935
|
miningSeatAccrual: 'Compact<u32>',
|
|
3932
3936
|
miningSeatAppliedTotal: 'Compact<u32>',
|
|
3933
|
-
|
|
3934
|
-
|
|
3935
|
-
|
|
3937
|
+
operationalCertificationsCount: 'Compact<u32>',
|
|
3938
|
+
accessCodePending: 'bool',
|
|
3939
|
+
availableAccessCodes: 'Compact<u32>',
|
|
3936
3940
|
rewardsEarnedCount: 'Compact<u32>',
|
|
3937
3941
|
rewardsEarnedAmount: 'u128',
|
|
3938
3942
|
rewardsCollectedAmount: 'u128',
|
|
3939
3943
|
isOperationallyCertified: 'bool',
|
|
3940
3944
|
},
|
|
3941
3945
|
/**
|
|
3942
|
-
*
|
|
3946
|
+
* Lookup536: pallet_operational_accounts::pallet::RewardsConfig<Balance>
|
|
3943
3947
|
**/
|
|
3944
3948
|
PalletOperationalAccountsRewardsConfig: {
|
|
3945
|
-
|
|
3946
|
-
|
|
3949
|
+
operationalCertificationReward: 'Compact<u128>',
|
|
3950
|
+
operationalCertificationBonusReward: 'Compact<u128>',
|
|
3947
3951
|
},
|
|
3948
3952
|
/**
|
|
3949
|
-
*
|
|
3953
|
+
* Lookup538: pallet_operational_accounts::pallet::Error<T>
|
|
3950
3954
|
**/
|
|
3951
3955
|
PalletOperationalAccountsError: {
|
|
3952
3956
|
_enum: [
|
|
@@ -3956,33 +3960,31 @@ export default {
|
|
|
3956
3960
|
'InvalidAccountProof',
|
|
3957
3961
|
'NotOperationalAccount',
|
|
3958
3962
|
'RegistrationInviteRequired',
|
|
3959
|
-
'
|
|
3960
|
-
'
|
|
3961
|
-
'
|
|
3962
|
-
'
|
|
3963
|
-
'AccountAlreadyUpgraded',
|
|
3964
|
-
'NoAvailableUpgrades',
|
|
3965
|
-
'CannotUpgradeSelf',
|
|
3963
|
+
'InvalidAccessProof',
|
|
3964
|
+
'UpstreamNotOperationalAccount',
|
|
3965
|
+
'MinimumsNotMet',
|
|
3966
|
+
'CannotGrantAccessToSelf',
|
|
3966
3967
|
'NoProgressUpdateProvided',
|
|
3967
3968
|
'EncryptedServerTooLong',
|
|
3968
|
-
'
|
|
3969
|
+
'NotUpstreamOfDownstream',
|
|
3969
3970
|
'NoPendingRewards',
|
|
3970
3971
|
'RewardClaimBelowMinimum',
|
|
3971
3972
|
'RewardClaimNotWholeArgon',
|
|
3972
3973
|
'RewardClaimExceedsPending',
|
|
3973
3974
|
'TreasuryInsufficientFunds',
|
|
3974
|
-
'
|
|
3975
|
+
'AlreadyOperationallyCertified',
|
|
3975
3976
|
'NotEligibleForActivation',
|
|
3977
|
+
'UpstreamHasNoAvailableAccessCodes',
|
|
3976
3978
|
],
|
|
3977
3979
|
},
|
|
3978
3980
|
/**
|
|
3979
|
-
*
|
|
3981
|
+
* Lookup539: pallet_ethereum_verifier::types::FinalizedBeaconHeaderState
|
|
3980
3982
|
**/
|
|
3981
3983
|
PalletEthereumVerifierFinalizedBeaconHeaderState: {
|
|
3982
3984
|
slot: 'Compact<u64>',
|
|
3983
3985
|
},
|
|
3984
3986
|
/**
|
|
3985
|
-
*
|
|
3987
|
+
* Lookup540: pallet_ethereum_verifier::types::ExecutionHeaderAnchor
|
|
3986
3988
|
**/
|
|
3987
3989
|
PalletEthereumVerifierExecutionHeaderAnchor: {
|
|
3988
3990
|
blockNumber: 'Compact<u64>',
|
|
@@ -3993,7 +3995,7 @@ export default {
|
|
|
3993
3995
|
receiptsRoot: 'H256',
|
|
3994
3996
|
},
|
|
3995
3997
|
/**
|
|
3996
|
-
*
|
|
3998
|
+
* Lookup541: pallet_ethereum_verifier::types::SyncCommitteePrepared
|
|
3997
3999
|
**/
|
|
3998
4000
|
PalletEthereumVerifierSyncCommitteePrepared: {
|
|
3999
4001
|
root: 'H256',
|
|
@@ -4001,13 +4003,13 @@ export default {
|
|
|
4001
4003
|
aggregatePubkey: 'SnowbridgeMilagroBlsKeysPublicKey',
|
|
4002
4004
|
},
|
|
4003
4005
|
/**
|
|
4004
|
-
*
|
|
4006
|
+
* Lookup543: snowbridge_milagro_bls::keys::PublicKey
|
|
4005
4007
|
**/
|
|
4006
4008
|
SnowbridgeMilagroBlsKeysPublicKey: {
|
|
4007
4009
|
point: 'SnowbridgeAmclBls381Ecp',
|
|
4008
4010
|
},
|
|
4009
4011
|
/**
|
|
4010
|
-
*
|
|
4012
|
+
* Lookup544: snowbridge_amcl::bls381::ecp::ECP
|
|
4011
4013
|
**/
|
|
4012
4014
|
SnowbridgeAmclBls381Ecp: {
|
|
4013
4015
|
x: 'SnowbridgeAmclBls381Fp',
|
|
@@ -4015,26 +4017,26 @@ export default {
|
|
|
4015
4017
|
z: 'SnowbridgeAmclBls381Fp',
|
|
4016
4018
|
},
|
|
4017
4019
|
/**
|
|
4018
|
-
*
|
|
4020
|
+
* Lookup545: snowbridge_amcl::bls381::fp::FP
|
|
4019
4021
|
**/
|
|
4020
4022
|
SnowbridgeAmclBls381Fp: {
|
|
4021
4023
|
x: 'SnowbridgeAmclBls381Big',
|
|
4022
4024
|
xes: 'i32',
|
|
4023
4025
|
},
|
|
4024
4026
|
/**
|
|
4025
|
-
*
|
|
4027
|
+
* Lookup546: snowbridge_amcl::bls381::big::Big
|
|
4026
4028
|
**/
|
|
4027
4029
|
SnowbridgeAmclBls381Big: {
|
|
4028
4030
|
w: '[i32;14]',
|
|
4029
4031
|
},
|
|
4030
4032
|
/**
|
|
4031
|
-
*
|
|
4033
|
+
* Lookup550: argon_primitives::ethereum::EthereumBeaconPreset
|
|
4032
4034
|
**/
|
|
4033
4035
|
ArgonPrimitivesEthereumEthereumBeaconPreset: {
|
|
4034
4036
|
_enum: ['Mainnet', 'Minimal'],
|
|
4035
4037
|
},
|
|
4036
4038
|
/**
|
|
4037
|
-
*
|
|
4039
|
+
* Lookup551: pallet_ethereum_verifier::pallet::Error<T>
|
|
4038
4040
|
**/
|
|
4039
4041
|
PalletEthereumVerifierError: {
|
|
4040
4042
|
_enum: [
|
|
@@ -4065,7 +4067,7 @@ export default {
|
|
|
4065
4067
|
],
|
|
4066
4068
|
},
|
|
4067
4069
|
/**
|
|
4068
|
-
*
|
|
4070
|
+
* Lookup552: pallet_crosschain_transfer::pallet::AccountTransferTotals<T>
|
|
4069
4071
|
**/
|
|
4070
4072
|
PalletCrosschainTransferAccountTransferTotals: {
|
|
4071
4073
|
microgonsIn: 'u128',
|
|
@@ -4078,7 +4080,7 @@ export default {
|
|
|
4078
4080
|
argonotTransfersOutCount: 'Compact<u32>',
|
|
4079
4081
|
},
|
|
4080
4082
|
/**
|
|
4081
|
-
*
|
|
4083
|
+
* Lookup554: pallet_crosschain_transfer::pallet::GlobalIssuanceCouncil<T>
|
|
4082
4084
|
**/
|
|
4083
4085
|
PalletCrosschainTransferGlobalIssuanceCouncil: {
|
|
4084
4086
|
epochMicrogonsPerArgonot: 'u128',
|
|
@@ -4086,7 +4088,7 @@ export default {
|
|
|
4086
4088
|
totalWeight: 'u128',
|
|
4087
4089
|
},
|
|
4088
4090
|
/**
|
|
4089
|
-
*
|
|
4091
|
+
* Lookup556: pallet_crosschain_transfer::pallet::GlobalIssuanceCouncilMember<T>
|
|
4090
4092
|
**/
|
|
4091
4093
|
PalletCrosschainTransferGlobalIssuanceCouncilMember: {
|
|
4092
4094
|
accountId: 'AccountId32',
|
|
@@ -4094,7 +4096,7 @@ export default {
|
|
|
4094
4096
|
weight: 'u128',
|
|
4095
4097
|
},
|
|
4096
4098
|
/**
|
|
4097
|
-
*
|
|
4099
|
+
* Lookup561: pallet_crosschain_transfer::pallet::CouncilApprovalQueueEntry<T>
|
|
4098
4100
|
**/
|
|
4099
4101
|
PalletCrosschainTransferCouncilApprovalQueueEntry: {
|
|
4100
4102
|
approvingCouncilHash: 'H256',
|
|
@@ -4107,7 +4109,7 @@ export default {
|
|
|
4107
4109
|
signatures: 'BTreeMap<H160, [u8;65]>',
|
|
4108
4110
|
},
|
|
4109
4111
|
/**
|
|
4110
|
-
*
|
|
4112
|
+
* Lookup566: pallet_crosschain_transfer::pallet::MintingAuthority<T>
|
|
4111
4113
|
**/
|
|
4112
4114
|
PalletCrosschainTransferMintingAuthority: {
|
|
4113
4115
|
accountId: 'AccountId32',
|
|
@@ -4125,13 +4127,13 @@ export default {
|
|
|
4125
4127
|
deactivationApprovalQueueNonce: 'Option<u64>',
|
|
4126
4128
|
},
|
|
4127
4129
|
/**
|
|
4128
|
-
*
|
|
4130
|
+
* Lookup567: pallet_crosschain_transfer::pallet::MintingAuthorityState
|
|
4129
4131
|
**/
|
|
4130
4132
|
PalletCrosschainTransferMintingAuthorityState: {
|
|
4131
4133
|
_enum: ['PendingActivation', 'Active', 'Deactivating'],
|
|
4132
4134
|
},
|
|
4133
4135
|
/**
|
|
4134
|
-
*
|
|
4136
|
+
* Lookup569: pallet_crosschain_transfer::transfer_out::TransferOutOfArgon<T>
|
|
4135
4137
|
**/
|
|
4136
4138
|
PalletCrosschainTransferTransferOutTransferOutOfArgon: {
|
|
4137
4139
|
argonAccountId: 'AccountId32',
|
|
@@ -4149,7 +4151,7 @@ export default {
|
|
|
4149
4151
|
state: 'PalletCrosschainTransferTransferOutTransferOutState',
|
|
4150
4152
|
},
|
|
4151
4153
|
/**
|
|
4152
|
-
*
|
|
4154
|
+
* Lookup571: pallet_crosschain_transfer::transfer_out::MintingAuthorityTransferReservation<T>
|
|
4153
4155
|
**/
|
|
4154
4156
|
PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation: {
|
|
4155
4157
|
microgonCollateral: 'u128',
|
|
@@ -4158,13 +4160,13 @@ export default {
|
|
|
4158
4160
|
signature: '[u8;65]',
|
|
4159
4161
|
},
|
|
4160
4162
|
/**
|
|
4161
|
-
*
|
|
4163
|
+
* Lookup575: pallet_crosschain_transfer::transfer_out::TransferOutState
|
|
4162
4164
|
**/
|
|
4163
4165
|
PalletCrosschainTransferTransferOutTransferOutState: {
|
|
4164
4166
|
_enum: ['Started', 'Ready'],
|
|
4165
4167
|
},
|
|
4166
4168
|
/**
|
|
4167
|
-
*
|
|
4169
|
+
* Lookup577: pallet_crosschain_transfer::transfer_out::PendingCollateralizationRequest<T>
|
|
4168
4170
|
**/
|
|
4169
4171
|
PalletCrosschainTransferTransferOutPendingCollateralizationRequest: {
|
|
4170
4172
|
transferId: 'H256',
|
|
@@ -4172,14 +4174,14 @@ export default {
|
|
|
4172
4174
|
remainingMintingAuthorityTip: 'u128',
|
|
4173
4175
|
},
|
|
4174
4176
|
/**
|
|
4175
|
-
*
|
|
4177
|
+
* Lookup579: pallet_crosschain_transfer::pallet::SourceChainCirculation<T>
|
|
4176
4178
|
**/
|
|
4177
4179
|
PalletCrosschainTransferSourceChainCirculation: {
|
|
4178
4180
|
argonCirculation: 'u128',
|
|
4179
4181
|
argonotCirculation: 'u128',
|
|
4180
4182
|
},
|
|
4181
4183
|
/**
|
|
4182
|
-
*
|
|
4184
|
+
* Lookup580: pallet_crosschain_transfer::pallet::Error<T>
|
|
4183
4185
|
**/
|
|
4184
4186
|
PalletCrosschainTransferError: {
|
|
4185
4187
|
_enum: [
|
|
@@ -4237,58 +4239,59 @@ export default {
|
|
|
4237
4239
|
'InsufficientMintingAuthorityCollateral',
|
|
4238
4240
|
'TransferCollateralIncrementTooSmall',
|
|
4239
4241
|
'TooManyPendingTransferOuts',
|
|
4242
|
+
'CouncilSignerRotationPending',
|
|
4240
4243
|
],
|
|
4241
4244
|
},
|
|
4242
4245
|
/**
|
|
4243
|
-
*
|
|
4246
|
+
* Lookup583: frame_system::extensions::authorize_call::AuthorizeCall<T>
|
|
4244
4247
|
**/
|
|
4245
4248
|
FrameSystemExtensionsAuthorizeCall: 'Null',
|
|
4246
4249
|
/**
|
|
4247
|
-
*
|
|
4250
|
+
* Lookup584: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
|
|
4248
4251
|
**/
|
|
4249
4252
|
FrameSystemExtensionsCheckNonZeroSender: 'Null',
|
|
4250
4253
|
/**
|
|
4251
|
-
*
|
|
4254
|
+
* Lookup585: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
|
|
4252
4255
|
**/
|
|
4253
4256
|
FrameSystemExtensionsCheckSpecVersion: 'Null',
|
|
4254
4257
|
/**
|
|
4255
|
-
*
|
|
4258
|
+
* Lookup586: frame_system::extensions::check_tx_version::CheckTxVersion<T>
|
|
4256
4259
|
**/
|
|
4257
4260
|
FrameSystemExtensionsCheckTxVersion: 'Null',
|
|
4258
4261
|
/**
|
|
4259
|
-
*
|
|
4262
|
+
* Lookup587: frame_system::extensions::check_genesis::CheckGenesis<T>
|
|
4260
4263
|
**/
|
|
4261
4264
|
FrameSystemExtensionsCheckGenesis: 'Null',
|
|
4262
4265
|
/**
|
|
4263
|
-
*
|
|
4266
|
+
* Lookup590: frame_system::extensions::check_nonce::CheckNonce<T>
|
|
4264
4267
|
**/
|
|
4265
4268
|
FrameSystemExtensionsCheckNonce: 'Compact<u32>',
|
|
4266
4269
|
/**
|
|
4267
|
-
*
|
|
4270
|
+
* Lookup591: frame_system::extensions::check_weight::CheckWeight<T>
|
|
4268
4271
|
**/
|
|
4269
4272
|
FrameSystemExtensionsCheckWeight: 'Null',
|
|
4270
4273
|
/**
|
|
4271
|
-
*
|
|
4274
|
+
* Lookup592: pallet_transaction_payment::ChargeTransactionPayment<T>
|
|
4272
4275
|
**/
|
|
4273
4276
|
PalletTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
|
|
4274
4277
|
/**
|
|
4275
|
-
*
|
|
4278
|
+
* Lookup593: frame_metadata_hash_extension::CheckMetadataHash<T>
|
|
4276
4279
|
**/
|
|
4277
4280
|
FrameMetadataHashExtensionCheckMetadataHash: {
|
|
4278
4281
|
mode: 'FrameMetadataHashExtensionMode',
|
|
4279
4282
|
},
|
|
4280
4283
|
/**
|
|
4281
|
-
*
|
|
4284
|
+
* Lookup594: frame_metadata_hash_extension::Mode
|
|
4282
4285
|
**/
|
|
4283
4286
|
FrameMetadataHashExtensionMode: {
|
|
4284
4287
|
_enum: ['Disabled', 'Enabled'],
|
|
4285
4288
|
},
|
|
4286
4289
|
/**
|
|
4287
|
-
*
|
|
4290
|
+
* Lookup595: frame_system::extensions::weight_reclaim::WeightReclaim<T>
|
|
4288
4291
|
**/
|
|
4289
4292
|
FrameSystemExtensionsWeightReclaim: 'Null',
|
|
4290
4293
|
/**
|
|
4291
|
-
*
|
|
4294
|
+
* Lookup597: argon_runtime::Runtime
|
|
4292
4295
|
**/
|
|
4293
4296
|
ArgonRuntimeRuntime: 'Null',
|
|
4294
4297
|
};
|