@typemove/sui 1.13.4-rc.2 → 1.13.4
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/esm/builtin/0x1.d.ts +269 -269
- package/dist/esm/builtin/0x1.d.ts.map +1 -1
- package/dist/esm/builtin/0x1.js.map +1 -1
- package/dist/esm/builtin/0x2.d.ts +684 -684
- package/dist/esm/builtin/0x2.d.ts.map +1 -1
- package/dist/esm/builtin/0x2.js.map +1 -1
- package/dist/esm/builtin/0x3.d.ts +272 -272
- package/dist/esm/builtin/0x3.d.ts.map +1 -1
- package/dist/esm/builtin/0x3.js.map +1 -1
- package/dist/esm/codegen/codegen.d.ts +1 -1
- package/dist/esm/codegen/codegen.d.ts.map +1 -1
- package/dist/esm/codegen/codegen.js +5 -5
- package/dist/esm/codegen/codegen.js.map +1 -1
- package/dist/esm/codegen/run.js +3 -2
- package/dist/esm/codegen/run.js.map +1 -1
- package/dist/esm/models.d.ts +1 -1
- package/dist/esm/models.d.ts.map +1 -1
- package/dist/esm/move-coder.d.ts +3 -3
- package/dist/esm/move-coder.d.ts.map +1 -1
- package/dist/esm/move-coder.js +3 -3
- package/dist/esm/move-coder.js.map +1 -1
- package/dist/esm/sui-chain-adapter.d.ts +4 -3
- package/dist/esm/sui-chain-adapter.d.ts.map +1 -1
- package/dist/esm/sui-chain-adapter.js +13 -2
- package/dist/esm/sui-chain-adapter.js.map +1 -1
- package/dist/esm/to-internal.d.ts +1 -1
- package/dist/esm/to-internal.d.ts.map +1 -1
- package/package.json +3 -3
- package/src/builtin/0x1.ts +269 -269
- package/src/builtin/0x2.ts +684 -684
- package/src/builtin/0x3.ts +272 -272
- package/src/codegen/codegen.ts +5 -5
- package/src/codegen/run.ts +3 -2
- package/src/models.ts +1 -1
- package/src/move-coder.ts +7 -7
- package/src/sui-chain-adapter.ts +13 -5
- package/src/tests/types/testnet/0x1e2b124f746a339b3cf99b9f969393a96594519aafb1d06517aacfeeae20e7a5.ts +5 -5
- package/src/tests/types/testnet/0x6c4a21e3e7e6b6d51c4604021633e1d97e24e37a696f8c082cd48f37503e602a.ts +49 -49
- package/src/tests/types/testnet/0x7f7a37c826c88bcfe9aecc042453395ddfa9df6f29cb7c97590bf86cf2b0a75e.ts +32 -32
- package/src/tests/types/testnet/0xdee9.ts +91 -91
- package/src/tests/types/testnet/0xebaa2ad3eacc230f309cd933958cc52684df0a41ae7ac214d186b80f830867d2.ts +156 -156
- package/src/tests/types/testnet/enum.ts +119 -119
- package/src/to-internal.ts +1 -1
|
@@ -2,7 +2,7 @@ import { TypeDescriptor } from "@typemove/move";
|
|
|
2
2
|
import { MoveCoder, TypedEventInstance } from "@typemove/sui";
|
|
3
3
|
import { TypedDevInspectResults } from "@typemove/sui";
|
|
4
4
|
import { Transaction, TransactionArgument, TransactionObjectArgument } from "@mysten/sui/transactions";
|
|
5
|
-
import {
|
|
5
|
+
import { SuiJsonRpcClient } from "@mysten/sui/jsonRpc";
|
|
6
6
|
import * as _0x1 from "./0x1.js";
|
|
7
7
|
export declare namespace accumulator {
|
|
8
8
|
interface AccumulatorRoot {
|
|
@@ -94,23 +94,23 @@ export declare namespace accumulator {
|
|
|
94
94
|
];
|
|
95
95
|
}
|
|
96
96
|
namespace view {
|
|
97
|
-
function accumulatorAddress<T0 = any>(client:
|
|
98
|
-
function accumulatorKey<T0 = any>(client:
|
|
99
|
-
function accumulatorU128Exists<T0 = any>(client:
|
|
100
|
-
function accumulatorU128Read<T0 = any>(client:
|
|
101
|
-
function createU128(client:
|
|
102
|
-
function destroyU128(client:
|
|
103
|
-
function emitDepositEvent<T0 = any>(client:
|
|
104
|
-
function emitWithdrawEvent<T0 = any>(client:
|
|
105
|
-
function isZeroU128(client:
|
|
106
|
-
function rootAddAccumulator<T0 = any, T1 = any>(client:
|
|
107
|
-
function rootBorrowAccumulator<T0 = any, T1 = any>(client:
|
|
108
|
-
function rootBorrowAccumulatorMut<T0 = any, T1 = any>(client:
|
|
109
|
-
function rootHasAccumulator<T0 = any, T1 = any>(client:
|
|
110
|
-
function rootId(client:
|
|
111
|
-
function rootIdMut(client:
|
|
112
|
-
function rootRemoveAccumulator<T0 = any, T1 = any>(client:
|
|
113
|
-
function updateU128(client:
|
|
97
|
+
function accumulatorAddress<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
98
|
+
function accumulatorKey<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[accumulator.Key<T0>]>>;
|
|
99
|
+
function accumulatorU128Exists<T0 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
100
|
+
function accumulatorU128Read<T0 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
101
|
+
function createU128(client: SuiJsonRpcClient, args: [bigint]): Promise<TypedDevInspectResults<[accumulator.U128]>>;
|
|
102
|
+
function destroyU128(client: SuiJsonRpcClient, args: [accumulator.U128]): Promise<TypedDevInspectResults<[]>>;
|
|
103
|
+
function emitDepositEvent<T0 = any>(client: SuiJsonRpcClient, args: [string, string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
104
|
+
function emitWithdrawEvent<T0 = any>(client: SuiJsonRpcClient, args: [string, string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
105
|
+
function isZeroU128(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
106
|
+
function rootAddAccumulator<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, accumulator.Key<T0>, T1], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
107
|
+
function rootBorrowAccumulator<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, accumulator.Key<T0>], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
108
|
+
function rootBorrowAccumulatorMut<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, accumulator.Key<T0>], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
109
|
+
function rootHasAccumulator<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, accumulator.Key<T0>], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
110
|
+
function rootId(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
|
111
|
+
function rootIdMut(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
|
112
|
+
function rootRemoveAccumulator<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, accumulator.Key<T0>], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T1]>>;
|
|
113
|
+
function updateU128(client: SuiJsonRpcClient, args: [string, bigint, bigint]): Promise<TypedDevInspectResults<[]>>;
|
|
114
114
|
}
|
|
115
115
|
}
|
|
116
116
|
export declare namespace accumulator_metadata {
|
|
@@ -191,15 +191,15 @@ export declare namespace address {
|
|
|
191
191
|
function toU256(tx: Transaction, args: [string | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
|
192
192
|
}
|
|
193
193
|
namespace view {
|
|
194
|
-
function fromAsciiBytes(client:
|
|
195
|
-
function fromBytes(client:
|
|
196
|
-
function fromU256(client:
|
|
197
|
-
function length(client:
|
|
198
|
-
function max(client:
|
|
199
|
-
function toAsciiString(client:
|
|
200
|
-
function toBytes(client:
|
|
201
|
-
function toString(client:
|
|
202
|
-
function toU256(client:
|
|
194
|
+
function fromAsciiBytes(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
|
195
|
+
function fromBytes(client: SuiJsonRpcClient, args: [string[]]): Promise<TypedDevInspectResults<[string]>>;
|
|
196
|
+
function fromU256(client: SuiJsonRpcClient, args: [bigint]): Promise<TypedDevInspectResults<[string]>>;
|
|
197
|
+
function length(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[bigint]>>;
|
|
198
|
+
function max(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[bigint]>>;
|
|
199
|
+
function toAsciiString(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[_0x1.ascii.String]>>;
|
|
200
|
+
function toBytes(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[number[]]>>;
|
|
201
|
+
function toString(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
|
202
|
+
function toU256(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
203
203
|
}
|
|
204
204
|
}
|
|
205
205
|
export declare namespace address_alias {
|
|
@@ -330,16 +330,16 @@ export declare namespace bag {
|
|
|
330
330
|
function remove<T0 = any, T1 = any>(tx: Transaction, args: [string | TransactionObjectArgument, T0 | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
331
331
|
}
|
|
332
332
|
namespace view {
|
|
333
|
-
function add<T0 = any, T1 = any>(client:
|
|
334
|
-
function borrow<T0 = any, T1 = any>(client:
|
|
335
|
-
function borrowMut<T0 = any, T1 = any>(client:
|
|
336
|
-
function contains<T0 = any>(client:
|
|
337
|
-
function containsWithType<T0 = any, T1 = any>(client:
|
|
338
|
-
function destroyEmpty(client:
|
|
339
|
-
function isEmpty(client:
|
|
340
|
-
function length(client:
|
|
341
|
-
function new$(client:
|
|
342
|
-
function remove<T0 = any, T1 = any>(client:
|
|
333
|
+
function add<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0, T1], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
334
|
+
function borrow<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
335
|
+
function borrowMut<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
336
|
+
function contains<T0 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
337
|
+
function containsWithType<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
338
|
+
function destroyEmpty(client: SuiJsonRpcClient, args: [bag.Bag]): Promise<TypedDevInspectResults<[]>>;
|
|
339
|
+
function isEmpty(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
340
|
+
function length(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
341
|
+
function new$(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[bag.Bag]>>;
|
|
342
|
+
function remove<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T1]>>;
|
|
343
343
|
}
|
|
344
344
|
}
|
|
345
345
|
export declare namespace balance {
|
|
@@ -385,24 +385,24 @@ export declare namespace balance {
|
|
|
385
385
|
function zero<T0 = any>(tx: Transaction, args: [], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [];
|
|
386
386
|
}
|
|
387
387
|
namespace view {
|
|
388
|
-
function createSupply<T0 = any>(client:
|
|
389
|
-
function createSupplyInternal<T0 = any>(client:
|
|
390
|
-
function decreaseSupply<T0 = any>(client:
|
|
391
|
-
function destroySupply<T0 = any>(client:
|
|
392
|
-
function destroyZero<T0 = any>(client:
|
|
393
|
-
function increaseSupply<T0 = any>(client:
|
|
394
|
-
function join<T0 = any>(client:
|
|
395
|
-
function redeemFunds<T0 = any>(client:
|
|
396
|
-
function sendFunds<T0 = any>(client:
|
|
397
|
-
function settledFundsValue<T0 = any>(client:
|
|
398
|
-
function split<T0 = any>(client:
|
|
399
|
-
function supplyValue<T0 = any>(client:
|
|
400
|
-
function value<T0 = any>(client:
|
|
401
|
-
function withdrawAll<T0 = any>(client:
|
|
402
|
-
function withdrawFundsFromObject<T0 = any>(client:
|
|
388
|
+
function createSupply<T0 = any>(client: SuiJsonRpcClient, args: [T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[balance.Supply<T0>]>>;
|
|
389
|
+
function createSupplyInternal<T0 = any>(client: SuiJsonRpcClient, args: [], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[balance.Supply<T0>]>>;
|
|
390
|
+
function decreaseSupply<T0 = any>(client: SuiJsonRpcClient, args: [string, balance.Balance<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
391
|
+
function destroySupply<T0 = any>(client: SuiJsonRpcClient, args: [balance.Supply<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
392
|
+
function destroyZero<T0 = any>(client: SuiJsonRpcClient, args: [balance.Balance<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
393
|
+
function increaseSupply<T0 = any>(client: SuiJsonRpcClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[balance.Balance<T0>]>>;
|
|
394
|
+
function join<T0 = any>(client: SuiJsonRpcClient, args: [string, balance.Balance<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
395
|
+
function redeemFunds<T0 = any>(client: SuiJsonRpcClient, args: [funds_accumulator.Withdrawal<balance.Balance<T0>>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[balance.Balance<T0>]>>;
|
|
396
|
+
function sendFunds<T0 = any>(client: SuiJsonRpcClient, args: [balance.Balance<T0>, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
397
|
+
function settledFundsValue<T0 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
398
|
+
function split<T0 = any>(client: SuiJsonRpcClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[balance.Balance<T0>]>>;
|
|
399
|
+
function supplyValue<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
400
|
+
function value<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
401
|
+
function withdrawAll<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[balance.Balance<T0>]>>;
|
|
402
|
+
function withdrawFundsFromObject<T0 = any>(client: SuiJsonRpcClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
|
403
403
|
funds_accumulator.Withdrawal<balance.Balance<T0>>
|
|
404
404
|
]>>;
|
|
405
|
-
function zero<T0 = any>(client:
|
|
405
|
+
function zero<T0 = any>(client: SuiJsonRpcClient, args: [], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[balance.Balance<T0>]>>;
|
|
406
406
|
}
|
|
407
407
|
}
|
|
408
408
|
export declare namespace bcs {
|
|
@@ -450,36 +450,36 @@ export declare namespace bcs {
|
|
|
450
450
|
function toBytes<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
451
451
|
}
|
|
452
452
|
namespace view {
|
|
453
|
-
function intoRemainderBytes(client:
|
|
454
|
-
function new$(client:
|
|
455
|
-
function peelAddress(client:
|
|
456
|
-
function peelBool(client:
|
|
457
|
-
function peelEnumTag(client:
|
|
458
|
-
function peelOptionAddress(client:
|
|
459
|
-
function peelOptionBool(client:
|
|
460
|
-
function peelOptionU128(client:
|
|
461
|
-
function peelOptionU16(client:
|
|
462
|
-
function peelOptionU256(client:
|
|
463
|
-
function peelOptionU32(client:
|
|
464
|
-
function peelOptionU64(client:
|
|
465
|
-
function peelOptionU8(client:
|
|
466
|
-
function peelU128(client:
|
|
467
|
-
function peelU16(client:
|
|
468
|
-
function peelU256(client:
|
|
469
|
-
function peelU32(client:
|
|
470
|
-
function peelU64(client:
|
|
471
|
-
function peelU8(client:
|
|
472
|
-
function peelVecAddress(client:
|
|
473
|
-
function peelVecBool(client:
|
|
474
|
-
function peelVecLength(client:
|
|
475
|
-
function peelVecU128(client:
|
|
476
|
-
function peelVecU16(client:
|
|
477
|
-
function peelVecU256(client:
|
|
478
|
-
function peelVecU32(client:
|
|
479
|
-
function peelVecU64(client:
|
|
480
|
-
function peelVecU8(client:
|
|
481
|
-
function peelVecVecU8(client:
|
|
482
|
-
function toBytes<T0 = any>(client:
|
|
453
|
+
function intoRemainderBytes(client: SuiJsonRpcClient, args: [bcs.BCS]): Promise<TypedDevInspectResults<[number[]]>>;
|
|
454
|
+
function new$(client: SuiJsonRpcClient, args: [string[]]): Promise<TypedDevInspectResults<[bcs.BCS]>>;
|
|
455
|
+
function peelAddress(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
|
456
|
+
function peelBool(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
457
|
+
function peelEnumTag(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[number]>>;
|
|
458
|
+
function peelOptionAddress(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[_0x1.option.Option<string>]>>;
|
|
459
|
+
function peelOptionBool(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[_0x1.option.Option<boolean>]>>;
|
|
460
|
+
function peelOptionU128(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[_0x1.option.Option<bigint>]>>;
|
|
461
|
+
function peelOptionU16(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[_0x1.option.Option<number>]>>;
|
|
462
|
+
function peelOptionU256(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[_0x1.option.Option<bigint>]>>;
|
|
463
|
+
function peelOptionU32(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[_0x1.option.Option<number>]>>;
|
|
464
|
+
function peelOptionU64(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[_0x1.option.Option<bigint>]>>;
|
|
465
|
+
function peelOptionU8(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[_0x1.option.Option<number>]>>;
|
|
466
|
+
function peelU128(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
467
|
+
function peelU16(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[number]>>;
|
|
468
|
+
function peelU256(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
469
|
+
function peelU32(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[number]>>;
|
|
470
|
+
function peelU64(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
471
|
+
function peelU8(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[number]>>;
|
|
472
|
+
function peelVecAddress(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string[]]>>;
|
|
473
|
+
function peelVecBool(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[boolean[]]>>;
|
|
474
|
+
function peelVecLength(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
475
|
+
function peelVecU128(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[bigint[]]>>;
|
|
476
|
+
function peelVecU16(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[number[]]>>;
|
|
477
|
+
function peelVecU256(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[bigint[]]>>;
|
|
478
|
+
function peelVecU32(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[number[]]>>;
|
|
479
|
+
function peelVecU64(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[bigint[]]>>;
|
|
480
|
+
function peelVecU8(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[number[]]>>;
|
|
481
|
+
function peelVecVecU8(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[number[][]]>>;
|
|
482
|
+
function toBytes<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[number[]]>>;
|
|
483
483
|
}
|
|
484
484
|
}
|
|
485
485
|
export declare namespace bls12381 {
|
|
@@ -637,49 +637,49 @@ export declare namespace bls12381 {
|
|
|
637
637
|
function uncompressedG1ToG1(tx: Transaction, args: [string | TransactionObjectArgument]): TransactionArgument & [TransactionArgument];
|
|
638
638
|
}
|
|
639
639
|
namespace view {
|
|
640
|
-
function bls12381MinPkVerify(client:
|
|
641
|
-
function bls12381MinSigVerify(client:
|
|
642
|
-
function g1Add(client:
|
|
643
|
-
function g1Div(client:
|
|
644
|
-
function g1FromBytes(client:
|
|
645
|
-
function g1Generator(client:
|
|
646
|
-
function g1Identity(client:
|
|
647
|
-
function g1Mul(client:
|
|
648
|
-
function g1MultiScalarMultiplication(client:
|
|
649
|
-
function g1Neg(client:
|
|
650
|
-
function g1Sub(client:
|
|
651
|
-
function g1ToUncompressedG1(client:
|
|
652
|
-
function g2Add(client:
|
|
653
|
-
function g2Div(client:
|
|
654
|
-
function g2FromBytes(client:
|
|
655
|
-
function g2Generator(client:
|
|
656
|
-
function g2Identity(client:
|
|
657
|
-
function g2Mul(client:
|
|
658
|
-
function g2MultiScalarMultiplication(client:
|
|
659
|
-
function g2Neg(client:
|
|
660
|
-
function g2Sub(client:
|
|
661
|
-
function gtAdd(client:
|
|
662
|
-
function gtDiv(client:
|
|
663
|
-
function gtGenerator(client:
|
|
664
|
-
function gtIdentity(client:
|
|
665
|
-
function gtMul(client:
|
|
666
|
-
function gtNeg(client:
|
|
667
|
-
function gtSub(client:
|
|
668
|
-
function hashToG1(client:
|
|
669
|
-
function hashToG2(client:
|
|
670
|
-
function pairing(client:
|
|
671
|
-
function scalarAdd(client:
|
|
672
|
-
function scalarDiv(client:
|
|
673
|
-
function scalarFromBytes(client:
|
|
674
|
-
function scalarFromU64(client:
|
|
675
|
-
function scalarInv(client:
|
|
676
|
-
function scalarMul(client:
|
|
677
|
-
function scalarNeg(client:
|
|
678
|
-
function scalarOne(client:
|
|
679
|
-
function scalarSub(client:
|
|
680
|
-
function scalarZero(client:
|
|
681
|
-
function uncompressedG1Sum(client:
|
|
682
|
-
function uncompressedG1ToG1(client:
|
|
640
|
+
function bls12381MinPkVerify(client: SuiJsonRpcClient, args: [string, string, string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
641
|
+
function bls12381MinSigVerify(client: SuiJsonRpcClient, args: [string, string, string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
642
|
+
function g1Add(client: SuiJsonRpcClient, args: [string, string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G1>]>>;
|
|
643
|
+
function g1Div(client: SuiJsonRpcClient, args: [string, string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G1>]>>;
|
|
644
|
+
function g1FromBytes(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G1>]>>;
|
|
645
|
+
function g1Generator(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G1>]>>;
|
|
646
|
+
function g1Identity(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G1>]>>;
|
|
647
|
+
function g1Mul(client: SuiJsonRpcClient, args: [string, string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G1>]>>;
|
|
648
|
+
function g1MultiScalarMultiplication(client: SuiJsonRpcClient, args: [string, string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G1>]>>;
|
|
649
|
+
function g1Neg(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G1>]>>;
|
|
650
|
+
function g1Sub(client: SuiJsonRpcClient, args: [string, string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G1>]>>;
|
|
651
|
+
function g1ToUncompressedG1(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.UncompressedG1>]>>;
|
|
652
|
+
function g2Add(client: SuiJsonRpcClient, args: [string, string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G2>]>>;
|
|
653
|
+
function g2Div(client: SuiJsonRpcClient, args: [string, string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G2>]>>;
|
|
654
|
+
function g2FromBytes(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G2>]>>;
|
|
655
|
+
function g2Generator(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G2>]>>;
|
|
656
|
+
function g2Identity(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G2>]>>;
|
|
657
|
+
function g2Mul(client: SuiJsonRpcClient, args: [string, string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G2>]>>;
|
|
658
|
+
function g2MultiScalarMultiplication(client: SuiJsonRpcClient, args: [string, string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G2>]>>;
|
|
659
|
+
function g2Neg(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G2>]>>;
|
|
660
|
+
function g2Sub(client: SuiJsonRpcClient, args: [string, string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G2>]>>;
|
|
661
|
+
function gtAdd(client: SuiJsonRpcClient, args: [string, string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.GT>]>>;
|
|
662
|
+
function gtDiv(client: SuiJsonRpcClient, args: [string, string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.GT>]>>;
|
|
663
|
+
function gtGenerator(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.GT>]>>;
|
|
664
|
+
function gtIdentity(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.GT>]>>;
|
|
665
|
+
function gtMul(client: SuiJsonRpcClient, args: [string, string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.GT>]>>;
|
|
666
|
+
function gtNeg(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.GT>]>>;
|
|
667
|
+
function gtSub(client: SuiJsonRpcClient, args: [string, string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.GT>]>>;
|
|
668
|
+
function hashToG1(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G1>]>>;
|
|
669
|
+
function hashToG2(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G2>]>>;
|
|
670
|
+
function pairing(client: SuiJsonRpcClient, args: [string, string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.GT>]>>;
|
|
671
|
+
function scalarAdd(client: SuiJsonRpcClient, args: [string, string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.Scalar>]>>;
|
|
672
|
+
function scalarDiv(client: SuiJsonRpcClient, args: [string, string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.Scalar>]>>;
|
|
673
|
+
function scalarFromBytes(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.Scalar>]>>;
|
|
674
|
+
function scalarFromU64(client: SuiJsonRpcClient, args: [bigint]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.Scalar>]>>;
|
|
675
|
+
function scalarInv(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.Scalar>]>>;
|
|
676
|
+
function scalarMul(client: SuiJsonRpcClient, args: [string, string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.Scalar>]>>;
|
|
677
|
+
function scalarNeg(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.Scalar>]>>;
|
|
678
|
+
function scalarOne(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.Scalar>]>>;
|
|
679
|
+
function scalarSub(client: SuiJsonRpcClient, args: [string, string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.Scalar>]>>;
|
|
680
|
+
function scalarZero(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.Scalar>]>>;
|
|
681
|
+
function uncompressedG1Sum(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.UncompressedG1>]>>;
|
|
682
|
+
function uncompressedG1ToG1(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G1>]>>;
|
|
683
683
|
}
|
|
684
684
|
}
|
|
685
685
|
export declare namespace borrow {
|
|
@@ -714,10 +714,10 @@ export declare namespace borrow {
|
|
|
714
714
|
];
|
|
715
715
|
}
|
|
716
716
|
namespace view {
|
|
717
|
-
function borrow<T0 = any>(client:
|
|
718
|
-
function destroy<T0 = any>(client:
|
|
719
|
-
function new$<T0 = any>(client:
|
|
720
|
-
function putBack<T0 = any>(client:
|
|
717
|
+
function borrow<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[T0, borrow.Borrow]>>;
|
|
718
|
+
function destroy<T0 = any>(client: SuiJsonRpcClient, args: [borrow.Referent<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[T0]>>;
|
|
719
|
+
function new$<T0 = any>(client: SuiJsonRpcClient, args: [T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[borrow.Referent<T0>]>>;
|
|
720
|
+
function putBack<T0 = any>(client: SuiJsonRpcClient, args: [string, T0, borrow.Borrow], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
721
721
|
}
|
|
722
722
|
}
|
|
723
723
|
export declare namespace clock {
|
|
@@ -733,7 +733,7 @@ export declare namespace clock {
|
|
|
733
733
|
function timestampMs(tx: Transaction, args: [string | TransactionObjectArgument]): TransactionArgument & [TransactionArgument];
|
|
734
734
|
}
|
|
735
735
|
namespace view {
|
|
736
|
-
function timestampMs(client:
|
|
736
|
+
function timestampMs(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
737
737
|
}
|
|
738
738
|
}
|
|
739
739
|
export declare namespace coin {
|
|
@@ -1019,11 +1019,11 @@ export declare namespace coin {
|
|
|
1019
1019
|
function zero<T0 = any>(tx: Transaction, args: [], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [];
|
|
1020
1020
|
}
|
|
1021
1021
|
namespace view {
|
|
1022
|
-
function allowGlobalPause<T0 = any>(client:
|
|
1023
|
-
function balance<T0 = any>(client:
|
|
1024
|
-
function balanceMut<T0 = any>(client:
|
|
1025
|
-
function burn<T0 = any>(client:
|
|
1026
|
-
function createCurrency<T0 = any>(client:
|
|
1022
|
+
function allowGlobalPause<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1023
|
+
function balance<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
1024
|
+
function balanceMut<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
1025
|
+
function burn<T0 = any>(client: SuiJsonRpcClient, args: [string, coin.Coin<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
1026
|
+
function createCurrency<T0 = any>(client: SuiJsonRpcClient, args: [
|
|
1027
1027
|
T0,
|
|
1028
1028
|
number,
|
|
1029
1029
|
string[],
|
|
@@ -1031,7 +1031,7 @@ export declare namespace coin {
|
|
|
1031
1031
|
string[],
|
|
1032
1032
|
_0x1.option.Option<url.Url>
|
|
1033
1033
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.TreasuryCap<T0>, coin.CoinMetadata<T0>]>>;
|
|
1034
|
-
function createRegulatedCurrency<T0 = any>(client:
|
|
1034
|
+
function createRegulatedCurrency<T0 = any>(client: SuiJsonRpcClient, args: [
|
|
1035
1035
|
T0,
|
|
1036
1036
|
number,
|
|
1037
1037
|
string[],
|
|
@@ -1043,7 +1043,7 @@ export declare namespace coin {
|
|
|
1043
1043
|
coin.DenyCap<T0>,
|
|
1044
1044
|
coin.CoinMetadata<T0>
|
|
1045
1045
|
]>>;
|
|
1046
|
-
function createRegulatedCurrencyV2<T0 = any>(client:
|
|
1046
|
+
function createRegulatedCurrencyV2<T0 = any>(client: SuiJsonRpcClient, args: [
|
|
1047
1047
|
T0,
|
|
1048
1048
|
number,
|
|
1049
1049
|
string[],
|
|
@@ -1056,53 +1056,53 @@ export declare namespace coin {
|
|
|
1056
1056
|
coin.DenyCapV2<T0>,
|
|
1057
1057
|
coin.CoinMetadata<T0>
|
|
1058
1058
|
]>>;
|
|
1059
|
-
function denyCapId<T0 = any>(client:
|
|
1060
|
-
function denyListAdd<T0 = any>(client:
|
|
1061
|
-
function denyListContains<T0 = any>(client:
|
|
1062
|
-
function denyListRemove<T0 = any>(client:
|
|
1063
|
-
function denyListV2Add<T0 = any>(client:
|
|
1064
|
-
function denyListV2ContainsCurrentEpoch<T0 = any>(client:
|
|
1065
|
-
function denyListV2ContainsNextEpoch<T0 = any>(client:
|
|
1066
|
-
function denyListV2DisableGlobalPause<T0 = any>(client:
|
|
1067
|
-
function denyListV2EnableGlobalPause<T0 = any>(client:
|
|
1068
|
-
function denyListV2IsGlobalPauseEnabledCurrentEpoch<T0 = any>(client:
|
|
1069
|
-
function denyListV2IsGlobalPauseEnabledNextEpoch<T0 = any>(client:
|
|
1070
|
-
function denyListV2Remove<T0 = any>(client:
|
|
1071
|
-
function destroyMetadata<T0 = any>(client:
|
|
1072
|
-
function destroyZero<T0 = any>(client:
|
|
1073
|
-
function divideIntoN<T0 = any>(client:
|
|
1074
|
-
function fromBalance<T0 = any>(client:
|
|
1075
|
-
function getDecimals<T0 = any>(client:
|
|
1076
|
-
function getDescription<T0 = any>(client:
|
|
1077
|
-
function getIconUrl<T0 = any>(client:
|
|
1078
|
-
function getName<T0 = any>(client:
|
|
1079
|
-
function getSymbol<T0 = any>(client:
|
|
1080
|
-
function intoBalance<T0 = any>(client:
|
|
1081
|
-
function join<T0 = any>(client:
|
|
1082
|
-
function migrateRegulatedCurrencyToV2<T0 = any>(client:
|
|
1083
|
-
function mint<T0 = any>(client:
|
|
1084
|
-
function mintAndTransfer<T0 = any>(client:
|
|
1085
|
-
function mintBalance<T0 = any>(client:
|
|
1086
|
-
function newCoinMetadata<T0 = any>(client:
|
|
1087
|
-
function newDenyCapV2<T0 = any>(client:
|
|
1088
|
-
function newTreasuryCap<T0 = any>(client:
|
|
1089
|
-
function put<T0 = any>(client:
|
|
1090
|
-
function redeemFunds<T0 = any>(client:
|
|
1091
|
-
function sendFunds<T0 = any>(client:
|
|
1092
|
-
function split<T0 = any>(client:
|
|
1093
|
-
function supply<T0 = any>(client:
|
|
1094
|
-
function supplyImmut<T0 = any>(client:
|
|
1095
|
-
function supplyMut<T0 = any>(client:
|
|
1096
|
-
function take<T0 = any>(client:
|
|
1097
|
-
function totalSupply<T0 = any>(client:
|
|
1098
|
-
function treasuryIntoSupply<T0 = any>(client:
|
|
1099
|
-
function updateCoinMetadata<T0 = any>(client:
|
|
1100
|
-
function updateDescription<T0 = any>(client:
|
|
1101
|
-
function updateIconUrl<T0 = any>(client:
|
|
1102
|
-
function updateName<T0 = any>(client:
|
|
1103
|
-
function updateSymbol<T0 = any>(client:
|
|
1104
|
-
function value<T0 = any>(client:
|
|
1105
|
-
function zero<T0 = any>(client:
|
|
1059
|
+
function denyCapId<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[object$.ID]>>;
|
|
1060
|
+
function denyListAdd<T0 = any>(client: SuiJsonRpcClient, args: [string, string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1061
|
+
function denyListContains<T0 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1062
|
+
function denyListRemove<T0 = any>(client: SuiJsonRpcClient, args: [string, string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1063
|
+
function denyListV2Add<T0 = any>(client: SuiJsonRpcClient, args: [string, string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1064
|
+
function denyListV2ContainsCurrentEpoch<T0 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1065
|
+
function denyListV2ContainsNextEpoch<T0 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1066
|
+
function denyListV2DisableGlobalPause<T0 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1067
|
+
function denyListV2EnableGlobalPause<T0 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1068
|
+
function denyListV2IsGlobalPauseEnabledCurrentEpoch<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1069
|
+
function denyListV2IsGlobalPauseEnabledNextEpoch<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1070
|
+
function denyListV2Remove<T0 = any>(client: SuiJsonRpcClient, args: [string, string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1071
|
+
function destroyMetadata<T0 = any>(client: SuiJsonRpcClient, args: [coin.CoinMetadata<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1072
|
+
function destroyZero<T0 = any>(client: SuiJsonRpcClient, args: [coin.Coin<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1073
|
+
function divideIntoN<T0 = any>(client: SuiJsonRpcClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.Coin<T0>[]]>>;
|
|
1074
|
+
function fromBalance<T0 = any>(client: SuiJsonRpcClient, args: [balance.Balance<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.Coin<T0>]>>;
|
|
1075
|
+
function getDecimals<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[number]>>;
|
|
1076
|
+
function getDescription<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
1077
|
+
function getIconUrl<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[_0x1.option.Option<url.Url>]>>;
|
|
1078
|
+
function getName<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
1079
|
+
function getSymbol<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[_0x1.ascii.String]>>;
|
|
1080
|
+
function intoBalance<T0 = any>(client: SuiJsonRpcClient, args: [coin.Coin<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[balance.Balance<T0>]>>;
|
|
1081
|
+
function join<T0 = any>(client: SuiJsonRpcClient, args: [string, coin.Coin<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1082
|
+
function migrateRegulatedCurrencyToV2<T0 = any>(client: SuiJsonRpcClient, args: [string, coin.DenyCap<T0>, boolean], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.DenyCapV2<T0>]>>;
|
|
1083
|
+
function mint<T0 = any>(client: SuiJsonRpcClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.Coin<T0>]>>;
|
|
1084
|
+
function mintAndTransfer<T0 = any>(client: SuiJsonRpcClient, args: [string, bigint, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1085
|
+
function mintBalance<T0 = any>(client: SuiJsonRpcClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[balance.Balance<T0>]>>;
|
|
1086
|
+
function newCoinMetadata<T0 = any>(client: SuiJsonRpcClient, args: [number, string, _0x1.ascii.String, string, _0x1.ascii.String], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.CoinMetadata<T0>]>>;
|
|
1087
|
+
function newDenyCapV2<T0 = any>(client: SuiJsonRpcClient, args: [boolean], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.DenyCapV2<T0>]>>;
|
|
1088
|
+
function newTreasuryCap<T0 = any>(client: SuiJsonRpcClient, args: [], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.TreasuryCap<T0>]>>;
|
|
1089
|
+
function put<T0 = any>(client: SuiJsonRpcClient, args: [string, coin.Coin<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1090
|
+
function redeemFunds<T0 = any>(client: SuiJsonRpcClient, args: [funds_accumulator.Withdrawal<balance.Balance<T0>>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.Coin<T0>]>>;
|
|
1091
|
+
function sendFunds<T0 = any>(client: SuiJsonRpcClient, args: [coin.Coin<T0>, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1092
|
+
function split<T0 = any>(client: SuiJsonRpcClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.Coin<T0>]>>;
|
|
1093
|
+
function supply<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
1094
|
+
function supplyImmut<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
1095
|
+
function supplyMut<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
1096
|
+
function take<T0 = any>(client: SuiJsonRpcClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.Coin<T0>]>>;
|
|
1097
|
+
function totalSupply<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
1098
|
+
function treasuryIntoSupply<T0 = any>(client: SuiJsonRpcClient, args: [coin.TreasuryCap<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[balance.Supply<T0>]>>;
|
|
1099
|
+
function updateCoinMetadata<T0 = any>(client: SuiJsonRpcClient, args: [string, string, _0x1.ascii.String, string, _0x1.ascii.String], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1100
|
+
function updateDescription<T0 = any>(client: SuiJsonRpcClient, args: [string, string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1101
|
+
function updateIconUrl<T0 = any>(client: SuiJsonRpcClient, args: [string, string, _0x1.ascii.String], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1102
|
+
function updateName<T0 = any>(client: SuiJsonRpcClient, args: [string, string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1103
|
+
function updateSymbol<T0 = any>(client: SuiJsonRpcClient, args: [string, string, _0x1.ascii.String], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1104
|
+
function value<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
1105
|
+
function zero<T0 = any>(client: SuiJsonRpcClient, args: [], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.Coin<T0>]>>;
|
|
1106
1106
|
}
|
|
1107
1107
|
}
|
|
1108
1108
|
export declare namespace coin_registry {
|
|
@@ -1355,52 +1355,52 @@ export declare namespace coin_registry {
|
|
|
1355
1355
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
1356
1356
|
}
|
|
1357
1357
|
namespace view {
|
|
1358
|
-
function borrowLegacyMetadata<T0 = any>(client:
|
|
1359
|
-
function burn<T0 = any>(client:
|
|
1360
|
-
function burnBalance<T0 = any>(client:
|
|
1361
|
-
function claimMetadataCap<T0 = any>(client:
|
|
1362
|
-
function decimals<T0 = any>(client:
|
|
1363
|
-
function deleteMetadataCap<T0 = any>(client:
|
|
1364
|
-
function deleteMigratedLegacyMetadata<T0 = any>(client:
|
|
1365
|
-
function denyCapId<T0 = any>(client:
|
|
1366
|
-
function description<T0 = any>(client:
|
|
1367
|
-
function exists<T0 = any>(client:
|
|
1368
|
-
function finalize<T0 = any>(client:
|
|
1369
|
-
function finalizeAndDeleteMetadataCap<T0 = any>(client:
|
|
1370
|
-
function finalizeRegistration<T0 = any>(client:
|
|
1371
|
-
function iconUrl<T0 = any>(client:
|
|
1372
|
-
function isMetadataCapClaimed<T0 = any>(client:
|
|
1373
|
-
function isMetadataCapDeleted<T0 = any>(client:
|
|
1374
|
-
function isRegulated<T0 = any>(client:
|
|
1375
|
-
function isSupplyBurnOnly<T0 = any>(client:
|
|
1376
|
-
function isSupplyFixed<T0 = any>(client:
|
|
1377
|
-
function makeRegulated<T0 = any>(client:
|
|
1378
|
-
function makeSupplyBurnOnly<T0 = any>(client:
|
|
1379
|
-
function makeSupplyBurnOnlyInit<T0 = any>(client:
|
|
1380
|
-
function makeSupplyFixed<T0 = any>(client:
|
|
1381
|
-
function makeSupplyFixedInit<T0 = any>(client:
|
|
1382
|
-
function metadataCapId<T0 = any>(client:
|
|
1383
|
-
function migrateLegacyMetadata<T0 = any>(client:
|
|
1384
|
-
function migrateRegulatedStateByCap<T0 = any>(client:
|
|
1385
|
-
function migrateRegulatedStateByMetadata<T0 = any>(client:
|
|
1386
|
-
function name<T0 = any>(client:
|
|
1387
|
-
function newCurrency<T0 = any>(client:
|
|
1358
|
+
function borrowLegacyMetadata<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.CoinMetadata<T0>, coin_registry.Borrow<T0>]>>;
|
|
1359
|
+
function burn<T0 = any>(client: SuiJsonRpcClient, args: [string, coin.Coin<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1360
|
+
function burnBalance<T0 = any>(client: SuiJsonRpcClient, args: [string, balance.Balance<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1361
|
+
function claimMetadataCap<T0 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin_registry.MetadataCap<T0>]>>;
|
|
1362
|
+
function decimals<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[number]>>;
|
|
1363
|
+
function deleteMetadataCap<T0 = any>(client: SuiJsonRpcClient, args: [string, coin_registry.MetadataCap<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1364
|
+
function deleteMigratedLegacyMetadata<T0 = any>(client: SuiJsonRpcClient, args: [string, coin.CoinMetadata<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1365
|
+
function denyCapId<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[_0x1.option.Option<object$.ID>]>>;
|
|
1366
|
+
function description<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
1367
|
+
function exists<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1368
|
+
function finalize<T0 = any>(client: SuiJsonRpcClient, args: [coin_registry.CurrencyInitializer<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin_registry.MetadataCap<T0>]>>;
|
|
1369
|
+
function finalizeAndDeleteMetadataCap<T0 = any>(client: SuiJsonRpcClient, args: [coin_registry.CurrencyInitializer<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1370
|
+
function finalizeRegistration<T0 = any>(client: SuiJsonRpcClient, args: [string, transfer.Receiving<coin_registry.Currency<T0>>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1371
|
+
function iconUrl<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
1372
|
+
function isMetadataCapClaimed<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1373
|
+
function isMetadataCapDeleted<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1374
|
+
function isRegulated<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1375
|
+
function isSupplyBurnOnly<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1376
|
+
function isSupplyFixed<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1377
|
+
function makeRegulated<T0 = any>(client: SuiJsonRpcClient, args: [string, boolean], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.DenyCapV2<T0>]>>;
|
|
1378
|
+
function makeSupplyBurnOnly<T0 = any>(client: SuiJsonRpcClient, args: [string, coin.TreasuryCap<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1379
|
+
function makeSupplyBurnOnlyInit<T0 = any>(client: SuiJsonRpcClient, args: [string, coin.TreasuryCap<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1380
|
+
function makeSupplyFixed<T0 = any>(client: SuiJsonRpcClient, args: [string, coin.TreasuryCap<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1381
|
+
function makeSupplyFixedInit<T0 = any>(client: SuiJsonRpcClient, args: [string, coin.TreasuryCap<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1382
|
+
function metadataCapId<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[_0x1.option.Option<object$.ID>]>>;
|
|
1383
|
+
function migrateLegacyMetadata<T0 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1384
|
+
function migrateRegulatedStateByCap<T0 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1385
|
+
function migrateRegulatedStateByMetadata<T0 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1386
|
+
function name<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
1387
|
+
function newCurrency<T0 = any>(client: SuiJsonRpcClient, args: [string, number, string, string, string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
|
1388
1388
|
coin_registry.CurrencyInitializer<T0>,
|
|
1389
1389
|
coin.TreasuryCap<T0>
|
|
1390
1390
|
]>>;
|
|
1391
|
-
function newCurrencyWithOtw<T0 = any>(client:
|
|
1391
|
+
function newCurrencyWithOtw<T0 = any>(client: SuiJsonRpcClient, args: [T0, number, string, string, string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
|
1392
1392
|
coin_registry.CurrencyInitializer<T0>,
|
|
1393
1393
|
coin.TreasuryCap<T0>
|
|
1394
1394
|
]>>;
|
|
1395
|
-
function returnBorrowedLegacyMetadata<T0 = any>(client:
|
|
1396
|
-
function setDescription<T0 = any>(client:
|
|
1397
|
-
function setIconUrl<T0 = any>(client:
|
|
1398
|
-
function setName<T0 = any>(client:
|
|
1399
|
-
function setTreasuryCapId<T0 = any>(client:
|
|
1400
|
-
function symbol$<T0 = any>(client:
|
|
1401
|
-
function totalSupply<T0 = any>(client:
|
|
1402
|
-
function treasuryCapId<T0 = any>(client:
|
|
1403
|
-
function updateFromLegacyMetadata<T0 = any>(client:
|
|
1395
|
+
function returnBorrowedLegacyMetadata<T0 = any>(client: SuiJsonRpcClient, args: [string, coin.CoinMetadata<T0>, coin_registry.Borrow<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1396
|
+
function setDescription<T0 = any>(client: SuiJsonRpcClient, args: [string, string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1397
|
+
function setIconUrl<T0 = any>(client: SuiJsonRpcClient, args: [string, string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1398
|
+
function setName<T0 = any>(client: SuiJsonRpcClient, args: [string, string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1399
|
+
function setTreasuryCapId<T0 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1400
|
+
function symbol$<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
1401
|
+
function totalSupply<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[_0x1.option.Option<bigint>]>>;
|
|
1402
|
+
function treasuryCapId<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[_0x1.option.Option<object$.ID>]>>;
|
|
1403
|
+
function updateFromLegacyMetadata<T0 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1404
1404
|
}
|
|
1405
1405
|
}
|
|
1406
1406
|
export declare namespace config {
|
|
@@ -1493,40 +1493,40 @@ export declare namespace config {
|
|
|
1493
1493
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
1494
1494
|
}
|
|
1495
1495
|
namespace view {
|
|
1496
|
-
function addForNextEpoch<T0 = any, T1 = any, T2 = any>(client:
|
|
1496
|
+
function addForNextEpoch<T0 = any, T1 = any, T2 = any>(client: SuiJsonRpcClient, args: [string, string, T1, T2], typeArguments: [
|
|
1497
1497
|
TypeDescriptor<T0> | string,
|
|
1498
1498
|
TypeDescriptor<T1> | string,
|
|
1499
1499
|
TypeDescriptor<T2> | string
|
|
1500
1500
|
]): Promise<TypedDevInspectResults<[_0x1.option.Option<T2>]>>;
|
|
1501
|
-
function borrowForNextEpochMut<T0 = any, T1 = any, T2 = any>(client:
|
|
1501
|
+
function borrowForNextEpochMut<T0 = any, T1 = any, T2 = any>(client: SuiJsonRpcClient, args: [string, string, T1], typeArguments: [
|
|
1502
1502
|
TypeDescriptor<T0> | string,
|
|
1503
1503
|
TypeDescriptor<T1> | string,
|
|
1504
1504
|
TypeDescriptor<T2> | string
|
|
1505
1505
|
]): Promise<TypedDevInspectResults<[string]>>;
|
|
1506
|
-
function existsWithType<T0 = any, T1 = any, T2 = any>(client:
|
|
1506
|
+
function existsWithType<T0 = any, T1 = any, T2 = any>(client: SuiJsonRpcClient, args: [string, T1], typeArguments: [
|
|
1507
1507
|
TypeDescriptor<T0> | string,
|
|
1508
1508
|
TypeDescriptor<T1> | string,
|
|
1509
1509
|
TypeDescriptor<T2> | string
|
|
1510
1510
|
]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1511
|
-
function existsWithTypeForNextEpoch<T0 = any, T1 = any, T2 = any>(client:
|
|
1511
|
+
function existsWithTypeForNextEpoch<T0 = any, T1 = any, T2 = any>(client: SuiJsonRpcClient, args: [string, T1], typeArguments: [
|
|
1512
1512
|
TypeDescriptor<T0> | string,
|
|
1513
1513
|
TypeDescriptor<T1> | string,
|
|
1514
1514
|
TypeDescriptor<T2> | string
|
|
1515
1515
|
]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1516
|
-
function new$<T0 = any>(client:
|
|
1517
|
-
function readSetting<T0 = any, T1 = any>(client:
|
|
1518
|
-
function readSettingForNextEpoch<T0 = any, T1 = any, T2 = any>(client:
|
|
1516
|
+
function new$<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[config.Config<T0>]>>;
|
|
1517
|
+
function readSetting<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [object$.ID, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[_0x1.option.Option<T1>]>>;
|
|
1518
|
+
function readSettingForNextEpoch<T0 = any, T1 = any, T2 = any>(client: SuiJsonRpcClient, args: [string, T1], typeArguments: [
|
|
1519
1519
|
TypeDescriptor<T0> | string,
|
|
1520
1520
|
TypeDescriptor<T1> | string,
|
|
1521
1521
|
TypeDescriptor<T2> | string
|
|
1522
1522
|
]): Promise<TypedDevInspectResults<[_0x1.option.Option<T2>]>>;
|
|
1523
|
-
function removeForNextEpoch<T0 = any, T1 = any, T2 = any>(client:
|
|
1523
|
+
function removeForNextEpoch<T0 = any, T1 = any, T2 = any>(client: SuiJsonRpcClient, args: [string, string, T1], typeArguments: [
|
|
1524
1524
|
TypeDescriptor<T0> | string,
|
|
1525
1525
|
TypeDescriptor<T1> | string,
|
|
1526
1526
|
TypeDescriptor<T2> | string
|
|
1527
1527
|
]): Promise<TypedDevInspectResults<[_0x1.option.Option<T2>]>>;
|
|
1528
|
-
function share<T0 = any>(client:
|
|
1529
|
-
function transfer<T0 = any>(client:
|
|
1528
|
+
function share<T0 = any>(client: SuiJsonRpcClient, args: [config.Config<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1529
|
+
function transfer<T0 = any>(client: SuiJsonRpcClient, args: [config.Config<T0>, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1530
1530
|
}
|
|
1531
1531
|
}
|
|
1532
1532
|
export declare namespace deny_list {
|
|
@@ -1725,18 +1725,18 @@ export declare namespace deny_list {
|
|
|
1725
1725
|
];
|
|
1726
1726
|
}
|
|
1727
1727
|
namespace view {
|
|
1728
|
-
function migrateV1ToV2(client:
|
|
1729
|
-
function v1Add(client:
|
|
1730
|
-
function v1Contains(client:
|
|
1731
|
-
function v1Remove(client:
|
|
1732
|
-
function v2Add(client:
|
|
1733
|
-
function v2ContainsCurrentEpoch(client:
|
|
1734
|
-
function v2ContainsNextEpoch(client:
|
|
1735
|
-
function v2DisableGlobalPause(client:
|
|
1736
|
-
function v2EnableGlobalPause(client:
|
|
1737
|
-
function v2IsGlobalPauseEnabledCurrentEpoch(client:
|
|
1738
|
-
function v2IsGlobalPauseEnabledNextEpoch(client:
|
|
1739
|
-
function v2Remove(client:
|
|
1728
|
+
function migrateV1ToV2(client: SuiJsonRpcClient, args: [string, bigint, string[]]): Promise<TypedDevInspectResults<[]>>;
|
|
1729
|
+
function v1Add(client: SuiJsonRpcClient, args: [string, bigint, string[], string]): Promise<TypedDevInspectResults<[]>>;
|
|
1730
|
+
function v1Contains(client: SuiJsonRpcClient, args: [string, bigint, string[], string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1731
|
+
function v1Remove(client: SuiJsonRpcClient, args: [string, bigint, string[], string]): Promise<TypedDevInspectResults<[]>>;
|
|
1732
|
+
function v2Add(client: SuiJsonRpcClient, args: [string, bigint, string[], string]): Promise<TypedDevInspectResults<[]>>;
|
|
1733
|
+
function v2ContainsCurrentEpoch(client: SuiJsonRpcClient, args: [string, bigint, string[], string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1734
|
+
function v2ContainsNextEpoch(client: SuiJsonRpcClient, args: [string, bigint, string[], string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1735
|
+
function v2DisableGlobalPause(client: SuiJsonRpcClient, args: [string, bigint, string[]]): Promise<TypedDevInspectResults<[]>>;
|
|
1736
|
+
function v2EnableGlobalPause(client: SuiJsonRpcClient, args: [string, bigint, string[]]): Promise<TypedDevInspectResults<[]>>;
|
|
1737
|
+
function v2IsGlobalPauseEnabledCurrentEpoch(client: SuiJsonRpcClient, args: [string, bigint, string[]]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1738
|
+
function v2IsGlobalPauseEnabledNextEpoch(client: SuiJsonRpcClient, args: [string, bigint, string[]]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1739
|
+
function v2Remove(client: SuiJsonRpcClient, args: [string, bigint, string[], string]): Promise<TypedDevInspectResults<[]>>;
|
|
1740
1740
|
}
|
|
1741
1741
|
}
|
|
1742
1742
|
export declare namespace derived_object {
|
|
@@ -1776,9 +1776,9 @@ export declare namespace derived_object {
|
|
|
1776
1776
|
function exists<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument, T0 | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
1777
1777
|
}
|
|
1778
1778
|
namespace view {
|
|
1779
|
-
function claim<T0 = any>(client:
|
|
1780
|
-
function deriveAddress<T0 = any>(client:
|
|
1781
|
-
function exists<T0 = any>(client:
|
|
1779
|
+
function claim<T0 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[object$.UID]>>;
|
|
1780
|
+
function deriveAddress<T0 = any>(client: SuiJsonRpcClient, args: [object$.ID, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
1781
|
+
function exists<T0 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1782
1782
|
}
|
|
1783
1783
|
}
|
|
1784
1784
|
export declare namespace display {
|
|
@@ -1861,17 +1861,17 @@ export declare namespace display {
|
|
|
1861
1861
|
function version<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
1862
1862
|
}
|
|
1863
1863
|
namespace view {
|
|
1864
|
-
function add<T0 = any>(client:
|
|
1865
|
-
function addMultiple<T0 = any>(client:
|
|
1866
|
-
function createAndKeep<T0 = any>(client:
|
|
1867
|
-
function edit<T0 = any>(client:
|
|
1868
|
-
function fields<T0 = any>(client:
|
|
1869
|
-
function isAuthorized<T0 = any>(client:
|
|
1870
|
-
function new$<T0 = any>(client:
|
|
1871
|
-
function newWithFields<T0 = any>(client:
|
|
1872
|
-
function remove<T0 = any>(client:
|
|
1873
|
-
function updateVersion<T0 = any>(client:
|
|
1874
|
-
function version<T0 = any>(client:
|
|
1864
|
+
function add<T0 = any>(client: SuiJsonRpcClient, args: [string, string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1865
|
+
function addMultiple<T0 = any>(client: SuiJsonRpcClient, args: [string, string[], string[]], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1866
|
+
function createAndKeep<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1867
|
+
function edit<T0 = any>(client: SuiJsonRpcClient, args: [string, string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1868
|
+
function fields<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
1869
|
+
function isAuthorized<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1870
|
+
function new$<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[display.Display<T0>]>>;
|
|
1871
|
+
function newWithFields<T0 = any>(client: SuiJsonRpcClient, args: [string, string[], string[]], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[display.Display<T0>]>>;
|
|
1872
|
+
function remove<T0 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1873
|
+
function updateVersion<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1874
|
+
function version<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[number]>>;
|
|
1875
1875
|
}
|
|
1876
1876
|
}
|
|
1877
1877
|
export declare namespace dynamic_field {
|
|
@@ -1911,22 +1911,22 @@ export declare namespace dynamic_field {
|
|
|
1911
1911
|
function removeIfExists<T0 = any, T1 = any>(tx: Transaction, args: [string | TransactionObjectArgument, T0 | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
1912
1912
|
}
|
|
1913
1913
|
namespace view {
|
|
1914
|
-
function add<T0 = any, T1 = any>(client:
|
|
1915
|
-
function addChildObject<T0 = any>(client:
|
|
1916
|
-
function borrow<T0 = any, T1 = any>(client:
|
|
1917
|
-
function borrowChildObject<T0 = any>(client:
|
|
1918
|
-
function borrowChildObjectMut<T0 = any>(client:
|
|
1919
|
-
function borrowMut<T0 = any, T1 = any>(client:
|
|
1920
|
-
function exists_<T0 = any>(client:
|
|
1921
|
-
function existsWithType<T0 = any, T1 = any>(client:
|
|
1922
|
-
function fieldInfo<T0 = any>(client:
|
|
1923
|
-
function fieldInfoMut<T0 = any>(client:
|
|
1924
|
-
function hasChildObject(client:
|
|
1925
|
-
function hasChildObjectWithTy<T0 = any>(client:
|
|
1926
|
-
function hashTypeAndKey<T0 = any>(client:
|
|
1927
|
-
function remove<T0 = any, T1 = any>(client:
|
|
1928
|
-
function removeChildObject<T0 = any>(client:
|
|
1929
|
-
function removeIfExists<T0 = any, T1 = any>(client:
|
|
1914
|
+
function add<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0, T1], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1915
|
+
function addChildObject<T0 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1916
|
+
function borrow<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
1917
|
+
function borrowChildObject<T0 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
1918
|
+
function borrowChildObjectMut<T0 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
1919
|
+
function borrowMut<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
1920
|
+
function exists_<T0 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1921
|
+
function existsWithType<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1922
|
+
function fieldInfo<T0 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string, string]>>;
|
|
1923
|
+
function fieldInfoMut<T0 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string, string]>>;
|
|
1924
|
+
function hasChildObject(client: SuiJsonRpcClient, args: [string, string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1925
|
+
function hasChildObjectWithTy<T0 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1926
|
+
function hashTypeAndKey<T0 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
1927
|
+
function remove<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T1]>>;
|
|
1928
|
+
function removeChildObject<T0 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[T0]>>;
|
|
1929
|
+
function removeIfExists<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[_0x1.option.Option<T1>]>>;
|
|
1930
1930
|
}
|
|
1931
1931
|
}
|
|
1932
1932
|
export declare namespace dynamic_object_field {
|
|
@@ -1972,18 +1972,18 @@ export declare namespace dynamic_object_field {
|
|
|
1972
1972
|
function remove<T0 = any, T1 = any>(tx: Transaction, args: [string | TransactionObjectArgument, T0 | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
1973
1973
|
}
|
|
1974
1974
|
namespace view {
|
|
1975
|
-
function add<T0 = any, T1 = any>(client:
|
|
1976
|
-
function borrow<T0 = any, T1 = any>(client:
|
|
1977
|
-
function borrowMut<T0 = any, T1 = any>(client:
|
|
1978
|
-
function exists_<T0 = any>(client:
|
|
1979
|
-
function existsWithType<T0 = any, T1 = any>(client:
|
|
1980
|
-
function id<T0 = any>(client:
|
|
1981
|
-
function internalAdd<T0 = any, T1 = any>(client:
|
|
1982
|
-
function internalBorrow<T0 = any, T1 = any>(client:
|
|
1983
|
-
function internalBorrowMut<T0 = any, T1 = any>(client:
|
|
1984
|
-
function internalExistsWithType<T0 = any, T1 = any>(client:
|
|
1985
|
-
function internalRemove<T0 = any, T1 = any>(client:
|
|
1986
|
-
function remove<T0 = any, T1 = any>(client:
|
|
1975
|
+
function add<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0, T1], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1976
|
+
function borrow<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
1977
|
+
function borrowMut<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
1978
|
+
function exists_<T0 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1979
|
+
function existsWithType<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1980
|
+
function id<T0 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[_0x1.option.Option<object$.ID>]>>;
|
|
1981
|
+
function internalAdd<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0, T1], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1982
|
+
function internalBorrow<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
1983
|
+
function internalBorrowMut<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
1984
|
+
function internalExistsWithType<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1985
|
+
function internalRemove<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T1]>>;
|
|
1986
|
+
function remove<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T1]>>;
|
|
1987
1987
|
}
|
|
1988
1988
|
}
|
|
1989
1989
|
export declare namespace ecdsa_k1 {
|
|
@@ -2011,9 +2011,9 @@ export declare namespace ecdsa_k1 {
|
|
|
2011
2011
|
];
|
|
2012
2012
|
}
|
|
2013
2013
|
namespace view {
|
|
2014
|
-
function decompressPubkey(client:
|
|
2015
|
-
function secp256k1Ecrecover(client:
|
|
2016
|
-
function secp256k1Verify(client:
|
|
2014
|
+
function decompressPubkey(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[number[]]>>;
|
|
2015
|
+
function secp256k1Ecrecover(client: SuiJsonRpcClient, args: [string, string, number]): Promise<TypedDevInspectResults<[number[]]>>;
|
|
2016
|
+
function secp256k1Verify(client: SuiJsonRpcClient, args: [string, string, string, number]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
2017
2017
|
}
|
|
2018
2018
|
}
|
|
2019
2019
|
export declare namespace ecdsa_r1 {
|
|
@@ -2040,8 +2040,8 @@ export declare namespace ecdsa_r1 {
|
|
|
2040
2040
|
];
|
|
2041
2041
|
}
|
|
2042
2042
|
namespace view {
|
|
2043
|
-
function secp256r1Ecrecover(client:
|
|
2044
|
-
function secp256r1Verify(client:
|
|
2043
|
+
function secp256r1Ecrecover(client: SuiJsonRpcClient, args: [string, string, number]): Promise<TypedDevInspectResults<[number[]]>>;
|
|
2044
|
+
function secp256r1Verify(client: SuiJsonRpcClient, args: [string, string, string, number]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
2045
2045
|
}
|
|
2046
2046
|
}
|
|
2047
2047
|
export declare namespace ecvrf {
|
|
@@ -2059,7 +2059,7 @@ export declare namespace ecvrf {
|
|
|
2059
2059
|
];
|
|
2060
2060
|
}
|
|
2061
2061
|
namespace view {
|
|
2062
|
-
function ecvrfVerify(client:
|
|
2062
|
+
function ecvrfVerify(client: SuiJsonRpcClient, args: [string, string, string, string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
2063
2063
|
}
|
|
2064
2064
|
}
|
|
2065
2065
|
export declare namespace ed25519 {
|
|
@@ -2075,7 +2075,7 @@ export declare namespace ed25519 {
|
|
|
2075
2075
|
];
|
|
2076
2076
|
}
|
|
2077
2077
|
namespace view {
|
|
2078
|
-
function ed25519Verify(client:
|
|
2078
|
+
function ed25519Verify(client: SuiJsonRpcClient, args: [string, string, string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
2079
2079
|
}
|
|
2080
2080
|
}
|
|
2081
2081
|
export declare namespace event {
|
|
@@ -2084,8 +2084,8 @@ export declare namespace event {
|
|
|
2084
2084
|
function emitAuthenticated<T0 = any>(tx: Transaction, args: [T0 | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
2085
2085
|
}
|
|
2086
2086
|
namespace view {
|
|
2087
|
-
function emit<T0 = any>(client:
|
|
2088
|
-
function emitAuthenticated<T0 = any>(client:
|
|
2087
|
+
function emit<T0 = any>(client: SuiJsonRpcClient, args: [T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2088
|
+
function emitAuthenticated<T0 = any>(client: SuiJsonRpcClient, args: [T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2089
2089
|
}
|
|
2090
2090
|
}
|
|
2091
2091
|
export declare namespace funds_accumulator {
|
|
@@ -2114,14 +2114,14 @@ export declare namespace funds_accumulator {
|
|
|
2114
2114
|
function withdrawalSplit<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument, bigint | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
2115
2115
|
}
|
|
2116
2116
|
namespace view {
|
|
2117
|
-
function addImpl<T0 = any>(client:
|
|
2118
|
-
function createWithdrawal<T0 = any>(client:
|
|
2119
|
-
function redeem<T0 = any>(client:
|
|
2120
|
-
function withdrawFromObject<T0 = any>(client:
|
|
2121
|
-
function withdrawalJoin<T0 = any>(client:
|
|
2122
|
-
function withdrawalLimit<T0 = any>(client:
|
|
2123
|
-
function withdrawalOwner<T0 = any>(client:
|
|
2124
|
-
function withdrawalSplit<T0 = any>(client:
|
|
2117
|
+
function addImpl<T0 = any>(client: SuiJsonRpcClient, args: [T0, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2118
|
+
function createWithdrawal<T0 = any>(client: SuiJsonRpcClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[funds_accumulator.Withdrawal<T0>]>>;
|
|
2119
|
+
function redeem<T0 = any>(client: SuiJsonRpcClient, args: [funds_accumulator.Withdrawal<T0>, _0x1.internal.Permit<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[T0]>>;
|
|
2120
|
+
function withdrawFromObject<T0 = any>(client: SuiJsonRpcClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[funds_accumulator.Withdrawal<T0>]>>;
|
|
2121
|
+
function withdrawalJoin<T0 = any>(client: SuiJsonRpcClient, args: [string, funds_accumulator.Withdrawal<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2122
|
+
function withdrawalLimit<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
2123
|
+
function withdrawalOwner<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
2124
|
+
function withdrawalSplit<T0 = any>(client: SuiJsonRpcClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[funds_accumulator.Withdrawal<T0>]>>;
|
|
2125
2125
|
}
|
|
2126
2126
|
}
|
|
2127
2127
|
export declare namespace groth16 {
|
|
@@ -2206,14 +2206,14 @@ export declare namespace groth16 {
|
|
|
2206
2206
|
];
|
|
2207
2207
|
}
|
|
2208
2208
|
namespace view {
|
|
2209
|
-
function bls12381(client:
|
|
2210
|
-
function bn254(client:
|
|
2211
|
-
function prepareVerifyingKey(client:
|
|
2212
|
-
function proofPointsFromBytes(client:
|
|
2213
|
-
function publicProofInputsFromBytes(client:
|
|
2214
|
-
function pvkFromBytes(client:
|
|
2215
|
-
function pvkToBytes(client:
|
|
2216
|
-
function verifyGroth16Proof(client:
|
|
2209
|
+
function bls12381(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[groth16.Curve]>>;
|
|
2210
|
+
function bn254(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[groth16.Curve]>>;
|
|
2211
|
+
function prepareVerifyingKey(client: SuiJsonRpcClient, args: [string, string]): Promise<TypedDevInspectResults<[groth16.PreparedVerifyingKey]>>;
|
|
2212
|
+
function proofPointsFromBytes(client: SuiJsonRpcClient, args: [string[]]): Promise<TypedDevInspectResults<[groth16.ProofPoints]>>;
|
|
2213
|
+
function publicProofInputsFromBytes(client: SuiJsonRpcClient, args: [string[]]): Promise<TypedDevInspectResults<[groth16.PublicProofInputs]>>;
|
|
2214
|
+
function pvkFromBytes(client: SuiJsonRpcClient, args: [string[], string[], string[], string[]]): Promise<TypedDevInspectResults<[groth16.PreparedVerifyingKey]>>;
|
|
2215
|
+
function pvkToBytes(client: SuiJsonRpcClient, args: [groth16.PreparedVerifyingKey]): Promise<TypedDevInspectResults<[number[][]]>>;
|
|
2216
|
+
function verifyGroth16Proof(client: SuiJsonRpcClient, args: [string, string, string, string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
2217
2217
|
}
|
|
2218
2218
|
}
|
|
2219
2219
|
export declare namespace group_ops {
|
|
@@ -2323,23 +2323,23 @@ export declare namespace group_ops {
|
|
|
2323
2323
|
function sum<T0 = any>(tx: Transaction, args: [number | TransactionArgument, string | TransactionObjectArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
2324
2324
|
}
|
|
2325
2325
|
namespace view {
|
|
2326
|
-
function add<T0 = any>(client:
|
|
2327
|
-
function bytes<T0 = any>(client:
|
|
2328
|
-
function convert<T0 = any, T1 = any>(client:
|
|
2329
|
-
function div<T0 = any, T1 = any>(client:
|
|
2330
|
-
function equal<T0 = any>(client:
|
|
2331
|
-
function fromBytes<T0 = any>(client:
|
|
2332
|
-
function hashTo<T0 = any>(client:
|
|
2333
|
-
function mul<T0 = any, T1 = any>(client:
|
|
2334
|
-
function multiScalarMultiplication<T0 = any, T1 = any>(client:
|
|
2335
|
-
function pairing<T0 = any, T1 = any, T2 = any>(client:
|
|
2326
|
+
function add<T0 = any>(client: SuiJsonRpcClient, args: [number, string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[group_ops.Element<T0>]>>;
|
|
2327
|
+
function bytes<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
2328
|
+
function convert<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [number, number, string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[group_ops.Element<T1>]>>;
|
|
2329
|
+
function div<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [number, string, string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[group_ops.Element<T1>]>>;
|
|
2330
|
+
function equal<T0 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
2331
|
+
function fromBytes<T0 = any>(client: SuiJsonRpcClient, args: [number, string[], boolean], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[group_ops.Element<T0>]>>;
|
|
2332
|
+
function hashTo<T0 = any>(client: SuiJsonRpcClient, args: [number, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[group_ops.Element<T0>]>>;
|
|
2333
|
+
function mul<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [number, string, string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[group_ops.Element<T1>]>>;
|
|
2334
|
+
function multiScalarMultiplication<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [number, string, string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[group_ops.Element<T1>]>>;
|
|
2335
|
+
function pairing<T0 = any, T1 = any, T2 = any>(client: SuiJsonRpcClient, args: [number, string, string], typeArguments: [
|
|
2336
2336
|
TypeDescriptor<T0> | string,
|
|
2337
2337
|
TypeDescriptor<T1> | string,
|
|
2338
2338
|
TypeDescriptor<T2> | string
|
|
2339
2339
|
]): Promise<TypedDevInspectResults<[group_ops.Element<T2>]>>;
|
|
2340
|
-
function setAsPrefix(client:
|
|
2341
|
-
function sub<T0 = any>(client:
|
|
2342
|
-
function sum<T0 = any>(client:
|
|
2340
|
+
function setAsPrefix(client: SuiJsonRpcClient, args: [bigint, boolean, string]): Promise<TypedDevInspectResults<[]>>;
|
|
2341
|
+
function sub<T0 = any>(client: SuiJsonRpcClient, args: [number, string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[group_ops.Element<T0>]>>;
|
|
2342
|
+
function sum<T0 = any>(client: SuiJsonRpcClient, args: [number, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[group_ops.Element<T0>]>>;
|
|
2343
2343
|
}
|
|
2344
2344
|
}
|
|
2345
2345
|
export declare namespace hash {
|
|
@@ -2348,8 +2348,8 @@ export declare namespace hash {
|
|
|
2348
2348
|
function keccak256(tx: Transaction, args: [string | TransactionObjectArgument]): TransactionArgument & [TransactionArgument];
|
|
2349
2349
|
}
|
|
2350
2350
|
namespace view {
|
|
2351
|
-
function blake2b256(client:
|
|
2352
|
-
function keccak256(client:
|
|
2351
|
+
function blake2b256(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[number[]]>>;
|
|
2352
|
+
function keccak256(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[number[]]>>;
|
|
2353
2353
|
}
|
|
2354
2354
|
}
|
|
2355
2355
|
export declare namespace hex {
|
|
@@ -2358,8 +2358,8 @@ export declare namespace hex {
|
|
|
2358
2358
|
function encode(tx: Transaction, args: [(string | TransactionObjectArgument)[] | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
|
2359
2359
|
}
|
|
2360
2360
|
namespace view {
|
|
2361
|
-
function decode(client:
|
|
2362
|
-
function encode(client:
|
|
2361
|
+
function decode(client: SuiJsonRpcClient, args: [string[]]): Promise<TypedDevInspectResults<[number[]]>>;
|
|
2362
|
+
function encode(client: SuiJsonRpcClient, args: [string[]]): Promise<TypedDevInspectResults<[number[]]>>;
|
|
2363
2363
|
}
|
|
2364
2364
|
}
|
|
2365
2365
|
export declare namespace hmac {
|
|
@@ -2370,7 +2370,7 @@ export declare namespace hmac {
|
|
|
2370
2370
|
]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
2371
2371
|
}
|
|
2372
2372
|
namespace view {
|
|
2373
|
-
function hmacSha3256(client:
|
|
2373
|
+
function hmacSha3256(client: SuiJsonRpcClient, args: [string, string]): Promise<TypedDevInspectResults<[number[]]>>;
|
|
2374
2374
|
}
|
|
2375
2375
|
}
|
|
2376
2376
|
export declare namespace kiosk {
|
|
@@ -2696,46 +2696,46 @@ export declare namespace kiosk {
|
|
|
2696
2696
|
];
|
|
2697
2697
|
}
|
|
2698
2698
|
namespace view {
|
|
2699
|
-
function borrow<T0 = any>(client:
|
|
2700
|
-
function borrowMut<T0 = any>(client:
|
|
2701
|
-
function borrowVal<T0 = any>(client:
|
|
2702
|
-
function closeAndWithdraw(client:
|
|
2703
|
-
function delist<T0 = any>(client:
|
|
2704
|
-
function hasAccess(client:
|
|
2705
|
-
function hasItem(client:
|
|
2706
|
-
function hasItemWithType<T0 = any>(client:
|
|
2707
|
-
function isListed(client:
|
|
2708
|
-
function isListedExclusively(client:
|
|
2709
|
-
function isLocked(client:
|
|
2710
|
-
function itemCount(client:
|
|
2711
|
-
function kioskOwnerCapFor(client:
|
|
2712
|
-
function list<T0 = any>(client:
|
|
2713
|
-
function listWithPurchaseCap<T0 = any>(client:
|
|
2714
|
-
function lock<T0 = any>(client:
|
|
2715
|
-
function lockInternal<T0 = any>(client:
|
|
2716
|
-
function new$(client:
|
|
2717
|
-
function owner(client:
|
|
2718
|
-
function place<T0 = any>(client:
|
|
2719
|
-
function placeAndList<T0 = any>(client:
|
|
2720
|
-
function placeInternal<T0 = any>(client:
|
|
2721
|
-
function profitsAmount(client:
|
|
2722
|
-
function profitsMut(client:
|
|
2723
|
-
function purchase<T0 = any>(client:
|
|
2724
|
-
function purchaseCapItem<T0 = any>(client:
|
|
2725
|
-
function purchaseCapKiosk<T0 = any>(client:
|
|
2726
|
-
function purchaseCapMinPrice<T0 = any>(client:
|
|
2727
|
-
function purchaseWithCap<T0 = any>(client:
|
|
2728
|
-
function returnPurchaseCap<T0 = any>(client:
|
|
2729
|
-
function returnVal<T0 = any>(client:
|
|
2730
|
-
function setAllowExtensions(client:
|
|
2731
|
-
function setOwner(client:
|
|
2732
|
-
function setOwnerCustom(client:
|
|
2733
|
-
function take<T0 = any>(client:
|
|
2734
|
-
function uid(client:
|
|
2735
|
-
function uidMut(client:
|
|
2736
|
-
function uidMutAsOwner(client:
|
|
2737
|
-
function uidMutInternal(client:
|
|
2738
|
-
function withdraw(client:
|
|
2699
|
+
function borrow<T0 = any>(client: SuiJsonRpcClient, args: [string, string, object$.ID], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
2700
|
+
function borrowMut<T0 = any>(client: SuiJsonRpcClient, args: [string, string, object$.ID], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
2701
|
+
function borrowVal<T0 = any>(client: SuiJsonRpcClient, args: [string, string, object$.ID], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[T0, kiosk.Borrow]>>;
|
|
2702
|
+
function closeAndWithdraw(client: SuiJsonRpcClient, args: [kiosk.Kiosk, kiosk.KioskOwnerCap]): Promise<TypedDevInspectResults<[coin.Coin<sui.SUI>]>>;
|
|
2703
|
+
function delist<T0 = any>(client: SuiJsonRpcClient, args: [string, string, object$.ID], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2704
|
+
function hasAccess(client: SuiJsonRpcClient, args: [string, string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
2705
|
+
function hasItem(client: SuiJsonRpcClient, args: [string, object$.ID]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
2706
|
+
function hasItemWithType<T0 = any>(client: SuiJsonRpcClient, args: [string, object$.ID], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
2707
|
+
function isListed(client: SuiJsonRpcClient, args: [string, object$.ID]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
2708
|
+
function isListedExclusively(client: SuiJsonRpcClient, args: [string, object$.ID]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
2709
|
+
function isLocked(client: SuiJsonRpcClient, args: [string, object$.ID]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
2710
|
+
function itemCount(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[number]>>;
|
|
2711
|
+
function kioskOwnerCapFor(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[object$.ID]>>;
|
|
2712
|
+
function list<T0 = any>(client: SuiJsonRpcClient, args: [string, string, object$.ID, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2713
|
+
function listWithPurchaseCap<T0 = any>(client: SuiJsonRpcClient, args: [string, string, object$.ID, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[kiosk.PurchaseCap<T0>]>>;
|
|
2714
|
+
function lock<T0 = any>(client: SuiJsonRpcClient, args: [string, string, string, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2715
|
+
function lockInternal<T0 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2716
|
+
function new$(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[kiosk.Kiosk, kiosk.KioskOwnerCap]>>;
|
|
2717
|
+
function owner(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
|
2718
|
+
function place<T0 = any>(client: SuiJsonRpcClient, args: [string, string, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2719
|
+
function placeAndList<T0 = any>(client: SuiJsonRpcClient, args: [string, string, T0, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2720
|
+
function placeInternal<T0 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2721
|
+
function profitsAmount(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
2722
|
+
function profitsMut(client: SuiJsonRpcClient, args: [string, string]): Promise<TypedDevInspectResults<[string]>>;
|
|
2723
|
+
function purchase<T0 = any>(client: SuiJsonRpcClient, args: [string, object$.ID, coin.Coin<sui.SUI>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[T0, transfer_policy.TransferRequest<T0>]>>;
|
|
2724
|
+
function purchaseCapItem<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[object$.ID]>>;
|
|
2725
|
+
function purchaseCapKiosk<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[object$.ID]>>;
|
|
2726
|
+
function purchaseCapMinPrice<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
2727
|
+
function purchaseWithCap<T0 = any>(client: SuiJsonRpcClient, args: [string, kiosk.PurchaseCap<T0>, coin.Coin<sui.SUI>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[T0, transfer_policy.TransferRequest<T0>]>>;
|
|
2728
|
+
function returnPurchaseCap<T0 = any>(client: SuiJsonRpcClient, args: [string, kiosk.PurchaseCap<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2729
|
+
function returnVal<T0 = any>(client: SuiJsonRpcClient, args: [string, T0, kiosk.Borrow], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2730
|
+
function setAllowExtensions(client: SuiJsonRpcClient, args: [string, string, boolean]): Promise<TypedDevInspectResults<[]>>;
|
|
2731
|
+
function setOwner(client: SuiJsonRpcClient, args: [string, string]): Promise<TypedDevInspectResults<[]>>;
|
|
2732
|
+
function setOwnerCustom(client: SuiJsonRpcClient, args: [string, string, string]): Promise<TypedDevInspectResults<[]>>;
|
|
2733
|
+
function take<T0 = any>(client: SuiJsonRpcClient, args: [string, string, object$.ID], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[T0]>>;
|
|
2734
|
+
function uid(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
|
2735
|
+
function uidMut(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
|
2736
|
+
function uidMutAsOwner(client: SuiJsonRpcClient, args: [string, string]): Promise<TypedDevInspectResults<[string]>>;
|
|
2737
|
+
function uidMutInternal(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
|
2738
|
+
function withdraw(client: SuiJsonRpcClient, args: [string, string, _0x1.option.Option<bigint>]): Promise<TypedDevInspectResults<[coin.Coin<sui.SUI>]>>;
|
|
2739
2739
|
}
|
|
2740
2740
|
}
|
|
2741
2741
|
export declare namespace kiosk_extension {
|
|
@@ -2813,18 +2813,18 @@ export declare namespace kiosk_extension {
|
|
|
2813
2813
|
function storageMut<T0 = any>(tx: Transaction, args: [T0 | TransactionArgument, string | TransactionObjectArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
2814
2814
|
}
|
|
2815
2815
|
namespace view {
|
|
2816
|
-
function add<T0 = any>(client:
|
|
2817
|
-
function canLock<T0 = any>(client:
|
|
2818
|
-
function canPlace<T0 = any>(client:
|
|
2819
|
-
function disable<T0 = any>(client:
|
|
2820
|
-
function enable<T0 = any>(client:
|
|
2821
|
-
function isEnabled<T0 = any>(client:
|
|
2822
|
-
function isInstalled<T0 = any>(client:
|
|
2823
|
-
function lock<T0 = any, T1 = any>(client:
|
|
2824
|
-
function place<T0 = any, T1 = any>(client:
|
|
2825
|
-
function remove<T0 = any>(client:
|
|
2826
|
-
function storage<T0 = any>(client:
|
|
2827
|
-
function storageMut<T0 = any>(client:
|
|
2816
|
+
function add<T0 = any>(client: SuiJsonRpcClient, args: [T0, string, string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2817
|
+
function canLock<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
2818
|
+
function canPlace<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
2819
|
+
function disable<T0 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2820
|
+
function enable<T0 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2821
|
+
function isEnabled<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
2822
|
+
function isInstalled<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
2823
|
+
function lock<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [T0, string, T1, string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2824
|
+
function place<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [T0, string, T1, string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2825
|
+
function remove<T0 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2826
|
+
function storage<T0 = any>(client: SuiJsonRpcClient, args: [T0, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
2827
|
+
function storageMut<T0 = any>(client: SuiJsonRpcClient, args: [T0, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
2828
2828
|
}
|
|
2829
2829
|
}
|
|
2830
2830
|
export declare namespace linked_table {
|
|
@@ -2883,23 +2883,23 @@ export declare namespace linked_table {
|
|
|
2883
2883
|
function remove<T0 = any, T1 = any>(tx: Transaction, args: [string | TransactionObjectArgument, T0 | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
2884
2884
|
}
|
|
2885
2885
|
namespace view {
|
|
2886
|
-
function back<T0 = any, T1 = any>(client:
|
|
2887
|
-
function borrow<T0 = any, T1 = any>(client:
|
|
2888
|
-
function borrowMut<T0 = any, T1 = any>(client:
|
|
2889
|
-
function contains<T0 = any, T1 = any>(client:
|
|
2890
|
-
function destroyEmpty<T0 = any, T1 = any>(client:
|
|
2891
|
-
function drop<T0 = any, T1 = any>(client:
|
|
2892
|
-
function front<T0 = any, T1 = any>(client:
|
|
2893
|
-
function isEmpty<T0 = any, T1 = any>(client:
|
|
2894
|
-
function length<T0 = any, T1 = any>(client:
|
|
2895
|
-
function new$<T0 = any, T1 = any>(client:
|
|
2896
|
-
function next<T0 = any, T1 = any>(client:
|
|
2897
|
-
function popBack<T0 = any, T1 = any>(client:
|
|
2898
|
-
function popFront<T0 = any, T1 = any>(client:
|
|
2899
|
-
function prev<T0 = any, T1 = any>(client:
|
|
2900
|
-
function pushBack<T0 = any, T1 = any>(client:
|
|
2901
|
-
function pushFront<T0 = any, T1 = any>(client:
|
|
2902
|
-
function remove<T0 = any, T1 = any>(client:
|
|
2886
|
+
function back<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
2887
|
+
function borrow<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
2888
|
+
function borrowMut<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
2889
|
+
function contains<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
2890
|
+
function destroyEmpty<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [linked_table.LinkedTable<T0, T1>], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2891
|
+
function drop<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [linked_table.LinkedTable<T0, T1>], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2892
|
+
function front<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
2893
|
+
function isEmpty<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
2894
|
+
function length<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
2895
|
+
function new$<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[linked_table.LinkedTable<T0, T1>]>>;
|
|
2896
|
+
function next<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
2897
|
+
function popBack<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T0, T1]>>;
|
|
2898
|
+
function popFront<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T0, T1]>>;
|
|
2899
|
+
function prev<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
2900
|
+
function pushBack<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0, T1], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2901
|
+
function pushFront<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0, T1], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2902
|
+
function remove<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T1]>>;
|
|
2903
2903
|
}
|
|
2904
2904
|
}
|
|
2905
2905
|
export declare namespace math {
|
|
@@ -2913,13 +2913,13 @@ export declare namespace math {
|
|
|
2913
2913
|
function sqrtU128(tx: Transaction, args: [bigint | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
|
2914
2914
|
}
|
|
2915
2915
|
namespace view {
|
|
2916
|
-
function diff(client:
|
|
2917
|
-
function divideAndRoundUp(client:
|
|
2918
|
-
function max(client:
|
|
2919
|
-
function min(client:
|
|
2920
|
-
function pow(client:
|
|
2921
|
-
function sqrt(client:
|
|
2922
|
-
function sqrtU128(client:
|
|
2916
|
+
function diff(client: SuiJsonRpcClient, args: [bigint, bigint]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
2917
|
+
function divideAndRoundUp(client: SuiJsonRpcClient, args: [bigint, bigint]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
2918
|
+
function max(client: SuiJsonRpcClient, args: [bigint, bigint]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
2919
|
+
function min(client: SuiJsonRpcClient, args: [bigint, bigint]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
2920
|
+
function pow(client: SuiJsonRpcClient, args: [bigint, number]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
2921
|
+
function sqrt(client: SuiJsonRpcClient, args: [bigint]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
2922
|
+
function sqrtU128(client: SuiJsonRpcClient, args: [bigint]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
2923
2923
|
}
|
|
2924
2924
|
}
|
|
2925
2925
|
export declare namespace nitro_attestation {
|
|
@@ -2960,15 +2960,15 @@ export declare namespace nitro_attestation {
|
|
|
2960
2960
|
function value(tx: Transaction, args: [string | TransactionObjectArgument]): TransactionArgument & [TransactionArgument];
|
|
2961
2961
|
}
|
|
2962
2962
|
namespace view {
|
|
2963
|
-
function digest(client:
|
|
2964
|
-
function index(client:
|
|
2965
|
-
function moduleId(client:
|
|
2966
|
-
function nonce(client:
|
|
2967
|
-
function pcrs(client:
|
|
2968
|
-
function publicKey(client:
|
|
2969
|
-
function timestamp(client:
|
|
2970
|
-
function userData(client:
|
|
2971
|
-
function value(client:
|
|
2963
|
+
function digest(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
|
2964
|
+
function index(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[number]>>;
|
|
2965
|
+
function moduleId(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
|
2966
|
+
function nonce(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
|
2967
|
+
function pcrs(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
|
2968
|
+
function publicKey(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
|
2969
|
+
function timestamp(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
|
2970
|
+
function userData(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
|
2971
|
+
function value(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
|
2972
2972
|
}
|
|
2973
2973
|
}
|
|
2974
2974
|
export declare namespace object$ {
|
|
@@ -3011,30 +3011,30 @@ export declare namespace object$ {
|
|
|
3011
3011
|
function uidToInner(tx: Transaction, args: [string | TransactionObjectArgument]): TransactionArgument & [TransactionArgument];
|
|
3012
3012
|
}
|
|
3013
3013
|
namespace view {
|
|
3014
|
-
function addressAliasState(client:
|
|
3015
|
-
function authenticatorState(client:
|
|
3016
|
-
function borrowId<T0 = any>(client:
|
|
3017
|
-
function clock(client:
|
|
3018
|
-
function delete$(client:
|
|
3019
|
-
function id<T0 = any>(client:
|
|
3020
|
-
function idAddress<T0 = any>(client:
|
|
3021
|
-
function idBytes<T0 = any>(client:
|
|
3022
|
-
function idFromAddress(client:
|
|
3023
|
-
function idFromBytes(client:
|
|
3024
|
-
function idToAddress(client:
|
|
3025
|
-
function idToBytes(client:
|
|
3026
|
-
function new$(client:
|
|
3027
|
-
function newUidFromHash(client:
|
|
3028
|
-
function randomnessState(client:
|
|
3029
|
-
function suiAccumulatorRootAddress(client:
|
|
3030
|
-
function suiAccumulatorRootObjectId(client:
|
|
3031
|
-
function suiCoinRegistryAddress(client:
|
|
3032
|
-
function suiCoinRegistryObjectId(client:
|
|
3033
|
-
function suiDenyListObjectId(client:
|
|
3034
|
-
function uidAsInner(client:
|
|
3035
|
-
function uidToAddress(client:
|
|
3036
|
-
function uidToBytes(client:
|
|
3037
|
-
function uidToInner(client:
|
|
3014
|
+
function addressAliasState(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[object$.UID]>>;
|
|
3015
|
+
function authenticatorState(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[object$.UID]>>;
|
|
3016
|
+
function borrowId<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
3017
|
+
function clock(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[object$.UID]>>;
|
|
3018
|
+
function delete$(client: SuiJsonRpcClient, args: [object$.UID]): Promise<TypedDevInspectResults<[]>>;
|
|
3019
|
+
function id<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[object$.ID]>>;
|
|
3020
|
+
function idAddress<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
3021
|
+
function idBytes<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[number[]]>>;
|
|
3022
|
+
function idFromAddress(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[object$.ID]>>;
|
|
3023
|
+
function idFromBytes(client: SuiJsonRpcClient, args: [string[]]): Promise<TypedDevInspectResults<[object$.ID]>>;
|
|
3024
|
+
function idToAddress(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
|
3025
|
+
function idToBytes(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[number[]]>>;
|
|
3026
|
+
function new$(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[object$.UID]>>;
|
|
3027
|
+
function newUidFromHash(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[object$.UID]>>;
|
|
3028
|
+
function randomnessState(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[object$.UID]>>;
|
|
3029
|
+
function suiAccumulatorRootAddress(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[string]>>;
|
|
3030
|
+
function suiAccumulatorRootObjectId(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[object$.UID]>>;
|
|
3031
|
+
function suiCoinRegistryAddress(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[string]>>;
|
|
3032
|
+
function suiCoinRegistryObjectId(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[object$.UID]>>;
|
|
3033
|
+
function suiDenyListObjectId(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[object$.UID]>>;
|
|
3034
|
+
function uidAsInner(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
|
3035
|
+
function uidToAddress(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
|
3036
|
+
function uidToBytes(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[number[]]>>;
|
|
3037
|
+
function uidToInner(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[object$.ID]>>;
|
|
3038
3038
|
}
|
|
3039
3039
|
}
|
|
3040
3040
|
export declare namespace object_bag {
|
|
@@ -3068,17 +3068,17 @@ export declare namespace object_bag {
|
|
|
3068
3068
|
function valueId<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument, T0 | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
3069
3069
|
}
|
|
3070
3070
|
namespace view {
|
|
3071
|
-
function add<T0 = any, T1 = any>(client:
|
|
3072
|
-
function borrow<T0 = any, T1 = any>(client:
|
|
3073
|
-
function borrowMut<T0 = any, T1 = any>(client:
|
|
3074
|
-
function contains<T0 = any>(client:
|
|
3075
|
-
function containsWithType<T0 = any, T1 = any>(client:
|
|
3076
|
-
function destroyEmpty(client:
|
|
3077
|
-
function isEmpty(client:
|
|
3078
|
-
function length(client:
|
|
3079
|
-
function new$(client:
|
|
3080
|
-
function remove<T0 = any, T1 = any>(client:
|
|
3081
|
-
function valueId<T0 = any>(client:
|
|
3071
|
+
function add<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0, T1], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3072
|
+
function borrow<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
3073
|
+
function borrowMut<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
3074
|
+
function contains<T0 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
3075
|
+
function containsWithType<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
3076
|
+
function destroyEmpty(client: SuiJsonRpcClient, args: [object_bag.ObjectBag]): Promise<TypedDevInspectResults<[]>>;
|
|
3077
|
+
function isEmpty(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
3078
|
+
function length(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
3079
|
+
function new$(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[object_bag.ObjectBag]>>;
|
|
3080
|
+
function remove<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T1]>>;
|
|
3081
|
+
function valueId<T0 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[_0x1.option.Option<object$.ID>]>>;
|
|
3082
3082
|
}
|
|
3083
3083
|
}
|
|
3084
3084
|
export declare namespace object_table {
|
|
@@ -3111,16 +3111,16 @@ export declare namespace object_table {
|
|
|
3111
3111
|
function valueId<T0 = any, T1 = any>(tx: Transaction, args: [string | TransactionObjectArgument, T0 | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
3112
3112
|
}
|
|
3113
3113
|
namespace view {
|
|
3114
|
-
function add<T0 = any, T1 = any>(client:
|
|
3115
|
-
function borrow<T0 = any, T1 = any>(client:
|
|
3116
|
-
function borrowMut<T0 = any, T1 = any>(client:
|
|
3117
|
-
function contains<T0 = any, T1 = any>(client:
|
|
3118
|
-
function destroyEmpty<T0 = any, T1 = any>(client:
|
|
3119
|
-
function isEmpty<T0 = any, T1 = any>(client:
|
|
3120
|
-
function length<T0 = any, T1 = any>(client:
|
|
3121
|
-
function new$<T0 = any, T1 = any>(client:
|
|
3122
|
-
function remove<T0 = any, T1 = any>(client:
|
|
3123
|
-
function valueId<T0 = any, T1 = any>(client:
|
|
3114
|
+
function add<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0, T1], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3115
|
+
function borrow<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
3116
|
+
function borrowMut<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
3117
|
+
function contains<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
3118
|
+
function destroyEmpty<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [object_table.ObjectTable<T0, T1>], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3119
|
+
function isEmpty<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
3120
|
+
function length<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
3121
|
+
function new$<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[object_table.ObjectTable<T0, T1>]>>;
|
|
3122
|
+
function remove<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T1]>>;
|
|
3123
|
+
function valueId<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[_0x1.option.Option<object$.ID>]>>;
|
|
3124
3124
|
}
|
|
3125
3125
|
}
|
|
3126
3126
|
export declare namespace package$ {
|
|
@@ -3198,29 +3198,29 @@ export declare namespace package$ {
|
|
|
3198
3198
|
function version(tx: Transaction, args: [string | TransactionObjectArgument]): TransactionArgument & [TransactionArgument];
|
|
3199
3199
|
}
|
|
3200
3200
|
namespace view {
|
|
3201
|
-
function additivePolicy(client:
|
|
3202
|
-
function authorizeUpgrade(client:
|
|
3203
|
-
function burnPublisher(client:
|
|
3204
|
-
function claim<T0 = any>(client:
|
|
3205
|
-
function claimAndKeep<T0 = any>(client:
|
|
3206
|
-
function commitUpgrade(client:
|
|
3207
|
-
function compatiblePolicy(client:
|
|
3208
|
-
function depOnlyPolicy(client:
|
|
3209
|
-
function fromModule<T0 = any>(client:
|
|
3210
|
-
function fromPackage<T0 = any>(client:
|
|
3211
|
-
function makeImmutable(client:
|
|
3212
|
-
function onlyAdditiveUpgrades(client:
|
|
3213
|
-
function onlyDepUpgrades(client:
|
|
3214
|
-
function publishedModule(client:
|
|
3215
|
-
function publishedPackage(client:
|
|
3216
|
-
function receiptCap(client:
|
|
3217
|
-
function receiptPackage(client:
|
|
3218
|
-
function ticketDigest(client:
|
|
3219
|
-
function ticketPackage(client:
|
|
3220
|
-
function ticketPolicy(client:
|
|
3221
|
-
function upgradePackage(client:
|
|
3222
|
-
function upgradePolicy(client:
|
|
3223
|
-
function version(client:
|
|
3201
|
+
function additivePolicy(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[number]>>;
|
|
3202
|
+
function authorizeUpgrade(client: SuiJsonRpcClient, args: [string, number, string[]]): Promise<TypedDevInspectResults<[package$.UpgradeTicket]>>;
|
|
3203
|
+
function burnPublisher(client: SuiJsonRpcClient, args: [package$.Publisher]): Promise<TypedDevInspectResults<[]>>;
|
|
3204
|
+
function claim<T0 = any>(client: SuiJsonRpcClient, args: [T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[package$.Publisher]>>;
|
|
3205
|
+
function claimAndKeep<T0 = any>(client: SuiJsonRpcClient, args: [T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3206
|
+
function commitUpgrade(client: SuiJsonRpcClient, args: [string, package$.UpgradeReceipt]): Promise<TypedDevInspectResults<[]>>;
|
|
3207
|
+
function compatiblePolicy(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[number]>>;
|
|
3208
|
+
function depOnlyPolicy(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[number]>>;
|
|
3209
|
+
function fromModule<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
3210
|
+
function fromPackage<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
3211
|
+
function makeImmutable(client: SuiJsonRpcClient, args: [package$.UpgradeCap]): Promise<TypedDevInspectResults<[]>>;
|
|
3212
|
+
function onlyAdditiveUpgrades(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[]>>;
|
|
3213
|
+
function onlyDepUpgrades(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[]>>;
|
|
3214
|
+
function publishedModule(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
|
3215
|
+
function publishedPackage(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
|
3216
|
+
function receiptCap(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[object$.ID]>>;
|
|
3217
|
+
function receiptPackage(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[object$.ID]>>;
|
|
3218
|
+
function ticketDigest(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
|
3219
|
+
function ticketPackage(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[object$.ID]>>;
|
|
3220
|
+
function ticketPolicy(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[number]>>;
|
|
3221
|
+
function upgradePackage(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[object$.ID]>>;
|
|
3222
|
+
function upgradePolicy(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[number]>>;
|
|
3223
|
+
function version(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
3224
3224
|
}
|
|
3225
3225
|
}
|
|
3226
3226
|
export declare namespace party {
|
|
@@ -3253,9 +3253,9 @@ export declare namespace party {
|
|
|
3253
3253
|
function singleOwner(tx: Transaction, args: [string | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
|
3254
3254
|
}
|
|
3255
3255
|
namespace view {
|
|
3256
|
-
function intoNative(client:
|
|
3257
|
-
function isSingleOwner(client:
|
|
3258
|
-
function singleOwner(client:
|
|
3256
|
+
function intoNative(client: SuiJsonRpcClient, args: [party.Party]): Promise<TypedDevInspectResults<[bigint, string[], bigint[]]>>;
|
|
3257
|
+
function isSingleOwner(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
3258
|
+
function singleOwner(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[party.Party]>>;
|
|
3259
3259
|
}
|
|
3260
3260
|
}
|
|
3261
3261
|
export declare namespace pay {
|
|
@@ -3290,14 +3290,14 @@ export declare namespace pay {
|
|
|
3290
3290
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
3291
3291
|
}
|
|
3292
3292
|
namespace view {
|
|
3293
|
-
function divideAndKeep<T0 = any>(client:
|
|
3294
|
-
function join<T0 = any>(client:
|
|
3295
|
-
function joinVec<T0 = any>(client:
|
|
3296
|
-
function joinVecAndTransfer<T0 = any>(client:
|
|
3297
|
-
function keep<T0 = any>(client:
|
|
3298
|
-
function split<T0 = any>(client:
|
|
3299
|
-
function splitAndTransfer<T0 = any>(client:
|
|
3300
|
-
function splitVec<T0 = any>(client:
|
|
3293
|
+
function divideAndKeep<T0 = any>(client: SuiJsonRpcClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3294
|
+
function join<T0 = any>(client: SuiJsonRpcClient, args: [string, coin.Coin<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3295
|
+
function joinVec<T0 = any>(client: SuiJsonRpcClient, args: [string, string[]], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3296
|
+
function joinVecAndTransfer<T0 = any>(client: SuiJsonRpcClient, args: [string[], string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3297
|
+
function keep<T0 = any>(client: SuiJsonRpcClient, args: [coin.Coin<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3298
|
+
function split<T0 = any>(client: SuiJsonRpcClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3299
|
+
function splitAndTransfer<T0 = any>(client: SuiJsonRpcClient, args: [string, bigint, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3300
|
+
function splitVec<T0 = any>(client: SuiJsonRpcClient, args: [string, string[]], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3301
3301
|
}
|
|
3302
3302
|
}
|
|
3303
3303
|
export declare namespace poseidon {
|
|
@@ -3305,7 +3305,7 @@ export declare namespace poseidon {
|
|
|
3305
3305
|
function poseidonBn254(tx: Transaction, args: [string | TransactionObjectArgument]): TransactionArgument & [TransactionArgument];
|
|
3306
3306
|
}
|
|
3307
3307
|
namespace view {
|
|
3308
|
-
function poseidonBn254(client:
|
|
3308
|
+
function poseidonBn254(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
3309
3309
|
}
|
|
3310
3310
|
}
|
|
3311
3311
|
export declare namespace priority_queue {
|
|
@@ -3344,12 +3344,12 @@ export declare namespace priority_queue {
|
|
|
3344
3344
|
function priorities<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
3345
3345
|
}
|
|
3346
3346
|
namespace view {
|
|
3347
|
-
function createEntries<T0 = any>(client:
|
|
3348
|
-
function insert<T0 = any>(client:
|
|
3349
|
-
function new$<T0 = any>(client:
|
|
3350
|
-
function newEntry<T0 = any>(client:
|
|
3351
|
-
function popMax<T0 = any>(client:
|
|
3352
|
-
function priorities<T0 = any>(client:
|
|
3347
|
+
function createEntries<T0 = any>(client: SuiJsonRpcClient, args: [string[], string[]], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[priority_queue.Entry<T0>[]]>>;
|
|
3348
|
+
function insert<T0 = any>(client: SuiJsonRpcClient, args: [string, bigint, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3349
|
+
function new$<T0 = any>(client: SuiJsonRpcClient, args: [string[]], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[priority_queue.PriorityQueue<T0>]>>;
|
|
3350
|
+
function newEntry<T0 = any>(client: SuiJsonRpcClient, args: [bigint, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[priority_queue.Entry<T0>]>>;
|
|
3351
|
+
function popMax<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint, T0]>>;
|
|
3352
|
+
function priorities<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint[]]>>;
|
|
3353
3353
|
}
|
|
3354
3354
|
}
|
|
3355
3355
|
export declare namespace protocol_config {
|
|
@@ -3357,7 +3357,7 @@ export declare namespace protocol_config {
|
|
|
3357
3357
|
function isFeatureEnabled(tx: Transaction, args: [(string | TransactionObjectArgument)[] | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
|
3358
3358
|
}
|
|
3359
3359
|
namespace view {
|
|
3360
|
-
function isFeatureEnabled(client:
|
|
3360
|
+
function isFeatureEnabled(client: SuiJsonRpcClient, args: [string[]]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
3361
3361
|
}
|
|
3362
3362
|
}
|
|
3363
3363
|
export declare namespace prover {
|
|
@@ -3453,21 +3453,21 @@ export declare namespace random {
|
|
|
3453
3453
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
3454
3454
|
}
|
|
3455
3455
|
namespace view {
|
|
3456
|
-
function generateBool(client:
|
|
3457
|
-
function generateBytes(client:
|
|
3458
|
-
function generateU128(client:
|
|
3459
|
-
function generateU128InRange(client:
|
|
3460
|
-
function generateU16(client:
|
|
3461
|
-
function generateU16InRange(client:
|
|
3462
|
-
function generateU256(client:
|
|
3463
|
-
function generateU32(client:
|
|
3464
|
-
function generateU32InRange(client:
|
|
3465
|
-
function generateU64(client:
|
|
3466
|
-
function generateU64InRange(client:
|
|
3467
|
-
function generateU8(client:
|
|
3468
|
-
function generateU8InRange(client:
|
|
3469
|
-
function newGenerator(client:
|
|
3470
|
-
function shuffle<T0 = any>(client:
|
|
3456
|
+
function generateBool(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
3457
|
+
function generateBytes(client: SuiJsonRpcClient, args: [string, number]): Promise<TypedDevInspectResults<[number[]]>>;
|
|
3458
|
+
function generateU128(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
3459
|
+
function generateU128InRange(client: SuiJsonRpcClient, args: [string, bigint, bigint]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
3460
|
+
function generateU16(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[number]>>;
|
|
3461
|
+
function generateU16InRange(client: SuiJsonRpcClient, args: [string, number, number]): Promise<TypedDevInspectResults<[number]>>;
|
|
3462
|
+
function generateU256(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
3463
|
+
function generateU32(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[number]>>;
|
|
3464
|
+
function generateU32InRange(client: SuiJsonRpcClient, args: [string, number, number]): Promise<TypedDevInspectResults<[number]>>;
|
|
3465
|
+
function generateU64(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
3466
|
+
function generateU64InRange(client: SuiJsonRpcClient, args: [string, bigint, bigint]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
3467
|
+
function generateU8(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[number]>>;
|
|
3468
|
+
function generateU8InRange(client: SuiJsonRpcClient, args: [string, number, number]): Promise<TypedDevInspectResults<[number]>>;
|
|
3469
|
+
function newGenerator(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[random.RandomGenerator]>>;
|
|
3470
|
+
function shuffle<T0 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3471
3471
|
}
|
|
3472
3472
|
}
|
|
3473
3473
|
export declare namespace sui {
|
|
@@ -3485,7 +3485,7 @@ export declare namespace sui {
|
|
|
3485
3485
|
]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
3486
3486
|
}
|
|
3487
3487
|
namespace view {
|
|
3488
|
-
function transfer(client:
|
|
3488
|
+
function transfer(client: SuiJsonRpcClient, args: [coin.Coin<sui.SUI>, string]): Promise<TypedDevInspectResults<[]>>;
|
|
3489
3489
|
}
|
|
3490
3490
|
}
|
|
3491
3491
|
export declare namespace table {
|
|
@@ -3518,16 +3518,16 @@ export declare namespace table {
|
|
|
3518
3518
|
function remove<T0 = any, T1 = any>(tx: Transaction, args: [string | TransactionObjectArgument, T0 | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
3519
3519
|
}
|
|
3520
3520
|
namespace view {
|
|
3521
|
-
function add<T0 = any, T1 = any>(client:
|
|
3522
|
-
function borrow<T0 = any, T1 = any>(client:
|
|
3523
|
-
function borrowMut<T0 = any, T1 = any>(client:
|
|
3524
|
-
function contains<T0 = any, T1 = any>(client:
|
|
3525
|
-
function destroyEmpty<T0 = any, T1 = any>(client:
|
|
3526
|
-
function drop<T0 = any, T1 = any>(client:
|
|
3527
|
-
function isEmpty<T0 = any, T1 = any>(client:
|
|
3528
|
-
function length<T0 = any, T1 = any>(client:
|
|
3529
|
-
function new$<T0 = any, T1 = any>(client:
|
|
3530
|
-
function remove<T0 = any, T1 = any>(client:
|
|
3521
|
+
function add<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0, T1], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3522
|
+
function borrow<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
3523
|
+
function borrowMut<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
3524
|
+
function contains<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
3525
|
+
function destroyEmpty<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [table.Table<T0, T1>], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3526
|
+
function drop<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [table.Table<T0, T1>], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3527
|
+
function isEmpty<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
3528
|
+
function length<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
3529
|
+
function new$<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[table.Table<T0, T1>]>>;
|
|
3530
|
+
function remove<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T1]>>;
|
|
3531
3531
|
}
|
|
3532
3532
|
}
|
|
3533
3533
|
export declare namespace table_vec {
|
|
@@ -3561,18 +3561,18 @@ export declare namespace table_vec {
|
|
|
3561
3561
|
function swapRemove<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument, bigint | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
3562
3562
|
}
|
|
3563
3563
|
namespace view {
|
|
3564
|
-
function borrow<T0 = any>(client:
|
|
3565
|
-
function borrowMut<T0 = any>(client:
|
|
3566
|
-
function destroyEmpty<T0 = any>(client:
|
|
3567
|
-
function drop<T0 = any>(client:
|
|
3568
|
-
function empty<T0 = any>(client:
|
|
3569
|
-
function isEmpty<T0 = any>(client:
|
|
3570
|
-
function length<T0 = any>(client:
|
|
3571
|
-
function popBack<T0 = any>(client:
|
|
3572
|
-
function pushBack<T0 = any>(client:
|
|
3573
|
-
function singleton<T0 = any>(client:
|
|
3574
|
-
function swap<T0 = any>(client:
|
|
3575
|
-
function swapRemove<T0 = any>(client:
|
|
3564
|
+
function borrow<T0 = any>(client: SuiJsonRpcClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
3565
|
+
function borrowMut<T0 = any>(client: SuiJsonRpcClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
3566
|
+
function destroyEmpty<T0 = any>(client: SuiJsonRpcClient, args: [table_vec.TableVec<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3567
|
+
function drop<T0 = any>(client: SuiJsonRpcClient, args: [table_vec.TableVec<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3568
|
+
function empty<T0 = any>(client: SuiJsonRpcClient, args: [], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[table_vec.TableVec<T0>]>>;
|
|
3569
|
+
function isEmpty<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
3570
|
+
function length<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
3571
|
+
function popBack<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[T0]>>;
|
|
3572
|
+
function pushBack<T0 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3573
|
+
function singleton<T0 = any>(client: SuiJsonRpcClient, args: [T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[table_vec.TableVec<T0>]>>;
|
|
3574
|
+
function swap<T0 = any>(client: SuiJsonRpcClient, args: [string, bigint, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3575
|
+
function swapRemove<T0 = any>(client: SuiJsonRpcClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[T0]>>;
|
|
3576
3576
|
}
|
|
3577
3577
|
}
|
|
3578
3578
|
export declare namespace token {
|
|
@@ -3796,95 +3796,95 @@ export declare namespace token {
|
|
|
3796
3796
|
function zero<T0 = any>(tx: Transaction, args: [], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [];
|
|
3797
3797
|
}
|
|
3798
3798
|
namespace view {
|
|
3799
|
-
function action<T0 = any>(client:
|
|
3800
|
-
function addApproval<T0 = any, T1 = any>(client:
|
|
3801
|
-
function addRuleConfig<T0 = any, T1 = any, T2 = any>(client:
|
|
3799
|
+
function action<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
3800
|
+
function addApproval<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [T1, string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3801
|
+
function addRuleConfig<T0 = any, T1 = any, T2 = any>(client: SuiJsonRpcClient, args: [T1, string, string, T2], typeArguments: [
|
|
3802
3802
|
TypeDescriptor<T0> | string,
|
|
3803
3803
|
TypeDescriptor<T1> | string,
|
|
3804
3804
|
TypeDescriptor<T2> | string
|
|
3805
3805
|
]): Promise<TypedDevInspectResults<[]>>;
|
|
3806
|
-
function addRuleForAction<T0 = any, T1 = any>(client:
|
|
3807
|
-
function allow<T0 = any>(client:
|
|
3808
|
-
function amount<T0 = any>(client:
|
|
3809
|
-
function approvals<T0 = any>(client:
|
|
3810
|
-
function burn<T0 = any>(client:
|
|
3811
|
-
function confirmRequest<T0 = any>(client:
|
|
3806
|
+
function addRuleForAction<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, string, string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3807
|
+
function allow<T0 = any>(client: SuiJsonRpcClient, args: [string, string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3808
|
+
function amount<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
3809
|
+
function approvals<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[vec_set.VecSet<_0x1.type_name.TypeName>]>>;
|
|
3810
|
+
function burn<T0 = any>(client: SuiJsonRpcClient, args: [string, token.Token<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3811
|
+
function confirmRequest<T0 = any>(client: SuiJsonRpcClient, args: [string, token.ActionRequest<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
|
3812
3812
|
string,
|
|
3813
3813
|
bigint,
|
|
3814
3814
|
string,
|
|
3815
3815
|
_0x1.option.Option<string>
|
|
3816
3816
|
]>>;
|
|
3817
|
-
function confirmRequestMut<T0 = any>(client:
|
|
3817
|
+
function confirmRequestMut<T0 = any>(client: SuiJsonRpcClient, args: [string, token.ActionRequest<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
|
3818
3818
|
string,
|
|
3819
3819
|
bigint,
|
|
3820
3820
|
string,
|
|
3821
3821
|
_0x1.option.Option<string>
|
|
3822
3822
|
]>>;
|
|
3823
|
-
function confirmWithPolicyCap<T0 = any>(client:
|
|
3823
|
+
function confirmWithPolicyCap<T0 = any>(client: SuiJsonRpcClient, args: [string, token.ActionRequest<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
|
3824
3824
|
string,
|
|
3825
3825
|
bigint,
|
|
3826
3826
|
string,
|
|
3827
3827
|
_0x1.option.Option<string>
|
|
3828
3828
|
]>>;
|
|
3829
|
-
function confirmWithTreasuryCap<T0 = any>(client:
|
|
3829
|
+
function confirmWithTreasuryCap<T0 = any>(client: SuiJsonRpcClient, args: [string, token.ActionRequest<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
|
3830
3830
|
string,
|
|
3831
3831
|
bigint,
|
|
3832
3832
|
string,
|
|
3833
3833
|
_0x1.option.Option<string>
|
|
3834
3834
|
]>>;
|
|
3835
|
-
function destroyZero<T0 = any>(client:
|
|
3836
|
-
function disallow<T0 = any>(client:
|
|
3837
|
-
function flush<T0 = any>(client:
|
|
3838
|
-
function fromCoin<T0 = any>(client:
|
|
3839
|
-
function fromCoinAction(client:
|
|
3840
|
-
function hasRuleConfig<T0 = any, T1 = any>(client:
|
|
3841
|
-
function hasRuleConfigWithType<T0 = any, T1 = any, T2 = any>(client:
|
|
3835
|
+
function destroyZero<T0 = any>(client: SuiJsonRpcClient, args: [token.Token<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3836
|
+
function disallow<T0 = any>(client: SuiJsonRpcClient, args: [string, string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3837
|
+
function flush<T0 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
3838
|
+
function fromCoin<T0 = any>(client: SuiJsonRpcClient, args: [coin.Coin<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[token.Token<T0>, token.ActionRequest<T0>]>>;
|
|
3839
|
+
function fromCoinAction(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[string]>>;
|
|
3840
|
+
function hasRuleConfig<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
3841
|
+
function hasRuleConfigWithType<T0 = any, T1 = any, T2 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [
|
|
3842
3842
|
TypeDescriptor<T0> | string,
|
|
3843
3843
|
TypeDescriptor<T1> | string,
|
|
3844
3844
|
TypeDescriptor<T2> | string
|
|
3845
3845
|
]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
3846
|
-
function isAllowed<T0 = any>(client:
|
|
3847
|
-
function join<T0 = any>(client:
|
|
3848
|
-
function keep<T0 = any>(client:
|
|
3849
|
-
function mint<T0 = any>(client:
|
|
3850
|
-
function newPolicy<T0 = any>(client:
|
|
3851
|
-
function newRequest<T0 = any>(client:
|
|
3846
|
+
function isAllowed<T0 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
3847
|
+
function join<T0 = any>(client: SuiJsonRpcClient, args: [string, token.Token<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3848
|
+
function keep<T0 = any>(client: SuiJsonRpcClient, args: [token.Token<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3849
|
+
function mint<T0 = any>(client: SuiJsonRpcClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[token.Token<T0>]>>;
|
|
3850
|
+
function newPolicy<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[token.TokenPolicy<T0>, token.TokenPolicyCap<T0>]>>;
|
|
3851
|
+
function newRequest<T0 = any>(client: SuiJsonRpcClient, args: [
|
|
3852
3852
|
string,
|
|
3853
3853
|
bigint,
|
|
3854
3854
|
_0x1.option.Option<string>,
|
|
3855
3855
|
_0x1.option.Option<balance.Balance<T0>>
|
|
3856
3856
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[token.ActionRequest<T0>]>>;
|
|
3857
|
-
function recipient<T0 = any>(client:
|
|
3858
|
-
function removeRuleConfig<T0 = any, T1 = any, T2 = any>(client:
|
|
3857
|
+
function recipient<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[_0x1.option.Option<string>]>>;
|
|
3858
|
+
function removeRuleConfig<T0 = any, T1 = any, T2 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [
|
|
3859
3859
|
TypeDescriptor<T0> | string,
|
|
3860
3860
|
TypeDescriptor<T1> | string,
|
|
3861
3861
|
TypeDescriptor<T2> | string
|
|
3862
3862
|
]): Promise<TypedDevInspectResults<[T2]>>;
|
|
3863
|
-
function removeRuleForAction<T0 = any, T1 = any>(client:
|
|
3864
|
-
function ruleConfig<T0 = any, T1 = any, T2 = any>(client:
|
|
3863
|
+
function removeRuleForAction<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, string, string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3864
|
+
function ruleConfig<T0 = any, T1 = any, T2 = any>(client: SuiJsonRpcClient, args: [T1, string], typeArguments: [
|
|
3865
3865
|
TypeDescriptor<T0> | string,
|
|
3866
3866
|
TypeDescriptor<T1> | string,
|
|
3867
3867
|
TypeDescriptor<T2> | string
|
|
3868
3868
|
]): Promise<TypedDevInspectResults<[string]>>;
|
|
3869
|
-
function ruleConfigMut<T0 = any, T1 = any, T2 = any>(client:
|
|
3869
|
+
function ruleConfigMut<T0 = any, T1 = any, T2 = any>(client: SuiJsonRpcClient, args: [T1, string, string], typeArguments: [
|
|
3870
3870
|
TypeDescriptor<T0> | string,
|
|
3871
3871
|
TypeDescriptor<T1> | string,
|
|
3872
3872
|
TypeDescriptor<T2> | string
|
|
3873
3873
|
]): Promise<TypedDevInspectResults<[string]>>;
|
|
3874
|
-
function rules<T0 = any>(client:
|
|
3875
|
-
function sender<T0 = any>(client:
|
|
3876
|
-
function sharePolicy<T0 = any>(client:
|
|
3877
|
-
function spend<T0 = any>(client:
|
|
3878
|
-
function spendAction(client:
|
|
3879
|
-
function spent<T0 = any>(client:
|
|
3880
|
-
function spentBalance<T0 = any>(client:
|
|
3881
|
-
function split<T0 = any>(client:
|
|
3882
|
-
function toCoin<T0 = any>(client:
|
|
3883
|
-
function toCoinAction(client:
|
|
3884
|
-
function transfer<T0 = any>(client:
|
|
3885
|
-
function transferAction(client:
|
|
3886
|
-
function value<T0 = any>(client:
|
|
3887
|
-
function zero<T0 = any>(client:
|
|
3874
|
+
function rules<T0 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[vec_set.VecSet<_0x1.type_name.TypeName>]>>;
|
|
3875
|
+
function sender<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
3876
|
+
function sharePolicy<T0 = any>(client: SuiJsonRpcClient, args: [token.TokenPolicy<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3877
|
+
function spend<T0 = any>(client: SuiJsonRpcClient, args: [token.Token<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[token.ActionRequest<T0>]>>;
|
|
3878
|
+
function spendAction(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[string]>>;
|
|
3879
|
+
function spent<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[_0x1.option.Option<bigint>]>>;
|
|
3880
|
+
function spentBalance<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
3881
|
+
function split<T0 = any>(client: SuiJsonRpcClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[token.Token<T0>]>>;
|
|
3882
|
+
function toCoin<T0 = any>(client: SuiJsonRpcClient, args: [token.Token<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.Coin<T0>, token.ActionRequest<T0>]>>;
|
|
3883
|
+
function toCoinAction(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[string]>>;
|
|
3884
|
+
function transfer<T0 = any>(client: SuiJsonRpcClient, args: [token.Token<T0>, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[token.ActionRequest<T0>]>>;
|
|
3885
|
+
function transferAction(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[string]>>;
|
|
3886
|
+
function value<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
3887
|
+
function zero<T0 = any>(client: SuiJsonRpcClient, args: [], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[token.Token<T0>]>>;
|
|
3888
3888
|
}
|
|
3889
3889
|
}
|
|
3890
3890
|
export declare namespace transfer {
|
|
@@ -3930,21 +3930,21 @@ export declare namespace transfer {
|
|
|
3930
3930
|
function transferImpl<T0 = any>(tx: Transaction, args: [T0 | TransactionArgument, string | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
3931
3931
|
}
|
|
3932
3932
|
namespace view {
|
|
3933
|
-
function freezeObject<T0 = any>(client:
|
|
3934
|
-
function freezeObjectImpl<T0 = any>(client:
|
|
3935
|
-
function partyTransfer<T0 = any>(client:
|
|
3936
|
-
function partyTransferImpl<T0 = any>(client:
|
|
3937
|
-
function publicFreezeObject<T0 = any>(client:
|
|
3938
|
-
function publicPartyTransfer<T0 = any>(client:
|
|
3939
|
-
function publicReceive<T0 = any>(client:
|
|
3940
|
-
function publicShareObject<T0 = any>(client:
|
|
3941
|
-
function publicTransfer<T0 = any>(client:
|
|
3942
|
-
function receive<T0 = any>(client:
|
|
3943
|
-
function receivingObjectId<T0 = any>(client:
|
|
3944
|
-
function shareObject<T0 = any>(client:
|
|
3945
|
-
function shareObjectImpl<T0 = any>(client:
|
|
3946
|
-
function transfer<T0 = any>(client:
|
|
3947
|
-
function transferImpl<T0 = any>(client:
|
|
3933
|
+
function freezeObject<T0 = any>(client: SuiJsonRpcClient, args: [T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3934
|
+
function freezeObjectImpl<T0 = any>(client: SuiJsonRpcClient, args: [T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3935
|
+
function partyTransfer<T0 = any>(client: SuiJsonRpcClient, args: [T0, party.Party], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3936
|
+
function partyTransferImpl<T0 = any>(client: SuiJsonRpcClient, args: [T0, bigint, string[], string[]], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3937
|
+
function publicFreezeObject<T0 = any>(client: SuiJsonRpcClient, args: [T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3938
|
+
function publicPartyTransfer<T0 = any>(client: SuiJsonRpcClient, args: [T0, party.Party], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3939
|
+
function publicReceive<T0 = any>(client: SuiJsonRpcClient, args: [string, transfer.Receiving<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[T0]>>;
|
|
3940
|
+
function publicShareObject<T0 = any>(client: SuiJsonRpcClient, args: [T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3941
|
+
function publicTransfer<T0 = any>(client: SuiJsonRpcClient, args: [T0, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3942
|
+
function receive<T0 = any>(client: SuiJsonRpcClient, args: [string, transfer.Receiving<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[T0]>>;
|
|
3943
|
+
function receivingObjectId<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[object$.ID]>>;
|
|
3944
|
+
function shareObject<T0 = any>(client: SuiJsonRpcClient, args: [T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3945
|
+
function shareObjectImpl<T0 = any>(client: SuiJsonRpcClient, args: [T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3946
|
+
function transfer<T0 = any>(client: SuiJsonRpcClient, args: [T0, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3947
|
+
function transferImpl<T0 = any>(client: SuiJsonRpcClient, args: [T0, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3948
3948
|
}
|
|
3949
3949
|
}
|
|
3950
3950
|
export declare namespace transfer_policy {
|
|
@@ -4087,41 +4087,41 @@ export declare namespace transfer_policy {
|
|
|
4087
4087
|
];
|
|
4088
4088
|
}
|
|
4089
4089
|
namespace view {
|
|
4090
|
-
function addReceipt<T0 = any, T1 = any>(client:
|
|
4091
|
-
function addRule<T0 = any, T1 = any, T2 = any>(client:
|
|
4090
|
+
function addReceipt<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [T1, string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
4091
|
+
function addRule<T0 = any, T1 = any, T2 = any>(client: SuiJsonRpcClient, args: [T1, string, string, T2], typeArguments: [
|
|
4092
4092
|
TypeDescriptor<T0> | string,
|
|
4093
4093
|
TypeDescriptor<T1> | string,
|
|
4094
4094
|
TypeDescriptor<T2> | string
|
|
4095
4095
|
]): Promise<TypedDevInspectResults<[]>>;
|
|
4096
|
-
function addToBalance<T0 = any, T1 = any>(client:
|
|
4097
|
-
function confirmRequest<T0 = any>(client:
|
|
4098
|
-
function destroyAndWithdraw<T0 = any>(client:
|
|
4096
|
+
function addToBalance<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [T1, string, coin.Coin<sui.SUI>], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
4097
|
+
function confirmRequest<T0 = any>(client: SuiJsonRpcClient, args: [string, transfer_policy.TransferRequest<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[object$.ID, bigint, object$.ID]>>;
|
|
4098
|
+
function destroyAndWithdraw<T0 = any>(client: SuiJsonRpcClient, args: [
|
|
4099
4099
|
transfer_policy.TransferPolicy<T0>,
|
|
4100
4100
|
transfer_policy.TransferPolicyCap<T0>
|
|
4101
4101
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.Coin<sui.SUI>]>>;
|
|
4102
|
-
function from$<T0 = any>(client:
|
|
4103
|
-
function getRule<T0 = any, T1 = any, T2 = any>(client:
|
|
4102
|
+
function from$<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[object$.ID]>>;
|
|
4103
|
+
function getRule<T0 = any, T1 = any, T2 = any>(client: SuiJsonRpcClient, args: [T1, string], typeArguments: [
|
|
4104
4104
|
TypeDescriptor<T0> | string,
|
|
4105
4105
|
TypeDescriptor<T1> | string,
|
|
4106
4106
|
TypeDescriptor<T2> | string
|
|
4107
4107
|
]): Promise<TypedDevInspectResults<[string]>>;
|
|
4108
|
-
function hasRule<T0 = any, T1 = any>(client:
|
|
4109
|
-
function item<T0 = any>(client:
|
|
4110
|
-
function new$<T0 = any>(client:
|
|
4108
|
+
function hasRule<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
4109
|
+
function item<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[object$.ID]>>;
|
|
4110
|
+
function new$<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
|
4111
4111
|
transfer_policy.TransferPolicy<T0>,
|
|
4112
4112
|
transfer_policy.TransferPolicyCap<T0>
|
|
4113
4113
|
]>>;
|
|
4114
|
-
function newRequest<T0 = any>(client:
|
|
4115
|
-
function paid<T0 = any>(client:
|
|
4116
|
-
function removeRule<T0 = any, T1 = any, T2 = any>(client:
|
|
4114
|
+
function newRequest<T0 = any>(client: SuiJsonRpcClient, args: [object$.ID, bigint, object$.ID], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[transfer_policy.TransferRequest<T0>]>>;
|
|
4115
|
+
function paid<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
4116
|
+
function removeRule<T0 = any, T1 = any, T2 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [
|
|
4117
4117
|
TypeDescriptor<T0> | string,
|
|
4118
4118
|
TypeDescriptor<T1> | string,
|
|
4119
4119
|
TypeDescriptor<T2> | string
|
|
4120
4120
|
]): Promise<TypedDevInspectResults<[]>>;
|
|
4121
|
-
function rules<T0 = any>(client:
|
|
4122
|
-
function uid<T0 = any>(client:
|
|
4123
|
-
function uidMutAsOwner<T0 = any>(client:
|
|
4124
|
-
function withdraw<T0 = any>(client:
|
|
4121
|
+
function rules<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
4122
|
+
function uid<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
4123
|
+
function uidMutAsOwner<T0 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
4124
|
+
function withdraw<T0 = any>(client: SuiJsonRpcClient, args: [string, string, _0x1.option.Option<bigint>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.Coin<sui.SUI>]>>;
|
|
4125
4125
|
}
|
|
4126
4126
|
}
|
|
4127
4127
|
export declare namespace tx_context {
|
|
@@ -4147,14 +4147,14 @@ export declare namespace tx_context {
|
|
|
4147
4147
|
function sponsor(tx: Transaction, args: []): TransactionArgument & [];
|
|
4148
4148
|
}
|
|
4149
4149
|
namespace view {
|
|
4150
|
-
function digest(client:
|
|
4151
|
-
function epoch(client:
|
|
4152
|
-
function epochTimestampMs(client:
|
|
4153
|
-
function freshObjectAddress(client:
|
|
4154
|
-
function gasPrice(client:
|
|
4155
|
-
function referenceGasPrice(client:
|
|
4156
|
-
function sender(client:
|
|
4157
|
-
function sponsor(client:
|
|
4150
|
+
function digest(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[string]>>;
|
|
4151
|
+
function epoch(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[bigint]>>;
|
|
4152
|
+
function epochTimestampMs(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[bigint]>>;
|
|
4153
|
+
function freshObjectAddress(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[string]>>;
|
|
4154
|
+
function gasPrice(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[bigint]>>;
|
|
4155
|
+
function referenceGasPrice(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[bigint]>>;
|
|
4156
|
+
function sender(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[string]>>;
|
|
4157
|
+
function sponsor(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[_0x1.option.Option<string>]>>;
|
|
4158
4158
|
}
|
|
4159
4159
|
}
|
|
4160
4160
|
export declare namespace types {
|
|
@@ -4162,7 +4162,7 @@ export declare namespace types {
|
|
|
4162
4162
|
function isOneTimeWitness<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
4163
4163
|
}
|
|
4164
4164
|
namespace view {
|
|
4165
|
-
function isOneTimeWitness<T0 = any>(client:
|
|
4165
|
+
function isOneTimeWitness<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
4166
4166
|
}
|
|
4167
4167
|
}
|
|
4168
4168
|
export declare namespace url {
|
|
@@ -4187,10 +4187,10 @@ export declare namespace url {
|
|
|
4187
4187
|
]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
4188
4188
|
}
|
|
4189
4189
|
namespace view {
|
|
4190
|
-
function innerUrl(client:
|
|
4191
|
-
function newUnsafe(client:
|
|
4192
|
-
function newUnsafeFromBytes(client:
|
|
4193
|
-
function update(client:
|
|
4190
|
+
function innerUrl(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[_0x1.ascii.String]>>;
|
|
4191
|
+
function newUnsafe(client: SuiJsonRpcClient, args: [_0x1.ascii.String]): Promise<TypedDevInspectResults<[url.Url]>>;
|
|
4192
|
+
function newUnsafeFromBytes(client: SuiJsonRpcClient, args: [string[]]): Promise<TypedDevInspectResults<[url.Url]>>;
|
|
4193
|
+
function update(client: SuiJsonRpcClient, args: [string, _0x1.ascii.String]): Promise<TypedDevInspectResults<[]>>;
|
|
4194
4194
|
}
|
|
4195
4195
|
}
|
|
4196
4196
|
export declare namespace vdf {
|
|
@@ -4209,8 +4209,8 @@ export declare namespace vdf {
|
|
|
4209
4209
|
];
|
|
4210
4210
|
}
|
|
4211
4211
|
namespace view {
|
|
4212
|
-
function hashToInput(client:
|
|
4213
|
-
function vdfVerify(client:
|
|
4212
|
+
function hashToInput(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[number[]]>>;
|
|
4213
|
+
function vdfVerify(client: SuiJsonRpcClient, args: [string, string, string, bigint]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
4214
4214
|
}
|
|
4215
4215
|
}
|
|
4216
4216
|
export declare namespace vec_map {
|
|
@@ -4292,26 +4292,26 @@ export declare namespace vec_map {
|
|
|
4292
4292
|
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
4293
4293
|
}
|
|
4294
4294
|
namespace view {
|
|
4295
|
-
function contains<T0 = any, T1 = any>(client:
|
|
4296
|
-
function destroyEmpty<T0 = any, T1 = any>(client:
|
|
4297
|
-
function empty<T0 = any, T1 = any>(client:
|
|
4298
|
-
function fromKeysValues<T0 = any, T1 = any>(client:
|
|
4299
|
-
function get<T0 = any, T1 = any>(client:
|
|
4300
|
-
function getEntryByIdx<T0 = any, T1 = any>(client:
|
|
4301
|
-
function getEntryByIdxMut<T0 = any, T1 = any>(client:
|
|
4302
|
-
function getIdx<T0 = any, T1 = any>(client:
|
|
4303
|
-
function getIdxOpt<T0 = any, T1 = any>(client:
|
|
4304
|
-
function getMut<T0 = any, T1 = any>(client:
|
|
4305
|
-
function insert<T0 = any, T1 = any>(client:
|
|
4306
|
-
function intoKeysValues<T0 = any, T1 = any>(client:
|
|
4307
|
-
function isEmpty<T0 = any, T1 = any>(client:
|
|
4308
|
-
function keys<T0 = any, T1 = any>(client:
|
|
4309
|
-
function length<T0 = any, T1 = any>(client:
|
|
4310
|
-
function pop<T0 = any, T1 = any>(client:
|
|
4311
|
-
function remove<T0 = any, T1 = any>(client:
|
|
4312
|
-
function removeEntryByIdx<T0 = any, T1 = any>(client:
|
|
4313
|
-
function size<T0 = any, T1 = any>(client:
|
|
4314
|
-
function tryGet<T0 = any, T1 = any>(client:
|
|
4295
|
+
function contains<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
4296
|
+
function destroyEmpty<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [vec_map.VecMap<T0, T1>], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
4297
|
+
function empty<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[vec_map.VecMap<T0, T1>]>>;
|
|
4298
|
+
function fromKeysValues<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string[], string[]], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[vec_map.VecMap<T0, T1>]>>;
|
|
4299
|
+
function get<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
4300
|
+
function getEntryByIdx<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string, string]>>;
|
|
4301
|
+
function getEntryByIdxMut<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string, string]>>;
|
|
4302
|
+
function getIdx<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
4303
|
+
function getIdxOpt<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[_0x1.option.Option<bigint>]>>;
|
|
4304
|
+
function getMut<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
4305
|
+
function insert<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0, T1], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
4306
|
+
function intoKeysValues<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [vec_map.VecMap<T0, T1>], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T0[], T1[]]>>;
|
|
4307
|
+
function isEmpty<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
4308
|
+
function keys<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T0[]]>>;
|
|
4309
|
+
function length<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
4310
|
+
function pop<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T0, T1]>>;
|
|
4311
|
+
function remove<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T0, T1]>>;
|
|
4312
|
+
function removeEntryByIdx<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T0, T1]>>;
|
|
4313
|
+
function size<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
4314
|
+
function tryGet<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[_0x1.option.Option<T1>]>>;
|
|
4315
4315
|
}
|
|
4316
4316
|
}
|
|
4317
4317
|
export declare namespace vec_set {
|
|
@@ -4346,17 +4346,17 @@ export declare namespace vec_set {
|
|
|
4346
4346
|
function size<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
4347
4347
|
}
|
|
4348
4348
|
namespace view {
|
|
4349
|
-
function contains<T0 = any>(client:
|
|
4350
|
-
function empty<T0 = any>(client:
|
|
4351
|
-
function fromKeys<T0 = any>(client:
|
|
4352
|
-
function insert<T0 = any>(client:
|
|
4353
|
-
function intoKeys<T0 = any>(client:
|
|
4354
|
-
function isEmpty<T0 = any>(client:
|
|
4355
|
-
function keys<T0 = any>(client:
|
|
4356
|
-
function length<T0 = any>(client:
|
|
4357
|
-
function remove<T0 = any>(client:
|
|
4358
|
-
function singleton<T0 = any>(client:
|
|
4359
|
-
function size<T0 = any>(client:
|
|
4349
|
+
function contains<T0 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
4350
|
+
function empty<T0 = any>(client: SuiJsonRpcClient, args: [], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[vec_set.VecSet<T0>]>>;
|
|
4351
|
+
function fromKeys<T0 = any>(client: SuiJsonRpcClient, args: [string[]], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[vec_set.VecSet<T0>]>>;
|
|
4352
|
+
function insert<T0 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
4353
|
+
function intoKeys<T0 = any>(client: SuiJsonRpcClient, args: [vec_set.VecSet<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[T0[]]>>;
|
|
4354
|
+
function isEmpty<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
4355
|
+
function keys<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
4356
|
+
function length<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
4357
|
+
function remove<T0 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
4358
|
+
function singleton<T0 = any>(client: SuiJsonRpcClient, args: [T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[vec_set.VecSet<T0>]>>;
|
|
4359
|
+
function size<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
4360
4360
|
}
|
|
4361
4361
|
}
|
|
4362
4362
|
export declare namespace versioned {
|
|
@@ -4396,13 +4396,13 @@ export declare namespace versioned {
|
|
|
4396
4396
|
function version(tx: Transaction, args: [string | TransactionObjectArgument]): TransactionArgument & [TransactionArgument];
|
|
4397
4397
|
}
|
|
4398
4398
|
namespace view {
|
|
4399
|
-
function create<T0 = any>(client:
|
|
4400
|
-
function destroy<T0 = any>(client:
|
|
4401
|
-
function loadValue<T0 = any>(client:
|
|
4402
|
-
function loadValueMut<T0 = any>(client:
|
|
4403
|
-
function removeValueForUpgrade<T0 = any>(client:
|
|
4404
|
-
function upgrade<T0 = any>(client:
|
|
4405
|
-
function version(client:
|
|
4399
|
+
function create<T0 = any>(client: SuiJsonRpcClient, args: [bigint, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[versioned.Versioned]>>;
|
|
4400
|
+
function destroy<T0 = any>(client: SuiJsonRpcClient, args: [versioned.Versioned], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[T0]>>;
|
|
4401
|
+
function loadValue<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
4402
|
+
function loadValueMut<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
4403
|
+
function removeValueForUpgrade<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[T0, versioned.VersionChangeCap]>>;
|
|
4404
|
+
function upgrade<T0 = any>(client: SuiJsonRpcClient, args: [string, bigint, T0, versioned.VersionChangeCap], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
4405
|
+
function version(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
4406
4406
|
}
|
|
4407
4407
|
}
|
|
4408
4408
|
export declare namespace zklogin_verified_id {
|
|
@@ -4455,14 +4455,14 @@ export declare namespace zklogin_verified_id {
|
|
|
4455
4455
|
];
|
|
4456
4456
|
}
|
|
4457
4457
|
namespace view {
|
|
4458
|
-
function audience(client:
|
|
4459
|
-
function checkZkloginId(client:
|
|
4460
|
-
function delete$(client:
|
|
4461
|
-
function issuer(client:
|
|
4462
|
-
function keyClaimName(client:
|
|
4463
|
-
function keyClaimValue(client:
|
|
4464
|
-
function owner(client:
|
|
4465
|
-
function verifyZkloginId(client:
|
|
4458
|
+
function audience(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
|
4459
|
+
function checkZkloginId(client: SuiJsonRpcClient, args: [string, string, string, string, string, bigint]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
4460
|
+
function delete$(client: SuiJsonRpcClient, args: [zklogin_verified_id.VerifiedID]): Promise<TypedDevInspectResults<[]>>;
|
|
4461
|
+
function issuer(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
|
4462
|
+
function keyClaimName(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
|
4463
|
+
function keyClaimValue(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
|
4464
|
+
function owner(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
|
4465
|
+
function verifyZkloginId(client: SuiJsonRpcClient, args: [string, string, string, string, bigint]): Promise<TypedDevInspectResults<[]>>;
|
|
4466
4466
|
}
|
|
4467
4467
|
}
|
|
4468
4468
|
export declare namespace zklogin_verified_issuer {
|
|
@@ -4491,11 +4491,11 @@ export declare namespace zklogin_verified_issuer {
|
|
|
4491
4491
|
function verifyZkloginIssuer(tx: Transaction, args: [bigint | TransactionArgument, string | TransactionArgument]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
4492
4492
|
}
|
|
4493
4493
|
namespace view {
|
|
4494
|
-
function checkZkloginIssuer(client:
|
|
4495
|
-
function delete$(client:
|
|
4496
|
-
function issuer(client:
|
|
4497
|
-
function owner(client:
|
|
4498
|
-
function verifyZkloginIssuer(client:
|
|
4494
|
+
function checkZkloginIssuer(client: SuiJsonRpcClient, args: [string, bigint, string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
4495
|
+
function delete$(client: SuiJsonRpcClient, args: [zklogin_verified_issuer.VerifiedIssuer]): Promise<TypedDevInspectResults<[]>>;
|
|
4496
|
+
function issuer(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
|
4497
|
+
function owner(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
|
4498
|
+
function verifyZkloginIssuer(client: SuiJsonRpcClient, args: [bigint, string]): Promise<TypedDevInspectResults<[]>>;
|
|
4499
4499
|
}
|
|
4500
4500
|
}
|
|
4501
4501
|
export declare function loadAllTypes(coder: MoveCoder): void;
|