@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.
- package/dist/index.d.ts +15 -0
- 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}`;
|