@iotexproject/kit 0.1.86 → 0.1.87

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 +15 -0
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -3477,6 +3477,21 @@ declare class IoID {
3477
3477
  data?: undefined;
3478
3478
  chainId?: undefined;
3479
3479
  }>;
3480
+ setWeight(args: {
3481
+ gaugeAddress: `0x${string}`;
3482
+ nftId: number;
3483
+ weight: number;
3484
+ }, ctx?: ConfigContext): Promise<{
3485
+ address: any;
3486
+ data: any;
3487
+ chainId: string;
3488
+ error?: undefined;
3489
+ } | {
3490
+ error: unknown;
3491
+ address?: undefined;
3492
+ data?: undefined;
3493
+ chainId?: undefined;
3494
+ }>;
3480
3495
  incrementMinterAllowance(args: {
3481
3496
  amount: string;
3482
3497
  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.86",
5
+ "version": "0.1.87",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
8
8
  "scripts": {