@dedot/chaintypes 0.100.0 → 0.102.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/README.md +1 -1
- package/hydration/errors.d.ts +5 -0
- package/hydration/events.d.ts +8 -12
- package/hydration/index.d.ts +1 -1
- package/hydration/query.d.ts +13 -0
- package/hydration/runtime.d.ts +28 -0
- package/hydration/tx.d.ts +85 -3
- package/hydration/types.d.ts +46 -16
- package/package.json +2 -2
- package/westend-asset-hub/errors.d.ts +30 -0
- package/westend-asset-hub/index.d.ts +1 -1
- package/westend-asset-hub/runtime.d.ts +11 -11
- package/westend-asset-hub/tx.d.ts +26 -0
- package/westend-asset-hub/types.d.ts +40 -9
package/README.md
CHANGED
|
@@ -95,7 +95,7 @@ For more detailed information on connecting to networks, see the [official docum
|
|
|
95
95
|
- Moonbeam
|
|
96
96
|
- Aleph
|
|
97
97
|
- Hydration
|
|
98
|
-
-
|
|
98
|
+
- Basilisk
|
|
99
99
|
|
|
100
100
|
> Don't see your network? We welcome Pull Requests to add support for additional PolkadotSDK-based networks!
|
|
101
101
|
|
package/hydration/errors.d.ts
CHANGED
|
@@ -2587,6 +2587,11 @@ export interface ChainErrors<Rv extends RpcVersion> extends GenericChainErrors<R
|
|
|
2587
2587
|
**/
|
|
2588
2588
|
CannotCreatePool: GenericPalletError<Rv>;
|
|
2589
2589
|
|
|
2590
|
+
/**
|
|
2591
|
+
* Slippage protection.
|
|
2592
|
+
**/
|
|
2593
|
+
SlippageLimit: GenericPalletError<Rv>;
|
|
2594
|
+
|
|
2590
2595
|
/**
|
|
2591
2596
|
* Generic pallet error
|
|
2592
2597
|
**/
|
package/hydration/events.d.ts
CHANGED
|
@@ -2910,14 +2910,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
|
|
|
2910
2910
|
Rv,
|
|
2911
2911
|
'Liquidation',
|
|
2912
2912
|
'Liquidated',
|
|
2913
|
-
{
|
|
2914
|
-
liquidator: AccountId32;
|
|
2915
|
-
evmAddress: H160;
|
|
2916
|
-
collateralAsset: number;
|
|
2917
|
-
debtAsset: number;
|
|
2918
|
-
debtToCover: bigint;
|
|
2919
|
-
profit: bigint;
|
|
2920
|
-
}
|
|
2913
|
+
{ user: H160; collateralAsset: number; debtAsset: number; debtToCover: bigint; profit: bigint }
|
|
2921
2914
|
>;
|
|
2922
2915
|
|
|
2923
2916
|
/**
|
|
@@ -3500,7 +3493,6 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
|
|
|
3500
3493
|
>;
|
|
3501
3494
|
|
|
3502
3495
|
/**
|
|
3503
|
-
* Deprecated. Use pallet_amm::Event::Swapped instead.
|
|
3504
3496
|
* The DCA trade is successfully executed
|
|
3505
3497
|
**/
|
|
3506
3498
|
TradeExecuted: GenericPalletEvent<
|
|
@@ -4337,13 +4329,17 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
|
|
|
4337
4329
|
/**
|
|
4338
4330
|
* Trade executed.
|
|
4339
4331
|
*
|
|
4340
|
-
*
|
|
4332
|
+
* Swapped3 is a fixed and renamed version of original Swapped,
|
|
4341
4333
|
* as Swapped contained wrong input/output amounts for XYK buy trade
|
|
4334
|
+
*
|
|
4335
|
+
* Swapped3 is a fixed and renamed version of original Swapped3,
|
|
4336
|
+
* as Swapped contained wrong filler account on AAVE trades
|
|
4337
|
+
*
|
|
4342
4338
|
**/
|
|
4343
|
-
|
|
4339
|
+
Swapped3: GenericPalletEvent<
|
|
4344
4340
|
Rv,
|
|
4345
4341
|
'Broadcast',
|
|
4346
|
-
'
|
|
4342
|
+
'Swapped3',
|
|
4347
4343
|
{
|
|
4348
4344
|
swapper: AccountId32;
|
|
4349
4345
|
filler: AccountId32;
|
package/hydration/index.d.ts
CHANGED
package/hydration/query.d.ts
CHANGED
|
@@ -1267,6 +1267,12 @@ export interface ChainStorage<Rv extends RpcVersion> extends GenericChainStorage
|
|
|
1267
1267
|
**/
|
|
1268
1268
|
aaveManagerAccount: GenericStorageQuery<Rv, () => AccountId32>;
|
|
1269
1269
|
|
|
1270
|
+
/**
|
|
1271
|
+
*
|
|
1272
|
+
* @param {Callback<bigint> =} callback
|
|
1273
|
+
**/
|
|
1274
|
+
extraGas: GenericStorageQuery<Rv, () => bigint>;
|
|
1275
|
+
|
|
1270
1276
|
/**
|
|
1271
1277
|
* Generic pallet storage query
|
|
1272
1278
|
**/
|
|
@@ -1752,6 +1758,13 @@ export interface ChainStorage<Rv extends RpcVersion> extends GenericChainStorage
|
|
|
1752
1758
|
[AccountId32, number]
|
|
1753
1759
|
>;
|
|
1754
1760
|
|
|
1761
|
+
/**
|
|
1762
|
+
* Block number when we switched to 6 sec. blocks.
|
|
1763
|
+
*
|
|
1764
|
+
* @param {Callback<number> =} callback
|
|
1765
|
+
**/
|
|
1766
|
+
sixSecBlocksSince: GenericStorageQuery<Rv, () => number>;
|
|
1767
|
+
|
|
1755
1768
|
/**
|
|
1756
1769
|
* Generic pallet storage query
|
|
1757
1770
|
**/
|
package/hydration/runtime.d.ts
CHANGED
|
@@ -46,6 +46,7 @@ import type {
|
|
|
46
46
|
XcmVersionedXcm,
|
|
47
47
|
XcmVersionedAssets,
|
|
48
48
|
XcmVersionedLocation,
|
|
49
|
+
SpConsensusSlotsSlot,
|
|
49
50
|
XcmRuntimeApisDryRunCallDryRunEffects,
|
|
50
51
|
XcmRuntimeApisDryRunError,
|
|
51
52
|
HydradxRuntimeOriginCaller,
|
|
@@ -745,6 +746,33 @@ export interface RuntimeApis<Rv extends RpcVersion> extends GenericRuntimeApis<R
|
|
|
745
746
|
**/
|
|
746
747
|
[method: string]: GenericRuntimeApiMethod<Rv>;
|
|
747
748
|
};
|
|
749
|
+
/**
|
|
750
|
+
* @runtimeapi: AuraUnincludedSegmentApi - 0xd7bdd8a272ca0d65
|
|
751
|
+
**/
|
|
752
|
+
auraUnincludedSegmentApi: {
|
|
753
|
+
/**
|
|
754
|
+
* Whether it is legal to extend the chain, assuming the given block is the most
|
|
755
|
+
* recently included one as-of the relay parent that will be built against, and
|
|
756
|
+
* the given slot.
|
|
757
|
+
*
|
|
758
|
+
* This should be consistent with the logic the runtime uses when validating blocks to
|
|
759
|
+
* avoid issues.
|
|
760
|
+
*
|
|
761
|
+
* When the unincluded segment is empty, i.e. `included_hash == at`, where at is the block
|
|
762
|
+
* whose state we are querying against, this must always return `true` as long as the slot
|
|
763
|
+
* is more recent than the included block itself.
|
|
764
|
+
*
|
|
765
|
+
* @callname: AuraUnincludedSegmentApi_can_build_upon
|
|
766
|
+
* @param {H256} included_hash
|
|
767
|
+
* @param {SpConsensusSlotsSlot} slot
|
|
768
|
+
**/
|
|
769
|
+
canBuildUpon: GenericRuntimeApiMethod<Rv, (includedHash: H256, slot: SpConsensusSlotsSlot) => Promise<boolean>>;
|
|
770
|
+
|
|
771
|
+
/**
|
|
772
|
+
* Generic runtime api call
|
|
773
|
+
**/
|
|
774
|
+
[method: string]: GenericRuntimeApiMethod<Rv>;
|
|
775
|
+
};
|
|
748
776
|
/**
|
|
749
777
|
* @runtimeapi: DryRunApi - 0x91b1c8b16328eb92
|
|
750
778
|
**/
|
package/hydration/tx.d.ts
CHANGED
|
@@ -5963,6 +5963,32 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
5963
5963
|
>
|
|
5964
5964
|
>;
|
|
5965
5965
|
|
|
5966
|
+
/**
|
|
5967
|
+
* Dispatch a call with extra gas.
|
|
5968
|
+
*
|
|
5969
|
+
* This allows executing calls with additional weight (gas) limit.
|
|
5970
|
+
* The extra gas is not refunded, even if not used.
|
|
5971
|
+
*
|
|
5972
|
+
* @param {HydradxRuntimeRuntimeCallLike} call
|
|
5973
|
+
* @param {bigint} extraGas
|
|
5974
|
+
**/
|
|
5975
|
+
dispatchWithExtraGas: GenericTxCall<
|
|
5976
|
+
Rv,
|
|
5977
|
+
(
|
|
5978
|
+
call: HydradxRuntimeRuntimeCallLike,
|
|
5979
|
+
extraGas: bigint,
|
|
5980
|
+
) => ChainSubmittableExtrinsic<
|
|
5981
|
+
Rv,
|
|
5982
|
+
{
|
|
5983
|
+
pallet: 'Dispatcher';
|
|
5984
|
+
palletCall: {
|
|
5985
|
+
name: 'DispatchWithExtraGas';
|
|
5986
|
+
params: { call: HydradxRuntimeRuntimeCallLike; extraGas: bigint };
|
|
5987
|
+
};
|
|
5988
|
+
}
|
|
5989
|
+
>
|
|
5990
|
+
>;
|
|
5991
|
+
|
|
5966
5992
|
/**
|
|
5967
5993
|
* Generic pallet tx call
|
|
5968
5994
|
**/
|
|
@@ -9224,6 +9250,34 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
9224
9250
|
>
|
|
9225
9251
|
>;
|
|
9226
9252
|
|
|
9253
|
+
/**
|
|
9254
|
+
*
|
|
9255
|
+
* @param {number} assetA
|
|
9256
|
+
* @param {number} assetB
|
|
9257
|
+
* @param {bigint} amountA
|
|
9258
|
+
* @param {bigint} amountBMaxLimit
|
|
9259
|
+
* @param {bigint} minShares
|
|
9260
|
+
**/
|
|
9261
|
+
addLiquidityWithLimits: GenericTxCall<
|
|
9262
|
+
Rv,
|
|
9263
|
+
(
|
|
9264
|
+
assetA: number,
|
|
9265
|
+
assetB: number,
|
|
9266
|
+
amountA: bigint,
|
|
9267
|
+
amountBMaxLimit: bigint,
|
|
9268
|
+
minShares: bigint,
|
|
9269
|
+
) => ChainSubmittableExtrinsic<
|
|
9270
|
+
Rv,
|
|
9271
|
+
{
|
|
9272
|
+
pallet: 'Xyk';
|
|
9273
|
+
palletCall: {
|
|
9274
|
+
name: 'AddLiquidityWithLimits';
|
|
9275
|
+
params: { assetA: number; assetB: number; amountA: bigint; amountBMaxLimit: bigint; minShares: bigint };
|
|
9276
|
+
};
|
|
9277
|
+
}
|
|
9278
|
+
>
|
|
9279
|
+
>;
|
|
9280
|
+
|
|
9227
9281
|
/**
|
|
9228
9282
|
* Remove liquidity from specific liquidity pool in the form of burning shares.
|
|
9229
9283
|
*
|
|
@@ -9234,21 +9288,49 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
9234
9288
|
*
|
|
9235
9289
|
* @param {number} assetA
|
|
9236
9290
|
* @param {number} assetB
|
|
9237
|
-
* @param {bigint}
|
|
9291
|
+
* @param {bigint} shareAmount
|
|
9238
9292
|
**/
|
|
9239
9293
|
removeLiquidity: GenericTxCall<
|
|
9240
9294
|
Rv,
|
|
9241
9295
|
(
|
|
9242
9296
|
assetA: number,
|
|
9243
9297
|
assetB: number,
|
|
9244
|
-
|
|
9298
|
+
shareAmount: bigint,
|
|
9245
9299
|
) => ChainSubmittableExtrinsic<
|
|
9246
9300
|
Rv,
|
|
9247
9301
|
{
|
|
9248
9302
|
pallet: 'Xyk';
|
|
9249
9303
|
palletCall: {
|
|
9250
9304
|
name: 'RemoveLiquidity';
|
|
9251
|
-
params: { assetA: number; assetB: number;
|
|
9305
|
+
params: { assetA: number; assetB: number; shareAmount: bigint };
|
|
9306
|
+
};
|
|
9307
|
+
}
|
|
9308
|
+
>
|
|
9309
|
+
>;
|
|
9310
|
+
|
|
9311
|
+
/**
|
|
9312
|
+
*
|
|
9313
|
+
* @param {number} assetA
|
|
9314
|
+
* @param {number} assetB
|
|
9315
|
+
* @param {bigint} shareAmount
|
|
9316
|
+
* @param {bigint} minAmountA
|
|
9317
|
+
* @param {bigint} minAmountB
|
|
9318
|
+
**/
|
|
9319
|
+
removeLiquidityWithLimits: GenericTxCall<
|
|
9320
|
+
Rv,
|
|
9321
|
+
(
|
|
9322
|
+
assetA: number,
|
|
9323
|
+
assetB: number,
|
|
9324
|
+
shareAmount: bigint,
|
|
9325
|
+
minAmountA: bigint,
|
|
9326
|
+
minAmountB: bigint,
|
|
9327
|
+
) => ChainSubmittableExtrinsic<
|
|
9328
|
+
Rv,
|
|
9329
|
+
{
|
|
9330
|
+
pallet: 'Xyk';
|
|
9331
|
+
palletCall: {
|
|
9332
|
+
name: 'RemoveLiquidityWithLimits';
|
|
9333
|
+
params: { assetA: number; assetB: number; shareAmount: bigint; minAmountA: bigint; minAmountB: bigint };
|
|
9252
9334
|
};
|
|
9253
9335
|
}
|
|
9254
9336
|
>
|
package/hydration/types.d.ts
CHANGED
|
@@ -6598,7 +6598,14 @@ export type PalletDispatcherCall =
|
|
|
6598
6598
|
* This is intented to be mainly used in testnet environments, where the manager account
|
|
6599
6599
|
* can be different.
|
|
6600
6600
|
**/
|
|
6601
|
-
| { name: 'NoteAaveManager'; params: { account: AccountId32 } }
|
|
6601
|
+
| { name: 'NoteAaveManager'; params: { account: AccountId32 } }
|
|
6602
|
+
/**
|
|
6603
|
+
* Dispatch a call with extra gas.
|
|
6604
|
+
*
|
|
6605
|
+
* This allows executing calls with additional weight (gas) limit.
|
|
6606
|
+
* The extra gas is not refunded, even if not used.
|
|
6607
|
+
**/
|
|
6608
|
+
| { name: 'DispatchWithExtraGas'; params: { call: HydradxRuntimeRuntimeCall; extraGas: bigint } };
|
|
6602
6609
|
|
|
6603
6610
|
export type PalletDispatcherCallLike =
|
|
6604
6611
|
| { name: 'DispatchAsTreasury'; params: { call: HydradxRuntimeRuntimeCallLike } }
|
|
@@ -6611,7 +6618,14 @@ export type PalletDispatcherCallLike =
|
|
|
6611
6618
|
* This is intented to be mainly used in testnet environments, where the manager account
|
|
6612
6619
|
* can be different.
|
|
6613
6620
|
**/
|
|
6614
|
-
| { name: 'NoteAaveManager'; params: { account: AccountId32Like } }
|
|
6621
|
+
| { name: 'NoteAaveManager'; params: { account: AccountId32Like } }
|
|
6622
|
+
/**
|
|
6623
|
+
* Dispatch a call with extra gas.
|
|
6624
|
+
*
|
|
6625
|
+
* This allows executing calls with additional weight (gas) limit.
|
|
6626
|
+
* The extra gas is not refunded, even if not used.
|
|
6627
|
+
**/
|
|
6628
|
+
| { name: 'DispatchWithExtraGas'; params: { call: HydradxRuntimeRuntimeCallLike; extraGas: bigint } };
|
|
6615
6629
|
|
|
6616
6630
|
/**
|
|
6617
6631
|
* Contains a variant per dispatchable extrinsic that this pallet has.
|
|
@@ -9732,6 +9746,10 @@ export type PalletXykCall =
|
|
|
9732
9746
|
* Emits `LiquidityAdded` event when successful.
|
|
9733
9747
|
**/
|
|
9734
9748
|
| { name: 'AddLiquidity'; params: { assetA: number; assetB: number; amountA: bigint; amountBMaxLimit: bigint } }
|
|
9749
|
+
| {
|
|
9750
|
+
name: 'AddLiquidityWithLimits';
|
|
9751
|
+
params: { assetA: number; assetB: number; amountA: bigint; amountBMaxLimit: bigint; minShares: bigint };
|
|
9752
|
+
}
|
|
9735
9753
|
/**
|
|
9736
9754
|
* Remove liquidity from specific liquidity pool in the form of burning shares.
|
|
9737
9755
|
*
|
|
@@ -9740,7 +9758,11 @@ export type PalletXykCall =
|
|
|
9740
9758
|
* Emits 'LiquidityRemoved' when successful.
|
|
9741
9759
|
* Emits 'PoolDestroyed' when pool is destroyed.
|
|
9742
9760
|
**/
|
|
9743
|
-
| { name: 'RemoveLiquidity'; params: { assetA: number; assetB: number;
|
|
9761
|
+
| { name: 'RemoveLiquidity'; params: { assetA: number; assetB: number; shareAmount: bigint } }
|
|
9762
|
+
| {
|
|
9763
|
+
name: 'RemoveLiquidityWithLimits';
|
|
9764
|
+
params: { assetA: number; assetB: number; shareAmount: bigint; minAmountA: bigint; minAmountB: bigint };
|
|
9765
|
+
}
|
|
9744
9766
|
/**
|
|
9745
9767
|
* Trade asset in for asset out.
|
|
9746
9768
|
*
|
|
@@ -9784,6 +9806,10 @@ export type PalletXykCallLike =
|
|
|
9784
9806
|
* Emits `LiquidityAdded` event when successful.
|
|
9785
9807
|
**/
|
|
9786
9808
|
| { name: 'AddLiquidity'; params: { assetA: number; assetB: number; amountA: bigint; amountBMaxLimit: bigint } }
|
|
9809
|
+
| {
|
|
9810
|
+
name: 'AddLiquidityWithLimits';
|
|
9811
|
+
params: { assetA: number; assetB: number; amountA: bigint; amountBMaxLimit: bigint; minShares: bigint };
|
|
9812
|
+
}
|
|
9787
9813
|
/**
|
|
9788
9814
|
* Remove liquidity from specific liquidity pool in the form of burning shares.
|
|
9789
9815
|
*
|
|
@@ -9792,7 +9818,11 @@ export type PalletXykCallLike =
|
|
|
9792
9818
|
* Emits 'LiquidityRemoved' when successful.
|
|
9793
9819
|
* Emits 'PoolDestroyed' when pool is destroyed.
|
|
9794
9820
|
**/
|
|
9795
|
-
| { name: 'RemoveLiquidity'; params: { assetA: number; assetB: number;
|
|
9821
|
+
| { name: 'RemoveLiquidity'; params: { assetA: number; assetB: number; shareAmount: bigint } }
|
|
9822
|
+
| {
|
|
9823
|
+
name: 'RemoveLiquidityWithLimits';
|
|
9824
|
+
params: { assetA: number; assetB: number; shareAmount: bigint; minAmountA: bigint; minAmountB: bigint };
|
|
9825
|
+
}
|
|
9796
9826
|
/**
|
|
9797
9827
|
* Trade asset in for asset out.
|
|
9798
9828
|
*
|
|
@@ -14340,14 +14370,7 @@ export type PalletLiquidationEvent =
|
|
|
14340
14370
|
**/
|
|
14341
14371
|
{
|
|
14342
14372
|
name: 'Liquidated';
|
|
14343
|
-
data: {
|
|
14344
|
-
liquidator: AccountId32;
|
|
14345
|
-
evmAddress: H160;
|
|
14346
|
-
collateralAsset: number;
|
|
14347
|
-
debtAsset: number;
|
|
14348
|
-
debtToCover: bigint;
|
|
14349
|
-
profit: bigint;
|
|
14350
|
-
};
|
|
14373
|
+
data: { user: H160; collateralAsset: number; debtAsset: number; debtToCover: bigint; profit: bigint };
|
|
14351
14374
|
};
|
|
14352
14375
|
|
|
14353
14376
|
/**
|
|
@@ -14747,7 +14770,6 @@ export type PalletDcaEvent =
|
|
|
14747
14770
|
**/
|
|
14748
14771
|
| { name: 'ExecutionPlanned'; data: { id: number; who: AccountId32; block: number } }
|
|
14749
14772
|
/**
|
|
14750
|
-
* Deprecated. Use pallet_amm::Event::Swapped instead.
|
|
14751
14773
|
* The DCA trade is successfully executed
|
|
14752
14774
|
**/
|
|
14753
14775
|
| { name: 'TradeExecuted'; data: { id: number; who: AccountId32; amountIn: bigint; amountOut: bigint } }
|
|
@@ -15281,11 +15303,15 @@ export type PalletBroadcastEvent =
|
|
|
15281
15303
|
/**
|
|
15282
15304
|
* Trade executed.
|
|
15283
15305
|
*
|
|
15284
|
-
*
|
|
15306
|
+
* Swapped3 is a fixed and renamed version of original Swapped,
|
|
15285
15307
|
* as Swapped contained wrong input/output amounts for XYK buy trade
|
|
15308
|
+
*
|
|
15309
|
+
* Swapped3 is a fixed and renamed version of original Swapped3,
|
|
15310
|
+
* as Swapped contained wrong filler account on AAVE trades
|
|
15311
|
+
*
|
|
15286
15312
|
**/
|
|
15287
15313
|
{
|
|
15288
|
-
name: '
|
|
15314
|
+
name: 'Swapped3';
|
|
15289
15315
|
data: {
|
|
15290
15316
|
swapper: AccountId32;
|
|
15291
15317
|
filler: AccountId32;
|
|
@@ -17656,7 +17682,11 @@ export type PalletXykError =
|
|
|
17656
17682
|
/**
|
|
17657
17683
|
* Pool cannot be created due to outside factors.
|
|
17658
17684
|
**/
|
|
17659
|
-
| 'CannotCreatePool'
|
|
17685
|
+
| 'CannotCreatePool'
|
|
17686
|
+
/**
|
|
17687
|
+
* Slippage protection.
|
|
17688
|
+
**/
|
|
17689
|
+
| 'SlippageLimit';
|
|
17660
17690
|
|
|
17661
17691
|
/**
|
|
17662
17692
|
* The `Error` enum of this pallet.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dedot/chaintypes",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.102.0",
|
|
4
4
|
"description": "Types for substrate-based chains",
|
|
5
5
|
"author": "Thang X. Vu <thang@dedot.dev>",
|
|
6
6
|
"homepage": "https://dedot.dev",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"directory": "dist"
|
|
26
26
|
},
|
|
27
27
|
"license": "Apache-2.0",
|
|
28
|
-
"gitHead": "
|
|
28
|
+
"gitHead": "27fb2c2baa10743f7d7782653f59cd99f4a81bc2",
|
|
29
29
|
"module": "./index.js",
|
|
30
30
|
"types": "./index.d.ts",
|
|
31
31
|
"exports": {
|
|
@@ -725,6 +725,36 @@ export interface ChainErrors<Rv extends RpcVersion> extends GenericChainErrors<R
|
|
|
725
725
|
**/
|
|
726
726
|
Unreachable: GenericPalletError<Rv>;
|
|
727
727
|
|
|
728
|
+
/**
|
|
729
|
+
* The asset provided for the tip is unsupported.
|
|
730
|
+
**/
|
|
731
|
+
UnsupportedAsset: GenericPalletError<Rv>;
|
|
732
|
+
|
|
733
|
+
/**
|
|
734
|
+
* Unable to withdraw asset.
|
|
735
|
+
**/
|
|
736
|
+
WithdrawError: GenericPalletError<Rv>;
|
|
737
|
+
|
|
738
|
+
/**
|
|
739
|
+
* Account could not be converted to a location.
|
|
740
|
+
**/
|
|
741
|
+
InvalidAccount: GenericPalletError<Rv>;
|
|
742
|
+
|
|
743
|
+
/**
|
|
744
|
+
* Provided tip asset could not be swapped for ether.
|
|
745
|
+
**/
|
|
746
|
+
SwapError: GenericPalletError<Rv>;
|
|
747
|
+
|
|
748
|
+
/**
|
|
749
|
+
* Ether could not be burned.
|
|
750
|
+
**/
|
|
751
|
+
BurnError: GenericPalletError<Rv>;
|
|
752
|
+
|
|
753
|
+
/**
|
|
754
|
+
* The tip provided is zero.
|
|
755
|
+
**/
|
|
756
|
+
TipAmountZero: GenericPalletError<Rv>;
|
|
757
|
+
|
|
728
758
|
/**
|
|
729
759
|
* Generic pallet error
|
|
730
760
|
**/
|
|
@@ -23,7 +23,7 @@ export interface VersionedWestendAssetHubApi<Rv extends RpcVersion> extends Gene
|
|
|
23
23
|
|
|
24
24
|
/**
|
|
25
25
|
* @name: WestendAssetHubApi
|
|
26
|
-
* @specVersion:
|
|
26
|
+
* @specVersion: 1018006
|
|
27
27
|
**/
|
|
28
28
|
export interface WestendAssetHubApi {
|
|
29
29
|
legacy: VersionedWestendAssetHubApi<RpcLegacy>;
|
|
@@ -61,8 +61,8 @@ import type {
|
|
|
61
61
|
PalletReviveEvmApiRpcTypesGenGenericTransaction,
|
|
62
62
|
PalletRevivePrimitivesCodeUploadReturnValue,
|
|
63
63
|
PalletRevivePrimitivesContractAccessError,
|
|
64
|
-
|
|
65
|
-
|
|
64
|
+
PalletReviveEvmApiDebugRpcTypesTrace,
|
|
65
|
+
PalletReviveEvmApiDebugRpcTypesTracerType,
|
|
66
66
|
} from './types.js';
|
|
67
67
|
|
|
68
68
|
export interface RuntimeApis<Rv extends RpcVersion> extends GenericRuntimeApis<Rv> {
|
|
@@ -1242,14 +1242,14 @@ export interface RuntimeApis<Rv extends RpcVersion> extends GenericRuntimeApis<R
|
|
|
1242
1242
|
*
|
|
1243
1243
|
* @callname: ReviveApi_trace_block
|
|
1244
1244
|
* @param {SpRuntimeBlock} block
|
|
1245
|
-
* @param {
|
|
1245
|
+
* @param {PalletReviveEvmApiDebugRpcTypesTracerType} config
|
|
1246
1246
|
**/
|
|
1247
1247
|
traceBlock: GenericRuntimeApiMethod<
|
|
1248
1248
|
Rv,
|
|
1249
1249
|
(
|
|
1250
1250
|
block: SpRuntimeBlock,
|
|
1251
|
-
config:
|
|
1252
|
-
) => Promise<Array<[number,
|
|
1251
|
+
config: PalletReviveEvmApiDebugRpcTypesTracerType,
|
|
1252
|
+
) => Promise<Array<[number, PalletReviveEvmApiDebugRpcTypesTrace]>>
|
|
1253
1253
|
>;
|
|
1254
1254
|
|
|
1255
1255
|
/**
|
|
@@ -1263,15 +1263,15 @@ export interface RuntimeApis<Rv extends RpcVersion> extends GenericRuntimeApis<R
|
|
|
1263
1263
|
* @callname: ReviveApi_trace_tx
|
|
1264
1264
|
* @param {SpRuntimeBlock} block
|
|
1265
1265
|
* @param {number} tx_index
|
|
1266
|
-
* @param {
|
|
1266
|
+
* @param {PalletReviveEvmApiDebugRpcTypesTracerType} config
|
|
1267
1267
|
**/
|
|
1268
1268
|
traceTx: GenericRuntimeApiMethod<
|
|
1269
1269
|
Rv,
|
|
1270
1270
|
(
|
|
1271
1271
|
block: SpRuntimeBlock,
|
|
1272
1272
|
txIndex: number,
|
|
1273
|
-
config:
|
|
1274
|
-
) => Promise<
|
|
1273
|
+
config: PalletReviveEvmApiDebugRpcTypesTracerType,
|
|
1274
|
+
) => Promise<PalletReviveEvmApiDebugRpcTypesTrace | undefined>
|
|
1275
1275
|
>;
|
|
1276
1276
|
|
|
1277
1277
|
/**
|
|
@@ -1281,14 +1281,14 @@ export interface RuntimeApis<Rv extends RpcVersion> extends GenericRuntimeApis<R
|
|
|
1281
1281
|
*
|
|
1282
1282
|
* @callname: ReviveApi_trace_call
|
|
1283
1283
|
* @param {PalletReviveEvmApiRpcTypesGenGenericTransaction} tx
|
|
1284
|
-
* @param {
|
|
1284
|
+
* @param {PalletReviveEvmApiDebugRpcTypesTracerType} config
|
|
1285
1285
|
**/
|
|
1286
1286
|
traceCall: GenericRuntimeApiMethod<
|
|
1287
1287
|
Rv,
|
|
1288
1288
|
(
|
|
1289
1289
|
tx: PalletReviveEvmApiRpcTypesGenGenericTransaction,
|
|
1290
|
-
config:
|
|
1291
|
-
) => Promise<Result<
|
|
1290
|
+
config: PalletReviveEvmApiDebugRpcTypesTracerType,
|
|
1291
|
+
) => Promise<Result<PalletReviveEvmApiDebugRpcTypesTrace, PalletRevivePrimitivesEthTransactError>>
|
|
1292
1292
|
>;
|
|
1293
1293
|
|
|
1294
1294
|
/**
|
|
@@ -43,6 +43,8 @@ import type {
|
|
|
43
43
|
CumulusPrimitivesCoreAggregateMessageOrigin,
|
|
44
44
|
SnowbridgeCoreOperatingModeBasicOperatingMode,
|
|
45
45
|
SnowbridgeCoreAssetMetadata,
|
|
46
|
+
SnowbridgeCoreRewardMessageId,
|
|
47
|
+
StagingXcmV5Asset,
|
|
46
48
|
AssetHubWestendRuntimeOriginCaller,
|
|
47
49
|
PalletMultisigTimepoint,
|
|
48
50
|
AssetHubWestendRuntimeProxyType,
|
|
@@ -2828,6 +2830,30 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
2828
2830
|
>
|
|
2829
2831
|
>;
|
|
2830
2832
|
|
|
2833
|
+
/**
|
|
2834
|
+
* Add an additional relayer tip for a committed message identified by `message_id`.
|
|
2835
|
+
* The tip asset will be swapped for ether.
|
|
2836
|
+
*
|
|
2837
|
+
* @param {SnowbridgeCoreRewardMessageId} messageId
|
|
2838
|
+
* @param {StagingXcmV5Asset} asset
|
|
2839
|
+
**/
|
|
2840
|
+
addTip: GenericTxCall<
|
|
2841
|
+
Rv,
|
|
2842
|
+
(
|
|
2843
|
+
messageId: SnowbridgeCoreRewardMessageId,
|
|
2844
|
+
asset: StagingXcmV5Asset,
|
|
2845
|
+
) => ChainSubmittableExtrinsic<
|
|
2846
|
+
Rv,
|
|
2847
|
+
{
|
|
2848
|
+
pallet: 'SnowbridgeSystemFrontend';
|
|
2849
|
+
palletCall: {
|
|
2850
|
+
name: 'AddTip';
|
|
2851
|
+
params: { messageId: SnowbridgeCoreRewardMessageId; asset: StagingXcmV5Asset };
|
|
2852
|
+
};
|
|
2853
|
+
}
|
|
2854
|
+
>
|
|
2855
|
+
>;
|
|
2856
|
+
|
|
2831
2857
|
/**
|
|
2832
2858
|
* Generic pallet tx call
|
|
2833
2859
|
**/
|
|
@@ -6216,7 +6216,12 @@ export type SnowbridgePalletSystemFrontendCall =
|
|
|
6216
6216
|
* All origins are allowed, however `asset_id` must be a location nested within the origin
|
|
6217
6217
|
* consensus system.
|
|
6218
6218
|
**/
|
|
6219
|
-
| { name: 'RegisterToken'; params: { assetId: XcmVersionedLocation; metadata: SnowbridgeCoreAssetMetadata } }
|
|
6219
|
+
| { name: 'RegisterToken'; params: { assetId: XcmVersionedLocation; metadata: SnowbridgeCoreAssetMetadata } }
|
|
6220
|
+
/**
|
|
6221
|
+
* Add an additional relayer tip for a committed message identified by `message_id`.
|
|
6222
|
+
* The tip asset will be swapped for ether.
|
|
6223
|
+
**/
|
|
6224
|
+
| { name: 'AddTip'; params: { messageId: SnowbridgeCoreRewardMessageId; asset: StagingXcmV5Asset } };
|
|
6220
6225
|
|
|
6221
6226
|
export type SnowbridgePalletSystemFrontendCallLike =
|
|
6222
6227
|
/**
|
|
@@ -6232,10 +6237,17 @@ export type SnowbridgePalletSystemFrontendCallLike =
|
|
|
6232
6237
|
* All origins are allowed, however `asset_id` must be a location nested within the origin
|
|
6233
6238
|
* consensus system.
|
|
6234
6239
|
**/
|
|
6235
|
-
| { name: 'RegisterToken'; params: { assetId: XcmVersionedLocation; metadata: SnowbridgeCoreAssetMetadata } }
|
|
6240
|
+
| { name: 'RegisterToken'; params: { assetId: XcmVersionedLocation; metadata: SnowbridgeCoreAssetMetadata } }
|
|
6241
|
+
/**
|
|
6242
|
+
* Add an additional relayer tip for a committed message identified by `message_id`.
|
|
6243
|
+
* The tip asset will be swapped for ether.
|
|
6244
|
+
**/
|
|
6245
|
+
| { name: 'AddTip'; params: { messageId: SnowbridgeCoreRewardMessageId; asset: StagingXcmV5Asset } };
|
|
6236
6246
|
|
|
6237
6247
|
export type SnowbridgeCoreAssetMetadata = { name: Bytes; symbol: Bytes; decimals: number };
|
|
6238
6248
|
|
|
6249
|
+
export type SnowbridgeCoreRewardMessageId = { type: 'Inbound'; value: bigint } | { type: 'Outbound'; value: bigint };
|
|
6250
|
+
|
|
6239
6251
|
/**
|
|
6240
6252
|
* Contains a variant per dispatchable extrinsic that this pallet has.
|
|
6241
6253
|
**/
|
|
@@ -18917,7 +18929,31 @@ export type SnowbridgePalletSystemFrontendError =
|
|
|
18917
18929
|
* The desired destination was unreachable, generally because there is a no way of routing
|
|
18918
18930
|
* to it.
|
|
18919
18931
|
**/
|
|
18920
|
-
| 'Unreachable'
|
|
18932
|
+
| 'Unreachable'
|
|
18933
|
+
/**
|
|
18934
|
+
* The asset provided for the tip is unsupported.
|
|
18935
|
+
**/
|
|
18936
|
+
| 'UnsupportedAsset'
|
|
18937
|
+
/**
|
|
18938
|
+
* Unable to withdraw asset.
|
|
18939
|
+
**/
|
|
18940
|
+
| 'WithdrawError'
|
|
18941
|
+
/**
|
|
18942
|
+
* Account could not be converted to a location.
|
|
18943
|
+
**/
|
|
18944
|
+
| 'InvalidAccount'
|
|
18945
|
+
/**
|
|
18946
|
+
* Provided tip asset could not be swapped for ether.
|
|
18947
|
+
**/
|
|
18948
|
+
| 'SwapError'
|
|
18949
|
+
/**
|
|
18950
|
+
* Ether could not be burned.
|
|
18951
|
+
**/
|
|
18952
|
+
| 'BurnError'
|
|
18953
|
+
/**
|
|
18954
|
+
* The tip provided is zero.
|
|
18955
|
+
**/
|
|
18956
|
+
| 'TipAmountZero';
|
|
18921
18957
|
|
|
18922
18958
|
/**
|
|
18923
18959
|
* The `Error` enum of this pallet.
|
|
@@ -21122,11 +21158,6 @@ export type PalletRevivePrimitivesCodeUploadReturnValue = { codeHash: H256; depo
|
|
|
21122
21158
|
|
|
21123
21159
|
export type PalletRevivePrimitivesContractAccessError = 'DoesntExist' | 'KeyDecodingFailed';
|
|
21124
21160
|
|
|
21125
|
-
export type PalletReviveEvmApiDebugRpcTypesTracerConfig = {
|
|
21126
|
-
config: PalletReviveEvmApiDebugRpcTypesTracerType;
|
|
21127
|
-
timeout?: Duration | undefined;
|
|
21128
|
-
};
|
|
21129
|
-
|
|
21130
21161
|
export type PalletReviveEvmApiDebugRpcTypesTracerType = {
|
|
21131
21162
|
type: 'CallTracer';
|
|
21132
21163
|
value?: PalletReviveEvmApiDebugRpcTypesCallTracerConfig | undefined;
|
|
@@ -21134,7 +21165,7 @@ export type PalletReviveEvmApiDebugRpcTypesTracerType = {
|
|
|
21134
21165
|
|
|
21135
21166
|
export type PalletReviveEvmApiDebugRpcTypesCallTracerConfig = { withLogs: boolean; onlyTopCall: boolean };
|
|
21136
21167
|
|
|
21137
|
-
export type
|
|
21168
|
+
export type PalletReviveEvmApiDebugRpcTypesTrace = { type: 'Call'; value: PalletReviveEvmApiDebugRpcTypesCallTrace };
|
|
21138
21169
|
|
|
21139
21170
|
export type PalletReviveEvmApiDebugRpcTypesCallTrace = {
|
|
21140
21171
|
from: H160;
|