@iotexproject/kit 0.1.83 → 0.1.85

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +16 -0
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -4832,6 +4832,22 @@ declare class MarshallDao {
4832
4832
  gaugeAddress: `0x${string}`;
4833
4833
  chainId: string;
4834
4834
  } | null>;
4835
+ depolyFixedRewardPoolV2(args: {
4836
+ nft: `0x${string}`;
4837
+ startTimeStamp: string;
4838
+ rewardPerBlock: string;
4839
+ durationInDays: string;
4840
+ }, ctx?: ConfigContext): Promise<{
4841
+ data: `0x${string}`;
4842
+ address: `0x${string}`;
4843
+ chainId: string;
4844
+ error?: undefined;
4845
+ } | {
4846
+ error: unknown;
4847
+ data?: undefined;
4848
+ address?: undefined;
4849
+ chainId?: undefined;
4850
+ }>;
4835
4851
  }
4836
4852
  declare class UniswapV2LPEntity {
4837
4853
  address: `0x${string}`;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@iotexproject/kit",
3
3
  "module": "index.ts",
4
4
  "type": "module",
5
- "version": "0.1.83",
5
+ "version": "0.1.85",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
8
8
  "scripts": {