@dedot/chaintypes 0.176.0 → 0.178.0
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/package.json +2 -2
- package/polkadot-people/index.d.ts +1 -1
- package/polkadot-people/runtime.d.ts +26 -0
- package/polkadot-people/types.d.ts +7 -0
- package/westend-asset-hub/consts.d.ts +35 -1
- package/westend-asset-hub/errors.d.ts +23 -1
- package/westend-asset-hub/events.d.ts +10 -0
- package/westend-asset-hub/index.d.ts +3 -1
- package/westend-asset-hub/query.d.ts +118 -14
- package/westend-asset-hub/runtime.d.ts +80 -7
- package/westend-asset-hub/tx.d.ts +44 -18
- package/westend-asset-hub/types.d.ts +352 -58
- package/westend-asset-hub/view-functions.d.ts +79 -2
|
@@ -2652,7 +2652,16 @@ export type PalletReviveEvent =
|
|
|
2652
2652
|
/**
|
|
2653
2653
|
* Contract deployed by deployer at the specified address.
|
|
2654
2654
|
**/
|
|
2655
|
-
| { name: 'Instantiated'; data: { deployer: H160; contract: H160 } }
|
|
2655
|
+
| { name: 'Instantiated'; data: { deployer: H160; contract: H160 } }
|
|
2656
|
+
/**
|
|
2657
|
+
* Emitted when an Ethereum transaction reverts.
|
|
2658
|
+
*
|
|
2659
|
+
* Ethereum transactions always complete successfully at the extrinsic level,
|
|
2660
|
+
* as even reverted calls must store their `ReceiptInfo`.
|
|
2661
|
+
* To distinguish reverted calls from successful ones, this event is emitted
|
|
2662
|
+
* for failed Ethereum transactions.
|
|
2663
|
+
**/
|
|
2664
|
+
| { name: 'EthExtrinsicRevert'; data: { dispatchError: DispatchError } };
|
|
2656
2665
|
|
|
2657
2666
|
/**
|
|
2658
2667
|
* The `Event` enum of this pallet
|
|
@@ -4026,13 +4035,13 @@ export type CumulusPalletParachainSystemCallLike =
|
|
|
4026
4035
|
| { name: 'SudoSendUpwardMessage'; params: { message: BytesLike } };
|
|
4027
4036
|
|
|
4028
4037
|
export type CumulusPalletParachainSystemParachainInherentBasicParachainInherentData = {
|
|
4029
|
-
validationData:
|
|
4038
|
+
validationData: PolkadotPrimitivesV9PersistedValidationData;
|
|
4030
4039
|
relayChainState: SpTrieStorageProof;
|
|
4031
4040
|
relayParentDescendants: Array<Header>;
|
|
4032
4041
|
collatorPeerId?: Bytes | undefined;
|
|
4033
4042
|
};
|
|
4034
4043
|
|
|
4035
|
-
export type
|
|
4044
|
+
export type PolkadotPrimitivesV9PersistedValidationData = {
|
|
4036
4045
|
parentHead: PolkadotParachainPrimitivesPrimitivesHeadData;
|
|
4037
4046
|
relayParentNumber: number;
|
|
4038
4047
|
relayParentStorageRoot: H256;
|
|
@@ -6660,6 +6669,7 @@ export type AssetHubWestendRuntimeOriginCaller =
|
|
|
6660
6669
|
| { type: 'System'; value: FrameSupportDispatchRawOrigin }
|
|
6661
6670
|
| { type: 'PolkadotXcm'; value: PalletXcmOrigin }
|
|
6662
6671
|
| { type: 'CumulusXcm'; value: CumulusPalletXcmOrigin }
|
|
6672
|
+
| { type: 'Revive'; value: PalletReviveOrigin }
|
|
6663
6673
|
| { type: 'Origins'; value: AssetHubWestendRuntimeGovernanceOriginsPalletCustomOriginsOrigin };
|
|
6664
6674
|
|
|
6665
6675
|
export type FrameSupportDispatchRawOrigin =
|
|
@@ -6676,6 +6686,10 @@ export type CumulusPalletXcmOrigin =
|
|
|
6676
6686
|
| { type: 'Relay' }
|
|
6677
6687
|
| { type: 'SiblingParachain'; value: PolkadotParachainPrimitivesPrimitivesId };
|
|
6678
6688
|
|
|
6689
|
+
export type PalletReviveOrigin = { type: 'EthTransaction'; value: AccountId32 };
|
|
6690
|
+
|
|
6691
|
+
export type AssetHubWestendRuntimeRuntime = {};
|
|
6692
|
+
|
|
6679
6693
|
export type AssetHubWestendRuntimeGovernanceOriginsPalletCustomOriginsOrigin =
|
|
6680
6694
|
| 'StakingAdmin'
|
|
6681
6695
|
| 'Treasurer'
|
|
@@ -8087,9 +8101,10 @@ export type PalletAssetsCall =
|
|
|
8087
8101
|
*
|
|
8088
8102
|
* A deposit will be taken from the signer account.
|
|
8089
8103
|
*
|
|
8090
|
-
* - `origin`: Must be Signed
|
|
8091
|
-
*
|
|
8092
|
-
* - `id`: The identifier of the asset for the account to be created
|
|
8104
|
+
* - `origin`: Must be Signed; the signer account must have sufficient funds for a deposit
|
|
8105
|
+
* to be taken.
|
|
8106
|
+
* - `id`: The identifier of the asset for the account to be created, the asset status must
|
|
8107
|
+
* be live.
|
|
8093
8108
|
* - `who`: The account to be created.
|
|
8094
8109
|
*
|
|
8095
8110
|
* Emits `Touched` event when successful.
|
|
@@ -8658,9 +8673,10 @@ export type PalletAssetsCallLike =
|
|
|
8658
8673
|
*
|
|
8659
8674
|
* A deposit will be taken from the signer account.
|
|
8660
8675
|
*
|
|
8661
|
-
* - `origin`: Must be Signed
|
|
8662
|
-
*
|
|
8663
|
-
* - `id`: The identifier of the asset for the account to be created
|
|
8676
|
+
* - `origin`: Must be Signed; the signer account must have sufficient funds for a deposit
|
|
8677
|
+
* to be taken.
|
|
8678
|
+
* - `id`: The identifier of the asset for the account to be created, the asset status must
|
|
8679
|
+
* be live.
|
|
8664
8680
|
* - `who`: The account to be created.
|
|
8665
8681
|
*
|
|
8666
8682
|
* Emits `Touched` event when successful.
|
|
@@ -11106,7 +11122,8 @@ export type PalletNftsPreSignedMint = {
|
|
|
11106
11122
|
export type SpRuntimeMultiSignature =
|
|
11107
11123
|
| { type: 'Ed25519'; value: FixedBytes<64> }
|
|
11108
11124
|
| { type: 'Sr25519'; value: FixedBytes<64> }
|
|
11109
|
-
| { type: 'Ecdsa'; value: FixedBytes<65> }
|
|
11125
|
+
| { type: 'Ecdsa'; value: FixedBytes<65> }
|
|
11126
|
+
| { type: 'Eth'; value: FixedBytes<65> };
|
|
11110
11127
|
|
|
11111
11128
|
export type PalletNftsPreSignedAttributes = {
|
|
11112
11129
|
collection: number;
|
|
@@ -11639,9 +11656,10 @@ export type PalletAssetsCall002 =
|
|
|
11639
11656
|
*
|
|
11640
11657
|
* A deposit will be taken from the signer account.
|
|
11641
11658
|
*
|
|
11642
|
-
* - `origin`: Must be Signed
|
|
11643
|
-
*
|
|
11644
|
-
* - `id`: The identifier of the asset for the account to be created
|
|
11659
|
+
* - `origin`: Must be Signed; the signer account must have sufficient funds for a deposit
|
|
11660
|
+
* to be taken.
|
|
11661
|
+
* - `id`: The identifier of the asset for the account to be created, the asset status must
|
|
11662
|
+
* be live.
|
|
11645
11663
|
* - `who`: The account to be created.
|
|
11646
11664
|
*
|
|
11647
11665
|
* Emits `Touched` event when successful.
|
|
@@ -12224,9 +12242,10 @@ export type PalletAssetsCallLike002 =
|
|
|
12224
12242
|
*
|
|
12225
12243
|
* A deposit will be taken from the signer account.
|
|
12226
12244
|
*
|
|
12227
|
-
* - `origin`: Must be Signed
|
|
12228
|
-
*
|
|
12229
|
-
* - `id`: The identifier of the asset for the account to be created
|
|
12245
|
+
* - `origin`: Must be Signed; the signer account must have sufficient funds for a deposit
|
|
12246
|
+
* to be taken.
|
|
12247
|
+
* - `id`: The identifier of the asset for the account to be created, the asset status must
|
|
12248
|
+
* be live.
|
|
12230
12249
|
* - `who`: The account to be created.
|
|
12231
12250
|
*
|
|
12232
12251
|
* Emits `Touched` event when successful.
|
|
@@ -12892,9 +12911,10 @@ export type PalletAssetsCall003 =
|
|
|
12892
12911
|
*
|
|
12893
12912
|
* A deposit will be taken from the signer account.
|
|
12894
12913
|
*
|
|
12895
|
-
* - `origin`: Must be Signed
|
|
12896
|
-
*
|
|
12897
|
-
* - `id`: The identifier of the asset for the account to be created
|
|
12914
|
+
* - `origin`: Must be Signed; the signer account must have sufficient funds for a deposit
|
|
12915
|
+
* to be taken.
|
|
12916
|
+
* - `id`: The identifier of the asset for the account to be created, the asset status must
|
|
12917
|
+
* be live.
|
|
12898
12918
|
* - `who`: The account to be created.
|
|
12899
12919
|
*
|
|
12900
12920
|
* Emits `Touched` event when successful.
|
|
@@ -13463,9 +13483,10 @@ export type PalletAssetsCallLike003 =
|
|
|
13463
13483
|
*
|
|
13464
13484
|
* A deposit will be taken from the signer account.
|
|
13465
13485
|
*
|
|
13466
|
-
* - `origin`: Must be Signed
|
|
13467
|
-
*
|
|
13468
|
-
* - `id`: The identifier of the asset for the account to be created
|
|
13486
|
+
* - `origin`: Must be Signed; the signer account must have sufficient funds for a deposit
|
|
13487
|
+
* to be taken.
|
|
13488
|
+
* - `id`: The identifier of the asset for the account to be created, the asset status must
|
|
13489
|
+
* be live.
|
|
13469
13490
|
* - `who`: The account to be created.
|
|
13470
13491
|
*
|
|
13471
13492
|
* Emits `Touched` event when successful.
|
|
@@ -13739,9 +13760,6 @@ export type PalletReviveCall =
|
|
|
13739
13760
|
* # Parameters
|
|
13740
13761
|
*
|
|
13741
13762
|
* * `payload`: The encoded [`crate::evm::TransactionSigned`].
|
|
13742
|
-
* * `gas_limit`: The gas limit enforced during contract execution.
|
|
13743
|
-
* * `storage_deposit_limit`: The maximum balance that can be charged to the caller for
|
|
13744
|
-
* storage usage.
|
|
13745
13763
|
*
|
|
13746
13764
|
* # Note
|
|
13747
13765
|
*
|
|
@@ -13841,6 +13859,20 @@ export type PalletReviveCall =
|
|
|
13841
13859
|
* Same as [`Self::instantiate_with_code`], but intended to be dispatched **only**
|
|
13842
13860
|
* by an EVM transaction through the EVM compatibility layer.
|
|
13843
13861
|
*
|
|
13862
|
+
* # Parameters
|
|
13863
|
+
*
|
|
13864
|
+
* * `value`: The balance to transfer from the `origin` to the newly created contract.
|
|
13865
|
+
* * `gas_limit`: The gas limit enforced when executing the constructor.
|
|
13866
|
+
* * `storage_deposit_limit`: The maximum amount of balance that can be charged/reserved
|
|
13867
|
+
* from the caller to pay for the storage consumed.
|
|
13868
|
+
* * `code`: The contract code to deploy in raw bytes.
|
|
13869
|
+
* * `data`: The input data to pass to the contract constructor.
|
|
13870
|
+
* * `salt`: Used for the address derivation. If `Some` is supplied then `CREATE2`
|
|
13871
|
+
* semantics are used. If `None` then `CRATE1` is used.
|
|
13872
|
+
* * `transaction_encoded`: The RLP encoding of the signed Ethereum transaction,
|
|
13873
|
+
* represented as [crate::evm::TransactionSigned], provided by the Ethereum wallet. This
|
|
13874
|
+
* is used for building the Ethereum transaction root.
|
|
13875
|
+
*
|
|
13844
13876
|
* Calling this dispatchable ensures that the origin's nonce is bumped only once,
|
|
13845
13877
|
* via the `CheckNonce` transaction extension. In contrast, [`Self::instantiate_with_code`]
|
|
13846
13878
|
* also bumps the nonce after contract instantiation, since it may be invoked multiple
|
|
@@ -13848,7 +13880,15 @@ export type PalletReviveCall =
|
|
|
13848
13880
|
**/
|
|
13849
13881
|
| {
|
|
13850
13882
|
name: 'EthInstantiateWithCode';
|
|
13851
|
-
params: {
|
|
13883
|
+
params: {
|
|
13884
|
+
value: U256;
|
|
13885
|
+
gasLimit: SpWeightsWeightV2Weight;
|
|
13886
|
+
code: Bytes;
|
|
13887
|
+
data: Bytes;
|
|
13888
|
+
transactionEncoded: Bytes;
|
|
13889
|
+
effectiveGasPrice: U256;
|
|
13890
|
+
encodedLen: number;
|
|
13891
|
+
};
|
|
13852
13892
|
}
|
|
13853
13893
|
/**
|
|
13854
13894
|
* Same as [`Self::call`], but intended to be dispatched **only**
|
|
@@ -13856,7 +13896,15 @@ export type PalletReviveCall =
|
|
|
13856
13896
|
**/
|
|
13857
13897
|
| {
|
|
13858
13898
|
name: 'EthCall';
|
|
13859
|
-
params: {
|
|
13899
|
+
params: {
|
|
13900
|
+
dest: H160;
|
|
13901
|
+
value: U256;
|
|
13902
|
+
gasLimit: SpWeightsWeightV2Weight;
|
|
13903
|
+
data: Bytes;
|
|
13904
|
+
transactionEncoded: Bytes;
|
|
13905
|
+
effectiveGasPrice: U256;
|
|
13906
|
+
encodedLen: number;
|
|
13907
|
+
};
|
|
13860
13908
|
}
|
|
13861
13909
|
/**
|
|
13862
13910
|
* Upload new `code` without instantiating a contract from it.
|
|
@@ -13925,9 +13973,6 @@ export type PalletReviveCallLike =
|
|
|
13925
13973
|
* # Parameters
|
|
13926
13974
|
*
|
|
13927
13975
|
* * `payload`: The encoded [`crate::evm::TransactionSigned`].
|
|
13928
|
-
* * `gas_limit`: The gas limit enforced during contract execution.
|
|
13929
|
-
* * `storage_deposit_limit`: The maximum balance that can be charged to the caller for
|
|
13930
|
-
* storage usage.
|
|
13931
13976
|
*
|
|
13932
13977
|
* # Note
|
|
13933
13978
|
*
|
|
@@ -14027,6 +14072,20 @@ export type PalletReviveCallLike =
|
|
|
14027
14072
|
* Same as [`Self::instantiate_with_code`], but intended to be dispatched **only**
|
|
14028
14073
|
* by an EVM transaction through the EVM compatibility layer.
|
|
14029
14074
|
*
|
|
14075
|
+
* # Parameters
|
|
14076
|
+
*
|
|
14077
|
+
* * `value`: The balance to transfer from the `origin` to the newly created contract.
|
|
14078
|
+
* * `gas_limit`: The gas limit enforced when executing the constructor.
|
|
14079
|
+
* * `storage_deposit_limit`: The maximum amount of balance that can be charged/reserved
|
|
14080
|
+
* from the caller to pay for the storage consumed.
|
|
14081
|
+
* * `code`: The contract code to deploy in raw bytes.
|
|
14082
|
+
* * `data`: The input data to pass to the contract constructor.
|
|
14083
|
+
* * `salt`: Used for the address derivation. If `Some` is supplied then `CREATE2`
|
|
14084
|
+
* semantics are used. If `None` then `CRATE1` is used.
|
|
14085
|
+
* * `transaction_encoded`: The RLP encoding of the signed Ethereum transaction,
|
|
14086
|
+
* represented as [crate::evm::TransactionSigned], provided by the Ethereum wallet. This
|
|
14087
|
+
* is used for building the Ethereum transaction root.
|
|
14088
|
+
*
|
|
14030
14089
|
* Calling this dispatchable ensures that the origin's nonce is bumped only once,
|
|
14031
14090
|
* via the `CheckNonce` transaction extension. In contrast, [`Self::instantiate_with_code`]
|
|
14032
14091
|
* also bumps the nonce after contract instantiation, since it may be invoked multiple
|
|
@@ -14037,9 +14096,11 @@ export type PalletReviveCallLike =
|
|
|
14037
14096
|
params: {
|
|
14038
14097
|
value: U256;
|
|
14039
14098
|
gasLimit: SpWeightsWeightV2Weight;
|
|
14040
|
-
storageDepositLimit: bigint;
|
|
14041
14099
|
code: BytesLike;
|
|
14042
14100
|
data: BytesLike;
|
|
14101
|
+
transactionEncoded: BytesLike;
|
|
14102
|
+
effectiveGasPrice: U256;
|
|
14103
|
+
encodedLen: number;
|
|
14043
14104
|
};
|
|
14044
14105
|
}
|
|
14045
14106
|
/**
|
|
@@ -14052,8 +14113,10 @@ export type PalletReviveCallLike =
|
|
|
14052
14113
|
dest: H160;
|
|
14053
14114
|
value: U256;
|
|
14054
14115
|
gasLimit: SpWeightsWeightV2Weight;
|
|
14055
|
-
storageDepositLimit: bigint;
|
|
14056
14116
|
data: BytesLike;
|
|
14117
|
+
transactionEncoded: BytesLike;
|
|
14118
|
+
effectiveGasPrice: U256;
|
|
14119
|
+
encodedLen: number;
|
|
14057
14120
|
};
|
|
14058
14121
|
}
|
|
14059
14122
|
/**
|
|
@@ -17896,6 +17959,7 @@ export type CumulusPalletWeightReclaimStorageWeightReclaim = [
|
|
|
17896
17959
|
FrameSystemExtensionsCheckWeight,
|
|
17897
17960
|
PalletAssetConversionTxPaymentChargeAssetTxPayment,
|
|
17898
17961
|
FrameMetadataHashExtensionCheckMetadataHash,
|
|
17962
|
+
PalletReviveEvmTxExtensionSetOrigin,
|
|
17899
17963
|
];
|
|
17900
17964
|
|
|
17901
17965
|
export type FrameSystemExtensionsAuthorizeCall = {};
|
|
@@ -17923,10 +17987,12 @@ export type FrameMetadataHashExtensionCheckMetadataHash = { mode: FrameMetadataH
|
|
|
17923
17987
|
|
|
17924
17988
|
export type FrameMetadataHashExtensionMode = 'Disabled' | 'Enabled';
|
|
17925
17989
|
|
|
17990
|
+
export type PalletReviveEvmTxExtensionSetOrigin = {};
|
|
17991
|
+
|
|
17926
17992
|
export type CumulusPalletParachainSystemUnincludedSegmentAncestor = {
|
|
17927
17993
|
usedBandwidth: CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth;
|
|
17928
17994
|
paraHeadHash?: H256 | undefined;
|
|
17929
|
-
consumedGoAheadSignal?:
|
|
17995
|
+
consumedGoAheadSignal?: PolkadotPrimitivesV9UpgradeGoAhead | undefined;
|
|
17930
17996
|
};
|
|
17931
17997
|
|
|
17932
17998
|
export type CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth = {
|
|
@@ -17939,21 +18005,21 @@ export type CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth = {
|
|
|
17939
18005
|
|
|
17940
18006
|
export type CumulusPalletParachainSystemUnincludedSegmentHrmpChannelUpdate = { msgCount: number; totalBytes: number };
|
|
17941
18007
|
|
|
17942
|
-
export type
|
|
18008
|
+
export type PolkadotPrimitivesV9UpgradeGoAhead = 'Abort' | 'GoAhead';
|
|
17943
18009
|
|
|
17944
18010
|
export type CumulusPalletParachainSystemUnincludedSegmentSegmentTracker = {
|
|
17945
18011
|
usedBandwidth: CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth;
|
|
17946
18012
|
hrmpWatermark?: number | undefined;
|
|
17947
|
-
consumedGoAheadSignal?:
|
|
18013
|
+
consumedGoAheadSignal?: PolkadotPrimitivesV9UpgradeGoAhead | undefined;
|
|
17948
18014
|
};
|
|
17949
18015
|
|
|
17950
|
-
export type
|
|
18016
|
+
export type PolkadotPrimitivesV9UpgradeRestriction = 'Present';
|
|
17951
18017
|
|
|
17952
18018
|
export type CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot = {
|
|
17953
18019
|
dmqMqcHead: H256;
|
|
17954
18020
|
relayDispatchQueueRemainingCapacity: CumulusPalletParachainSystemRelayStateSnapshotRelayDispatchQueueRemainingCapacity;
|
|
17955
|
-
ingressChannels: Array<[PolkadotParachainPrimitivesPrimitivesId,
|
|
17956
|
-
egressChannels: Array<[PolkadotParachainPrimitivesPrimitivesId,
|
|
18021
|
+
ingressChannels: Array<[PolkadotParachainPrimitivesPrimitivesId, PolkadotPrimitivesV9AbridgedHrmpChannel]>;
|
|
18022
|
+
egressChannels: Array<[PolkadotParachainPrimitivesPrimitivesId, PolkadotPrimitivesV9AbridgedHrmpChannel]>;
|
|
17957
18023
|
};
|
|
17958
18024
|
|
|
17959
18025
|
export type CumulusPalletParachainSystemRelayStateSnapshotRelayDispatchQueueRemainingCapacity = {
|
|
@@ -17961,7 +18027,7 @@ export type CumulusPalletParachainSystemRelayStateSnapshotRelayDispatchQueueRema
|
|
|
17961
18027
|
remainingSize: number;
|
|
17962
18028
|
};
|
|
17963
18029
|
|
|
17964
|
-
export type
|
|
18030
|
+
export type PolkadotPrimitivesV9AbridgedHrmpChannel = {
|
|
17965
18031
|
maxCapacity: number;
|
|
17966
18032
|
maxTotalSize: number;
|
|
17967
18033
|
maxMessageSize: number;
|
|
@@ -17970,7 +18036,7 @@ export type PolkadotPrimitivesV8AbridgedHrmpChannel = {
|
|
|
17970
18036
|
mqcHead?: H256 | undefined;
|
|
17971
18037
|
};
|
|
17972
18038
|
|
|
17973
|
-
export type
|
|
18039
|
+
export type PolkadotPrimitivesV9AbridgedHostConfiguration = {
|
|
17974
18040
|
maxCodeSize: number;
|
|
17975
18041
|
maxHeadDataSize: number;
|
|
17976
18042
|
maxUpwardQueueCount: number;
|
|
@@ -17980,10 +18046,10 @@ export type PolkadotPrimitivesV8AbridgedHostConfiguration = {
|
|
|
17980
18046
|
hrmpMaxMessageNumPerCandidate: number;
|
|
17981
18047
|
validationUpgradeCooldown: number;
|
|
17982
18048
|
validationUpgradeDelay: number;
|
|
17983
|
-
asyncBackingParams:
|
|
18049
|
+
asyncBackingParams: PolkadotPrimitivesV9AsyncBackingAsyncBackingParams;
|
|
17984
18050
|
};
|
|
17985
18051
|
|
|
17986
|
-
export type
|
|
18052
|
+
export type PolkadotPrimitivesV9AsyncBackingAsyncBackingParams = {
|
|
17987
18053
|
maxCandidateDepth: number;
|
|
17988
18054
|
allowedAncestryLen: number;
|
|
17989
18055
|
};
|
|
@@ -18213,6 +18279,10 @@ export type PalletBalancesError =
|
|
|
18213
18279
|
|
|
18214
18280
|
export type PalletTransactionPaymentReleases = 'V1Ancient' | 'V2';
|
|
18215
18281
|
|
|
18282
|
+
export type FrameSupportStorageNoDrop = FrameSupportTokensFungibleImbalance;
|
|
18283
|
+
|
|
18284
|
+
export type FrameSupportTokensFungibleImbalance = { amount: bigint };
|
|
18285
|
+
|
|
18216
18286
|
export type PalletVestingReleases = 'V0' | 'V1';
|
|
18217
18287
|
|
|
18218
18288
|
/**
|
|
@@ -19529,6 +19599,211 @@ export type PalletReviveStorageContractInfo = {
|
|
|
19529
19599
|
|
|
19530
19600
|
export type PalletReviveStorageDeletionQueueManager = { insertCounter: number; deleteCounter: number };
|
|
19531
19601
|
|
|
19602
|
+
export type PalletReviveEvmApiRpcTypesGenBlock = {
|
|
19603
|
+
baseFeePerGas: U256;
|
|
19604
|
+
blobGasUsed: U256;
|
|
19605
|
+
difficulty: U256;
|
|
19606
|
+
excessBlobGas: U256;
|
|
19607
|
+
extraData: PalletReviveEvmApiByteBytes;
|
|
19608
|
+
gasLimit: U256;
|
|
19609
|
+
gasUsed: U256;
|
|
19610
|
+
hash: H256;
|
|
19611
|
+
logsBloom: PalletReviveEvmApiByteBytes256;
|
|
19612
|
+
miner: H160;
|
|
19613
|
+
mixHash: H256;
|
|
19614
|
+
nonce: PalletReviveEvmApiByteBytes8;
|
|
19615
|
+
number: U256;
|
|
19616
|
+
parentBeaconBlockRoot?: H256 | undefined;
|
|
19617
|
+
parentHash: H256;
|
|
19618
|
+
receiptsRoot: H256;
|
|
19619
|
+
requestsHash?: H256 | undefined;
|
|
19620
|
+
sha3Uncles: H256;
|
|
19621
|
+
size: U256;
|
|
19622
|
+
stateRoot: H256;
|
|
19623
|
+
timestamp: U256;
|
|
19624
|
+
totalDifficulty?: U256 | undefined;
|
|
19625
|
+
transactions: PalletReviveEvmApiRpcTypesGenHashesOrTransactionInfos;
|
|
19626
|
+
transactionsRoot: H256;
|
|
19627
|
+
uncles: Array<H256>;
|
|
19628
|
+
withdrawals: Array<PalletReviveEvmApiRpcTypesGenWithdrawal>;
|
|
19629
|
+
withdrawalsRoot: H256;
|
|
19630
|
+
};
|
|
19631
|
+
|
|
19632
|
+
export type PalletReviveEvmApiByteBytes = Bytes;
|
|
19633
|
+
|
|
19634
|
+
export type PalletReviveEvmApiByteBytes256 = FixedBytes<256>;
|
|
19635
|
+
|
|
19636
|
+
export type PalletReviveEvmApiByteBytes8 = FixedBytes<8>;
|
|
19637
|
+
|
|
19638
|
+
export type PalletReviveEvmApiRpcTypesGenHashesOrTransactionInfos =
|
|
19639
|
+
| { type: 'Hashes'; value: Array<H256> }
|
|
19640
|
+
| { type: 'TransactionInfos'; value: Array<PalletReviveEvmApiRpcTypesGenTransactionInfo> };
|
|
19641
|
+
|
|
19642
|
+
export type PalletReviveEvmApiRpcTypesGenTransactionInfo = {
|
|
19643
|
+
blockHash: H256;
|
|
19644
|
+
blockNumber: U256;
|
|
19645
|
+
from: H160;
|
|
19646
|
+
hash: H256;
|
|
19647
|
+
transactionIndex: U256;
|
|
19648
|
+
transactionSigned: PalletReviveEvmApiRpcTypesGenTransactionSigned;
|
|
19649
|
+
};
|
|
19650
|
+
|
|
19651
|
+
export type PalletReviveEvmApiRpcTypesGenTransactionSigned =
|
|
19652
|
+
| { type: 'Transaction7702Signed'; value: PalletReviveEvmApiRpcTypesGenTransaction7702Signed }
|
|
19653
|
+
| { type: 'Transaction4844Signed'; value: PalletReviveEvmApiRpcTypesGenTransaction4844Signed }
|
|
19654
|
+
| { type: 'Transaction1559Signed'; value: PalletReviveEvmApiRpcTypesGenTransaction1559Signed }
|
|
19655
|
+
| { type: 'Transaction2930Signed'; value: PalletReviveEvmApiRpcTypesGenTransaction2930Signed }
|
|
19656
|
+
| { type: 'TransactionLegacySigned'; value: PalletReviveEvmApiRpcTypesGenTransactionLegacySigned };
|
|
19657
|
+
|
|
19658
|
+
export type PalletReviveEvmApiRpcTypesGenTransaction7702Signed = {
|
|
19659
|
+
transaction7702Unsigned: PalletReviveEvmApiRpcTypesGenTransaction7702Unsigned;
|
|
19660
|
+
r: U256;
|
|
19661
|
+
s: U256;
|
|
19662
|
+
v?: U256 | undefined;
|
|
19663
|
+
yParity: U256;
|
|
19664
|
+
};
|
|
19665
|
+
|
|
19666
|
+
export type PalletReviveEvmApiRpcTypesGenTransaction7702Unsigned = {
|
|
19667
|
+
accessList: Array<PalletReviveEvmApiRpcTypesGenAccessListEntry>;
|
|
19668
|
+
authorizationList: Array<PalletReviveEvmApiRpcTypesGenAuthorizationListEntry>;
|
|
19669
|
+
chainId: U256;
|
|
19670
|
+
gas: U256;
|
|
19671
|
+
gasPrice: U256;
|
|
19672
|
+
input: PalletReviveEvmApiByteBytes;
|
|
19673
|
+
maxFeePerGas: U256;
|
|
19674
|
+
maxPriorityFeePerGas: U256;
|
|
19675
|
+
nonce: U256;
|
|
19676
|
+
to: H160;
|
|
19677
|
+
rType: number;
|
|
19678
|
+
value: U256;
|
|
19679
|
+
};
|
|
19680
|
+
|
|
19681
|
+
export type PalletReviveEvmApiRpcTypesGenAccessListEntry = { address: H160; storageKeys: Array<H256> };
|
|
19682
|
+
|
|
19683
|
+
export type PalletReviveEvmApiRpcTypesGenAuthorizationListEntry = {
|
|
19684
|
+
chainId: U256;
|
|
19685
|
+
address: H160;
|
|
19686
|
+
nonce: U256;
|
|
19687
|
+
yParity: U256;
|
|
19688
|
+
r: U256;
|
|
19689
|
+
s: U256;
|
|
19690
|
+
};
|
|
19691
|
+
|
|
19692
|
+
export type PalletReviveEvmApiRpcTypesGenTransaction4844Signed = {
|
|
19693
|
+
transaction4844Unsigned: PalletReviveEvmApiRpcTypesGenTransaction4844Unsigned;
|
|
19694
|
+
r: U256;
|
|
19695
|
+
s: U256;
|
|
19696
|
+
yParity: U256;
|
|
19697
|
+
};
|
|
19698
|
+
|
|
19699
|
+
export type PalletReviveEvmApiRpcTypesGenTransaction4844Unsigned = {
|
|
19700
|
+
accessList: Array<PalletReviveEvmApiRpcTypesGenAccessListEntry>;
|
|
19701
|
+
blobVersionedHashes: Array<H256>;
|
|
19702
|
+
chainId: U256;
|
|
19703
|
+
gas: U256;
|
|
19704
|
+
input: PalletReviveEvmApiByteBytes;
|
|
19705
|
+
maxFeePerBlobGas: U256;
|
|
19706
|
+
maxFeePerGas: U256;
|
|
19707
|
+
maxPriorityFeePerGas: U256;
|
|
19708
|
+
nonce: U256;
|
|
19709
|
+
to: H160;
|
|
19710
|
+
rType: number;
|
|
19711
|
+
value: U256;
|
|
19712
|
+
};
|
|
19713
|
+
|
|
19714
|
+
export type PalletReviveEvmApiRpcTypesGenTransaction1559Signed = {
|
|
19715
|
+
transaction1559Unsigned: PalletReviveEvmApiRpcTypesGenTransaction1559Unsigned;
|
|
19716
|
+
r: U256;
|
|
19717
|
+
s: U256;
|
|
19718
|
+
v?: U256 | undefined;
|
|
19719
|
+
yParity: U256;
|
|
19720
|
+
};
|
|
19721
|
+
|
|
19722
|
+
export type PalletReviveEvmApiRpcTypesGenTransaction1559Unsigned = {
|
|
19723
|
+
accessList: Array<PalletReviveEvmApiRpcTypesGenAccessListEntry>;
|
|
19724
|
+
chainId: U256;
|
|
19725
|
+
gas: U256;
|
|
19726
|
+
gasPrice: U256;
|
|
19727
|
+
input: PalletReviveEvmApiByteBytes;
|
|
19728
|
+
maxFeePerGas: U256;
|
|
19729
|
+
maxPriorityFeePerGas: U256;
|
|
19730
|
+
nonce: U256;
|
|
19731
|
+
to?: H160 | undefined;
|
|
19732
|
+
rType: number;
|
|
19733
|
+
value: U256;
|
|
19734
|
+
};
|
|
19735
|
+
|
|
19736
|
+
export type PalletReviveEvmApiRpcTypesGenTransaction2930Signed = {
|
|
19737
|
+
transaction2930Unsigned: PalletReviveEvmApiRpcTypesGenTransaction2930Unsigned;
|
|
19738
|
+
r: U256;
|
|
19739
|
+
s: U256;
|
|
19740
|
+
v?: U256 | undefined;
|
|
19741
|
+
yParity: U256;
|
|
19742
|
+
};
|
|
19743
|
+
|
|
19744
|
+
export type PalletReviveEvmApiRpcTypesGenTransaction2930Unsigned = {
|
|
19745
|
+
accessList: Array<PalletReviveEvmApiRpcTypesGenAccessListEntry>;
|
|
19746
|
+
chainId: U256;
|
|
19747
|
+
gas: U256;
|
|
19748
|
+
gasPrice: U256;
|
|
19749
|
+
input: PalletReviveEvmApiByteBytes;
|
|
19750
|
+
nonce: U256;
|
|
19751
|
+
to?: H160 | undefined;
|
|
19752
|
+
rType: number;
|
|
19753
|
+
value: U256;
|
|
19754
|
+
};
|
|
19755
|
+
|
|
19756
|
+
export type PalletReviveEvmApiRpcTypesGenTransactionLegacySigned = {
|
|
19757
|
+
transactionLegacyUnsigned: PalletReviveEvmApiRpcTypesGenTransactionLegacyUnsigned;
|
|
19758
|
+
r: U256;
|
|
19759
|
+
s: U256;
|
|
19760
|
+
v: U256;
|
|
19761
|
+
};
|
|
19762
|
+
|
|
19763
|
+
export type PalletReviveEvmApiRpcTypesGenTransactionLegacyUnsigned = {
|
|
19764
|
+
chainId?: U256 | undefined;
|
|
19765
|
+
gas: U256;
|
|
19766
|
+
gasPrice: U256;
|
|
19767
|
+
input: PalletReviveEvmApiByteBytes;
|
|
19768
|
+
nonce: U256;
|
|
19769
|
+
to?: H160 | undefined;
|
|
19770
|
+
rType: number;
|
|
19771
|
+
value: U256;
|
|
19772
|
+
};
|
|
19773
|
+
|
|
19774
|
+
export type PalletReviveEvmApiRpcTypesGenWithdrawal = {
|
|
19775
|
+
address: H160;
|
|
19776
|
+
amount: U256;
|
|
19777
|
+
index: U256;
|
|
19778
|
+
validatorIndex: U256;
|
|
19779
|
+
};
|
|
19780
|
+
|
|
19781
|
+
export type PalletReviveEvmBlockHashReceiptGasInfo = { gasUsed: U256 };
|
|
19782
|
+
|
|
19783
|
+
export type PalletReviveEvmBlockHashBlockBuilderEthereumBlockBuilderIR = {
|
|
19784
|
+
transactionRootBuilder: PalletReviveEvmBlockHashHashBuilderIncrementalHashBuilderIR;
|
|
19785
|
+
receiptsRootBuilder: PalletReviveEvmBlockHashHashBuilderIncrementalHashBuilderIR;
|
|
19786
|
+
gasUsed: U256;
|
|
19787
|
+
logsBloom: FixedBytes<256>;
|
|
19788
|
+
txHashes: Array<H256>;
|
|
19789
|
+
gasInfo: Array<PalletReviveEvmBlockHashReceiptGasInfo>;
|
|
19790
|
+
};
|
|
19791
|
+
|
|
19792
|
+
export type PalletReviveEvmBlockHashHashBuilderIncrementalHashBuilderIR = {
|
|
19793
|
+
key: Bytes;
|
|
19794
|
+
valueType: number;
|
|
19795
|
+
builderValue: Bytes;
|
|
19796
|
+
stack: Array<Bytes>;
|
|
19797
|
+
stateMasks: Array<number>;
|
|
19798
|
+
treeMasks: Array<number>;
|
|
19799
|
+
hashMasks: Array<number>;
|
|
19800
|
+
storedInDatabase: boolean;
|
|
19801
|
+
rlpBuf: Bytes;
|
|
19802
|
+
index: bigint;
|
|
19803
|
+
};
|
|
19804
|
+
|
|
19805
|
+
export type PalletReviveDebugDebugSettings = { allowUnlimitedContractSize: boolean };
|
|
19806
|
+
|
|
19532
19807
|
/**
|
|
19533
19808
|
* The `Error` enum of this pallet.
|
|
19534
19809
|
**/
|
|
@@ -19580,7 +19855,7 @@ export type PalletReviveError =
|
|
|
19580
19855
|
**/
|
|
19581
19856
|
| 'ContractTrapped'
|
|
19582
19857
|
/**
|
|
19583
|
-
* Event body or storage item exceeds [`limits::
|
|
19858
|
+
* Event body or storage item exceeds [`limits::STORAGE_BYTES`].
|
|
19584
19859
|
**/
|
|
19585
19860
|
| 'ValueTooLarge'
|
|
19586
19861
|
/**
|
|
@@ -19730,7 +20005,25 @@ export type PalletReviveError =
|
|
|
19730
20005
|
/**
|
|
19731
20006
|
* The return data exceeds [`limits::CALLDATA_BYTES`].
|
|
19732
20007
|
**/
|
|
19733
|
-
| 'ReturnDataTooLarge'
|
|
20008
|
+
| 'ReturnDataTooLarge'
|
|
20009
|
+
/**
|
|
20010
|
+
* Invalid jump destination. Dynamic jumps points to invalid not jumpdest opcode.
|
|
20011
|
+
**/
|
|
20012
|
+
| 'InvalidJump'
|
|
20013
|
+
/**
|
|
20014
|
+
* Attempting to pop a value from an empty stack.
|
|
20015
|
+
**/
|
|
20016
|
+
| 'StackUnderflow'
|
|
20017
|
+
/**
|
|
20018
|
+
* Attempting to push a value onto a full stack.
|
|
20019
|
+
**/
|
|
20020
|
+
| 'StackOverflow'
|
|
20021
|
+
/**
|
|
20022
|
+
* Too much deposit was drawn from the shared txfee and deposit credit.
|
|
20023
|
+
*
|
|
20024
|
+
* This happens if the passed `gas` inside the ethereum transaction is too low.
|
|
20025
|
+
**/
|
|
20026
|
+
| 'TxFeeOverdraw';
|
|
19734
20027
|
|
|
19735
20028
|
export type PalletAssetRewardsPoolStakerInfo = { amount: bigint; rewards: bigint; rewardPerTokenPaid: bigint };
|
|
19736
20029
|
|
|
@@ -20814,6 +21107,14 @@ export type PalletAhOpsError =
|
|
|
20814
21107
|
|
|
20815
21108
|
export type SpConsensusSlotsSlotDuration = bigint;
|
|
20816
21109
|
|
|
21110
|
+
export type CumulusPrimitivesCoreNextSlotSchedule = { numberOfBlocks: number; blockTime: Duration };
|
|
21111
|
+
|
|
21112
|
+
export type Duration = [bigint, number];
|
|
21113
|
+
|
|
21114
|
+
export type SpRuntimeBlockLazyBlock = { header: Header; extrinsics: Array<SpRuntimeOpaqueExtrinsic> };
|
|
21115
|
+
|
|
21116
|
+
export type SpRuntimeOpaqueExtrinsic = Bytes;
|
|
21117
|
+
|
|
20817
21118
|
export type SpRuntimeExtrinsicInclusionMode = 'AllExtrinsics' | 'OnlyInherents';
|
|
20818
21119
|
|
|
20819
21120
|
export type SpCoreOpaqueMetadata = Bytes;
|
|
@@ -20964,19 +21265,6 @@ export type PalletReviveEvmApiRpcTypesGenGenericTransaction = {
|
|
|
20964
21265
|
value?: U256 | undefined;
|
|
20965
21266
|
};
|
|
20966
21267
|
|
|
20967
|
-
export type PalletReviveEvmApiRpcTypesGenAccessListEntry = { address: H160; storageKeys: Array<H256> };
|
|
20968
|
-
|
|
20969
|
-
export type PalletReviveEvmApiRpcTypesGenAuthorizationListEntry = {
|
|
20970
|
-
chainId: U256;
|
|
20971
|
-
address: H160;
|
|
20972
|
-
nonce: U256;
|
|
20973
|
-
yParity: U256;
|
|
20974
|
-
r: U256;
|
|
20975
|
-
s: U256;
|
|
20976
|
-
};
|
|
20977
|
-
|
|
20978
|
-
export type PalletReviveEvmApiByteBytes = Bytes;
|
|
20979
|
-
|
|
20980
21268
|
export type PalletReviveEvmApiRpcTypesGenInputOrData = {
|
|
20981
21269
|
input?: PalletReviveEvmApiByteBytes | undefined;
|
|
20982
21270
|
data?: PalletReviveEvmApiByteBytes | undefined;
|
|
@@ -20997,7 +21285,10 @@ export type PalletRevivePrimitivesEthTransactError =
|
|
|
20997
21285
|
|
|
20998
21286
|
export type PalletRevivePrimitivesCodeUploadReturnValue = { codeHash: H256; deposit: bigint };
|
|
20999
21287
|
|
|
21000
|
-
export type PalletRevivePrimitivesContractAccessError =
|
|
21288
|
+
export type PalletRevivePrimitivesContractAccessError =
|
|
21289
|
+
| { type: 'DoesntExist' }
|
|
21290
|
+
| { type: 'KeyDecodingFailed' }
|
|
21291
|
+
| { type: 'StorageWriteFailed'; value: DispatchError };
|
|
21001
21292
|
|
|
21002
21293
|
export type PalletReviveEvmApiDebugRpcTypesTracerType =
|
|
21003
21294
|
| { type: 'CallTracer'; value?: PalletReviveEvmApiDebugRpcTypesCallTracerConfig | undefined }
|
|
@@ -21028,6 +21319,7 @@ export type PalletReviveEvmApiDebugRpcTypesCallTrace = {
|
|
|
21028
21319
|
logs: Array<PalletReviveEvmApiDebugRpcTypesCallLog>;
|
|
21029
21320
|
value?: U256 | undefined;
|
|
21030
21321
|
callType: PalletReviveEvmApiDebugRpcTypesCallType;
|
|
21322
|
+
childCallCount: number;
|
|
21031
21323
|
};
|
|
21032
21324
|
|
|
21033
21325
|
export type PalletReviveEvmApiDebugRpcTypesCallLog = {
|
|
@@ -21056,6 +21348,8 @@ export type PalletReviveEvmApiDebugRpcTypesPrestateTraceInfo = {
|
|
|
21056
21348
|
storage: Array<[PalletReviveEvmApiByteBytes, PalletReviveEvmApiByteBytes | undefined]>;
|
|
21057
21349
|
};
|
|
21058
21350
|
|
|
21351
|
+
export type PalletRevivePrimitivesBalanceConversionError = 'Value' | 'Dust';
|
|
21352
|
+
|
|
21059
21353
|
export type AssetHubWestendRuntimeRuntimeError =
|
|
21060
21354
|
| { pallet: 'System'; palletError: FrameSystemError }
|
|
21061
21355
|
| { pallet: 'ParachainSystem'; palletError: CumulusPalletParachainSystemError }
|