@@ -30,11 +30,11 @@ import type {
30
30
FrameSupportMessagesProcessMessageError ,
31
31
FrameSupportPreimagesBounded ,
32
32
FrameSupportTokensMiscBalanceStatus ,
33
- MoonriverRuntimeAssetConfigAssetRegistrarMetadata ,
34
- MoonriverRuntimeProxyType ,
35
- MoonriverRuntimeRuntimeParamsRuntimeParametersKey ,
36
- MoonriverRuntimeRuntimeParamsRuntimeParametersValue ,
37
- MoonriverRuntimeXcmConfigAssetType ,
33
+ MoonbaseRuntimeAssetConfigAssetRegistrarMetadata ,
34
+ MoonbaseRuntimeProxyType ,
35
+ MoonbaseRuntimeRuntimeParamsRuntimeParametersKey ,
36
+ MoonbaseRuntimeRuntimeParamsRuntimeParametersValue ,
37
+ MoonbaseRuntimeXcmConfigAssetType ,
38
38
NimbusPrimitivesNimbusCryptoPublic ,
39
39
PalletConvictionVotingTally ,
40
40
PalletMultisigTimepoint ,
@@ -47,7 +47,6 @@ import type {
47
47
SpRuntimeDispatchError ,
48
48
SpRuntimeDispatchErrorWithPostInfo ,
49
49
SpWeightsWeightV2Weight ,
50
- StagingXcmV4Asset ,
51
50
StagingXcmV4AssetAssets ,
52
51
StagingXcmV4Location ,
53
52
StagingXcmV4Response ,
@@ -66,42 +65,42 @@ declare module "@polkadot/api-base/types/events" {
66
65
/** Removed all information related to an assetId and destroyed asset */
67
66
ForeignAssetDestroyed : AugmentedEvent <
68
67
ApiType ,
69
- [ assetId : u128 , assetType : MoonriverRuntimeXcmConfigAssetType ] ,
70
- { assetId : u128 ; assetType : MoonriverRuntimeXcmConfigAssetType }
68
+ [ assetId : u128 , assetType : MoonbaseRuntimeXcmConfigAssetType ] ,
69
+ { assetId : u128 ; assetType : MoonbaseRuntimeXcmConfigAssetType }
71
70
> ;
72
71
/** New asset with the asset manager is registered */
73
72
ForeignAssetRegistered : AugmentedEvent <
74
73
ApiType ,
75
74
[
76
75
assetId : u128 ,
77
- asset : MoonriverRuntimeXcmConfigAssetType ,
78
- metadata : MoonriverRuntimeAssetConfigAssetRegistrarMetadata
76
+ asset : MoonbaseRuntimeXcmConfigAssetType ,
77
+ metadata : MoonbaseRuntimeAssetConfigAssetRegistrarMetadata
79
78
] ,
80
79
{
81
80
assetId : u128 ;
82
- asset : MoonriverRuntimeXcmConfigAssetType ;
83
- metadata : MoonriverRuntimeAssetConfigAssetRegistrarMetadata ;
81
+ asset : MoonbaseRuntimeXcmConfigAssetType ;
82
+ metadata : MoonbaseRuntimeAssetConfigAssetRegistrarMetadata ;
84
83
}
85
84
> ;
86
85
/** Removed all information related to an assetId */
87
86
ForeignAssetRemoved : AugmentedEvent <
88
87
ApiType ,
89
- [ assetId : u128 , assetType : MoonriverRuntimeXcmConfigAssetType ] ,
90
- { assetId : u128 ; assetType : MoonriverRuntimeXcmConfigAssetType }
88
+ [ assetId : u128 , assetType : MoonbaseRuntimeXcmConfigAssetType ] ,
89
+ { assetId : u128 ; assetType : MoonbaseRuntimeXcmConfigAssetType }
91
90
> ;
92
91
/** Changed the xcm type mapping for a given asset id */
93
92
ForeignAssetXcmLocationChanged : AugmentedEvent <
94
93
ApiType ,
95
- [ assetId : u128 , newAssetType : MoonriverRuntimeXcmConfigAssetType ] ,
96
- { assetId : u128 ; newAssetType : MoonriverRuntimeXcmConfigAssetType }
94
+ [ assetId : u128 , newAssetType : MoonbaseRuntimeXcmConfigAssetType ] ,
95
+ { assetId : u128 ; newAssetType : MoonbaseRuntimeXcmConfigAssetType }
97
96
> ;
98
97
/** Removed all information related to an assetId and destroyed asset */
99
98
LocalAssetDestroyed : AugmentedEvent < ApiType , [ assetId : u128 ] , { assetId : u128 } > ;
100
99
/** Supported asset type for fee payment removed */
101
100
SupportedAssetRemoved : AugmentedEvent <
102
101
ApiType ,
103
- [ assetType : MoonriverRuntimeXcmConfigAssetType ] ,
104
- { assetType : MoonriverRuntimeXcmConfigAssetType }
102
+ [ assetType : MoonbaseRuntimeXcmConfigAssetType ] ,
103
+ { assetType : MoonbaseRuntimeXcmConfigAssetType }
105
104
> ;
106
105
/** Changed the amount of units we are charging per execution second for a given asset */
107
106
UnitsPerSecondChanged : AugmentedEvent < ApiType , [ ] > ;
@@ -1227,14 +1226,14 @@ declare module "@polkadot/api-base/types/events" {
1227
1226
Updated : AugmentedEvent <
1228
1227
ApiType ,
1229
1228
[
1230
- key : MoonriverRuntimeRuntimeParamsRuntimeParametersKey ,
1231
- oldValue : Option < MoonriverRuntimeRuntimeParamsRuntimeParametersValue > ,
1232
- newValue : Option < MoonriverRuntimeRuntimeParamsRuntimeParametersValue >
1229
+ key : MoonbaseRuntimeRuntimeParamsRuntimeParametersKey ,
1230
+ oldValue : Option < MoonbaseRuntimeRuntimeParamsRuntimeParametersValue > ,
1231
+ newValue : Option < MoonbaseRuntimeRuntimeParamsRuntimeParametersValue >
1233
1232
] ,
1234
1233
{
1235
- key : MoonriverRuntimeRuntimeParamsRuntimeParametersKey ;
1236
- oldValue : Option < MoonriverRuntimeRuntimeParamsRuntimeParametersValue > ;
1237
- newValue : Option < MoonriverRuntimeRuntimeParamsRuntimeParametersValue > ;
1234
+ key : MoonbaseRuntimeRuntimeParamsRuntimeParametersKey ;
1235
+ oldValue : Option < MoonbaseRuntimeRuntimeParamsRuntimeParametersValue > ;
1236
+ newValue : Option < MoonbaseRuntimeRuntimeParamsRuntimeParametersValue > ;
1238
1237
}
1239
1238
> ;
1240
1239
/** Generic event */
@@ -1512,13 +1511,13 @@ declare module "@polkadot/api-base/types/events" {
1512
1511
[
1513
1512
delegator : AccountId20 ,
1514
1513
delegatee : AccountId20 ,
1515
- proxyType : MoonriverRuntimeProxyType ,
1514
+ proxyType : MoonbaseRuntimeProxyType ,
1516
1515
delay : u32
1517
1516
] ,
1518
1517
{
1519
1518
delegator : AccountId20 ;
1520
1519
delegatee : AccountId20 ;
1521
- proxyType : MoonriverRuntimeProxyType ;
1520
+ proxyType : MoonbaseRuntimeProxyType ;
1522
1521
delay : u32 ;
1523
1522
}
1524
1523
> ;
@@ -1534,13 +1533,13 @@ declare module "@polkadot/api-base/types/events" {
1534
1533
[
1535
1534
delegator : AccountId20 ,
1536
1535
delegatee : AccountId20 ,
1537
- proxyType : MoonriverRuntimeProxyType ,
1536
+ proxyType : MoonbaseRuntimeProxyType ,
1538
1537
delay : u32
1539
1538
] ,
1540
1539
{
1541
1540
delegator : AccountId20 ;
1542
1541
delegatee : AccountId20 ;
1543
- proxyType : MoonriverRuntimeProxyType ;
1542
+ proxyType : MoonbaseRuntimeProxyType ;
1544
1543
delay : u32 ;
1545
1544
}
1546
1545
> ;
@@ -1550,13 +1549,13 @@ declare module "@polkadot/api-base/types/events" {
1550
1549
[
1551
1550
pure : AccountId20 ,
1552
1551
who : AccountId20 ,
1553
- proxyType : MoonriverRuntimeProxyType ,
1552
+ proxyType : MoonbaseRuntimeProxyType ,
1554
1553
disambiguationIndex : u16
1555
1554
] ,
1556
1555
{
1557
1556
pure : AccountId20 ;
1558
1557
who : AccountId20 ;
1559
- proxyType : MoonriverRuntimeProxyType ;
1558
+ proxyType : MoonbaseRuntimeProxyType ;
1560
1559
disambiguationIndex : u16 ;
1561
1560
}
1562
1561
> ;
@@ -1779,6 +1778,30 @@ declare module "@polkadot/api-base/types/events" {
1779
1778
/** Generic event */
1780
1779
[ key : string ] : AugmentedEvent < ApiType > ;
1781
1780
} ;
1781
+ sudo : {
1782
+ /** The sudo key has been updated. */
1783
+ KeyChanged : AugmentedEvent <
1784
+ ApiType ,
1785
+ [ old : Option < AccountId20 > , new_ : AccountId20 ] ,
1786
+ { old : Option < AccountId20 > ; new_ : AccountId20 }
1787
+ > ;
1788
+ /** The key was permanently removed. */
1789
+ KeyRemoved : AugmentedEvent < ApiType , [ ] > ;
1790
+ /** A sudo call just took place. */
1791
+ Sudid : AugmentedEvent <
1792
+ ApiType ,
1793
+ [ sudoResult : Result < Null , SpRuntimeDispatchError > ] ,
1794
+ { sudoResult : Result < Null , SpRuntimeDispatchError > }
1795
+ > ;
1796
+ /** A [sudo_as](Pallet::sudo_as) call just took place. */
1797
+ SudoAsDone : AugmentedEvent <
1798
+ ApiType ,
1799
+ [ sudoResult : Result < Null , SpRuntimeDispatchError > ] ,
1800
+ { sudoResult : Result < Null , SpRuntimeDispatchError > }
1801
+ > ;
1802
+ /** Generic event */
1803
+ [ key : string ] : AugmentedEvent < ApiType > ;
1804
+ } ;
1782
1805
system : {
1783
1806
/** `:code` was updated. */
1784
1807
CodeUpdated : AugmentedEvent < ApiType , [ ] > ;
@@ -2091,25 +2114,5 @@ declare module "@polkadot/api-base/types/events" {
2091
2114
/** Generic event */
2092
2115
[ key : string ] : AugmentedEvent < ApiType > ;
2093
2116
} ;
2094
- xTokens : {
2095
- /** Transferred `Asset` with fee. */
2096
- TransferredAssets : AugmentedEvent <
2097
- ApiType ,
2098
- [
2099
- sender : AccountId20 ,
2100
- assets : StagingXcmV4AssetAssets ,
2101
- fee : StagingXcmV4Asset ,
2102
- dest : StagingXcmV4Location
2103
- ] ,
2104
- {
2105
- sender : AccountId20 ;
2106
- assets : StagingXcmV4AssetAssets ;
2107
- fee : StagingXcmV4Asset ;
2108
- dest : StagingXcmV4Location ;
2109
- }
2110
- > ;
2111
- /** Generic event */
2112
- [ key : string ] : AugmentedEvent < ApiType > ;
2113
- } ;
2114
2117
} // AugmentedEvents
2115
2118
} // declare module
0 commit comments