@argonprotocol/mainchain 1.4.9-dev.c62e171b → 1.4.9-dev.cf22b187
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 +344 -287
- package/browser/index.js +1 -1
- package/browser/index.js.map +1 -1
- package/lib/index.cjs +1 -1
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +344 -287
- package/lib/index.d.ts +344 -287
- package/lib/index.js +1 -1
- package/lib/index.js.map +1 -1
- package/package.json +2 -2
- package/src/interfaces/augment-api-consts.ts +29 -21
- package/src/interfaces/augment-api-errors.ts +29 -9
- package/src/interfaces/augment-api-events.ts +37 -19
- package/src/interfaces/augment-api-query.ts +25 -46
- package/src/interfaces/augment-api-tx.ts +19 -12
- package/src/interfaces/lookup.ts +204 -185
- package/src/interfaces/registry.ts +2 -2
- package/src/interfaces/types-lookup.ts +220 -189
package/src/interfaces/lookup.ts
CHANGED
|
@@ -1449,9 +1449,15 @@ export default {
|
|
|
1449
1449
|
OperationalAccountRegistered: {
|
|
1450
1450
|
operationalAccount: 'AccountId32',
|
|
1451
1451
|
vaultAccount: 'AccountId32',
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
|
-
|
|
1452
|
+
miningAccount: 'AccountId32',
|
|
1453
|
+
referrer: 'Option<AccountId32>',
|
|
1454
|
+
},
|
|
1455
|
+
AccountUpgradeGranted: {
|
|
1456
|
+
account: 'AccountId32',
|
|
1457
|
+
referrer: 'AccountId32',
|
|
1458
|
+
},
|
|
1459
|
+
AccountBecameTreasuryCertified: {
|
|
1460
|
+
account: 'AccountId32',
|
|
1455
1461
|
},
|
|
1456
1462
|
AccountWentOperational: {
|
|
1457
1463
|
account: 'AccountId32',
|
|
@@ -1468,21 +1474,23 @@ export default {
|
|
|
1468
1474
|
remainingPending: 'u128',
|
|
1469
1475
|
},
|
|
1470
1476
|
RewardsConfigUpdated: {
|
|
1471
|
-
|
|
1472
|
-
|
|
1477
|
+
operationalActivationReward: 'u128',
|
|
1478
|
+
operationalReferralBonusReward: 'u128',
|
|
1473
1479
|
},
|
|
1474
1480
|
OperationalProgressForced: {
|
|
1475
1481
|
account: 'AccountId32',
|
|
1476
1482
|
updateOperationalProgress: 'bool',
|
|
1477
|
-
|
|
1483
|
+
isTreasuryCertified: 'bool',
|
|
1484
|
+
uniswapArgonTransfersInAmount: 'u128',
|
|
1485
|
+
accountBitcoinAmount: 'u128',
|
|
1486
|
+
accountVaultBondAmount: 'u128',
|
|
1478
1487
|
vaultCreated: 'bool',
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
observedMiningSeatTotal: 'u32',
|
|
1488
|
+
operatorVaultBitcoinAmount: 'u128',
|
|
1489
|
+
miningSeatCount: 'u32',
|
|
1482
1490
|
},
|
|
1483
1491
|
EncryptedServerUpdated: {
|
|
1484
|
-
|
|
1485
|
-
|
|
1492
|
+
referrer: 'AccountId32',
|
|
1493
|
+
downstreamAccount: 'AccountId32',
|
|
1486
1494
|
},
|
|
1487
1495
|
},
|
|
1488
1496
|
},
|
|
@@ -1490,7 +1498,7 @@ export default {
|
|
|
1490
1498
|
* Lookup126: argon_primitives::providers::OperationalRewardKind
|
|
1491
1499
|
**/
|
|
1492
1500
|
ArgonPrimitivesProvidersOperationalRewardKind: {
|
|
1493
|
-
_enum: ['Activation', '
|
|
1501
|
+
_enum: ['Activation', 'OperationalReferralBonus'],
|
|
1494
1502
|
},
|
|
1495
1503
|
/**
|
|
1496
1504
|
* Lookup127: pallet_ethereum_verifier::pallet::Event<T>
|
|
@@ -2689,18 +2697,20 @@ export default {
|
|
|
2689
2697
|
register: {
|
|
2690
2698
|
registration: 'PalletOperationalAccountsRegistration',
|
|
2691
2699
|
},
|
|
2692
|
-
|
|
2700
|
+
upgrade_account: {
|
|
2701
|
+
accountId: 'AccountId32',
|
|
2702
|
+
},
|
|
2693
2703
|
set_reward_config: {
|
|
2694
|
-
|
|
2695
|
-
|
|
2704
|
+
operationalActivationReward: 'u128',
|
|
2705
|
+
operationalReferralBonusReward: 'u128',
|
|
2696
2706
|
},
|
|
2697
2707
|
force_set_progress: {
|
|
2698
2708
|
owner: 'AccountId32',
|
|
2699
2709
|
patch: 'PalletOperationalAccountsOperationalProgressPatch',
|
|
2700
2710
|
updateOperationalProgress: 'bool',
|
|
2701
2711
|
},
|
|
2702
|
-
|
|
2703
|
-
|
|
2712
|
+
set_encrypted_server_for_downstream_account: {
|
|
2713
|
+
downstreamAccount: 'AccountId32',
|
|
2704
2714
|
encryptedServer: 'Bytes',
|
|
2705
2715
|
},
|
|
2706
2716
|
activate: 'Null',
|
|
@@ -2725,12 +2735,10 @@ export default {
|
|
|
2725
2735
|
encryptionPubkey: 'PalletOperationalAccountsOpaqueEncryptionPubkey',
|
|
2726
2736
|
operationalAccountProof: 'PalletOperationalAccountsAccountOwnershipProof',
|
|
2727
2737
|
vaultAccount: 'AccountId32',
|
|
2728
|
-
|
|
2729
|
-
miningBotAccount: 'AccountId32',
|
|
2738
|
+
miningAccount: 'AccountId32',
|
|
2730
2739
|
vaultAccountProof: 'PalletOperationalAccountsAccountOwnershipProof',
|
|
2731
|
-
|
|
2732
|
-
|
|
2733
|
-
referralProof: 'Option<PalletOperationalAccountsReferralProof>',
|
|
2740
|
+
miningAccountProof: 'PalletOperationalAccountsAccountOwnershipProof',
|
|
2741
|
+
referrer: 'Option<AccountId32>',
|
|
2734
2742
|
},
|
|
2735
2743
|
/**
|
|
2736
2744
|
* Lookup277: pallet_operational_accounts::pallet::OpaqueEncryptionPubkey
|
|
@@ -2743,27 +2751,18 @@ export default {
|
|
|
2743
2751
|
signature: 'SpRuntimeMultiSignature',
|
|
2744
2752
|
},
|
|
2745
2753
|
/**
|
|
2746
|
-
*
|
|
2747
|
-
**/
|
|
2748
|
-
PalletOperationalAccountsReferralProof: {
|
|
2749
|
-
referralCode: '[u8;32]',
|
|
2750
|
-
referralSignature: '[u8;64]',
|
|
2751
|
-
sponsor: 'AccountId32',
|
|
2752
|
-
expiresAtFrame: 'Compact<u64>',
|
|
2753
|
-
sponsorSignature: 'SpRuntimeMultiSignature',
|
|
2754
|
-
},
|
|
2755
|
-
/**
|
|
2756
|
-
* Lookup281: pallet_operational_accounts::pallet::OperationalProgressPatch<Balance>
|
|
2754
|
+
* Lookup279: pallet_operational_accounts::pallet::OperationalProgressPatch<Balance>
|
|
2757
2755
|
**/
|
|
2758
2756
|
PalletOperationalAccountsOperationalProgressPatch: {
|
|
2759
|
-
|
|
2757
|
+
uniswapArgonTransfersInAmount: 'Option<u128>',
|
|
2758
|
+
accountBitcoinAmount: 'Option<u128>',
|
|
2759
|
+
accountVaultBondAmount: 'Option<u128>',
|
|
2760
2760
|
vaultCreated: 'Option<bool>',
|
|
2761
|
-
|
|
2762
|
-
|
|
2763
|
-
observedMiningSeatTotal: 'Option<u32>',
|
|
2761
|
+
vaultBitcoinAmount: 'Option<u128>',
|
|
2762
|
+
miningSeatCount: 'Option<u32>',
|
|
2764
2763
|
},
|
|
2765
2764
|
/**
|
|
2766
|
-
*
|
|
2765
|
+
* Lookup281: pallet_ethereum_verifier::pallet::Call<T>
|
|
2767
2766
|
**/
|
|
2768
2767
|
PalletEthereumVerifierCall: {
|
|
2769
2768
|
_enum: {
|
|
@@ -2785,7 +2784,7 @@ export default {
|
|
|
2785
2784
|
},
|
|
2786
2785
|
},
|
|
2787
2786
|
/**
|
|
2788
|
-
*
|
|
2787
|
+
* Lookup282: pallet_ethereum_verifier::types::CheckpointUpdate
|
|
2789
2788
|
**/
|
|
2790
2789
|
PalletEthereumVerifierCheckpointUpdate: {
|
|
2791
2790
|
header: 'SnowbridgeBeaconPrimitivesBeaconHeader',
|
|
@@ -2795,7 +2794,7 @@ export default {
|
|
|
2795
2794
|
executionHeaderProof: 'PalletEthereumVerifierExecutionHeaderProof',
|
|
2796
2795
|
},
|
|
2797
2796
|
/**
|
|
2798
|
-
*
|
|
2797
|
+
* Lookup283: snowbridge_beacon_primitives::types::BeaconHeader
|
|
2799
2798
|
**/
|
|
2800
2799
|
SnowbridgeBeaconPrimitivesBeaconHeader: {
|
|
2801
2800
|
slot: 'u64',
|
|
@@ -2805,25 +2804,25 @@ export default {
|
|
|
2805
2804
|
bodyRoot: 'H256',
|
|
2806
2805
|
},
|
|
2807
2806
|
/**
|
|
2808
|
-
*
|
|
2807
|
+
* Lookup284: pallet_ethereum_verifier::types::SyncCommittee
|
|
2809
2808
|
**/
|
|
2810
2809
|
PalletEthereumVerifierSyncCommittee: {
|
|
2811
2810
|
pubkeys: 'Vec<SnowbridgeBeaconPrimitivesPublicKey>',
|
|
2812
2811
|
aggregatePubkey: 'SnowbridgeBeaconPrimitivesPublicKey',
|
|
2813
2812
|
},
|
|
2814
2813
|
/**
|
|
2815
|
-
*
|
|
2814
|
+
* Lookup286: snowbridge_beacon_primitives::types::PublicKey
|
|
2816
2815
|
**/
|
|
2817
2816
|
SnowbridgeBeaconPrimitivesPublicKey: '[u8;48]',
|
|
2818
2817
|
/**
|
|
2819
|
-
*
|
|
2818
|
+
* Lookup290: pallet_ethereum_verifier::types::ExecutionHeaderProof
|
|
2820
2819
|
**/
|
|
2821
2820
|
PalletEthereumVerifierExecutionHeaderProof: {
|
|
2822
2821
|
executionHeader: 'SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader',
|
|
2823
2822
|
executionBranch: 'Vec<H256>',
|
|
2824
2823
|
},
|
|
2825
2824
|
/**
|
|
2826
|
-
*
|
|
2825
|
+
* Lookup291: snowbridge_beacon_primitives::types::VersionedExecutionPayloadHeader
|
|
2827
2826
|
**/
|
|
2828
2827
|
SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader: {
|
|
2829
2828
|
_enum: {
|
|
@@ -2832,7 +2831,7 @@ export default {
|
|
|
2832
2831
|
},
|
|
2833
2832
|
},
|
|
2834
2833
|
/**
|
|
2835
|
-
*
|
|
2834
|
+
* Lookup292: snowbridge_beacon_primitives::types::ExecutionPayloadHeader
|
|
2836
2835
|
**/
|
|
2837
2836
|
SnowbridgeBeaconPrimitivesExecutionPayloadHeader: {
|
|
2838
2837
|
parentHash: 'H256',
|
|
@@ -2852,7 +2851,7 @@ export default {
|
|
|
2852
2851
|
withdrawalsRoot: 'H256',
|
|
2853
2852
|
},
|
|
2854
2853
|
/**
|
|
2855
|
-
*
|
|
2854
|
+
* Lookup293: snowbridge_beacon_primitives::types::deneb::ExecutionPayloadHeader
|
|
2856
2855
|
**/
|
|
2857
2856
|
SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader: {
|
|
2858
2857
|
parentHash: 'H256',
|
|
@@ -2874,7 +2873,7 @@ export default {
|
|
|
2874
2873
|
excessBlobGas: 'u64',
|
|
2875
2874
|
},
|
|
2876
2875
|
/**
|
|
2877
|
-
*
|
|
2876
|
+
* Lookup294: pallet_ethereum_verifier::types::ForkVersions
|
|
2878
2877
|
**/
|
|
2879
2878
|
PalletEthereumVerifierForkVersions: {
|
|
2880
2879
|
genesis: 'PalletEthereumVerifierFork',
|
|
@@ -2886,14 +2885,14 @@ export default {
|
|
|
2886
2885
|
fulu: 'PalletEthereumVerifierFork',
|
|
2887
2886
|
},
|
|
2888
2887
|
/**
|
|
2889
|
-
*
|
|
2888
|
+
* Lookup295: pallet_ethereum_verifier::types::Fork
|
|
2890
2889
|
**/
|
|
2891
2890
|
PalletEthereumVerifierFork: {
|
|
2892
2891
|
version: '[u8;4]',
|
|
2893
2892
|
epoch: 'Compact<u64>',
|
|
2894
2893
|
},
|
|
2895
2894
|
/**
|
|
2896
|
-
*
|
|
2895
|
+
* Lookup296: pallet_ethereum_verifier::types::Update
|
|
2897
2896
|
**/
|
|
2898
2897
|
PalletEthereumVerifierUpdate: {
|
|
2899
2898
|
attestedHeader: 'SnowbridgeBeaconPrimitivesBeaconHeader',
|
|
@@ -2905,25 +2904,25 @@ export default {
|
|
|
2905
2904
|
executionHeaderProof: 'PalletEthereumVerifierExecutionHeaderProof',
|
|
2906
2905
|
},
|
|
2907
2906
|
/**
|
|
2908
|
-
*
|
|
2907
|
+
* Lookup297: pallet_ethereum_verifier::types::SyncAggregate
|
|
2909
2908
|
**/
|
|
2910
2909
|
PalletEthereumVerifierSyncAggregate: {
|
|
2911
2910
|
syncCommitteeBits: 'Bytes',
|
|
2912
2911
|
syncCommitteeSignature: 'SnowbridgeBeaconPrimitivesSignature',
|
|
2913
2912
|
},
|
|
2914
2913
|
/**
|
|
2915
|
-
*
|
|
2914
|
+
* Lookup299: snowbridge_beacon_primitives::types::Signature
|
|
2916
2915
|
**/
|
|
2917
2916
|
SnowbridgeBeaconPrimitivesSignature: '[u8;96]',
|
|
2918
2917
|
/**
|
|
2919
|
-
*
|
|
2918
|
+
* Lookup302: pallet_ethereum_verifier::types::NextSyncCommitteeUpdate
|
|
2920
2919
|
**/
|
|
2921
2920
|
PalletEthereumVerifierNextSyncCommitteeUpdate: {
|
|
2922
2921
|
nextSyncCommittee: 'PalletEthereumVerifierSyncCommittee',
|
|
2923
2922
|
nextSyncCommitteeBranch: 'Vec<H256>',
|
|
2924
2923
|
},
|
|
2925
2924
|
/**
|
|
2926
|
-
*
|
|
2925
|
+
* Lookup303: pallet_crosschain_transfer::pallet::Call<T>
|
|
2927
2926
|
**/
|
|
2928
2927
|
PalletCrosschainTransferCall: {
|
|
2929
2928
|
_enum: {
|
|
@@ -2989,7 +2988,7 @@ export default {
|
|
|
2989
2988
|
},
|
|
2990
2989
|
},
|
|
2991
2990
|
/**
|
|
2992
|
-
*
|
|
2991
|
+
* Lookup304: pallet_crosschain_transfer::pallet::ChainConfig
|
|
2993
2992
|
**/
|
|
2994
2993
|
PalletCrosschainTransferChainConfig: {
|
|
2995
2994
|
_enum: {
|
|
@@ -3002,7 +3001,7 @@ export default {
|
|
|
3002
3001
|
},
|
|
3003
3002
|
},
|
|
3004
3003
|
/**
|
|
3005
|
-
*
|
|
3004
|
+
* Lookup306: pallet_crosschain_transfer::pallet::MintingAuthorityActivationRepaymentPricing<T>
|
|
3006
3005
|
**/
|
|
3007
3006
|
PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing: {
|
|
3008
3007
|
activationGasCost: 'Compact<u128>',
|
|
@@ -3011,27 +3010,27 @@ export default {
|
|
|
3011
3010
|
estimatedMicrogonsPerEth: 'u128',
|
|
3012
3011
|
},
|
|
3013
3012
|
/**
|
|
3014
|
-
*
|
|
3013
|
+
* Lookup309: argon_primitives::ethereum::EthereumReceiptLogProofBatch<MaxProofBlocks, MaxReceiptLogs>
|
|
3015
3014
|
**/
|
|
3016
3015
|
ArgonPrimitivesEthereumEthereumReceiptLogProofBatch: {
|
|
3017
3016
|
executionBlockProof: 'ArgonPrimitivesEthereumEthereumExecutionBlockProof',
|
|
3018
3017
|
blocks: 'Vec<ArgonPrimitivesEthereumEthereumReceiptLogProofBlock>',
|
|
3019
3018
|
},
|
|
3020
3019
|
/**
|
|
3021
|
-
*
|
|
3020
|
+
* Lookup310: argon_primitives::ethereum::EthereumExecutionBlockProof
|
|
3022
3021
|
**/
|
|
3023
3022
|
ArgonPrimitivesEthereumEthereumExecutionBlockProof: {
|
|
3024
3023
|
anchorBlockHash: 'H256',
|
|
3025
3024
|
targetToAnchorHeaderChain: 'Vec<ArgonPrimitivesEthereumEthereumExecutionHeader>',
|
|
3026
3025
|
},
|
|
3027
3026
|
/**
|
|
3028
|
-
*
|
|
3027
|
+
* Lookup312: argon_primitives::ethereum::EthereumExecutionHeader
|
|
3029
3028
|
**/
|
|
3030
3029
|
ArgonPrimitivesEthereumEthereumExecutionHeader: {
|
|
3031
3030
|
rlp: 'Bytes',
|
|
3032
3031
|
},
|
|
3033
3032
|
/**
|
|
3034
|
-
*
|
|
3033
|
+
* Lookup316: argon_primitives::ethereum::EthereumReceiptLogProofBlock<MaxReceiptLogs>
|
|
3035
3034
|
**/
|
|
3036
3035
|
ArgonPrimitivesEthereumEthereumReceiptLogProofBlock: {
|
|
3037
3036
|
targetBlockNumber: 'Compact<u64>',
|
|
@@ -3039,28 +3038,28 @@ export default {
|
|
|
3039
3038
|
receiptLogs: 'Vec<ArgonPrimitivesEthereumEthereumReceiptLog>',
|
|
3040
3039
|
},
|
|
3041
3040
|
/**
|
|
3042
|
-
*
|
|
3041
|
+
* Lookup317: argon_primitives::ethereum::EthereumCombinedReceiptProof
|
|
3043
3042
|
**/
|
|
3044
3043
|
ArgonPrimitivesEthereumEthereumCombinedReceiptProof: {
|
|
3045
3044
|
nodes: 'Vec<Bytes>',
|
|
3046
3045
|
receipts: 'Vec<ArgonPrimitivesEthereumEthereumReceiptProofReceipt>',
|
|
3047
3046
|
},
|
|
3048
3047
|
/**
|
|
3049
|
-
*
|
|
3048
|
+
* Lookup321: argon_primitives::ethereum::EthereumReceiptProofReceipt
|
|
3050
3049
|
**/
|
|
3051
3050
|
ArgonPrimitivesEthereumEthereumReceiptProofReceipt: {
|
|
3052
3051
|
transactionIndex: 'Compact<u64>',
|
|
3053
3052
|
nodeIndexes: 'Vec<u16>',
|
|
3054
3053
|
},
|
|
3055
3054
|
/**
|
|
3056
|
-
*
|
|
3055
|
+
* Lookup326: argon_primitives::ethereum::EthereumReceiptLog
|
|
3057
3056
|
**/
|
|
3058
3057
|
ArgonPrimitivesEthereumEthereumReceiptLog: {
|
|
3059
3058
|
transactionIndex: 'Compact<u64>',
|
|
3060
3059
|
eventLog: 'ArgonPrimitivesEthereumEthereumLog',
|
|
3061
3060
|
},
|
|
3062
3061
|
/**
|
|
3063
|
-
*
|
|
3062
|
+
* Lookup327: argon_primitives::ethereum::EthereumLog
|
|
3064
3063
|
**/
|
|
3065
3064
|
ArgonPrimitivesEthereumEthereumLog: {
|
|
3066
3065
|
address: 'H160',
|
|
@@ -3068,7 +3067,7 @@ export default {
|
|
|
3068
3067
|
data: 'Bytes',
|
|
3069
3068
|
},
|
|
3070
3069
|
/**
|
|
3071
|
-
*
|
|
3070
|
+
* Lookup333: pallet_multisig::pallet::Error<T>
|
|
3072
3071
|
**/
|
|
3073
3072
|
PalletMultisigError: {
|
|
3074
3073
|
_enum: [
|
|
@@ -3089,7 +3088,7 @@ export default {
|
|
|
3089
3088
|
],
|
|
3090
3089
|
},
|
|
3091
3090
|
/**
|
|
3092
|
-
*
|
|
3091
|
+
* Lookup336: pallet_proxy::ProxyDefinition<sp_core::crypto::AccountId32, argon_runtime::ProxyType, BlockNumber>
|
|
3093
3092
|
**/
|
|
3094
3093
|
PalletProxyProxyDefinition: {
|
|
3095
3094
|
delegate: 'AccountId32',
|
|
@@ -3097,7 +3096,7 @@ export default {
|
|
|
3097
3096
|
delay: 'u32',
|
|
3098
3097
|
},
|
|
3099
3098
|
/**
|
|
3100
|
-
*
|
|
3099
|
+
* Lookup340: pallet_proxy::Announcement<sp_core::crypto::AccountId32, primitive_types::H256, BlockNumber>
|
|
3101
3100
|
**/
|
|
3102
3101
|
PalletProxyAnnouncement: {
|
|
3103
3102
|
real: 'AccountId32',
|
|
@@ -3105,7 +3104,7 @@ export default {
|
|
|
3105
3104
|
height: 'u32',
|
|
3106
3105
|
},
|
|
3107
3106
|
/**
|
|
3108
|
-
*
|
|
3107
|
+
* Lookup342: pallet_proxy::pallet::Error<T>
|
|
3109
3108
|
**/
|
|
3110
3109
|
PalletProxyError: {
|
|
3111
3110
|
_enum: [
|
|
@@ -3120,18 +3119,18 @@ export default {
|
|
|
3120
3119
|
],
|
|
3121
3120
|
},
|
|
3122
3121
|
/**
|
|
3123
|
-
*
|
|
3122
|
+
* Lookup343: argon_primitives::tick::Ticker
|
|
3124
3123
|
**/
|
|
3125
3124
|
ArgonPrimitivesTickTicker: {
|
|
3126
3125
|
tickDurationMillis: 'Compact<u64>',
|
|
3127
3126
|
channelHoldExpirationTicks: 'Compact<u64>',
|
|
3128
3127
|
},
|
|
3129
3128
|
/**
|
|
3130
|
-
*
|
|
3129
|
+
* Lookup345: pallet_ticks::pallet::Error<T>
|
|
3131
3130
|
**/
|
|
3132
3131
|
PalletTicksError: 'Null',
|
|
3133
3132
|
/**
|
|
3134
|
-
*
|
|
3133
|
+
* Lookup348: pallet_mining_slot::MinerNonceScoring<T>
|
|
3135
3134
|
**/
|
|
3136
3135
|
PalletMiningSlotMinerNonceScoring: {
|
|
3137
3136
|
nonce: 'U256',
|
|
@@ -3140,7 +3139,7 @@ export default {
|
|
|
3140
3139
|
frameStartBlocksWonSurplus: 'i16',
|
|
3141
3140
|
},
|
|
3142
3141
|
/**
|
|
3143
|
-
*
|
|
3142
|
+
* Lookup360: argon_primitives::block_seal::MiningBidStats
|
|
3144
3143
|
**/
|
|
3145
3144
|
ArgonPrimitivesBlockSealMiningBidStats: {
|
|
3146
3145
|
bidsCount: 'u32',
|
|
@@ -3149,7 +3148,7 @@ export default {
|
|
|
3149
3148
|
bidAmountSum: 'u128',
|
|
3150
3149
|
},
|
|
3151
3150
|
/**
|
|
3152
|
-
*
|
|
3151
|
+
* Lookup364: argon_primitives::block_seal::MiningSlotConfig
|
|
3153
3152
|
**/
|
|
3154
3153
|
ArgonPrimitivesBlockSealMiningSlotConfig: {
|
|
3155
3154
|
ticksBeforeBidEndForVrfClose: 'Compact<u64>',
|
|
@@ -3157,7 +3156,7 @@ export default {
|
|
|
3157
3156
|
slotBiddingStartAfterTicks: 'Compact<u64>',
|
|
3158
3157
|
},
|
|
3159
3158
|
/**
|
|
3160
|
-
*
|
|
3159
|
+
* Lookup374: pallet_mining_slot::pallet::Error<T>
|
|
3161
3160
|
**/
|
|
3162
3161
|
PalletMiningSlotError: {
|
|
3163
3162
|
_enum: [
|
|
@@ -3175,7 +3174,7 @@ export default {
|
|
|
3175
3174
|
],
|
|
3176
3175
|
},
|
|
3177
3176
|
/**
|
|
3178
|
-
*
|
|
3177
|
+
* Lookup375: argon_primitives::bitcoin::UtxoValue
|
|
3179
3178
|
**/
|
|
3180
3179
|
ArgonPrimitivesBitcoinUtxoValue: {
|
|
3181
3180
|
utxoId: 'u64',
|
|
@@ -3185,7 +3184,7 @@ export default {
|
|
|
3185
3184
|
watchForSpentUntilHeight: 'Compact<u64>',
|
|
3186
3185
|
},
|
|
3187
3186
|
/**
|
|
3188
|
-
*
|
|
3187
|
+
* Lookup376: argon_primitives::bitcoin::BitcoinCosignScriptPubkey
|
|
3189
3188
|
**/
|
|
3190
3189
|
ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey: {
|
|
3191
3190
|
_enum: {
|
|
@@ -3195,13 +3194,13 @@ export default {
|
|
|
3195
3194
|
},
|
|
3196
3195
|
},
|
|
3197
3196
|
/**
|
|
3198
|
-
*
|
|
3197
|
+
* Lookup385: argon_primitives::bitcoin::BitcoinNetwork
|
|
3199
3198
|
**/
|
|
3200
3199
|
ArgonPrimitivesBitcoinBitcoinNetwork: {
|
|
3201
3200
|
_enum: ['Bitcoin', 'Testnet', 'Signet', 'Regtest'],
|
|
3202
3201
|
},
|
|
3203
3202
|
/**
|
|
3204
|
-
*
|
|
3203
|
+
* Lookup386: pallet_bitcoin_utxos::pallet::Error<T>
|
|
3205
3204
|
**/
|
|
3206
3205
|
PalletBitcoinUtxosError: {
|
|
3207
3206
|
_enum: [
|
|
@@ -3223,7 +3222,7 @@ export default {
|
|
|
3223
3222
|
],
|
|
3224
3223
|
},
|
|
3225
3224
|
/**
|
|
3226
|
-
*
|
|
3225
|
+
* Lookup387: argon_primitives::vault::Vault<sp_core::crypto::AccountId32, Balance>
|
|
3227
3226
|
**/
|
|
3228
3227
|
ArgonPrimitivesVault: {
|
|
3229
3228
|
operatorAccountId: 'AccountId32',
|
|
@@ -3245,14 +3244,14 @@ export default {
|
|
|
3245
3244
|
operationalMinimumReleaseTick: 'Option<u64>',
|
|
3246
3245
|
},
|
|
3247
3246
|
/**
|
|
3248
|
-
*
|
|
3247
|
+
* Lookup394: argon_primitives::vault::VaultArgonotCommitment<Balance>
|
|
3249
3248
|
**/
|
|
3250
3249
|
ArgonPrimitivesVaultVaultArgonotCommitment: {
|
|
3251
3250
|
committedMicronots: 'Compact<u128>',
|
|
3252
3251
|
encumberedMicronots: 'Compact<u128>',
|
|
3253
3252
|
},
|
|
3254
3253
|
/**
|
|
3255
|
-
*
|
|
3254
|
+
* Lookup396: argon_primitives::bitcoin::BitcoinXPub
|
|
3256
3255
|
**/
|
|
3257
3256
|
ArgonPrimitivesBitcoinBitcoinXPub: {
|
|
3258
3257
|
publicKey: 'ArgonPrimitivesBitcoinCompressedBitcoinPubkey',
|
|
@@ -3263,13 +3262,13 @@ export default {
|
|
|
3263
3262
|
network: 'ArgonPrimitivesBitcoinNetworkKind',
|
|
3264
3263
|
},
|
|
3265
3264
|
/**
|
|
3266
|
-
*
|
|
3265
|
+
* Lookup398: argon_primitives::bitcoin::NetworkKind
|
|
3267
3266
|
**/
|
|
3268
3267
|
ArgonPrimitivesBitcoinNetworkKind: {
|
|
3269
3268
|
_enum: ['Main', 'Test'],
|
|
3270
3269
|
},
|
|
3271
3270
|
/**
|
|
3272
|
-
*
|
|
3271
|
+
* Lookup407: pallet_vaults::pallet::VaultFrameRevenue<T>
|
|
3273
3272
|
**/
|
|
3274
3273
|
PalletVaultsVaultFrameRevenue: {
|
|
3275
3274
|
frameId: 'Compact<u64>',
|
|
@@ -3290,7 +3289,7 @@ export default {
|
|
|
3290
3289
|
uncollectedRevenue: 'Compact<u128>',
|
|
3291
3290
|
},
|
|
3292
3291
|
/**
|
|
3293
|
-
*
|
|
3292
|
+
* Lookup410: pallet_vaults::pallet::RecentCapacityDrop<Balance, BlockNumber>
|
|
3294
3293
|
**/
|
|
3295
3294
|
PalletVaultsRecentCapacityDrop: {
|
|
3296
3295
|
blockNumber: 'Compact<u32>',
|
|
@@ -3299,7 +3298,7 @@ export default {
|
|
|
3299
3298
|
noFeeFailuresUsed: 'Compact<u32>',
|
|
3300
3299
|
},
|
|
3301
3300
|
/**
|
|
3302
|
-
*
|
|
3301
|
+
* Lookup412: pallet_vaults::pallet::Error<T>
|
|
3303
3302
|
**/
|
|
3304
3303
|
PalletVaultsError: {
|
|
3305
3304
|
_enum: [
|
|
@@ -3340,7 +3339,7 @@ export default {
|
|
|
3340
3339
|
],
|
|
3341
3340
|
},
|
|
3342
3341
|
/**
|
|
3343
|
-
*
|
|
3342
|
+
* Lookup413: pallet_bitcoin_locks::pallet::LockedBitcoin<T>
|
|
3344
3343
|
**/
|
|
3345
3344
|
PalletBitcoinLocksLockedBitcoin: {
|
|
3346
3345
|
vaultId: 'Compact<u32>',
|
|
@@ -3365,7 +3364,7 @@ export default {
|
|
|
3365
3364
|
createdAtArgonBlock: 'Compact<u32>',
|
|
3366
3365
|
},
|
|
3367
3366
|
/**
|
|
3368
|
-
*
|
|
3367
|
+
* Lookup417: pallet_bitcoin_locks::pallet::LockReleaseRequest<Balance>
|
|
3369
3368
|
**/
|
|
3370
3369
|
PalletBitcoinLocksLockReleaseRequest: {
|
|
3371
3370
|
utxoId: 'Compact<u64>',
|
|
@@ -3376,7 +3375,7 @@ export default {
|
|
|
3376
3375
|
redemptionAmount: 'Compact<u128>',
|
|
3377
3376
|
},
|
|
3378
3377
|
/**
|
|
3379
|
-
*
|
|
3378
|
+
* Lookup419: pallet_bitcoin_locks::pallet::OrphanedUtxo<BlockNumber>
|
|
3380
3379
|
**/
|
|
3381
3380
|
PalletBitcoinLocksOrphanedUtxo: {
|
|
3382
3381
|
utxoId: 'Compact<u64>',
|
|
@@ -3386,7 +3385,7 @@ export default {
|
|
|
3386
3385
|
cosignRequest: 'Option<PalletBitcoinLocksOrphanedUtxoCosignRequest>',
|
|
3387
3386
|
},
|
|
3388
3387
|
/**
|
|
3389
|
-
*
|
|
3388
|
+
* Lookup421: pallet_bitcoin_locks::pallet::OrphanedUtxoCosignRequest<BlockNumber>
|
|
3390
3389
|
**/
|
|
3391
3390
|
PalletBitcoinLocksOrphanedUtxoCosignRequest: {
|
|
3392
3391
|
bitcoinNetworkFee: 'u64',
|
|
@@ -3394,7 +3393,7 @@ export default {
|
|
|
3394
3393
|
createdAtArgonBlockNumber: 'u32',
|
|
3395
3394
|
},
|
|
3396
3395
|
/**
|
|
3397
|
-
*
|
|
3396
|
+
* Lookup428: pallet_bitcoin_locks::pallet::Error<T>
|
|
3398
3397
|
**/
|
|
3399
3398
|
PalletBitcoinLocksError: {
|
|
3400
3399
|
_enum: {
|
|
@@ -3436,7 +3435,7 @@ export default {
|
|
|
3436
3435
|
},
|
|
3437
3436
|
},
|
|
3438
3437
|
/**
|
|
3439
|
-
*
|
|
3438
|
+
* Lookup429: argon_primitives::vault::VaultError
|
|
3440
3439
|
**/
|
|
3441
3440
|
ArgonPrimitivesVaultVaultError: {
|
|
3442
3441
|
_enum: [
|
|
@@ -3456,7 +3455,7 @@ export default {
|
|
|
3456
3455
|
],
|
|
3457
3456
|
},
|
|
3458
3457
|
/**
|
|
3459
|
-
*
|
|
3458
|
+
* Lookup441: pallet_notaries::pallet::Error<T>
|
|
3460
3459
|
**/
|
|
3461
3460
|
PalletNotariesError: {
|
|
3462
3461
|
_enum: [
|
|
@@ -3472,7 +3471,7 @@ export default {
|
|
|
3472
3471
|
],
|
|
3473
3472
|
},
|
|
3474
3473
|
/**
|
|
3475
|
-
*
|
|
3474
|
+
* Lookup445: argon_primitives::notary::NotaryNotebookKeyDetails
|
|
3476
3475
|
**/
|
|
3477
3476
|
ArgonPrimitivesNotaryNotaryNotebookKeyDetails: {
|
|
3478
3477
|
notebookNumber: 'Compact<u32>',
|
|
@@ -3482,7 +3481,7 @@ export default {
|
|
|
3482
3481
|
parentSecret: 'Option<H256>',
|
|
3483
3482
|
},
|
|
3484
3483
|
/**
|
|
3485
|
-
*
|
|
3484
|
+
* Lookup448: pallet_notebook::pallet::Error<T>
|
|
3486
3485
|
**/
|
|
3487
3486
|
PalletNotebookError: {
|
|
3488
3487
|
_enum: [
|
|
@@ -3504,7 +3503,7 @@ export default {
|
|
|
3504
3503
|
],
|
|
3505
3504
|
},
|
|
3506
3505
|
/**
|
|
3507
|
-
*
|
|
3506
|
+
* Lookup449: pallet_localchain_transfer::QueuedTransferOut<sp_core::crypto::AccountId32, Balance>
|
|
3508
3507
|
**/
|
|
3509
3508
|
PalletLocalchainTransferQueuedTransferOut: {
|
|
3510
3509
|
accountId: 'AccountId32',
|
|
@@ -3513,11 +3512,11 @@ export default {
|
|
|
3513
3512
|
notaryId: 'u32',
|
|
3514
3513
|
},
|
|
3515
3514
|
/**
|
|
3516
|
-
*
|
|
3515
|
+
* Lookup451: frame_support::PalletId
|
|
3517
3516
|
**/
|
|
3518
3517
|
FrameSupportPalletId: '[u8;8]',
|
|
3519
3518
|
/**
|
|
3520
|
-
*
|
|
3519
|
+
* Lookup452: pallet_localchain_transfer::pallet::Error<T>
|
|
3521
3520
|
**/
|
|
3522
3521
|
PalletLocalchainTransferError: {
|
|
3523
3522
|
_enum: [
|
|
@@ -3532,7 +3531,7 @@ export default {
|
|
|
3532
3531
|
],
|
|
3533
3532
|
},
|
|
3534
3533
|
/**
|
|
3535
|
-
*
|
|
3534
|
+
* Lookup456: argon_primitives::notary::NotaryNotebookVoteDigestDetails
|
|
3536
3535
|
**/
|
|
3537
3536
|
ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails: {
|
|
3538
3537
|
notaryId: 'Compact<u32>',
|
|
@@ -3542,13 +3541,13 @@ export default {
|
|
|
3542
3541
|
blockVotingPower: 'Compact<u128>',
|
|
3543
3542
|
},
|
|
3544
3543
|
/**
|
|
3545
|
-
*
|
|
3544
|
+
* Lookup461: pallet_block_seal_spec::pallet::Error<T>
|
|
3546
3545
|
**/
|
|
3547
3546
|
PalletBlockSealSpecError: {
|
|
3548
3547
|
_enum: ['MaxNotebooksAtTickExceeded'],
|
|
3549
3548
|
},
|
|
3550
3549
|
/**
|
|
3551
|
-
*
|
|
3550
|
+
* Lookup463: pallet_domains::pallet::Error<T>
|
|
3552
3551
|
**/
|
|
3553
3552
|
PalletDomainsError: {
|
|
3554
3553
|
_enum: [
|
|
@@ -3560,7 +3559,7 @@ export default {
|
|
|
3560
3559
|
],
|
|
3561
3560
|
},
|
|
3562
3561
|
/**
|
|
3563
|
-
*
|
|
3562
|
+
* Lookup465: pallet_price_index::CpiMeasurementBucket
|
|
3564
3563
|
**/
|
|
3565
3564
|
PalletPriceIndexCpiMeasurementBucket: {
|
|
3566
3565
|
tickRange: '(u64,u64)',
|
|
@@ -3568,7 +3567,7 @@ export default {
|
|
|
3568
3567
|
measurementsCount: 'u32',
|
|
3569
3568
|
},
|
|
3570
3569
|
/**
|
|
3571
|
-
*
|
|
3570
|
+
* Lookup469: pallet_price_index::ArgonotAverageFrameAccumulator<Balance>
|
|
3572
3571
|
**/
|
|
3573
3572
|
PalletPriceIndexArgonotAverageFrameAccumulator: {
|
|
3574
3573
|
frameId: 'Compact<u64>',
|
|
@@ -3576,7 +3575,7 @@ export default {
|
|
|
3576
3575
|
sampleCount: 'Compact<u32>',
|
|
3577
3576
|
},
|
|
3578
3577
|
/**
|
|
3579
|
-
*
|
|
3578
|
+
* Lookup470: pallet_price_index::pallet::Error<T>
|
|
3580
3579
|
**/
|
|
3581
3580
|
PalletPriceIndexError: {
|
|
3582
3581
|
_enum: [
|
|
@@ -3587,7 +3586,7 @@ export default {
|
|
|
3587
3586
|
],
|
|
3588
3587
|
},
|
|
3589
3588
|
/**
|
|
3590
|
-
*
|
|
3589
|
+
* Lookup471: pallet_grandpa::StoredState<N>
|
|
3591
3590
|
**/
|
|
3592
3591
|
PalletGrandpaStoredState: {
|
|
3593
3592
|
_enum: {
|
|
@@ -3604,7 +3603,7 @@ export default {
|
|
|
3604
3603
|
},
|
|
3605
3604
|
},
|
|
3606
3605
|
/**
|
|
3607
|
-
*
|
|
3606
|
+
* Lookup472: pallet_grandpa::StoredPendingChange<N, Limit>
|
|
3608
3607
|
**/
|
|
3609
3608
|
PalletGrandpaStoredPendingChange: {
|
|
3610
3609
|
scheduledAt: 'u32',
|
|
@@ -3613,7 +3612,7 @@ export default {
|
|
|
3613
3612
|
forced: 'Option<u32>',
|
|
3614
3613
|
},
|
|
3615
3614
|
/**
|
|
3616
|
-
*
|
|
3615
|
+
* Lookup474: pallet_grandpa::pallet::Error<T>
|
|
3617
3616
|
**/
|
|
3618
3617
|
PalletGrandpaError: {
|
|
3619
3618
|
_enum: [
|
|
@@ -3627,7 +3626,7 @@ export default {
|
|
|
3627
3626
|
],
|
|
3628
3627
|
},
|
|
3629
3628
|
/**
|
|
3630
|
-
*
|
|
3629
|
+
* Lookup475: argon_primitives::providers::BlockSealerInfo<sp_core::crypto::AccountId32, argon_primitives::block_seal::app::Public>
|
|
3631
3630
|
**/
|
|
3632
3631
|
ArgonPrimitivesProvidersBlockSealerInfo: {
|
|
3633
3632
|
blockAuthorAccountId: 'AccountId32',
|
|
@@ -3635,7 +3634,7 @@ export default {
|
|
|
3635
3634
|
blockSealAuthority: 'Option<ArgonPrimitivesBlockSealAppPublic>',
|
|
3636
3635
|
},
|
|
3637
3636
|
/**
|
|
3638
|
-
*
|
|
3637
|
+
* Lookup477: pallet_block_seal::pallet::Error<T>
|
|
3639
3638
|
**/
|
|
3640
3639
|
PalletBlockSealError: {
|
|
3641
3640
|
_enum: [
|
|
@@ -3663,11 +3662,11 @@ export default {
|
|
|
3663
3662
|
],
|
|
3664
3663
|
},
|
|
3665
3664
|
/**
|
|
3666
|
-
*
|
|
3665
|
+
* Lookup481: pallet_block_rewards::pallet::Error<T>
|
|
3667
3666
|
**/
|
|
3668
3667
|
PalletBlockRewardsError: 'Null',
|
|
3669
3668
|
/**
|
|
3670
|
-
*
|
|
3669
|
+
* Lookup482: pallet_mint::pallet::PendingMintUtxo<T>
|
|
3671
3670
|
**/
|
|
3672
3671
|
PalletMintPendingMintUtxo: {
|
|
3673
3672
|
utxoId: 'Compact<u64>',
|
|
@@ -3676,7 +3675,7 @@ export default {
|
|
|
3676
3675
|
maxAmountPerFrame: 'Compact<u128>',
|
|
3677
3676
|
},
|
|
3678
3677
|
/**
|
|
3679
|
-
*
|
|
3678
|
+
* Lookup484: pallet_mint::pallet::MintQueueCursor
|
|
3680
3679
|
**/
|
|
3681
3680
|
PalletMintMintQueueCursor: {
|
|
3682
3681
|
payoutStartIndex: 'Compact<u64>',
|
|
@@ -3684,7 +3683,7 @@ export default {
|
|
|
3684
3683
|
payoutCursorFrameId: 'Option<u64>',
|
|
3685
3684
|
},
|
|
3686
3685
|
/**
|
|
3687
|
-
*
|
|
3686
|
+
* Lookup487: pallet_mint::pallet::MintAction<B>
|
|
3688
3687
|
**/
|
|
3689
3688
|
PalletMintMintAction: {
|
|
3690
3689
|
argonBurned: 'u128',
|
|
@@ -3692,13 +3691,13 @@ export default {
|
|
|
3692
3691
|
bitcoinMinted: 'u128',
|
|
3693
3692
|
},
|
|
3694
3693
|
/**
|
|
3695
|
-
*
|
|
3694
|
+
* Lookup489: pallet_mint::pallet::Error<T>
|
|
3696
3695
|
**/
|
|
3697
3696
|
PalletMintError: {
|
|
3698
3697
|
_enum: ['TooManyPendingMints'],
|
|
3699
3698
|
},
|
|
3700
3699
|
/**
|
|
3701
|
-
*
|
|
3700
|
+
* Lookup491: pallet_balances::types::BalanceLock<Balance>
|
|
3702
3701
|
**/
|
|
3703
3702
|
PalletBalancesBalanceLock: {
|
|
3704
3703
|
id: '[u8;8]',
|
|
@@ -3706,34 +3705,34 @@ export default {
|
|
|
3706
3705
|
reasons: 'PalletBalancesReasons',
|
|
3707
3706
|
},
|
|
3708
3707
|
/**
|
|
3709
|
-
*
|
|
3708
|
+
* Lookup492: pallet_balances::types::Reasons
|
|
3710
3709
|
**/
|
|
3711
3710
|
PalletBalancesReasons: {
|
|
3712
3711
|
_enum: ['Fee', 'Misc', 'All'],
|
|
3713
3712
|
},
|
|
3714
3713
|
/**
|
|
3715
|
-
*
|
|
3714
|
+
* Lookup495: pallet_balances::types::ReserveData<ReserveIdentifier, Balance>
|
|
3716
3715
|
**/
|
|
3717
3716
|
PalletBalancesReserveData: {
|
|
3718
3717
|
id: '[u8;8]',
|
|
3719
3718
|
amount: 'u128',
|
|
3720
3719
|
},
|
|
3721
3720
|
/**
|
|
3722
|
-
*
|
|
3721
|
+
* Lookup498: frame_support::traits::tokens::misc::IdAmount<argon_runtime::RuntimeHoldReason, Balance>
|
|
3723
3722
|
**/
|
|
3724
3723
|
FrameSupportTokensMiscIdAmountRuntimeHoldReason: {
|
|
3725
3724
|
id: 'ArgonRuntimeRuntimeHoldReason',
|
|
3726
3725
|
amount: 'u128',
|
|
3727
3726
|
},
|
|
3728
3727
|
/**
|
|
3729
|
-
*
|
|
3728
|
+
* Lookup501: frame_support::traits::tokens::misc::IdAmount<argon_runtime::RuntimeFreezeReason, Balance>
|
|
3730
3729
|
**/
|
|
3731
3730
|
FrameSupportTokensMiscIdAmountRuntimeFreezeReason: {
|
|
3732
3731
|
id: 'ArgonRuntimeRuntimeFreezeReason',
|
|
3733
3732
|
amount: 'u128',
|
|
3734
3733
|
},
|
|
3735
3734
|
/**
|
|
3736
|
-
*
|
|
3735
|
+
* Lookup502: argon_runtime::RuntimeFreezeReason
|
|
3737
3736
|
**/
|
|
3738
3737
|
ArgonRuntimeRuntimeFreezeReason: {
|
|
3739
3738
|
_enum: {
|
|
@@ -3760,13 +3759,13 @@ export default {
|
|
|
3760
3759
|
},
|
|
3761
3760
|
},
|
|
3762
3761
|
/**
|
|
3763
|
-
*
|
|
3762
|
+
* Lookup503: pallet_block_rewards::pallet::FreezeReason
|
|
3764
3763
|
**/
|
|
3765
3764
|
PalletBlockRewardsFreezeReason: {
|
|
3766
3765
|
_enum: ['MaturationPeriod'],
|
|
3767
3766
|
},
|
|
3768
3767
|
/**
|
|
3769
|
-
*
|
|
3768
|
+
* Lookup505: pallet_balances::pallet::Error<T, I>
|
|
3770
3769
|
**/
|
|
3771
3770
|
PalletBalancesError: {
|
|
3772
3771
|
_enum: [
|
|
@@ -3785,62 +3784,62 @@ export default {
|
|
|
3785
3784
|
],
|
|
3786
3785
|
},
|
|
3787
3786
|
/**
|
|
3788
|
-
*
|
|
3787
|
+
* Lookup507: pallet_tx_pause::pallet::Error<T>
|
|
3789
3788
|
**/
|
|
3790
3789
|
PalletTxPauseError: {
|
|
3791
3790
|
_enum: ['IsPaused', 'IsUnpaused', 'Unpausable', 'NotFound'],
|
|
3792
3791
|
},
|
|
3793
3792
|
/**
|
|
3794
|
-
*
|
|
3793
|
+
* Lookup508: pallet_transaction_payment::Releases
|
|
3795
3794
|
**/
|
|
3796
3795
|
PalletTransactionPaymentReleases: {
|
|
3797
3796
|
_enum: ['V1Ancient', 'V2'],
|
|
3798
3797
|
},
|
|
3799
3798
|
/**
|
|
3800
|
-
*
|
|
3799
|
+
* Lookup509: frame_support::traits::storage::NoDrop<frame_support::traits::tokens::fungible::imbalance::Imbalance<B, OnDrop, OppositeOnDrop>>
|
|
3801
3800
|
**/
|
|
3802
3801
|
FrameSupportStorageNoDrop: 'FrameSupportTokensFungibleImbalance',
|
|
3803
3802
|
/**
|
|
3804
|
-
*
|
|
3803
|
+
* Lookup510: frame_support::traits::tokens::fungible::imbalance::Imbalance<B, OnDrop, OppositeOnDrop>
|
|
3805
3804
|
**/
|
|
3806
3805
|
FrameSupportTokensFungibleImbalance: {
|
|
3807
3806
|
amount: 'u128',
|
|
3808
3807
|
},
|
|
3809
3808
|
/**
|
|
3810
|
-
*
|
|
3809
|
+
* Lookup511: pallet_utility::pallet::Error<T>
|
|
3811
3810
|
**/
|
|
3812
3811
|
PalletUtilityError: {
|
|
3813
3812
|
_enum: ['TooManyCalls'],
|
|
3814
3813
|
},
|
|
3815
3814
|
/**
|
|
3816
|
-
*
|
|
3815
|
+
* Lookup512: pallet_sudo::pallet::Error<T>
|
|
3817
3816
|
**/
|
|
3818
3817
|
PalletSudoError: {
|
|
3819
3818
|
_enum: ['RequireSudo'],
|
|
3820
3819
|
},
|
|
3821
3820
|
/**
|
|
3822
|
-
*
|
|
3821
|
+
* Lookup513: pallet_treasury::pallet::FrameVaultCapital<T>
|
|
3823
3822
|
**/
|
|
3824
3823
|
PalletTreasuryFrameVaultCapital: {
|
|
3825
3824
|
frameId: 'Compact<u64>',
|
|
3826
3825
|
vaults: 'BTreeMap<u32, PalletTreasuryVaultCapital>',
|
|
3827
3826
|
},
|
|
3828
3827
|
/**
|
|
3829
|
-
*
|
|
3828
|
+
* Lookup515: pallet_treasury::pallet::VaultCapital<T>
|
|
3830
3829
|
**/
|
|
3831
3830
|
PalletTreasuryVaultCapital: {
|
|
3832
3831
|
bondLotAllocations: 'Vec<PalletTreasuryBondLotAllocation>',
|
|
3833
3832
|
eligibleBonds: 'Compact<u32>',
|
|
3834
3833
|
},
|
|
3835
3834
|
/**
|
|
3836
|
-
*
|
|
3835
|
+
* Lookup517: pallet_treasury::pallet::BondLotAllocation
|
|
3837
3836
|
**/
|
|
3838
3837
|
PalletTreasuryBondLotAllocation: {
|
|
3839
3838
|
bondLotId: 'Compact<u64>',
|
|
3840
3839
|
prorata: 'u128',
|
|
3841
3840
|
},
|
|
3842
3841
|
/**
|
|
3843
|
-
*
|
|
3842
|
+
* Lookup522: pallet_treasury::pallet::FrameArgonotBondParticipants<T>
|
|
3844
3843
|
**/
|
|
3845
3844
|
PalletTreasuryFrameArgonotBondParticipants: {
|
|
3846
3845
|
frameId: 'Compact<u64>',
|
|
@@ -3848,14 +3847,14 @@ export default {
|
|
|
3848
3847
|
bondLots: 'Vec<PalletTreasuryBondLotSummary>',
|
|
3849
3848
|
},
|
|
3850
3849
|
/**
|
|
3851
|
-
*
|
|
3850
|
+
* Lookup524: pallet_treasury::pallet::BondLotSummary
|
|
3852
3851
|
**/
|
|
3853
3852
|
PalletTreasuryBondLotSummary: {
|
|
3854
3853
|
bondLotId: 'Compact<u64>',
|
|
3855
3854
|
bonds: 'Compact<u32>',
|
|
3856
3855
|
},
|
|
3857
3856
|
/**
|
|
3858
|
-
*
|
|
3857
|
+
* Lookup526: pallet_treasury::pallet::BondLot<T>
|
|
3859
3858
|
**/
|
|
3860
3859
|
PalletTreasuryBondLot: {
|
|
3861
3860
|
owner: 'AccountId32',
|
|
@@ -3870,7 +3869,7 @@ export default {
|
|
|
3870
3869
|
releaseReason: 'Option<PalletTreasuryBondReleaseReason>',
|
|
3871
3870
|
},
|
|
3872
3871
|
/**
|
|
3873
|
-
*
|
|
3872
|
+
* Lookup527: pallet_treasury::pallet::BondProgram
|
|
3874
3873
|
**/
|
|
3875
3874
|
PalletTreasuryBondProgram: {
|
|
3876
3875
|
_enum: {
|
|
@@ -3883,7 +3882,7 @@ export default {
|
|
|
3883
3882
|
},
|
|
3884
3883
|
},
|
|
3885
3884
|
/**
|
|
3886
|
-
*
|
|
3885
|
+
* Lookup531: pallet_treasury::pallet::Error<T>
|
|
3887
3886
|
**/
|
|
3888
3887
|
PalletTreasuryError: {
|
|
3889
3888
|
_enum: [
|
|
@@ -3908,44 +3907,46 @@ export default {
|
|
|
3908
3907
|
],
|
|
3909
3908
|
},
|
|
3910
3909
|
/**
|
|
3911
|
-
*
|
|
3910
|
+
* Lookup532: pallet_fee_control::pallet::Error<T>
|
|
3912
3911
|
**/
|
|
3913
3912
|
PalletFeeControlError: {
|
|
3914
3913
|
_enum: ['SponsoredFeeTooHigh'],
|
|
3915
3914
|
},
|
|
3916
3915
|
/**
|
|
3917
|
-
*
|
|
3916
|
+
* Lookup533: pallet_operational_accounts::pallet::OperationalAccount<T>
|
|
3918
3917
|
**/
|
|
3919
3918
|
PalletOperationalAccountsOperationalAccount: {
|
|
3920
3919
|
vaultAccount: 'AccountId32',
|
|
3921
|
-
|
|
3922
|
-
miningBotAccount: 'AccountId32',
|
|
3920
|
+
miningAccount: 'AccountId32',
|
|
3923
3921
|
encryptionPubkey: 'PalletOperationalAccountsOpaqueEncryptionPubkey',
|
|
3924
|
-
|
|
3925
|
-
|
|
3922
|
+
referrer: 'Option<AccountId32>',
|
|
3923
|
+
isTreasuryCertified: 'bool',
|
|
3924
|
+
isUpgradedToOperations: 'bool',
|
|
3925
|
+
uniswapArgonTransfersInAmount: 'u128',
|
|
3926
|
+
accountBitcoinAmount: 'u128',
|
|
3927
|
+
accountVaultBondAmount: 'u128',
|
|
3926
3928
|
vaultCreated: 'bool',
|
|
3927
|
-
|
|
3928
|
-
|
|
3929
|
-
hasTreasuryPoolParticipation: 'bool',
|
|
3929
|
+
vaultBitcoinAccrual: 'u128',
|
|
3930
|
+
vaultBitcoinAppliedTotal: 'u128',
|
|
3930
3931
|
miningSeatAccrual: 'Compact<u32>',
|
|
3931
3932
|
miningSeatAppliedTotal: 'Compact<u32>',
|
|
3932
3933
|
operationalReferralsCount: 'Compact<u32>',
|
|
3933
|
-
|
|
3934
|
-
|
|
3934
|
+
upgradeCodePending: 'bool',
|
|
3935
|
+
availableUpgradeCodes: 'Compact<u32>',
|
|
3935
3936
|
rewardsEarnedCount: 'Compact<u32>',
|
|
3936
3937
|
rewardsEarnedAmount: 'u128',
|
|
3937
3938
|
rewardsCollectedAmount: 'u128',
|
|
3938
|
-
|
|
3939
|
+
isOperationallyCertified: 'bool',
|
|
3939
3940
|
},
|
|
3940
3941
|
/**
|
|
3941
|
-
*
|
|
3942
|
+
* Lookup534: pallet_operational_accounts::pallet::RewardsConfig<Balance>
|
|
3942
3943
|
**/
|
|
3943
3944
|
PalletOperationalAccountsRewardsConfig: {
|
|
3944
|
-
|
|
3945
|
-
|
|
3945
|
+
operationalActivationReward: 'Compact<u128>',
|
|
3946
|
+
operationalReferralBonusReward: 'Compact<u128>',
|
|
3946
3947
|
},
|
|
3947
3948
|
/**
|
|
3948
|
-
*
|
|
3949
|
+
* Lookup536: pallet_operational_accounts::pallet::Error<T>
|
|
3949
3950
|
**/
|
|
3950
3951
|
PalletOperationalAccountsError: {
|
|
3951
3952
|
_enum: [
|
|
@@ -3954,12 +3955,17 @@ export default {
|
|
|
3954
3955
|
'AccountAlreadyLinked',
|
|
3955
3956
|
'InvalidAccountProof',
|
|
3956
3957
|
'NotOperationalAccount',
|
|
3957
|
-
'InvalidReferralProof',
|
|
3958
|
-
'ReferralProofExpired',
|
|
3959
3958
|
'RegistrationInviteRequired',
|
|
3959
|
+
'ReferrerNotOperationalAccount',
|
|
3960
|
+
'RegisteredReferrerMismatch',
|
|
3961
|
+
'NotTreasuryCertified',
|
|
3962
|
+
'TreasuryCertificationNoLongerMet',
|
|
3963
|
+
'AccountAlreadyUpgraded',
|
|
3964
|
+
'NoAvailableUpgrades',
|
|
3965
|
+
'CannotUpgradeSelf',
|
|
3960
3966
|
'NoProgressUpdateProvided',
|
|
3961
3967
|
'EncryptedServerTooLong',
|
|
3962
|
-
'
|
|
3968
|
+
'NotReferrerOfAccount',
|
|
3963
3969
|
'NoPendingRewards',
|
|
3964
3970
|
'RewardClaimBelowMinimum',
|
|
3965
3971
|
'RewardClaimNotWholeArgon',
|
|
@@ -3970,13 +3976,13 @@ export default {
|
|
|
3970
3976
|
],
|
|
3971
3977
|
},
|
|
3972
3978
|
/**
|
|
3973
|
-
*
|
|
3979
|
+
* Lookup537: pallet_ethereum_verifier::types::FinalizedBeaconHeaderState
|
|
3974
3980
|
**/
|
|
3975
3981
|
PalletEthereumVerifierFinalizedBeaconHeaderState: {
|
|
3976
3982
|
slot: 'Compact<u64>',
|
|
3977
3983
|
},
|
|
3978
3984
|
/**
|
|
3979
|
-
*
|
|
3985
|
+
* Lookup538: pallet_ethereum_verifier::types::ExecutionHeaderAnchor
|
|
3980
3986
|
**/
|
|
3981
3987
|
PalletEthereumVerifierExecutionHeaderAnchor: {
|
|
3982
3988
|
blockNumber: 'Compact<u64>',
|
|
@@ -3987,7 +3993,7 @@ export default {
|
|
|
3987
3993
|
receiptsRoot: 'H256',
|
|
3988
3994
|
},
|
|
3989
3995
|
/**
|
|
3990
|
-
*
|
|
3996
|
+
* Lookup539: pallet_ethereum_verifier::types::SyncCommitteePrepared
|
|
3991
3997
|
**/
|
|
3992
3998
|
PalletEthereumVerifierSyncCommitteePrepared: {
|
|
3993
3999
|
root: 'H256',
|
|
@@ -3995,13 +4001,13 @@ export default {
|
|
|
3995
4001
|
aggregatePubkey: 'SnowbridgeMilagroBlsKeysPublicKey',
|
|
3996
4002
|
},
|
|
3997
4003
|
/**
|
|
3998
|
-
*
|
|
4004
|
+
* Lookup541: snowbridge_milagro_bls::keys::PublicKey
|
|
3999
4005
|
**/
|
|
4000
4006
|
SnowbridgeMilagroBlsKeysPublicKey: {
|
|
4001
4007
|
point: 'SnowbridgeAmclBls381Ecp',
|
|
4002
4008
|
},
|
|
4003
4009
|
/**
|
|
4004
|
-
*
|
|
4010
|
+
* Lookup542: snowbridge_amcl::bls381::ecp::ECP
|
|
4005
4011
|
**/
|
|
4006
4012
|
SnowbridgeAmclBls381Ecp: {
|
|
4007
4013
|
x: 'SnowbridgeAmclBls381Fp',
|
|
@@ -4009,26 +4015,26 @@ export default {
|
|
|
4009
4015
|
z: 'SnowbridgeAmclBls381Fp',
|
|
4010
4016
|
},
|
|
4011
4017
|
/**
|
|
4012
|
-
*
|
|
4018
|
+
* Lookup543: snowbridge_amcl::bls381::fp::FP
|
|
4013
4019
|
**/
|
|
4014
4020
|
SnowbridgeAmclBls381Fp: {
|
|
4015
4021
|
x: 'SnowbridgeAmclBls381Big',
|
|
4016
4022
|
xes: 'i32',
|
|
4017
4023
|
},
|
|
4018
4024
|
/**
|
|
4019
|
-
*
|
|
4025
|
+
* Lookup544: snowbridge_amcl::bls381::big::Big
|
|
4020
4026
|
**/
|
|
4021
4027
|
SnowbridgeAmclBls381Big: {
|
|
4022
4028
|
w: '[i32;14]',
|
|
4023
4029
|
},
|
|
4024
4030
|
/**
|
|
4025
|
-
*
|
|
4031
|
+
* Lookup548: argon_primitives::ethereum::EthereumBeaconPreset
|
|
4026
4032
|
**/
|
|
4027
4033
|
ArgonPrimitivesEthereumEthereumBeaconPreset: {
|
|
4028
4034
|
_enum: ['Mainnet', 'Minimal'],
|
|
4029
4035
|
},
|
|
4030
4036
|
/**
|
|
4031
|
-
*
|
|
4037
|
+
* Lookup549: pallet_ethereum_verifier::pallet::Error<T>
|
|
4032
4038
|
**/
|
|
4033
4039
|
PalletEthereumVerifierError: {
|
|
4034
4040
|
_enum: [
|
|
@@ -4059,7 +4065,20 @@ export default {
|
|
|
4059
4065
|
],
|
|
4060
4066
|
},
|
|
4061
4067
|
/**
|
|
4062
|
-
*
|
|
4068
|
+
* Lookup550: pallet_crosschain_transfer::pallet::AccountTransferTotals<T>
|
|
4069
|
+
**/
|
|
4070
|
+
PalletCrosschainTransferAccountTransferTotals: {
|
|
4071
|
+
microgonsIn: 'u128',
|
|
4072
|
+
microgonsOut: 'u128',
|
|
4073
|
+
argonTransfersInCount: 'Compact<u32>',
|
|
4074
|
+
argonTransfersOutCount: 'Compact<u32>',
|
|
4075
|
+
micronotsIn: 'u128',
|
|
4076
|
+
micronotsOut: 'u128',
|
|
4077
|
+
argonotTransfersInCount: 'Compact<u32>',
|
|
4078
|
+
argonotTransfersOutCount: 'Compact<u32>',
|
|
4079
|
+
},
|
|
4080
|
+
/**
|
|
4081
|
+
* Lookup552: pallet_crosschain_transfer::pallet::GlobalIssuanceCouncil<T>
|
|
4063
4082
|
**/
|
|
4064
4083
|
PalletCrosschainTransferGlobalIssuanceCouncil: {
|
|
4065
4084
|
epochMicrogonsPerArgonot: 'u128',
|
|
@@ -4067,7 +4086,7 @@ export default {
|
|
|
4067
4086
|
totalWeight: 'u128',
|
|
4068
4087
|
},
|
|
4069
4088
|
/**
|
|
4070
|
-
*
|
|
4089
|
+
* Lookup554: pallet_crosschain_transfer::pallet::GlobalIssuanceCouncilMember<T>
|
|
4071
4090
|
**/
|
|
4072
4091
|
PalletCrosschainTransferGlobalIssuanceCouncilMember: {
|
|
4073
4092
|
accountId: 'AccountId32',
|
|
@@ -4075,7 +4094,7 @@ export default {
|
|
|
4075
4094
|
weight: 'u128',
|
|
4076
4095
|
},
|
|
4077
4096
|
/**
|
|
4078
|
-
*
|
|
4097
|
+
* Lookup559: pallet_crosschain_transfer::pallet::CouncilApprovalQueueEntry<T>
|
|
4079
4098
|
**/
|
|
4080
4099
|
PalletCrosschainTransferCouncilApprovalQueueEntry: {
|
|
4081
4100
|
approvingCouncilHash: 'H256',
|
|
@@ -4088,7 +4107,7 @@ export default {
|
|
|
4088
4107
|
signatures: 'BTreeMap<H160, [u8;65]>',
|
|
4089
4108
|
},
|
|
4090
4109
|
/**
|
|
4091
|
-
*
|
|
4110
|
+
* Lookup564: pallet_crosschain_transfer::pallet::MintingAuthority<T>
|
|
4092
4111
|
**/
|
|
4093
4112
|
PalletCrosschainTransferMintingAuthority: {
|
|
4094
4113
|
accountId: 'AccountId32',
|
|
@@ -4106,13 +4125,13 @@ export default {
|
|
|
4106
4125
|
deactivationApprovalQueueNonce: 'Option<u64>',
|
|
4107
4126
|
},
|
|
4108
4127
|
/**
|
|
4109
|
-
*
|
|
4128
|
+
* Lookup565: pallet_crosschain_transfer::pallet::MintingAuthorityState
|
|
4110
4129
|
**/
|
|
4111
4130
|
PalletCrosschainTransferMintingAuthorityState: {
|
|
4112
4131
|
_enum: ['PendingActivation', 'Active', 'Deactivating'],
|
|
4113
4132
|
},
|
|
4114
4133
|
/**
|
|
4115
|
-
*
|
|
4134
|
+
* Lookup567: pallet_crosschain_transfer::transfer_out::TransferOutOfArgon<T>
|
|
4116
4135
|
**/
|
|
4117
4136
|
PalletCrosschainTransferTransferOutTransferOutOfArgon: {
|
|
4118
4137
|
argonAccountId: 'AccountId32',
|
|
@@ -4130,7 +4149,7 @@ export default {
|
|
|
4130
4149
|
state: 'PalletCrosschainTransferTransferOutTransferOutState',
|
|
4131
4150
|
},
|
|
4132
4151
|
/**
|
|
4133
|
-
*
|
|
4152
|
+
* Lookup569: pallet_crosschain_transfer::transfer_out::MintingAuthorityTransferReservation<T>
|
|
4134
4153
|
**/
|
|
4135
4154
|
PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation: {
|
|
4136
4155
|
microgonCollateral: 'u128',
|
|
@@ -4139,13 +4158,13 @@ export default {
|
|
|
4139
4158
|
signature: '[u8;65]',
|
|
4140
4159
|
},
|
|
4141
4160
|
/**
|
|
4142
|
-
*
|
|
4161
|
+
* Lookup573: pallet_crosschain_transfer::transfer_out::TransferOutState
|
|
4143
4162
|
**/
|
|
4144
4163
|
PalletCrosschainTransferTransferOutTransferOutState: {
|
|
4145
4164
|
_enum: ['Started', 'Ready'],
|
|
4146
4165
|
},
|
|
4147
4166
|
/**
|
|
4148
|
-
*
|
|
4167
|
+
* Lookup575: pallet_crosschain_transfer::transfer_out::PendingCollateralizationRequest<T>
|
|
4149
4168
|
**/
|
|
4150
4169
|
PalletCrosschainTransferTransferOutPendingCollateralizationRequest: {
|
|
4151
4170
|
transferId: 'H256',
|
|
@@ -4153,14 +4172,14 @@ export default {
|
|
|
4153
4172
|
remainingMintingAuthorityTip: 'u128',
|
|
4154
4173
|
},
|
|
4155
4174
|
/**
|
|
4156
|
-
*
|
|
4175
|
+
* Lookup577: pallet_crosschain_transfer::pallet::SourceChainCirculation<T>
|
|
4157
4176
|
**/
|
|
4158
4177
|
PalletCrosschainTransferSourceChainCirculation: {
|
|
4159
4178
|
argonCirculation: 'u128',
|
|
4160
4179
|
argonotCirculation: 'u128',
|
|
4161
4180
|
},
|
|
4162
4181
|
/**
|
|
4163
|
-
*
|
|
4182
|
+
* Lookup578: pallet_crosschain_transfer::pallet::Error<T>
|
|
4164
4183
|
**/
|
|
4165
4184
|
PalletCrosschainTransferError: {
|
|
4166
4185
|
_enum: [
|
|
@@ -4221,55 +4240,55 @@ export default {
|
|
|
4221
4240
|
],
|
|
4222
4241
|
},
|
|
4223
4242
|
/**
|
|
4224
|
-
*
|
|
4243
|
+
* Lookup581: frame_system::extensions::authorize_call::AuthorizeCall<T>
|
|
4225
4244
|
**/
|
|
4226
4245
|
FrameSystemExtensionsAuthorizeCall: 'Null',
|
|
4227
4246
|
/**
|
|
4228
|
-
*
|
|
4247
|
+
* Lookup582: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
|
|
4229
4248
|
**/
|
|
4230
4249
|
FrameSystemExtensionsCheckNonZeroSender: 'Null',
|
|
4231
4250
|
/**
|
|
4232
|
-
*
|
|
4251
|
+
* Lookup583: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
|
|
4233
4252
|
**/
|
|
4234
4253
|
FrameSystemExtensionsCheckSpecVersion: 'Null',
|
|
4235
4254
|
/**
|
|
4236
|
-
*
|
|
4255
|
+
* Lookup584: frame_system::extensions::check_tx_version::CheckTxVersion<T>
|
|
4237
4256
|
**/
|
|
4238
4257
|
FrameSystemExtensionsCheckTxVersion: 'Null',
|
|
4239
4258
|
/**
|
|
4240
|
-
*
|
|
4259
|
+
* Lookup585: frame_system::extensions::check_genesis::CheckGenesis<T>
|
|
4241
4260
|
**/
|
|
4242
4261
|
FrameSystemExtensionsCheckGenesis: 'Null',
|
|
4243
4262
|
/**
|
|
4244
|
-
*
|
|
4263
|
+
* Lookup588: frame_system::extensions::check_nonce::CheckNonce<T>
|
|
4245
4264
|
**/
|
|
4246
4265
|
FrameSystemExtensionsCheckNonce: 'Compact<u32>',
|
|
4247
4266
|
/**
|
|
4248
|
-
*
|
|
4267
|
+
* Lookup589: frame_system::extensions::check_weight::CheckWeight<T>
|
|
4249
4268
|
**/
|
|
4250
4269
|
FrameSystemExtensionsCheckWeight: 'Null',
|
|
4251
4270
|
/**
|
|
4252
|
-
*
|
|
4271
|
+
* Lookup590: pallet_transaction_payment::ChargeTransactionPayment<T>
|
|
4253
4272
|
**/
|
|
4254
4273
|
PalletTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
|
|
4255
4274
|
/**
|
|
4256
|
-
*
|
|
4275
|
+
* Lookup591: frame_metadata_hash_extension::CheckMetadataHash<T>
|
|
4257
4276
|
**/
|
|
4258
4277
|
FrameMetadataHashExtensionCheckMetadataHash: {
|
|
4259
4278
|
mode: 'FrameMetadataHashExtensionMode',
|
|
4260
4279
|
},
|
|
4261
4280
|
/**
|
|
4262
|
-
*
|
|
4281
|
+
* Lookup592: frame_metadata_hash_extension::Mode
|
|
4263
4282
|
**/
|
|
4264
4283
|
FrameMetadataHashExtensionMode: {
|
|
4265
4284
|
_enum: ['Disabled', 'Enabled'],
|
|
4266
4285
|
},
|
|
4267
4286
|
/**
|
|
4268
|
-
*
|
|
4287
|
+
* Lookup593: frame_system::extensions::weight_reclaim::WeightReclaim<T>
|
|
4269
4288
|
**/
|
|
4270
4289
|
FrameSystemExtensionsWeightReclaim: 'Null',
|
|
4271
4290
|
/**
|
|
4272
|
-
*
|
|
4291
|
+
* Lookup595: argon_runtime::Runtime
|
|
4273
4292
|
**/
|
|
4274
4293
|
ArgonRuntimeRuntime: 'Null',
|
|
4275
4294
|
};
|