@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 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
@@ -46,7 +46,7 @@ interface ChainKnownTypes extends GenericChainKnownTypes {
46
46
 
47
47
  /**
48
48
  * @name: AstarApi
49
- * @specVersion: 2001
49
+ * @specVersion: 2101
50
50
  **/
51
51
  export interface AstarApi extends GenericSubstrateApi {
52
52
  rpc: ChainJsonRpcApis;
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.245.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": "3a28a03161bb1c61d63ec557b00784c0be9ba7e4",
28
+ "gitHead": "974baa7acbcc2cae23a3d75424bdd7cc7d944a69",
29
29
  "module": "./index.js",
30
30
  "types": "./index.d.ts",
31
31
  "exports": {