@dedot/chaintypes 0.232.0 → 0.234.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/hydration/consts.d.ts +119 -47
- package/hydration/errors.d.ts +91 -130
- package/hydration/events.d.ts +340 -432
- package/hydration/index.d.ts +2 -3
- package/hydration/json-rpc.d.ts +10 -17
- package/hydration/query.d.ts +157 -277
- package/hydration/runtime.d.ts +21 -123
- package/hydration/tx.d.ts +502 -315
- package/hydration/types.d.ts +1366 -1284
- package/package.json +2 -2
- package/paseo/consts.d.ts +87 -18
- package/paseo/errors.d.ts +187 -30
- package/paseo/events.d.ts +676 -80
- package/paseo/index.d.ts +1 -1
- package/paseo/query.d.ts +465 -71
- package/paseo/runtime.d.ts +85 -39
- package/paseo/tx.d.ts +1012 -165
- package/paseo/types.d.ts +8081 -6364
- package/paseo/view-functions.d.ts +75 -1
- package/paseo-asset-hub/consts.d.ts +0 -34
- package/paseo-asset-hub/errors.d.ts +0 -28
- package/paseo-asset-hub/events.d.ts +20 -205
- package/paseo-asset-hub/index.d.ts +3 -3
- package/paseo-asset-hub/query.d.ts +23 -66
- package/paseo-asset-hub/runtime.d.ts +15 -12
- package/paseo-asset-hub/tx.d.ts +127 -327
- package/paseo-asset-hub/types.d.ts +192 -513
- package/paseo-asset-hub/view-functions.d.ts +7 -7
- package/paseo-hydration/consts.d.ts +5 -0
- package/paseo-hydration/errors.d.ts +1 -1
- package/paseo-hydration/index.d.ts +1 -1
- package/paseo-hydration/json-rpc.d.ts +0 -10
- package/paseo-hydration/tx.d.ts +2 -1
- package/paseo-hydration/types.d.ts +5 -3
- package/paseo-people/consts.d.ts +75 -0
- package/paseo-people/errors.d.ts +165 -0
- package/paseo-people/events.d.ts +285 -2
- package/paseo-people/index.d.ts +5 -4
- package/paseo-people/query.d.ts +125 -0
- package/paseo-people/tx.d.ts +1286 -2
- package/paseo-people/types.d.ts +1776 -183
package/hydration/events.d.ts
CHANGED
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
import type { GenericChainEvents, GenericPalletEvent } from 'dedot/types';
|
|
4
4
|
import type {
|
|
5
|
-
DispatchInfo,
|
|
6
5
|
DispatchError,
|
|
7
6
|
AccountId32,
|
|
8
7
|
H256,
|
|
@@ -16,11 +15,13 @@ import type {
|
|
|
16
15
|
H160,
|
|
17
16
|
} from 'dedot/codecs';
|
|
18
17
|
import type {
|
|
18
|
+
FrameSystemDispatchEventInfo,
|
|
19
19
|
FrameSupportTokensMiscBalanceStatus,
|
|
20
20
|
PalletDemocracyVoteThreshold,
|
|
21
21
|
PalletDemocracyVoteAccountVote,
|
|
22
22
|
PalletDemocracyMetadataOwner,
|
|
23
23
|
HydradxRuntimeSystemProxyType,
|
|
24
|
+
PalletProxyDepositKind,
|
|
24
25
|
PalletMultisigTimepoint,
|
|
25
26
|
PalletStateTrieMigrationMigrationCompute,
|
|
26
27
|
PalletStateTrieMigrationError,
|
|
@@ -51,25 +52,20 @@ import type {
|
|
|
51
52
|
PalletXykAssetPair,
|
|
52
53
|
PalletDcaOrder,
|
|
53
54
|
SpWeightsWeightV2Weight,
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
55
|
+
StagingXcmV5TraitsOutcome,
|
|
56
|
+
StagingXcmV5Location,
|
|
57
|
+
StagingXcmV5Xcm,
|
|
58
|
+
XcmV3TraitsSendError,
|
|
59
|
+
XcmV5TraitsError,
|
|
60
|
+
StagingXcmV5Response,
|
|
58
61
|
XcmVersionedAssets,
|
|
59
|
-
|
|
60
|
-
XcmV3TraitsError,
|
|
62
|
+
StagingXcmV5AssetAssets,
|
|
61
63
|
XcmVersionedLocation,
|
|
62
64
|
CumulusPrimitivesCoreAggregateMessageOrigin,
|
|
63
65
|
FrameSupportMessagesProcessMessageError,
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
IsmpHostStateMachine,
|
|
68
|
-
PalletIsmpErrorsHandlingError,
|
|
69
|
-
IsmpEventsRequestResponseHandled,
|
|
70
|
-
IsmpEventsTimeoutHandled,
|
|
71
|
-
IsmpParachainParachainData,
|
|
72
|
-
PalletHyperbridgeVersionedHostParams,
|
|
66
|
+
StagingXcmV5Asset,
|
|
67
|
+
HydradxTraitsOracleOraclePeriod,
|
|
68
|
+
HydraDxMathRatio,
|
|
73
69
|
PalletBroadcastFiller,
|
|
74
70
|
PalletBroadcastTradeOperation,
|
|
75
71
|
PalletBroadcastAsset,
|
|
@@ -85,7 +81,7 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
85
81
|
/**
|
|
86
82
|
* An extrinsic completed successfully.
|
|
87
83
|
**/
|
|
88
|
-
ExtrinsicSuccess: GenericPalletEvent<'System', 'ExtrinsicSuccess', { dispatchInfo:
|
|
84
|
+
ExtrinsicSuccess: GenericPalletEvent<'System', 'ExtrinsicSuccess', { dispatchInfo: FrameSystemDispatchEventInfo }>;
|
|
89
85
|
|
|
90
86
|
/**
|
|
91
87
|
* An extrinsic failed.
|
|
@@ -93,7 +89,7 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
93
89
|
ExtrinsicFailed: GenericPalletEvent<
|
|
94
90
|
'System',
|
|
95
91
|
'ExtrinsicFailed',
|
|
96
|
-
{ dispatchError: DispatchError; dispatchInfo:
|
|
92
|
+
{ dispatchError: DispatchError; dispatchInfo: FrameSystemDispatchEventInfo }
|
|
97
93
|
>;
|
|
98
94
|
|
|
99
95
|
/**
|
|
@@ -121,6 +117,15 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
121
117
|
**/
|
|
122
118
|
UpgradeAuthorized: GenericPalletEvent<'System', 'UpgradeAuthorized', { codeHash: H256; checkVersion: boolean }>;
|
|
123
119
|
|
|
120
|
+
/**
|
|
121
|
+
* An invalid authorized upgrade was rejected while trying to apply it.
|
|
122
|
+
**/
|
|
123
|
+
RejectedInvalidAuthorizedUpgrade: GenericPalletEvent<
|
|
124
|
+
'System',
|
|
125
|
+
'RejectedInvalidAuthorizedUpgrade',
|
|
126
|
+
{ codeHash: H256; error: DispatchError }
|
|
127
|
+
>;
|
|
128
|
+
|
|
124
129
|
/**
|
|
125
130
|
* Generic pallet event
|
|
126
131
|
**/
|
|
@@ -430,6 +435,16 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
430
435
|
**/
|
|
431
436
|
DispatchedAs: GenericPalletEvent<'Utility', 'DispatchedAs', { result: Result<[], DispatchError> }>;
|
|
432
437
|
|
|
438
|
+
/**
|
|
439
|
+
* Main call was dispatched.
|
|
440
|
+
**/
|
|
441
|
+
IfElseMainSuccess: GenericPalletEvent<'Utility', 'IfElseMainSuccess', null>;
|
|
442
|
+
|
|
443
|
+
/**
|
|
444
|
+
* The fallback call was dispatched.
|
|
445
|
+
**/
|
|
446
|
+
IfElseFallbackCalled: GenericPalletEvent<'Utility', 'IfElseFallbackCalled', { mainError: DispatchError }>;
|
|
447
|
+
|
|
433
448
|
/**
|
|
434
449
|
* Generic pallet event
|
|
435
450
|
**/
|
|
@@ -515,6 +530,20 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
515
530
|
{ sub: AccountId32; main: AccountId32; deposit: bigint }
|
|
516
531
|
>;
|
|
517
532
|
|
|
533
|
+
/**
|
|
534
|
+
* An account's sub-identities were set (in bulk).
|
|
535
|
+
**/
|
|
536
|
+
SubIdentitiesSet: GenericPalletEvent<
|
|
537
|
+
'Identity',
|
|
538
|
+
'SubIdentitiesSet',
|
|
539
|
+
{ main: AccountId32; numberOfSubs: number; newDeposit: bigint }
|
|
540
|
+
>;
|
|
541
|
+
|
|
542
|
+
/**
|
|
543
|
+
* A given sub-account's associated name was changed by its super-identity.
|
|
544
|
+
**/
|
|
545
|
+
SubIdentityRenamed: GenericPalletEvent<'Identity', 'SubIdentityRenamed', { sub: AccountId32; main: AccountId32 }>;
|
|
546
|
+
|
|
518
547
|
/**
|
|
519
548
|
* A sub-identity was removed from an identity and the deposit freed.
|
|
520
549
|
**/
|
|
@@ -578,6 +607,21 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
578
607
|
{ who: AccountId32; username: Bytes }
|
|
579
608
|
>;
|
|
580
609
|
|
|
610
|
+
/**
|
|
611
|
+
* A username has been unbound.
|
|
612
|
+
**/
|
|
613
|
+
UsernameUnbound: GenericPalletEvent<'Identity', 'UsernameUnbound', { username: Bytes }>;
|
|
614
|
+
|
|
615
|
+
/**
|
|
616
|
+
* A username has been removed.
|
|
617
|
+
**/
|
|
618
|
+
UsernameRemoved: GenericPalletEvent<'Identity', 'UsernameRemoved', { username: Bytes }>;
|
|
619
|
+
|
|
620
|
+
/**
|
|
621
|
+
* A username has been killed.
|
|
622
|
+
**/
|
|
623
|
+
UsernameKilled: GenericPalletEvent<'Identity', 'UsernameKilled', { username: Bytes }>;
|
|
624
|
+
|
|
581
625
|
/**
|
|
582
626
|
* Generic pallet event
|
|
583
627
|
**/
|
|
@@ -785,6 +829,29 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
785
829
|
**/
|
|
786
830
|
Closed: GenericPalletEvent<'TechnicalCommittee', 'Closed', { proposalHash: H256; yes: number; no: number }>;
|
|
787
831
|
|
|
832
|
+
/**
|
|
833
|
+
* A proposal was killed.
|
|
834
|
+
**/
|
|
835
|
+
Killed: GenericPalletEvent<'TechnicalCommittee', 'Killed', { proposalHash: H256 }>;
|
|
836
|
+
|
|
837
|
+
/**
|
|
838
|
+
* Some cost for storing a proposal was burned.
|
|
839
|
+
**/
|
|
840
|
+
ProposalCostBurned: GenericPalletEvent<
|
|
841
|
+
'TechnicalCommittee',
|
|
842
|
+
'ProposalCostBurned',
|
|
843
|
+
{ proposalHash: H256; who: AccountId32 }
|
|
844
|
+
>;
|
|
845
|
+
|
|
846
|
+
/**
|
|
847
|
+
* Some cost for storing a proposal was released.
|
|
848
|
+
**/
|
|
849
|
+
ProposalCostReleased: GenericPalletEvent<
|
|
850
|
+
'TechnicalCommittee',
|
|
851
|
+
'ProposalCostReleased',
|
|
852
|
+
{ proposalHash: H256; who: AccountId32 }
|
|
853
|
+
>;
|
|
854
|
+
|
|
788
855
|
/**
|
|
789
856
|
* Generic pallet event
|
|
790
857
|
**/
|
|
@@ -832,6 +899,15 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
832
899
|
{ delegator: AccountId32; delegatee: AccountId32; proxyType: HydradxRuntimeSystemProxyType; delay: number }
|
|
833
900
|
>;
|
|
834
901
|
|
|
902
|
+
/**
|
|
903
|
+
* A deposit stored for proxies or announcements was poked / updated.
|
|
904
|
+
**/
|
|
905
|
+
DepositPoked: GenericPalletEvent<
|
|
906
|
+
'Proxy',
|
|
907
|
+
'DepositPoked',
|
|
908
|
+
{ who: AccountId32; kind: PalletProxyDepositKind; oldDeposit: bigint; newDeposit: bigint }
|
|
909
|
+
>;
|
|
910
|
+
|
|
835
911
|
/**
|
|
836
912
|
* Generic pallet event
|
|
837
913
|
**/
|
|
@@ -883,6 +959,15 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
883
959
|
{ cancelling: AccountId32; timepoint: PalletMultisigTimepoint; multisig: AccountId32; callHash: FixedBytes<32> }
|
|
884
960
|
>;
|
|
885
961
|
|
|
962
|
+
/**
|
|
963
|
+
* The deposit for a multisig operation has been updated/poked.
|
|
964
|
+
**/
|
|
965
|
+
DepositPoked: GenericPalletEvent<
|
|
966
|
+
'Multisig',
|
|
967
|
+
'DepositPoked',
|
|
968
|
+
{ who: AccountId32; callHash: FixedBytes<32>; oldDeposit: bigint; newDeposit: bigint }
|
|
969
|
+
>;
|
|
970
|
+
|
|
886
971
|
/**
|
|
887
972
|
* Generic pallet event
|
|
888
973
|
**/
|
|
@@ -1131,7 +1216,7 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
1131
1216
|
Undelegated: GenericPalletEvent<'ConvictionVoting', 'Undelegated', AccountId32>;
|
|
1132
1217
|
|
|
1133
1218
|
/**
|
|
1134
|
-
* An account
|
|
1219
|
+
* An account has voted
|
|
1135
1220
|
**/
|
|
1136
1221
|
Voted: GenericPalletEvent<
|
|
1137
1222
|
'ConvictionVoting',
|
|
@@ -1140,7 +1225,7 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
1140
1225
|
>;
|
|
1141
1226
|
|
|
1142
1227
|
/**
|
|
1143
|
-
* A vote
|
|
1228
|
+
* A vote has been removed
|
|
1144
1229
|
**/
|
|
1145
1230
|
VoteRemoved: GenericPalletEvent<
|
|
1146
1231
|
'ConvictionVoting',
|
|
@@ -1148,6 +1233,11 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
1148
1233
|
{ who: AccountId32; vote: PalletConvictionVotingVoteAccountVote }
|
|
1149
1234
|
>;
|
|
1150
1235
|
|
|
1236
|
+
/**
|
|
1237
|
+
* The lockup period of a conviction vote expired, and the funds have been unlocked.
|
|
1238
|
+
**/
|
|
1239
|
+
VoteUnlocked: GenericPalletEvent<'ConvictionVoting', 'VoteUnlocked', { who: AccountId32; class: number }>;
|
|
1240
|
+
|
|
1151
1241
|
/**
|
|
1152
1242
|
* Generic pallet event
|
|
1153
1243
|
**/
|
|
@@ -2856,7 +2946,7 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
2856
2946
|
/**
|
|
2857
2947
|
* Target EVM address to receive ETH.
|
|
2858
2948
|
**/
|
|
2859
|
-
to:
|
|
2949
|
+
to: H160;
|
|
2860
2950
|
|
|
2861
2951
|
/**
|
|
2862
2952
|
* Requested amount of ETH (in wei).
|
|
@@ -3542,6 +3632,11 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
3542
3632
|
{ task: [number, number]; id?: FixedBytes<32> | undefined }
|
|
3543
3633
|
>;
|
|
3544
3634
|
|
|
3635
|
+
/**
|
|
3636
|
+
* Agenda is incomplete from `when`.
|
|
3637
|
+
**/
|
|
3638
|
+
AgendaIncomplete: GenericPalletEvent<'Scheduler', 'AgendaIncomplete', { when: number }>;
|
|
3639
|
+
|
|
3545
3640
|
/**
|
|
3546
3641
|
* Generic pallet event
|
|
3547
3642
|
**/
|
|
@@ -3605,22 +3700,45 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
3605
3700
|
/**
|
|
3606
3701
|
* Execution of an XCM message was attempted.
|
|
3607
3702
|
**/
|
|
3608
|
-
Attempted: GenericPalletEvent<'PolkadotXcm', 'Attempted', { outcome:
|
|
3703
|
+
Attempted: GenericPalletEvent<'PolkadotXcm', 'Attempted', { outcome: StagingXcmV5TraitsOutcome }>;
|
|
3609
3704
|
|
|
3610
3705
|
/**
|
|
3611
|
-
*
|
|
3706
|
+
* An XCM message was sent.
|
|
3612
3707
|
**/
|
|
3613
3708
|
Sent: GenericPalletEvent<
|
|
3614
3709
|
'PolkadotXcm',
|
|
3615
3710
|
'Sent',
|
|
3616
3711
|
{
|
|
3617
|
-
origin:
|
|
3618
|
-
destination:
|
|
3619
|
-
message:
|
|
3712
|
+
origin: StagingXcmV5Location;
|
|
3713
|
+
destination: StagingXcmV5Location;
|
|
3714
|
+
message: StagingXcmV5Xcm;
|
|
3715
|
+
messageId: FixedBytes<32>;
|
|
3716
|
+
}
|
|
3717
|
+
>;
|
|
3718
|
+
|
|
3719
|
+
/**
|
|
3720
|
+
* An XCM message failed to send.
|
|
3721
|
+
**/
|
|
3722
|
+
SendFailed: GenericPalletEvent<
|
|
3723
|
+
'PolkadotXcm',
|
|
3724
|
+
'SendFailed',
|
|
3725
|
+
{
|
|
3726
|
+
origin: StagingXcmV5Location;
|
|
3727
|
+
destination: StagingXcmV5Location;
|
|
3728
|
+
error: XcmV3TraitsSendError;
|
|
3620
3729
|
messageId: FixedBytes<32>;
|
|
3621
3730
|
}
|
|
3622
3731
|
>;
|
|
3623
3732
|
|
|
3733
|
+
/**
|
|
3734
|
+
* An XCM message failed to process.
|
|
3735
|
+
**/
|
|
3736
|
+
ProcessXcmError: GenericPalletEvent<
|
|
3737
|
+
'PolkadotXcm',
|
|
3738
|
+
'ProcessXcmError',
|
|
3739
|
+
{ origin: StagingXcmV5Location; error: XcmV5TraitsError; messageId: FixedBytes<32> }
|
|
3740
|
+
>;
|
|
3741
|
+
|
|
3624
3742
|
/**
|
|
3625
3743
|
* Query response received which does not match a registered query. This may be because a
|
|
3626
3744
|
* matching query was never registered, it may be because it is a duplicate response, or
|
|
@@ -3629,7 +3747,7 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
3629
3747
|
UnexpectedResponse: GenericPalletEvent<
|
|
3630
3748
|
'PolkadotXcm',
|
|
3631
3749
|
'UnexpectedResponse',
|
|
3632
|
-
{ origin:
|
|
3750
|
+
{ origin: StagingXcmV5Location; queryId: bigint }
|
|
3633
3751
|
>;
|
|
3634
3752
|
|
|
3635
3753
|
/**
|
|
@@ -3639,7 +3757,7 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
3639
3757
|
ResponseReady: GenericPalletEvent<
|
|
3640
3758
|
'PolkadotXcm',
|
|
3641
3759
|
'ResponseReady',
|
|
3642
|
-
{ queryId: bigint; response:
|
|
3760
|
+
{ queryId: bigint; response: StagingXcmV5Response }
|
|
3643
3761
|
>;
|
|
3644
3762
|
|
|
3645
3763
|
/**
|
|
@@ -3698,7 +3816,7 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
3698
3816
|
InvalidResponder: GenericPalletEvent<
|
|
3699
3817
|
'PolkadotXcm',
|
|
3700
3818
|
'InvalidResponder',
|
|
3701
|
-
{ origin:
|
|
3819
|
+
{ origin: StagingXcmV5Location; queryId: bigint; expectedLocation?: StagingXcmV5Location | undefined }
|
|
3702
3820
|
>;
|
|
3703
3821
|
|
|
3704
3822
|
/**
|
|
@@ -3713,7 +3831,7 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
3713
3831
|
InvalidResponderVersion: GenericPalletEvent<
|
|
3714
3832
|
'PolkadotXcm',
|
|
3715
3833
|
'InvalidResponderVersion',
|
|
3716
|
-
{ origin:
|
|
3834
|
+
{ origin: StagingXcmV5Location; queryId: bigint }
|
|
3717
3835
|
>;
|
|
3718
3836
|
|
|
3719
3837
|
/**
|
|
@@ -3727,7 +3845,7 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
3727
3845
|
AssetsTrapped: GenericPalletEvent<
|
|
3728
3846
|
'PolkadotXcm',
|
|
3729
3847
|
'AssetsTrapped',
|
|
3730
|
-
{ hash: H256; origin:
|
|
3848
|
+
{ hash: H256; origin: StagingXcmV5Location; assets: XcmVersionedAssets }
|
|
3731
3849
|
>;
|
|
3732
3850
|
|
|
3733
3851
|
/**
|
|
@@ -3738,7 +3856,7 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
3738
3856
|
VersionChangeNotified: GenericPalletEvent<
|
|
3739
3857
|
'PolkadotXcm',
|
|
3740
3858
|
'VersionChangeNotified',
|
|
3741
|
-
{ destination:
|
|
3859
|
+
{ destination: StagingXcmV5Location; result: number; cost: StagingXcmV5AssetAssets; messageId: FixedBytes<32> }
|
|
3742
3860
|
>;
|
|
3743
3861
|
|
|
3744
3862
|
/**
|
|
@@ -3748,7 +3866,7 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
3748
3866
|
SupportedVersionChanged: GenericPalletEvent<
|
|
3749
3867
|
'PolkadotXcm',
|
|
3750
3868
|
'SupportedVersionChanged',
|
|
3751
|
-
{ location:
|
|
3869
|
+
{ location: StagingXcmV5Location; version: number }
|
|
3752
3870
|
>;
|
|
3753
3871
|
|
|
3754
3872
|
/**
|
|
@@ -3758,7 +3876,7 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
3758
3876
|
NotifyTargetSendFail: GenericPalletEvent<
|
|
3759
3877
|
'PolkadotXcm',
|
|
3760
3878
|
'NotifyTargetSendFail',
|
|
3761
|
-
{ location:
|
|
3879
|
+
{ location: StagingXcmV5Location; queryId: bigint; error: XcmV5TraitsError }
|
|
3762
3880
|
>;
|
|
3763
3881
|
|
|
3764
3882
|
/**
|
|
@@ -3783,7 +3901,7 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
3783
3901
|
InvalidQuerierVersion: GenericPalletEvent<
|
|
3784
3902
|
'PolkadotXcm',
|
|
3785
3903
|
'InvalidQuerierVersion',
|
|
3786
|
-
{ origin:
|
|
3904
|
+
{ origin: StagingXcmV5Location; queryId: bigint }
|
|
3787
3905
|
>;
|
|
3788
3906
|
|
|
3789
3907
|
/**
|
|
@@ -3795,10 +3913,10 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
3795
3913
|
'PolkadotXcm',
|
|
3796
3914
|
'InvalidQuerier',
|
|
3797
3915
|
{
|
|
3798
|
-
origin:
|
|
3916
|
+
origin: StagingXcmV5Location;
|
|
3799
3917
|
queryId: bigint;
|
|
3800
|
-
expectedQuerier:
|
|
3801
|
-
maybeActualQuerier?:
|
|
3918
|
+
expectedQuerier: StagingXcmV5Location;
|
|
3919
|
+
maybeActualQuerier?: StagingXcmV5Location | undefined;
|
|
3802
3920
|
}
|
|
3803
3921
|
>;
|
|
3804
3922
|
|
|
@@ -3809,7 +3927,7 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
3809
3927
|
VersionNotifyStarted: GenericPalletEvent<
|
|
3810
3928
|
'PolkadotXcm',
|
|
3811
3929
|
'VersionNotifyStarted',
|
|
3812
|
-
{ destination:
|
|
3930
|
+
{ destination: StagingXcmV5Location; cost: StagingXcmV5AssetAssets; messageId: FixedBytes<32> }
|
|
3813
3931
|
>;
|
|
3814
3932
|
|
|
3815
3933
|
/**
|
|
@@ -3818,7 +3936,7 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
3818
3936
|
VersionNotifyRequested: GenericPalletEvent<
|
|
3819
3937
|
'PolkadotXcm',
|
|
3820
3938
|
'VersionNotifyRequested',
|
|
3821
|
-
{ destination:
|
|
3939
|
+
{ destination: StagingXcmV5Location; cost: StagingXcmV5AssetAssets; messageId: FixedBytes<32> }
|
|
3822
3940
|
>;
|
|
3823
3941
|
|
|
3824
3942
|
/**
|
|
@@ -3828,7 +3946,7 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
3828
3946
|
VersionNotifyUnrequested: GenericPalletEvent<
|
|
3829
3947
|
'PolkadotXcm',
|
|
3830
3948
|
'VersionNotifyUnrequested',
|
|
3831
|
-
{ destination:
|
|
3949
|
+
{ destination: StagingXcmV5Location; cost: StagingXcmV5AssetAssets; messageId: FixedBytes<32> }
|
|
3832
3950
|
>;
|
|
3833
3951
|
|
|
3834
3952
|
/**
|
|
@@ -3837,7 +3955,7 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
3837
3955
|
FeesPaid: GenericPalletEvent<
|
|
3838
3956
|
'PolkadotXcm',
|
|
3839
3957
|
'FeesPaid',
|
|
3840
|
-
{ paying:
|
|
3958
|
+
{ paying: StagingXcmV5Location; fees: StagingXcmV5AssetAssets }
|
|
3841
3959
|
>;
|
|
3842
3960
|
|
|
3843
3961
|
/**
|
|
@@ -3846,7 +3964,7 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
3846
3964
|
AssetsClaimed: GenericPalletEvent<
|
|
3847
3965
|
'PolkadotXcm',
|
|
3848
3966
|
'AssetsClaimed',
|
|
3849
|
-
{ hash: H256; origin:
|
|
3967
|
+
{ hash: H256; origin: StagingXcmV5Location; assets: XcmVersionedAssets }
|
|
3850
3968
|
>;
|
|
3851
3969
|
|
|
3852
3970
|
/**
|
|
@@ -3854,6 +3972,34 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
3854
3972
|
**/
|
|
3855
3973
|
VersionMigrationFinished: GenericPalletEvent<'PolkadotXcm', 'VersionMigrationFinished', { version: number }>;
|
|
3856
3974
|
|
|
3975
|
+
/**
|
|
3976
|
+
* An `aliaser` location was authorized by `target` to alias it, authorization valid until
|
|
3977
|
+
* `expiry` block number.
|
|
3978
|
+
**/
|
|
3979
|
+
AliasAuthorized: GenericPalletEvent<
|
|
3980
|
+
'PolkadotXcm',
|
|
3981
|
+
'AliasAuthorized',
|
|
3982
|
+
{ aliaser: StagingXcmV5Location; target: StagingXcmV5Location; expiry?: bigint | undefined }
|
|
3983
|
+
>;
|
|
3984
|
+
|
|
3985
|
+
/**
|
|
3986
|
+
* `target` removed alias authorization for `aliaser`.
|
|
3987
|
+
**/
|
|
3988
|
+
AliasAuthorizationRemoved: GenericPalletEvent<
|
|
3989
|
+
'PolkadotXcm',
|
|
3990
|
+
'AliasAuthorizationRemoved',
|
|
3991
|
+
{ aliaser: StagingXcmV5Location; target: StagingXcmV5Location }
|
|
3992
|
+
>;
|
|
3993
|
+
|
|
3994
|
+
/**
|
|
3995
|
+
* `target` removed all alias authorizations.
|
|
3996
|
+
**/
|
|
3997
|
+
AliasesAuthorizationsRemoved: GenericPalletEvent<
|
|
3998
|
+
'PolkadotXcm',
|
|
3999
|
+
'AliasesAuthorizationsRemoved',
|
|
4000
|
+
{ target: StagingXcmV5Location }
|
|
4001
|
+
>;
|
|
4002
|
+
|
|
3857
4003
|
/**
|
|
3858
4004
|
* Generic pallet event
|
|
3859
4005
|
**/
|
|
@@ -3879,7 +4025,7 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
3879
4025
|
* Downward message executed with the given outcome.
|
|
3880
4026
|
* \[ id, outcome \]
|
|
3881
4027
|
**/
|
|
3882
|
-
ExecutedDownward: GenericPalletEvent<'CumulusXcm', 'ExecutedDownward', [FixedBytes<32>,
|
|
4028
|
+
ExecutedDownward: GenericPalletEvent<'CumulusXcm', 'ExecutedDownward', [FixedBytes<32>, StagingXcmV5TraitsOutcome]>;
|
|
3883
4029
|
|
|
3884
4030
|
/**
|
|
3885
4031
|
* Generic pallet event
|
|
@@ -4018,6 +4164,135 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
4018
4164
|
**/
|
|
4019
4165
|
[prop: string]: GenericPalletEvent;
|
|
4020
4166
|
};
|
|
4167
|
+
/**
|
|
4168
|
+
* Pallet `MultiBlockMigrations`'s events
|
|
4169
|
+
**/
|
|
4170
|
+
multiBlockMigrations: {
|
|
4171
|
+
/**
|
|
4172
|
+
* A Runtime upgrade started.
|
|
4173
|
+
*
|
|
4174
|
+
* Its end is indicated by `UpgradeCompleted` or `UpgradeFailed`.
|
|
4175
|
+
**/
|
|
4176
|
+
UpgradeStarted: GenericPalletEvent<
|
|
4177
|
+
'MultiBlockMigrations',
|
|
4178
|
+
'UpgradeStarted',
|
|
4179
|
+
{
|
|
4180
|
+
/**
|
|
4181
|
+
* The number of migrations that this upgrade contains.
|
|
4182
|
+
*
|
|
4183
|
+
* This can be used to design a progress indicator in combination with counting the
|
|
4184
|
+
* `MigrationCompleted` and `MigrationSkipped` events.
|
|
4185
|
+
**/
|
|
4186
|
+
migrations: number;
|
|
4187
|
+
}
|
|
4188
|
+
>;
|
|
4189
|
+
|
|
4190
|
+
/**
|
|
4191
|
+
* The current runtime upgrade completed.
|
|
4192
|
+
*
|
|
4193
|
+
* This implies that all of its migrations completed successfully as well.
|
|
4194
|
+
**/
|
|
4195
|
+
UpgradeCompleted: GenericPalletEvent<'MultiBlockMigrations', 'UpgradeCompleted', null>;
|
|
4196
|
+
|
|
4197
|
+
/**
|
|
4198
|
+
* Runtime upgrade failed.
|
|
4199
|
+
*
|
|
4200
|
+
* This is very bad and will require governance intervention.
|
|
4201
|
+
**/
|
|
4202
|
+
UpgradeFailed: GenericPalletEvent<'MultiBlockMigrations', 'UpgradeFailed', null>;
|
|
4203
|
+
|
|
4204
|
+
/**
|
|
4205
|
+
* A migration was skipped since it was already executed in the past.
|
|
4206
|
+
**/
|
|
4207
|
+
MigrationSkipped: GenericPalletEvent<
|
|
4208
|
+
'MultiBlockMigrations',
|
|
4209
|
+
'MigrationSkipped',
|
|
4210
|
+
{
|
|
4211
|
+
/**
|
|
4212
|
+
* The index of the skipped migration within the [`Config::Migrations`] list.
|
|
4213
|
+
**/
|
|
4214
|
+
index: number;
|
|
4215
|
+
}
|
|
4216
|
+
>;
|
|
4217
|
+
|
|
4218
|
+
/**
|
|
4219
|
+
* A migration progressed.
|
|
4220
|
+
**/
|
|
4221
|
+
MigrationAdvanced: GenericPalletEvent<
|
|
4222
|
+
'MultiBlockMigrations',
|
|
4223
|
+
'MigrationAdvanced',
|
|
4224
|
+
{
|
|
4225
|
+
/**
|
|
4226
|
+
* The index of the migration within the [`Config::Migrations`] list.
|
|
4227
|
+
**/
|
|
4228
|
+
index: number;
|
|
4229
|
+
|
|
4230
|
+
/**
|
|
4231
|
+
* The number of blocks that this migration took so far.
|
|
4232
|
+
**/
|
|
4233
|
+
took: number;
|
|
4234
|
+
}
|
|
4235
|
+
>;
|
|
4236
|
+
|
|
4237
|
+
/**
|
|
4238
|
+
* A Migration completed.
|
|
4239
|
+
**/
|
|
4240
|
+
MigrationCompleted: GenericPalletEvent<
|
|
4241
|
+
'MultiBlockMigrations',
|
|
4242
|
+
'MigrationCompleted',
|
|
4243
|
+
{
|
|
4244
|
+
/**
|
|
4245
|
+
* The index of the migration within the [`Config::Migrations`] list.
|
|
4246
|
+
**/
|
|
4247
|
+
index: number;
|
|
4248
|
+
|
|
4249
|
+
/**
|
|
4250
|
+
* The number of blocks that this migration took so far.
|
|
4251
|
+
**/
|
|
4252
|
+
took: number;
|
|
4253
|
+
}
|
|
4254
|
+
>;
|
|
4255
|
+
|
|
4256
|
+
/**
|
|
4257
|
+
* A Migration failed.
|
|
4258
|
+
*
|
|
4259
|
+
* This implies that the whole upgrade failed and governance intervention is required.
|
|
4260
|
+
**/
|
|
4261
|
+
MigrationFailed: GenericPalletEvent<
|
|
4262
|
+
'MultiBlockMigrations',
|
|
4263
|
+
'MigrationFailed',
|
|
4264
|
+
{
|
|
4265
|
+
/**
|
|
4266
|
+
* The index of the migration within the [`Config::Migrations`] list.
|
|
4267
|
+
**/
|
|
4268
|
+
index: number;
|
|
4269
|
+
|
|
4270
|
+
/**
|
|
4271
|
+
* The number of blocks that this migration took so far.
|
|
4272
|
+
**/
|
|
4273
|
+
took: number;
|
|
4274
|
+
}
|
|
4275
|
+
>;
|
|
4276
|
+
|
|
4277
|
+
/**
|
|
4278
|
+
* The set of historical migrations has been cleared.
|
|
4279
|
+
**/
|
|
4280
|
+
HistoricCleared: GenericPalletEvent<
|
|
4281
|
+
'MultiBlockMigrations',
|
|
4282
|
+
'HistoricCleared',
|
|
4283
|
+
{
|
|
4284
|
+
/**
|
|
4285
|
+
* Should be passed to `clear_historic` in a successive call.
|
|
4286
|
+
**/
|
|
4287
|
+
nextCursor?: Bytes | undefined;
|
|
4288
|
+
}
|
|
4289
|
+
>;
|
|
4290
|
+
|
|
4291
|
+
/**
|
|
4292
|
+
* Generic pallet event
|
|
4293
|
+
**/
|
|
4294
|
+
[prop: string]: GenericPalletEvent;
|
|
4295
|
+
};
|
|
4021
4296
|
/**
|
|
4022
4297
|
* Pallet `OrmlXcm`'s events
|
|
4023
4298
|
**/
|
|
@@ -4025,7 +4300,7 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
4025
4300
|
/**
|
|
4026
4301
|
* XCM message sent. \[to, message\]
|
|
4027
4302
|
**/
|
|
4028
|
-
Sent: GenericPalletEvent<'OrmlXcm', 'Sent', { to:
|
|
4303
|
+
Sent: GenericPalletEvent<'OrmlXcm', 'Sent', { to: StagingXcmV5Location; message: StagingXcmV5Xcm }>;
|
|
4029
4304
|
|
|
4030
4305
|
/**
|
|
4031
4306
|
* Generic pallet event
|
|
@@ -4042,7 +4317,7 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
4042
4317
|
TransferredAssets: GenericPalletEvent<
|
|
4043
4318
|
'XTokens',
|
|
4044
4319
|
'TransferredAssets',
|
|
4045
|
-
{ sender: AccountId32; assets:
|
|
4320
|
+
{ sender: AccountId32; assets: StagingXcmV5AssetAssets; fee: StagingXcmV5Asset; dest: StagingXcmV5Location }
|
|
4046
4321
|
>;
|
|
4047
4322
|
|
|
4048
4323
|
/**
|
|
@@ -4060,7 +4335,7 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
4060
4335
|
Deposited: GenericPalletEvent<
|
|
4061
4336
|
'UnknownTokens',
|
|
4062
4337
|
'Deposited',
|
|
4063
|
-
{ asset:
|
|
4338
|
+
{ asset: StagingXcmV5Asset; who: StagingXcmV5Location }
|
|
4064
4339
|
>;
|
|
4065
4340
|
|
|
4066
4341
|
/**
|
|
@@ -4069,7 +4344,7 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
4069
4344
|
Withdrawn: GenericPalletEvent<
|
|
4070
4345
|
'UnknownTokens',
|
|
4071
4346
|
'Withdrawn',
|
|
4072
|
-
{ asset:
|
|
4347
|
+
{ asset: StagingXcmV5Asset; who: StagingXcmV5Location }
|
|
4073
4348
|
>;
|
|
4074
4349
|
|
|
4075
4350
|
/**
|
|
@@ -4172,394 +4447,14 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
4172
4447
|
NewSession: GenericPalletEvent<'Session', 'NewSession', { sessionIndex: number }>;
|
|
4173
4448
|
|
|
4174
4449
|
/**
|
|
4175
|
-
*
|
|
4176
|
-
**/
|
|
4177
|
-
[prop: string]: GenericPalletEvent;
|
|
4178
|
-
};
|
|
4179
|
-
/**
|
|
4180
|
-
* Pallet `Ismp`'s events
|
|
4181
|
-
**/
|
|
4182
|
-
ismp: {
|
|
4183
|
-
/**
|
|
4184
|
-
* Emitted when a state machine is successfully updated to a new height
|
|
4450
|
+
* Validator has been disabled.
|
|
4185
4451
|
**/
|
|
4186
|
-
|
|
4187
|
-
'Ismp',
|
|
4188
|
-
'StateMachineUpdated',
|
|
4189
|
-
{
|
|
4190
|
-
/**
|
|
4191
|
-
* State machine identifier
|
|
4192
|
-
**/
|
|
4193
|
-
stateMachineId: IsmpConsensusStateMachineId;
|
|
4194
|
-
|
|
4195
|
-
/**
|
|
4196
|
-
* State machine latest height
|
|
4197
|
-
**/
|
|
4198
|
-
latestHeight: bigint;
|
|
4199
|
-
}
|
|
4200
|
-
>;
|
|
4452
|
+
ValidatorDisabled: GenericPalletEvent<'Session', 'ValidatorDisabled', { validator: AccountId32 }>;
|
|
4201
4453
|
|
|
4202
4454
|
/**
|
|
4203
|
-
*
|
|
4455
|
+
* Validator has been re-enabled.
|
|
4204
4456
|
**/
|
|
4205
|
-
|
|
4206
|
-
'Ismp',
|
|
4207
|
-
'StateCommitmentVetoed',
|
|
4208
|
-
{
|
|
4209
|
-
/**
|
|
4210
|
-
* State machine height
|
|
4211
|
-
**/
|
|
4212
|
-
height: IsmpConsensusStateMachineHeight;
|
|
4213
|
-
|
|
4214
|
-
/**
|
|
4215
|
-
* responsible fisherman
|
|
4216
|
-
**/
|
|
4217
|
-
fisherman: Bytes;
|
|
4218
|
-
}
|
|
4219
|
-
>;
|
|
4220
|
-
|
|
4221
|
-
/**
|
|
4222
|
-
* Indicates that a consensus client has been created
|
|
4223
|
-
**/
|
|
4224
|
-
ConsensusClientCreated: GenericPalletEvent<
|
|
4225
|
-
'Ismp',
|
|
4226
|
-
'ConsensusClientCreated',
|
|
4227
|
-
{
|
|
4228
|
-
/**
|
|
4229
|
-
* Consensus client id
|
|
4230
|
-
**/
|
|
4231
|
-
consensusClientId: FixedBytes<4>;
|
|
4232
|
-
}
|
|
4233
|
-
>;
|
|
4234
|
-
|
|
4235
|
-
/**
|
|
4236
|
-
* Indicates that a consensus client has been created
|
|
4237
|
-
**/
|
|
4238
|
-
ConsensusClientFrozen: GenericPalletEvent<
|
|
4239
|
-
'Ismp',
|
|
4240
|
-
'ConsensusClientFrozen',
|
|
4241
|
-
{
|
|
4242
|
-
/**
|
|
4243
|
-
* Consensus client id
|
|
4244
|
-
**/
|
|
4245
|
-
consensusClientId: FixedBytes<4>;
|
|
4246
|
-
}
|
|
4247
|
-
>;
|
|
4248
|
-
|
|
4249
|
-
/**
|
|
4250
|
-
* An Outgoing Response has been deposited
|
|
4251
|
-
**/
|
|
4252
|
-
Response: GenericPalletEvent<
|
|
4253
|
-
'Ismp',
|
|
4254
|
-
'Response',
|
|
4255
|
-
{
|
|
4256
|
-
/**
|
|
4257
|
-
* Chain that this response will be routed to
|
|
4258
|
-
**/
|
|
4259
|
-
destChain: IsmpHostStateMachine;
|
|
4260
|
-
|
|
4261
|
-
/**
|
|
4262
|
-
* Source Chain for this response
|
|
4263
|
-
**/
|
|
4264
|
-
sourceChain: IsmpHostStateMachine;
|
|
4265
|
-
|
|
4266
|
-
/**
|
|
4267
|
-
* Nonce for the request which this response is for
|
|
4268
|
-
**/
|
|
4269
|
-
requestNonce: bigint;
|
|
4270
|
-
|
|
4271
|
-
/**
|
|
4272
|
-
* Response Commitment
|
|
4273
|
-
**/
|
|
4274
|
-
commitment: H256;
|
|
4275
|
-
|
|
4276
|
-
/**
|
|
4277
|
-
* Request commitment
|
|
4278
|
-
**/
|
|
4279
|
-
reqCommitment: H256;
|
|
4280
|
-
}
|
|
4281
|
-
>;
|
|
4282
|
-
|
|
4283
|
-
/**
|
|
4284
|
-
* An Outgoing Request has been deposited
|
|
4285
|
-
**/
|
|
4286
|
-
Request: GenericPalletEvent<
|
|
4287
|
-
'Ismp',
|
|
4288
|
-
'Request',
|
|
4289
|
-
{
|
|
4290
|
-
/**
|
|
4291
|
-
* Chain that this request will be routed to
|
|
4292
|
-
**/
|
|
4293
|
-
destChain: IsmpHostStateMachine;
|
|
4294
|
-
|
|
4295
|
-
/**
|
|
4296
|
-
* Source Chain for request
|
|
4297
|
-
**/
|
|
4298
|
-
sourceChain: IsmpHostStateMachine;
|
|
4299
|
-
|
|
4300
|
-
/**
|
|
4301
|
-
* Request nonce
|
|
4302
|
-
**/
|
|
4303
|
-
requestNonce: bigint;
|
|
4304
|
-
|
|
4305
|
-
/**
|
|
4306
|
-
* Commitment
|
|
4307
|
-
**/
|
|
4308
|
-
commitment: H256;
|
|
4309
|
-
}
|
|
4310
|
-
>;
|
|
4311
|
-
|
|
4312
|
-
/**
|
|
4313
|
-
* Some errors handling some ismp messages
|
|
4314
|
-
**/
|
|
4315
|
-
Errors: GenericPalletEvent<
|
|
4316
|
-
'Ismp',
|
|
4317
|
-
'Errors',
|
|
4318
|
-
{
|
|
4319
|
-
/**
|
|
4320
|
-
* Message handling errors
|
|
4321
|
-
**/
|
|
4322
|
-
errors: Array<PalletIsmpErrorsHandlingError>;
|
|
4323
|
-
}
|
|
4324
|
-
>;
|
|
4325
|
-
|
|
4326
|
-
/**
|
|
4327
|
-
* Post Request Handled
|
|
4328
|
-
**/
|
|
4329
|
-
PostRequestHandled: GenericPalletEvent<'Ismp', 'PostRequestHandled', IsmpEventsRequestResponseHandled>;
|
|
4330
|
-
|
|
4331
|
-
/**
|
|
4332
|
-
* Post Response Handled
|
|
4333
|
-
**/
|
|
4334
|
-
PostResponseHandled: GenericPalletEvent<'Ismp', 'PostResponseHandled', IsmpEventsRequestResponseHandled>;
|
|
4335
|
-
|
|
4336
|
-
/**
|
|
4337
|
-
* Get Response Handled
|
|
4338
|
-
**/
|
|
4339
|
-
GetRequestHandled: GenericPalletEvent<'Ismp', 'GetRequestHandled', IsmpEventsRequestResponseHandled>;
|
|
4340
|
-
|
|
4341
|
-
/**
|
|
4342
|
-
* Post request timeout handled
|
|
4343
|
-
**/
|
|
4344
|
-
PostRequestTimeoutHandled: GenericPalletEvent<'Ismp', 'PostRequestTimeoutHandled', IsmpEventsTimeoutHandled>;
|
|
4345
|
-
|
|
4346
|
-
/**
|
|
4347
|
-
* Post response timeout handled
|
|
4348
|
-
**/
|
|
4349
|
-
PostResponseTimeoutHandled: GenericPalletEvent<'Ismp', 'PostResponseTimeoutHandled', IsmpEventsTimeoutHandled>;
|
|
4350
|
-
|
|
4351
|
-
/**
|
|
4352
|
-
* Get request timeout handled
|
|
4353
|
-
**/
|
|
4354
|
-
GetRequestTimeoutHandled: GenericPalletEvent<'Ismp', 'GetRequestTimeoutHandled', IsmpEventsTimeoutHandled>;
|
|
4355
|
-
|
|
4356
|
-
/**
|
|
4357
|
-
* Generic pallet event
|
|
4358
|
-
**/
|
|
4359
|
-
[prop: string]: GenericPalletEvent;
|
|
4360
|
-
};
|
|
4361
|
-
/**
|
|
4362
|
-
* Pallet `IsmpParachain`'s events
|
|
4363
|
-
**/
|
|
4364
|
-
ismpParachain: {
|
|
4365
|
-
/**
|
|
4366
|
-
* Parachains with the `para_ids` have been added to the whitelist
|
|
4367
|
-
**/
|
|
4368
|
-
ParachainsAdded: GenericPalletEvent<
|
|
4369
|
-
'IsmpParachain',
|
|
4370
|
-
'ParachainsAdded',
|
|
4371
|
-
{
|
|
4372
|
-
/**
|
|
4373
|
-
* The parachains in question
|
|
4374
|
-
**/
|
|
4375
|
-
paraIds: Array<IsmpParachainParachainData>;
|
|
4376
|
-
}
|
|
4377
|
-
>;
|
|
4378
|
-
|
|
4379
|
-
/**
|
|
4380
|
-
* Parachains with the `para_ids` have been removed from the whitelist
|
|
4381
|
-
**/
|
|
4382
|
-
ParachainsRemoved: GenericPalletEvent<
|
|
4383
|
-
'IsmpParachain',
|
|
4384
|
-
'ParachainsRemoved',
|
|
4385
|
-
{
|
|
4386
|
-
/**
|
|
4387
|
-
* The parachains in question
|
|
4388
|
-
**/
|
|
4389
|
-
paraIds: Array<number>;
|
|
4390
|
-
}
|
|
4391
|
-
>;
|
|
4392
|
-
|
|
4393
|
-
/**
|
|
4394
|
-
* Generic pallet event
|
|
4395
|
-
**/
|
|
4396
|
-
[prop: string]: GenericPalletEvent;
|
|
4397
|
-
};
|
|
4398
|
-
/**
|
|
4399
|
-
* Pallet `Hyperbridge`'s events
|
|
4400
|
-
**/
|
|
4401
|
-
hyperbridge: {
|
|
4402
|
-
/**
|
|
4403
|
-
* Hyperbridge governance has now updated it's host params on this chain.
|
|
4404
|
-
**/
|
|
4405
|
-
HostParamsUpdated: GenericPalletEvent<
|
|
4406
|
-
'Hyperbridge',
|
|
4407
|
-
'HostParamsUpdated',
|
|
4408
|
-
{
|
|
4409
|
-
/**
|
|
4410
|
-
* The old host params
|
|
4411
|
-
**/
|
|
4412
|
-
old: PalletHyperbridgeVersionedHostParams;
|
|
4413
|
-
|
|
4414
|
-
/**
|
|
4415
|
-
* The new host params
|
|
4416
|
-
**/
|
|
4417
|
-
new: PalletHyperbridgeVersionedHostParams;
|
|
4418
|
-
}
|
|
4419
|
-
>;
|
|
4420
|
-
|
|
4421
|
-
/**
|
|
4422
|
-
* A relayer has withdrawn some fees
|
|
4423
|
-
**/
|
|
4424
|
-
RelayerFeeWithdrawn: GenericPalletEvent<
|
|
4425
|
-
'Hyperbridge',
|
|
4426
|
-
'RelayerFeeWithdrawn',
|
|
4427
|
-
{
|
|
4428
|
-
/**
|
|
4429
|
-
* The amount that was withdrawn
|
|
4430
|
-
**/
|
|
4431
|
-
amount: bigint;
|
|
4432
|
-
|
|
4433
|
-
/**
|
|
4434
|
-
* The withdrawal beneficiary
|
|
4435
|
-
**/
|
|
4436
|
-
account: AccountId32;
|
|
4437
|
-
}
|
|
4438
|
-
>;
|
|
4439
|
-
|
|
4440
|
-
/**
|
|
4441
|
-
* Hyperbridge has withdrawn it's protocol revenue
|
|
4442
|
-
**/
|
|
4443
|
-
ProtocolRevenueWithdrawn: GenericPalletEvent<
|
|
4444
|
-
'Hyperbridge',
|
|
4445
|
-
'ProtocolRevenueWithdrawn',
|
|
4446
|
-
{
|
|
4447
|
-
/**
|
|
4448
|
-
* The amount that was withdrawn
|
|
4449
|
-
**/
|
|
4450
|
-
amount: bigint;
|
|
4451
|
-
|
|
4452
|
-
/**
|
|
4453
|
-
* The withdrawal beneficiary
|
|
4454
|
-
**/
|
|
4455
|
-
account: AccountId32;
|
|
4456
|
-
}
|
|
4457
|
-
>;
|
|
4458
|
-
|
|
4459
|
-
/**
|
|
4460
|
-
* Generic pallet event
|
|
4461
|
-
**/
|
|
4462
|
-
[prop: string]: GenericPalletEvent;
|
|
4463
|
-
};
|
|
4464
|
-
/**
|
|
4465
|
-
* Pallet `TokenGateway`'s events
|
|
4466
|
-
**/
|
|
4467
|
-
tokenGateway: {
|
|
4468
|
-
/**
|
|
4469
|
-
* An asset has been teleported
|
|
4470
|
-
**/
|
|
4471
|
-
AssetTeleported: GenericPalletEvent<
|
|
4472
|
-
'TokenGateway',
|
|
4473
|
-
'AssetTeleported',
|
|
4474
|
-
{
|
|
4475
|
-
/**
|
|
4476
|
-
* Source account
|
|
4477
|
-
**/
|
|
4478
|
-
from: AccountId32;
|
|
4479
|
-
|
|
4480
|
-
/**
|
|
4481
|
-
* beneficiary account on destination
|
|
4482
|
-
**/
|
|
4483
|
-
to: H256;
|
|
4484
|
-
|
|
4485
|
-
/**
|
|
4486
|
-
* Amount transferred
|
|
4487
|
-
**/
|
|
4488
|
-
amount: bigint;
|
|
4489
|
-
|
|
4490
|
-
/**
|
|
4491
|
-
* Destination chain
|
|
4492
|
-
**/
|
|
4493
|
-
dest: IsmpHostStateMachine;
|
|
4494
|
-
|
|
4495
|
-
/**
|
|
4496
|
-
* Request commitment
|
|
4497
|
-
**/
|
|
4498
|
-
commitment: H256;
|
|
4499
|
-
}
|
|
4500
|
-
>;
|
|
4501
|
-
|
|
4502
|
-
/**
|
|
4503
|
-
* An asset has been received and transferred to the beneficiary's account
|
|
4504
|
-
**/
|
|
4505
|
-
AssetReceived: GenericPalletEvent<
|
|
4506
|
-
'TokenGateway',
|
|
4507
|
-
'AssetReceived',
|
|
4508
|
-
{
|
|
4509
|
-
/**
|
|
4510
|
-
* beneficiary account on relaychain
|
|
4511
|
-
**/
|
|
4512
|
-
beneficiary: AccountId32;
|
|
4513
|
-
|
|
4514
|
-
/**
|
|
4515
|
-
* Amount transferred
|
|
4516
|
-
**/
|
|
4517
|
-
amount: bigint;
|
|
4518
|
-
|
|
4519
|
-
/**
|
|
4520
|
-
* Destination chain
|
|
4521
|
-
**/
|
|
4522
|
-
source: IsmpHostStateMachine;
|
|
4523
|
-
}
|
|
4524
|
-
>;
|
|
4525
|
-
|
|
4526
|
-
/**
|
|
4527
|
-
* An asset has been refunded and transferred to the beneficiary's account
|
|
4528
|
-
**/
|
|
4529
|
-
AssetRefunded: GenericPalletEvent<
|
|
4530
|
-
'TokenGateway',
|
|
4531
|
-
'AssetRefunded',
|
|
4532
|
-
{
|
|
4533
|
-
/**
|
|
4534
|
-
* beneficiary account on relaychain
|
|
4535
|
-
**/
|
|
4536
|
-
beneficiary: AccountId32;
|
|
4537
|
-
|
|
4538
|
-
/**
|
|
4539
|
-
* Amount transferred
|
|
4540
|
-
**/
|
|
4541
|
-
amount: bigint;
|
|
4542
|
-
|
|
4543
|
-
/**
|
|
4544
|
-
* Destination chain
|
|
4545
|
-
**/
|
|
4546
|
-
source: IsmpHostStateMachine;
|
|
4547
|
-
}
|
|
4548
|
-
>;
|
|
4549
|
-
|
|
4550
|
-
/**
|
|
4551
|
-
* ERC6160 asset creation request dispatched to hyperbridge
|
|
4552
|
-
**/
|
|
4553
|
-
Erc6160AssetRegistrationDispatched: GenericPalletEvent<
|
|
4554
|
-
'TokenGateway',
|
|
4555
|
-
'ERC6160AssetRegistrationDispatched',
|
|
4556
|
-
{
|
|
4557
|
-
/**
|
|
4558
|
-
* Request commitment
|
|
4559
|
-
**/
|
|
4560
|
-
commitment: H256;
|
|
4561
|
-
}
|
|
4562
|
-
>;
|
|
4457
|
+
ValidatorReenabled: GenericPalletEvent<'Session', 'ValidatorReenabled', { validator: AccountId32 }>;
|
|
4563
4458
|
|
|
4564
4459
|
/**
|
|
4565
4460
|
* Generic pallet event
|
|
@@ -4588,6 +4483,19 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
4588
4483
|
{ source: FixedBytes<8>; assets: [number, number] }
|
|
4589
4484
|
>;
|
|
4590
4485
|
|
|
4486
|
+
/**
|
|
4487
|
+
* Oracle price was updated
|
|
4488
|
+
**/
|
|
4489
|
+
OracleUpdated: GenericPalletEvent<
|
|
4490
|
+
'EmaOracle',
|
|
4491
|
+
'OracleUpdated',
|
|
4492
|
+
{
|
|
4493
|
+
source: FixedBytes<8>;
|
|
4494
|
+
assets: [number, number];
|
|
4495
|
+
updates: Array<[HydradxTraitsOracleOraclePeriod, HydraDxMathRatio]>;
|
|
4496
|
+
}
|
|
4497
|
+
>;
|
|
4498
|
+
|
|
4591
4499
|
/**
|
|
4592
4500
|
* Generic pallet event
|
|
4593
4501
|
**/
|