@dedot/chaintypes 0.138.0 → 0.139.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/errors.d.ts +10 -0
- package/hydration/index.d.ts +1 -1
- package/hydration/types.d.ts +4 -0
- package/package.json +2 -2
package/hydration/errors.d.ts
CHANGED
|
@@ -1604,6 +1604,11 @@ export interface ChainErrors<Rv extends RpcVersion> extends GenericChainErrors<R
|
|
|
1604
1604
|
**/
|
|
1605
1605
|
IncentivizedAssetNotRegistered: GenericPalletError<Rv>;
|
|
1606
1606
|
|
|
1607
|
+
/**
|
|
1608
|
+
* Provided `amm_pool_id` doesn't match deposit's `amm_pool_id`.
|
|
1609
|
+
**/
|
|
1610
|
+
AmmPoolIdMismatch: GenericPalletError<Rv>;
|
|
1611
|
+
|
|
1607
1612
|
/**
|
|
1608
1613
|
* Action cannot be completed because unexpected error has occurred. This should be reported
|
|
1609
1614
|
* to protocol maintainers.
|
|
@@ -3141,6 +3146,11 @@ export interface ChainErrors<Rv extends RpcVersion> extends GenericChainErrors<R
|
|
|
3141
3146
|
**/
|
|
3142
3147
|
IncentivizedAssetNotRegistered: GenericPalletError<Rv>;
|
|
3143
3148
|
|
|
3149
|
+
/**
|
|
3150
|
+
* Provided `amm_pool_id` doesn't match deposit's `amm_pool_id`.
|
|
3151
|
+
**/
|
|
3152
|
+
AmmPoolIdMismatch: GenericPalletError<Rv>;
|
|
3153
|
+
|
|
3144
3154
|
/**
|
|
3145
3155
|
* Action cannot be completed because unexpected error has occurred. This should be reported
|
|
3146
3156
|
* to protocol maintainers.
|
package/hydration/index.d.ts
CHANGED
package/hydration/types.d.ts
CHANGED
|
@@ -17068,6 +17068,10 @@ export type PalletLiquidityMiningError =
|
|
|
17068
17068
|
* `incentivized_asset` is not registered in asset registry.
|
|
17069
17069
|
**/
|
|
17070
17070
|
| { name: 'IncentivizedAssetNotRegistered' }
|
|
17071
|
+
/**
|
|
17072
|
+
* Provided `amm_pool_id` doesn't match deposit's `amm_pool_id`.
|
|
17073
|
+
**/
|
|
17074
|
+
| { name: 'AmmPoolIdMismatch' }
|
|
17071
17075
|
/**
|
|
17072
17076
|
* Action cannot be completed because unexpected error has occurred. This should be reported
|
|
17073
17077
|
* to protocol maintainers.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dedot/chaintypes",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.139.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": "f1a6c940ebff5a4bfe699775050e3d26ad87501b",
|
|
29
29
|
"module": "./index.js",
|
|
30
30
|
"types": "./index.d.ts",
|
|
31
31
|
"exports": {
|