@dedot/chaintypes 0.245.0 → 0.246.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/astar/consts.d.ts +5 -0
- package/astar/index.d.ts +1 -1
- package/astar/types.d.ts +1 -0
- package/package.json +2 -2
package/astar/consts.d.ts
CHANGED
|
@@ -417,6 +417,11 @@ export interface ChainConsts extends GenericChainConsts {
|
|
|
417
417
|
**/
|
|
418
418
|
maxNumberOfContracts: number;
|
|
419
419
|
|
|
420
|
+
/**
|
|
421
|
+
* Legacy bound for backward compatibility with pre-v11 DAppTierRewards.
|
|
422
|
+
**/
|
|
423
|
+
maxNumberOfContractsLegacy: number;
|
|
424
|
+
|
|
420
425
|
/**
|
|
421
426
|
* Maximum number of unlocking chunks that can exist per account at a time.
|
|
422
427
|
**/
|
package/astar/index.d.ts
CHANGED
package/astar/types.d.ts
CHANGED
|
@@ -2954,6 +2954,7 @@ export type PalletDappStakingTierParameters = {
|
|
|
2954
2954
|
slotDistribution: Array<Permill>;
|
|
2955
2955
|
tierThresholds: Array<PalletDappStakingTierThreshold>;
|
|
2956
2956
|
slotNumberArgs: [bigint, bigint];
|
|
2957
|
+
tierRankMultipliers: Array<number>;
|
|
2957
2958
|
};
|
|
2958
2959
|
|
|
2959
2960
|
export type PalletDappStakingTierThreshold =
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dedot/chaintypes",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.246.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": "974baa7acbcc2cae23a3d75424bdd7cc7d944a69",
|
|
29
29
|
"module": "./index.js",
|
|
30
30
|
"types": "./index.d.ts",
|
|
31
31
|
"exports": {
|