@sentio/sdk 3.3.0 → 3.4.0-rc.2
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/lib/aptos/builtin/0x1.d.ts +111 -0
- package/lib/aptos/builtin/0x1.d.ts.map +1 -1
- package/lib/aptos/builtin/0x1.js +131 -1
- package/lib/aptos/builtin/0x1.js.map +1 -1
- package/lib/aptos/builtin/0x3.js +1 -1
- package/lib/aptos/builtin/0x3.js.map +1 -1
- package/lib/aptos/builtin/0x4.js +1 -1
- package/lib/aptos/builtin/0x4.js.map +1 -1
- package/lib/iota/builtin/0x2.d.ts +573 -0
- package/lib/iota/builtin/0x2.d.ts.map +1 -1
- package/lib/iota/builtin/0x2.js +3905 -1823
- package/lib/iota/builtin/0x2.js.map +1 -1
- package/lib/iota/builtin/0x3.d.ts +46 -7
- package/lib/iota/builtin/0x3.d.ts.map +1 -1
- package/lib/iota/builtin/0x3.js +16 -7
- package/lib/iota/builtin/0x3.js.map +1 -1
- package/lib/sui/builtin/0x1.d.ts +354 -197
- package/lib/sui/builtin/0x1.d.ts.map +1 -1
- package/lib/sui/builtin/0x1.js +1599 -67
- package/lib/sui/builtin/0x1.js.map +1 -1
- package/lib/sui/builtin/0x2.d.ts +1130 -623
- package/lib/sui/builtin/0x2.d.ts.map +1 -1
- package/lib/sui/builtin/0x2.js +2105 -79
- package/lib/sui/builtin/0x2.js.map +1 -1
- package/lib/sui/builtin/0x3.d.ts +305 -269
- package/lib/sui/builtin/0x3.d.ts.map +1 -1
- package/lib/sui/builtin/0x3.js +92 -1
- package/lib/sui/builtin/0x3.js.map +1 -1
- package/lib/sui/context.d.ts +4 -4
- package/lib/sui/context.d.ts.map +1 -1
- package/lib/sui/ext/move-dex.d.ts +1 -1
- package/lib/sui/ext/move-dex.d.ts.map +1 -1
- package/lib/sui/models.d.ts +1 -1
- package/lib/sui/models.d.ts.map +1 -1
- package/lib/sui/network.d.ts +2 -2
- package/lib/sui/network.d.ts.map +1 -1
- package/lib/sui/network.js +13 -2
- package/lib/sui/network.js.map +1 -1
- package/lib/sui/sui-object-processor-template.d.ts +1 -1
- package/lib/sui/sui-object-processor-template.d.ts.map +1 -1
- package/lib/sui/sui-object-processor.d.ts +1 -1
- package/lib/sui/sui-object-processor.d.ts.map +1 -1
- package/lib/sui/sui-processor.d.ts +1 -1
- package/lib/sui/sui-processor.d.ts.map +1 -1
- package/lib/sui/utils.d.ts +1 -1
- package/lib/sui/utils.d.ts.map +1 -1
- package/lib/testing/sui-facet.d.ts +1 -1
- package/lib/testing/sui-facet.d.ts.map +1 -1
- package/package.json +11 -11
- package/src/aptos/abis/0x1.json +1694 -323
- package/src/aptos/abis/0x3.json +75 -5
- package/src/aptos/abis/0x4.json +48 -20
- package/src/aptos/builtin/0x1.ts +233 -1
- package/src/aptos/builtin/0x3.ts +1 -1
- package/src/aptos/builtin/0x4.ts +1 -1
- package/src/iota/abis/0x2.json +8847 -5376
- package/src/iota/abis/0x3.json +25 -2
- package/src/iota/builtin/0x2.ts +4722 -1344
- package/src/iota/builtin/0x3.ts +60 -11
- package/src/sui/abis/0x1.json +1643 -220
- package/src/sui/abis/0x2.json +3768 -372
- package/src/sui/abis/0x3.json +114 -0
- package/src/sui/builtin/0x1.ts +2448 -333
- package/src/sui/builtin/0x2.ts +4356 -1214
- package/src/sui/builtin/0x3.ts +449 -270
- package/src/sui/codegen/codegen.ts +1 -1
- package/src/sui/context.ts +5 -5
- package/src/sui/ext/coin.ts +1 -1
- package/src/sui/ext/move-dex.ts +1 -1
- package/src/sui/models.ts +1 -1
- package/src/sui/network.ts +11 -3
- package/src/sui/sui-object-processor-template.ts +1 -1
- package/src/sui/sui-object-processor.ts +1 -1
- package/src/sui/sui-processor.ts +1 -1
- package/src/sui/utils.ts +1 -1
- package/src/testing/sui-facet.ts +1 -1
package/lib/sui/builtin/0x2.d.ts
CHANGED
|
@@ -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 { CallFilter, MoveFetchConfig, EventFilter } from "@sentio/sdk/move";
|
|
7
7
|
import { HandlerOptions } from "@sentio/sdk";
|
|
8
8
|
import { SuiBindOptions, SuiBaseProcessor, TypedFunctionPayload, SuiContext } from "@sentio/sdk/sui";
|
|
@@ -42,6 +42,8 @@ export declare namespace accumulator {
|
|
|
42
42
|
namespace builder {
|
|
43
43
|
function accumulatorAddress<T0 = any>(tx: Transaction, args: [string | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
44
44
|
function accumulatorKey<T0 = any>(tx: Transaction, args: [string | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
45
|
+
function accumulatorU128Exists<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument, string | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
46
|
+
function accumulatorU128Read<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument, string | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
45
47
|
function createU128(tx: Transaction, args: [bigint | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
|
46
48
|
function destroyU128(tx: Transaction, args: [accumulator.U128 | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
|
47
49
|
function emitDepositEvent<T0 = any>(tx: Transaction, args: [
|
|
@@ -72,6 +74,10 @@ export declare namespace accumulator {
|
|
|
72
74
|
TransactionArgument,
|
|
73
75
|
TransactionArgument
|
|
74
76
|
];
|
|
77
|
+
function rootBorrowAccumulator<T0 = any, T1 = any>(tx: Transaction, args: [
|
|
78
|
+
string | TransactionObjectArgument,
|
|
79
|
+
accumulator.Key<T0> | TransactionArgument
|
|
80
|
+
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
75
81
|
function rootBorrowAccumulatorMut<T0 = any, T1 = any>(tx: Transaction, args: [
|
|
76
82
|
string | TransactionObjectArgument,
|
|
77
83
|
accumulator.Key<T0> | TransactionArgument
|
|
@@ -97,30 +103,45 @@ export declare namespace accumulator {
|
|
|
97
103
|
];
|
|
98
104
|
}
|
|
99
105
|
namespace view {
|
|
100
|
-
function accumulatorAddress<T0 = any>(client:
|
|
101
|
-
function accumulatorKey<T0 = any>(client:
|
|
102
|
-
function
|
|
103
|
-
function
|
|
104
|
-
function
|
|
105
|
-
function
|
|
106
|
-
function
|
|
107
|
-
function
|
|
108
|
-
function
|
|
109
|
-
function
|
|
110
|
-
function
|
|
111
|
-
function
|
|
112
|
-
function
|
|
113
|
-
function
|
|
106
|
+
function accumulatorAddress<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
107
|
+
function accumulatorKey<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[accumulator.Key<T0>]>>;
|
|
108
|
+
function accumulatorU128Exists<T0 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
109
|
+
function accumulatorU128Read<T0 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
110
|
+
function createU128(client: SuiJsonRpcClient, args: [bigint]): Promise<TypedDevInspectResults<[accumulator.U128]>>;
|
|
111
|
+
function destroyU128(client: SuiJsonRpcClient, args: [accumulator.U128]): Promise<TypedDevInspectResults<[]>>;
|
|
112
|
+
function emitDepositEvent<T0 = any>(client: SuiJsonRpcClient, args: [string, string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
113
|
+
function emitWithdrawEvent<T0 = any>(client: SuiJsonRpcClient, args: [string, string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
114
|
+
function isZeroU128(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
115
|
+
function rootAddAccumulator<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, accumulator.Key<T0>, T1], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
116
|
+
function rootBorrowAccumulator<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, accumulator.Key<T0>], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
117
|
+
function rootBorrowAccumulatorMut<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, accumulator.Key<T0>], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
118
|
+
function rootHasAccumulator<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, accumulator.Key<T0>], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
119
|
+
function rootId(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
|
120
|
+
function rootIdMut(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
|
121
|
+
function rootRemoveAccumulator<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, accumulator.Key<T0>], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T1]>>;
|
|
122
|
+
function updateU128(client: SuiJsonRpcClient, args: [string, bigint, bigint]): Promise<TypedDevInspectResults<[]>>;
|
|
114
123
|
}
|
|
115
124
|
}
|
|
116
125
|
export declare class accumulator_metadata extends SuiBaseProcessor {
|
|
117
126
|
constructor(options: SuiBindOptions);
|
|
118
127
|
static DEFAULT_OPTIONS: SuiBindOptions;
|
|
119
128
|
static bind(options?: Partial<SuiBindOptions>): accumulator_metadata;
|
|
129
|
+
onEventAccumulatorObjectCountKey(func: (event: accumulator_metadata.AccumulatorObjectCountKeyInstance, ctx: SuiContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, accumulator_metadata.AccumulatorObjectCountKeyInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): accumulator_metadata;
|
|
120
130
|
onEventMetadataKey(func: (event: accumulator_metadata.MetadataKeyInstance, ctx: SuiContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, accumulator_metadata.MetadataKeyInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): accumulator_metadata;
|
|
121
131
|
onEventOwnerKey(func: (event: accumulator_metadata.OwnerKeyInstance, ctx: SuiContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, accumulator_metadata.OwnerKeyInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): accumulator_metadata;
|
|
122
132
|
}
|
|
123
133
|
export declare namespace accumulator_metadata {
|
|
134
|
+
interface AccumulatorObjectCountKey {
|
|
135
|
+
dummy_field: boolean;
|
|
136
|
+
}
|
|
137
|
+
namespace AccumulatorObjectCountKey {
|
|
138
|
+
const TYPE_QNAME = "0x2::accumulator_metadata::AccumulatorObjectCountKey";
|
|
139
|
+
function type(): TypeDescriptor<AccumulatorObjectCountKey>;
|
|
140
|
+
}
|
|
141
|
+
type AccumulatorObjectCountKeyInstance = TypedEventInstance<AccumulatorObjectCountKey> & {
|
|
142
|
+
data_decoded: AccumulatorObjectCountKey;
|
|
143
|
+
type_arguments: [];
|
|
144
|
+
};
|
|
124
145
|
interface Metadata<T0> {
|
|
125
146
|
fields: bag.Bag;
|
|
126
147
|
}
|
|
@@ -158,16 +179,19 @@ export declare namespace accumulator_metadata {
|
|
|
158
179
|
data_decoded: OwnerKey;
|
|
159
180
|
type_arguments: [];
|
|
160
181
|
};
|
|
161
|
-
namespace builder {
|
|
162
|
-
|
|
163
|
-
function removeAccumulatorMetadata<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument, string | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
164
|
-
}
|
|
165
|
-
namespace view {
|
|
166
|
-
function createAccumulatorMetadata<T0 = any>(client: SuiClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
167
|
-
function removeAccumulatorMetadata<T0 = any>(client: SuiClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
168
|
-
}
|
|
182
|
+
namespace builder { }
|
|
183
|
+
namespace view { }
|
|
169
184
|
}
|
|
170
185
|
export declare namespace accumulator_settlement {
|
|
186
|
+
interface EventStreamHead {
|
|
187
|
+
mmr: bigint[];
|
|
188
|
+
checkpoint_seq: bigint;
|
|
189
|
+
num_events: bigint;
|
|
190
|
+
}
|
|
191
|
+
namespace EventStreamHead {
|
|
192
|
+
const TYPE_QNAME = "0x2::accumulator_settlement::EventStreamHead";
|
|
193
|
+
function type(): TypeDescriptor<EventStreamHead>;
|
|
194
|
+
}
|
|
171
195
|
namespace builder { }
|
|
172
196
|
namespace view { }
|
|
173
197
|
}
|
|
@@ -184,15 +208,80 @@ export declare namespace address {
|
|
|
184
208
|
function toU256(tx: Transaction, args: [string | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
|
185
209
|
}
|
|
186
210
|
namespace view {
|
|
187
|
-
function fromAsciiBytes(client:
|
|
188
|
-
function fromBytes(client:
|
|
189
|
-
function fromU256(client:
|
|
190
|
-
function length(client:
|
|
191
|
-
function max(client:
|
|
192
|
-
function toAsciiString(client:
|
|
193
|
-
function toBytes(client:
|
|
194
|
-
function toString(client:
|
|
195
|
-
function toU256(client:
|
|
211
|
+
function fromAsciiBytes(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
|
212
|
+
function fromBytes(client: SuiJsonRpcClient, args: [string[]]): Promise<TypedDevInspectResults<[string]>>;
|
|
213
|
+
function fromU256(client: SuiJsonRpcClient, args: [bigint]): Promise<TypedDevInspectResults<[string]>>;
|
|
214
|
+
function length(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[bigint]>>;
|
|
215
|
+
function max(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[bigint]>>;
|
|
216
|
+
function toAsciiString(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[_0x1.ascii.String]>>;
|
|
217
|
+
function toBytes(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[number[]]>>;
|
|
218
|
+
function toString(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
|
219
|
+
function toU256(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
export declare class address_alias extends SuiBaseProcessor {
|
|
223
|
+
constructor(options: SuiBindOptions);
|
|
224
|
+
static DEFAULT_OPTIONS: SuiBindOptions;
|
|
225
|
+
static bind(options?: Partial<SuiBindOptions>): address_alias;
|
|
226
|
+
onEntryAdd(func: (call: address_alias.AddPayload, ctx: SuiContext) => void, filter?: CallFilter, handlerOptions?: HandlerOptions<MoveFetchConfig, address_alias.AddPayload>): address_alias;
|
|
227
|
+
onEntryEnable(func: (call: address_alias.EnablePayload, ctx: SuiContext) => void, filter?: CallFilter, handlerOptions?: HandlerOptions<MoveFetchConfig, address_alias.EnablePayload>): address_alias;
|
|
228
|
+
onEntryRemove(func: (call: address_alias.RemovePayload, ctx: SuiContext) => void, filter?: CallFilter, handlerOptions?: HandlerOptions<MoveFetchConfig, address_alias.RemovePayload>): address_alias;
|
|
229
|
+
onEntryReplaceAll(func: (call: address_alias.ReplaceAllPayload, ctx: SuiContext) => void, filter?: CallFilter, handlerOptions?: HandlerOptions<MoveFetchConfig, address_alias.ReplaceAllPayload>): address_alias;
|
|
230
|
+
onEventAliasKey(func: (event: address_alias.AliasKeyInstance, ctx: SuiContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, address_alias.AliasKeyInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): address_alias;
|
|
231
|
+
}
|
|
232
|
+
export declare namespace address_alias {
|
|
233
|
+
interface AddressAliasState {
|
|
234
|
+
id: object$.UID;
|
|
235
|
+
version: bigint;
|
|
236
|
+
}
|
|
237
|
+
namespace AddressAliasState {
|
|
238
|
+
const TYPE_QNAME = "0x2::address_alias::AddressAliasState";
|
|
239
|
+
function type(): TypeDescriptor<AddressAliasState>;
|
|
240
|
+
}
|
|
241
|
+
interface AddressAliases {
|
|
242
|
+
id: object$.UID;
|
|
243
|
+
aliases: vec_set.VecSet<string>;
|
|
244
|
+
}
|
|
245
|
+
namespace AddressAliases {
|
|
246
|
+
const TYPE_QNAME = "0x2::address_alias::AddressAliases";
|
|
247
|
+
function type(): TypeDescriptor<AddressAliases>;
|
|
248
|
+
}
|
|
249
|
+
interface AliasKey {
|
|
250
|
+
pos0: string;
|
|
251
|
+
}
|
|
252
|
+
namespace AliasKey {
|
|
253
|
+
const TYPE_QNAME = "0x2::address_alias::AliasKey";
|
|
254
|
+
function type(): TypeDescriptor<AliasKey>;
|
|
255
|
+
}
|
|
256
|
+
type AliasKeyInstance = TypedEventInstance<AliasKey> & {
|
|
257
|
+
data_decoded: AliasKey;
|
|
258
|
+
type_arguments: [];
|
|
259
|
+
};
|
|
260
|
+
namespace builder {
|
|
261
|
+
function add(tx: Transaction, args: [string | TransactionObjectArgument, string | TransactionArgument]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
262
|
+
function enable(tx: Transaction, args: [string | TransactionObjectArgument]): TransactionArgument & [TransactionArgument];
|
|
263
|
+
function remove(tx: Transaction, args: [string | TransactionObjectArgument, string | TransactionArgument]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
264
|
+
function replaceAll(tx: Transaction, args: [
|
|
265
|
+
string | TransactionObjectArgument,
|
|
266
|
+
(string | TransactionObjectArgument)[] | TransactionArgument
|
|
267
|
+
]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
268
|
+
}
|
|
269
|
+
namespace view { }
|
|
270
|
+
interface AddPayload extends TypedFunctionPayload<[string, string]> {
|
|
271
|
+
arguments_decoded: [string, string];
|
|
272
|
+
type_arguments: [];
|
|
273
|
+
}
|
|
274
|
+
interface EnablePayload extends TypedFunctionPayload<[string, string]> {
|
|
275
|
+
arguments_decoded: [string, string];
|
|
276
|
+
type_arguments: [];
|
|
277
|
+
}
|
|
278
|
+
interface RemovePayload extends TypedFunctionPayload<[string, string]> {
|
|
279
|
+
arguments_decoded: [string, string];
|
|
280
|
+
type_arguments: [];
|
|
281
|
+
}
|
|
282
|
+
interface ReplaceAllPayload extends TypedFunctionPayload<[string, string[]]> {
|
|
283
|
+
arguments_decoded: [string, string[]];
|
|
284
|
+
type_arguments: [];
|
|
196
285
|
}
|
|
197
286
|
}
|
|
198
287
|
export declare class authenticator_state extends SuiBaseProcessor {
|
|
@@ -292,16 +381,16 @@ export declare namespace bag {
|
|
|
292
381
|
function remove<T0 = any, T1 = any>(tx: Transaction, args: [string | TransactionObjectArgument, T0 | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
293
382
|
}
|
|
294
383
|
namespace view {
|
|
295
|
-
function add<T0 = any, T1 = any>(client:
|
|
296
|
-
function borrow<T0 = any, T1 = any>(client:
|
|
297
|
-
function borrowMut<T0 = any, T1 = any>(client:
|
|
298
|
-
function contains<T0 = any>(client:
|
|
299
|
-
function containsWithType<T0 = any, T1 = any>(client:
|
|
300
|
-
function destroyEmpty(client:
|
|
301
|
-
function isEmpty(client:
|
|
302
|
-
function length(client:
|
|
303
|
-
function new$(client:
|
|
304
|
-
function remove<T0 = any, T1 = any>(client:
|
|
384
|
+
function add<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0, T1], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
385
|
+
function borrow<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
386
|
+
function borrowMut<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
387
|
+
function contains<T0 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
388
|
+
function containsWithType<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
389
|
+
function destroyEmpty(client: SuiJsonRpcClient, args: [bag.Bag]): Promise<TypedDevInspectResults<[]>>;
|
|
390
|
+
function isEmpty(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
391
|
+
function length(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
392
|
+
function new$(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[bag.Bag]>>;
|
|
393
|
+
function remove<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T1]>>;
|
|
305
394
|
}
|
|
306
395
|
}
|
|
307
396
|
export declare namespace balance {
|
|
@@ -319,6 +408,7 @@ export declare namespace balance {
|
|
|
319
408
|
}
|
|
320
409
|
namespace builder {
|
|
321
410
|
function createSupply<T0 = any>(tx: Transaction, args: [T0 | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
411
|
+
function createSupplyInternal<T0 = any>(tx: Transaction, args: [], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [];
|
|
322
412
|
function decreaseSupply<T0 = any>(tx: Transaction, args: [
|
|
323
413
|
string | TransactionObjectArgument,
|
|
324
414
|
balance.Balance<T0> | TransactionArgument
|
|
@@ -330,24 +420,40 @@ export declare namespace balance {
|
|
|
330
420
|
string | TransactionObjectArgument,
|
|
331
421
|
balance.Balance<T0> | TransactionArgument
|
|
332
422
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
423
|
+
function redeemFunds<T0 = any>(tx: Transaction, args: [
|
|
424
|
+
funds_accumulator.Withdrawal<balance.Balance<T0>> | TransactionArgument
|
|
425
|
+
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
426
|
+
function sendFunds<T0 = any>(tx: Transaction, args: [
|
|
427
|
+
balance.Balance<T0> | TransactionArgument,
|
|
428
|
+
string | TransactionArgument
|
|
429
|
+
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
430
|
+
function settledFundsValue<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument, string | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
333
431
|
function split<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument, bigint | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
334
432
|
function supplyValue<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
335
433
|
function value<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
336
434
|
function withdrawAll<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
435
|
+
function withdrawFundsFromObject<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument, bigint | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
337
436
|
function zero<T0 = any>(tx: Transaction, args: [], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [];
|
|
338
437
|
}
|
|
339
438
|
namespace view {
|
|
340
|
-
function createSupply<T0 = any>(client:
|
|
341
|
-
function
|
|
342
|
-
function
|
|
343
|
-
function
|
|
344
|
-
function
|
|
345
|
-
function
|
|
346
|
-
function
|
|
347
|
-
function
|
|
348
|
-
function
|
|
349
|
-
function
|
|
350
|
-
function
|
|
439
|
+
function createSupply<T0 = any>(client: SuiJsonRpcClient, args: [T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[balance.Supply<T0>]>>;
|
|
440
|
+
function createSupplyInternal<T0 = any>(client: SuiJsonRpcClient, args: [], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[balance.Supply<T0>]>>;
|
|
441
|
+
function decreaseSupply<T0 = any>(client: SuiJsonRpcClient, args: [string, balance.Balance<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
442
|
+
function destroySupply<T0 = any>(client: SuiJsonRpcClient, args: [balance.Supply<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
443
|
+
function destroyZero<T0 = any>(client: SuiJsonRpcClient, args: [balance.Balance<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
444
|
+
function increaseSupply<T0 = any>(client: SuiJsonRpcClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[balance.Balance<T0>]>>;
|
|
445
|
+
function join<T0 = any>(client: SuiJsonRpcClient, args: [string, balance.Balance<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
446
|
+
function redeemFunds<T0 = any>(client: SuiJsonRpcClient, args: [funds_accumulator.Withdrawal<balance.Balance<T0>>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[balance.Balance<T0>]>>;
|
|
447
|
+
function sendFunds<T0 = any>(client: SuiJsonRpcClient, args: [balance.Balance<T0>, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
448
|
+
function settledFundsValue<T0 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
449
|
+
function split<T0 = any>(client: SuiJsonRpcClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[balance.Balance<T0>]>>;
|
|
450
|
+
function supplyValue<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
451
|
+
function value<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
452
|
+
function withdrawAll<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[balance.Balance<T0>]>>;
|
|
453
|
+
function withdrawFundsFromObject<T0 = any>(client: SuiJsonRpcClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
|
454
|
+
funds_accumulator.Withdrawal<balance.Balance<T0>>
|
|
455
|
+
]>>;
|
|
456
|
+
function zero<T0 = any>(client: SuiJsonRpcClient, args: [], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[balance.Balance<T0>]>>;
|
|
351
457
|
}
|
|
352
458
|
}
|
|
353
459
|
export declare class bcs extends SuiBaseProcessor {
|
|
@@ -401,36 +507,36 @@ export declare namespace bcs {
|
|
|
401
507
|
function toBytes<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
402
508
|
}
|
|
403
509
|
namespace view {
|
|
404
|
-
function intoRemainderBytes(client:
|
|
405
|
-
function new$(client:
|
|
406
|
-
function peelAddress(client:
|
|
407
|
-
function peelBool(client:
|
|
408
|
-
function peelEnumTag(client:
|
|
409
|
-
function peelOptionAddress(client:
|
|
410
|
-
function peelOptionBool(client:
|
|
411
|
-
function peelOptionU128(client:
|
|
412
|
-
function peelOptionU16(client:
|
|
413
|
-
function peelOptionU256(client:
|
|
414
|
-
function peelOptionU32(client:
|
|
415
|
-
function peelOptionU64(client:
|
|
416
|
-
function peelOptionU8(client:
|
|
417
|
-
function peelU128(client:
|
|
418
|
-
function peelU16(client:
|
|
419
|
-
function peelU256(client:
|
|
420
|
-
function peelU32(client:
|
|
421
|
-
function peelU64(client:
|
|
422
|
-
function peelU8(client:
|
|
423
|
-
function peelVecAddress(client:
|
|
424
|
-
function peelVecBool(client:
|
|
425
|
-
function peelVecLength(client:
|
|
426
|
-
function peelVecU128(client:
|
|
427
|
-
function peelVecU16(client:
|
|
428
|
-
function peelVecU256(client:
|
|
429
|
-
function peelVecU32(client:
|
|
430
|
-
function peelVecU64(client:
|
|
431
|
-
function peelVecU8(client:
|
|
432
|
-
function peelVecVecU8(client:
|
|
433
|
-
function toBytes<T0 = any>(client:
|
|
510
|
+
function intoRemainderBytes(client: SuiJsonRpcClient, args: [bcs.BCS]): Promise<TypedDevInspectResults<[number[]]>>;
|
|
511
|
+
function new$(client: SuiJsonRpcClient, args: [string[]]): Promise<TypedDevInspectResults<[bcs.BCS]>>;
|
|
512
|
+
function peelAddress(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
|
513
|
+
function peelBool(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
514
|
+
function peelEnumTag(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[number]>>;
|
|
515
|
+
function peelOptionAddress(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[_0x1.option.Option<string>]>>;
|
|
516
|
+
function peelOptionBool(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[_0x1.option.Option<boolean>]>>;
|
|
517
|
+
function peelOptionU128(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[_0x1.option.Option<bigint>]>>;
|
|
518
|
+
function peelOptionU16(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[_0x1.option.Option<number>]>>;
|
|
519
|
+
function peelOptionU256(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[_0x1.option.Option<bigint>]>>;
|
|
520
|
+
function peelOptionU32(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[_0x1.option.Option<number>]>>;
|
|
521
|
+
function peelOptionU64(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[_0x1.option.Option<bigint>]>>;
|
|
522
|
+
function peelOptionU8(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[_0x1.option.Option<number>]>>;
|
|
523
|
+
function peelU128(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
524
|
+
function peelU16(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[number]>>;
|
|
525
|
+
function peelU256(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
526
|
+
function peelU32(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[number]>>;
|
|
527
|
+
function peelU64(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
528
|
+
function peelU8(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[number]>>;
|
|
529
|
+
function peelVecAddress(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string[]]>>;
|
|
530
|
+
function peelVecBool(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[boolean[]]>>;
|
|
531
|
+
function peelVecLength(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
532
|
+
function peelVecU128(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[bigint[]]>>;
|
|
533
|
+
function peelVecU16(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[number[]]>>;
|
|
534
|
+
function peelVecU256(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[bigint[]]>>;
|
|
535
|
+
function peelVecU32(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[number[]]>>;
|
|
536
|
+
function peelVecU64(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[bigint[]]>>;
|
|
537
|
+
function peelVecU8(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[number[]]>>;
|
|
538
|
+
function peelVecVecU8(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[number[][]]>>;
|
|
539
|
+
function toBytes<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[number[]]>>;
|
|
434
540
|
}
|
|
435
541
|
}
|
|
436
542
|
export declare namespace bls12381 {
|
|
@@ -588,49 +694,49 @@ export declare namespace bls12381 {
|
|
|
588
694
|
function uncompressedG1ToG1(tx: Transaction, args: [string | TransactionObjectArgument]): TransactionArgument & [TransactionArgument];
|
|
589
695
|
}
|
|
590
696
|
namespace view {
|
|
591
|
-
function bls12381MinPkVerify(client:
|
|
592
|
-
function bls12381MinSigVerify(client:
|
|
593
|
-
function g1Add(client:
|
|
594
|
-
function g1Div(client:
|
|
595
|
-
function g1FromBytes(client:
|
|
596
|
-
function g1Generator(client:
|
|
597
|
-
function g1Identity(client:
|
|
598
|
-
function g1Mul(client:
|
|
599
|
-
function g1MultiScalarMultiplication(client:
|
|
600
|
-
function g1Neg(client:
|
|
601
|
-
function g1Sub(client:
|
|
602
|
-
function g1ToUncompressedG1(client:
|
|
603
|
-
function g2Add(client:
|
|
604
|
-
function g2Div(client:
|
|
605
|
-
function g2FromBytes(client:
|
|
606
|
-
function g2Generator(client:
|
|
607
|
-
function g2Identity(client:
|
|
608
|
-
function g2Mul(client:
|
|
609
|
-
function g2MultiScalarMultiplication(client:
|
|
610
|
-
function g2Neg(client:
|
|
611
|
-
function g2Sub(client:
|
|
612
|
-
function gtAdd(client:
|
|
613
|
-
function gtDiv(client:
|
|
614
|
-
function gtGenerator(client:
|
|
615
|
-
function gtIdentity(client:
|
|
616
|
-
function gtMul(client:
|
|
617
|
-
function gtNeg(client:
|
|
618
|
-
function gtSub(client:
|
|
619
|
-
function hashToG1(client:
|
|
620
|
-
function hashToG2(client:
|
|
621
|
-
function pairing(client:
|
|
622
|
-
function scalarAdd(client:
|
|
623
|
-
function scalarDiv(client:
|
|
624
|
-
function scalarFromBytes(client:
|
|
625
|
-
function scalarFromU64(client:
|
|
626
|
-
function scalarInv(client:
|
|
627
|
-
function scalarMul(client:
|
|
628
|
-
function scalarNeg(client:
|
|
629
|
-
function scalarOne(client:
|
|
630
|
-
function scalarSub(client:
|
|
631
|
-
function scalarZero(client:
|
|
632
|
-
function uncompressedG1Sum(client:
|
|
633
|
-
function uncompressedG1ToG1(client:
|
|
697
|
+
function bls12381MinPkVerify(client: SuiJsonRpcClient, args: [string, string, string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
698
|
+
function bls12381MinSigVerify(client: SuiJsonRpcClient, args: [string, string, string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
699
|
+
function g1Add(client: SuiJsonRpcClient, args: [string, string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G1>]>>;
|
|
700
|
+
function g1Div(client: SuiJsonRpcClient, args: [string, string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G1>]>>;
|
|
701
|
+
function g1FromBytes(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G1>]>>;
|
|
702
|
+
function g1Generator(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G1>]>>;
|
|
703
|
+
function g1Identity(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G1>]>>;
|
|
704
|
+
function g1Mul(client: SuiJsonRpcClient, args: [string, string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G1>]>>;
|
|
705
|
+
function g1MultiScalarMultiplication(client: SuiJsonRpcClient, args: [string, string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G1>]>>;
|
|
706
|
+
function g1Neg(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G1>]>>;
|
|
707
|
+
function g1Sub(client: SuiJsonRpcClient, args: [string, string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G1>]>>;
|
|
708
|
+
function g1ToUncompressedG1(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.UncompressedG1>]>>;
|
|
709
|
+
function g2Add(client: SuiJsonRpcClient, args: [string, string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G2>]>>;
|
|
710
|
+
function g2Div(client: SuiJsonRpcClient, args: [string, string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G2>]>>;
|
|
711
|
+
function g2FromBytes(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G2>]>>;
|
|
712
|
+
function g2Generator(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G2>]>>;
|
|
713
|
+
function g2Identity(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G2>]>>;
|
|
714
|
+
function g2Mul(client: SuiJsonRpcClient, args: [string, string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G2>]>>;
|
|
715
|
+
function g2MultiScalarMultiplication(client: SuiJsonRpcClient, args: [string, string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G2>]>>;
|
|
716
|
+
function g2Neg(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G2>]>>;
|
|
717
|
+
function g2Sub(client: SuiJsonRpcClient, args: [string, string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G2>]>>;
|
|
718
|
+
function gtAdd(client: SuiJsonRpcClient, args: [string, string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.GT>]>>;
|
|
719
|
+
function gtDiv(client: SuiJsonRpcClient, args: [string, string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.GT>]>>;
|
|
720
|
+
function gtGenerator(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.GT>]>>;
|
|
721
|
+
function gtIdentity(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.GT>]>>;
|
|
722
|
+
function gtMul(client: SuiJsonRpcClient, args: [string, string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.GT>]>>;
|
|
723
|
+
function gtNeg(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.GT>]>>;
|
|
724
|
+
function gtSub(client: SuiJsonRpcClient, args: [string, string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.GT>]>>;
|
|
725
|
+
function hashToG1(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G1>]>>;
|
|
726
|
+
function hashToG2(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G2>]>>;
|
|
727
|
+
function pairing(client: SuiJsonRpcClient, args: [string, string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.GT>]>>;
|
|
728
|
+
function scalarAdd(client: SuiJsonRpcClient, args: [string, string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.Scalar>]>>;
|
|
729
|
+
function scalarDiv(client: SuiJsonRpcClient, args: [string, string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.Scalar>]>>;
|
|
730
|
+
function scalarFromBytes(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.Scalar>]>>;
|
|
731
|
+
function scalarFromU64(client: SuiJsonRpcClient, args: [bigint]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.Scalar>]>>;
|
|
732
|
+
function scalarInv(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.Scalar>]>>;
|
|
733
|
+
function scalarMul(client: SuiJsonRpcClient, args: [string, string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.Scalar>]>>;
|
|
734
|
+
function scalarNeg(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.Scalar>]>>;
|
|
735
|
+
function scalarOne(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.Scalar>]>>;
|
|
736
|
+
function scalarSub(client: SuiJsonRpcClient, args: [string, string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.Scalar>]>>;
|
|
737
|
+
function scalarZero(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.Scalar>]>>;
|
|
738
|
+
function uncompressedG1Sum(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.UncompressedG1>]>>;
|
|
739
|
+
function uncompressedG1ToG1(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[group_ops.Element<bls12381.G1>]>>;
|
|
634
740
|
}
|
|
635
741
|
}
|
|
636
742
|
export declare namespace borrow {
|
|
@@ -665,10 +771,10 @@ export declare namespace borrow {
|
|
|
665
771
|
];
|
|
666
772
|
}
|
|
667
773
|
namespace view {
|
|
668
|
-
function borrow<T0 = any>(client:
|
|
669
|
-
function destroy<T0 = any>(client:
|
|
670
|
-
function new$<T0 = any>(client:
|
|
671
|
-
function putBack<T0 = any>(client:
|
|
774
|
+
function borrow<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[T0, borrow.Borrow]>>;
|
|
775
|
+
function destroy<T0 = any>(client: SuiJsonRpcClient, args: [borrow.Referent<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[T0]>>;
|
|
776
|
+
function new$<T0 = any>(client: SuiJsonRpcClient, args: [T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[borrow.Referent<T0>]>>;
|
|
777
|
+
function putBack<T0 = any>(client: SuiJsonRpcClient, args: [string, T0, borrow.Borrow], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
672
778
|
}
|
|
673
779
|
}
|
|
674
780
|
export declare namespace clock {
|
|
@@ -684,7 +790,7 @@ export declare namespace clock {
|
|
|
684
790
|
function timestampMs(tx: Transaction, args: [string | TransactionObjectArgument]): TransactionArgument & [TransactionArgument];
|
|
685
791
|
}
|
|
686
792
|
namespace view {
|
|
687
|
-
function timestampMs(client:
|
|
793
|
+
function timestampMs(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
688
794
|
}
|
|
689
795
|
}
|
|
690
796
|
export declare class coin extends SuiBaseProcessor {
|
|
@@ -762,6 +868,7 @@ export declare namespace coin {
|
|
|
762
868
|
function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<TreasuryCap<T0>>;
|
|
763
869
|
}
|
|
764
870
|
namespace builder {
|
|
871
|
+
function allowGlobalPause<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
765
872
|
function balance<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
766
873
|
function balanceMut<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
767
874
|
function burn<T0 = any>(tx: Transaction, args: [
|
|
@@ -815,6 +922,7 @@ export declare namespace coin {
|
|
|
815
922
|
TransactionArgument,
|
|
816
923
|
TransactionArgument
|
|
817
924
|
];
|
|
925
|
+
function denyCapId<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
818
926
|
function denyListAdd<T0 = any>(tx: Transaction, args: [
|
|
819
927
|
string | TransactionObjectArgument,
|
|
820
928
|
string | TransactionObjectArgument,
|
|
@@ -864,6 +972,7 @@ export declare namespace coin {
|
|
|
864
972
|
TransactionArgument,
|
|
865
973
|
TransactionArgument
|
|
866
974
|
];
|
|
975
|
+
function destroyMetadata<T0 = any>(tx: Transaction, args: [coin.CoinMetadata<T0> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
867
976
|
function destroyZero<T0 = any>(tx: Transaction, args: [coin.Coin<T0> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
868
977
|
function divideIntoN<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument, bigint | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
869
978
|
function fromBalance<T0 = any>(tx: Transaction, args: [balance.Balance<T0> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
@@ -897,10 +1006,29 @@ export declare namespace coin {
|
|
|
897
1006
|
TransactionArgument
|
|
898
1007
|
];
|
|
899
1008
|
function mintBalance<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument, bigint | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
1009
|
+
function newCoinMetadata<T0 = any>(tx: Transaction, args: [
|
|
1010
|
+
number | TransactionArgument,
|
|
1011
|
+
string | TransactionArgument,
|
|
1012
|
+
_0x1.ascii.String | TransactionArgument,
|
|
1013
|
+
string | TransactionArgument,
|
|
1014
|
+
_0x1.ascii.String | TransactionArgument
|
|
1015
|
+
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [
|
|
1016
|
+
TransactionArgument,
|
|
1017
|
+
TransactionArgument,
|
|
1018
|
+
TransactionArgument,
|
|
1019
|
+
TransactionArgument,
|
|
1020
|
+
TransactionArgument
|
|
1021
|
+
];
|
|
1022
|
+
function newDenyCapV2<T0 = any>(tx: Transaction, args: [boolean | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
1023
|
+
function newTreasuryCap<T0 = any>(tx: Transaction, args: [], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [];
|
|
900
1024
|
function put<T0 = any>(tx: Transaction, args: [
|
|
901
1025
|
string | TransactionObjectArgument,
|
|
902
1026
|
coin.Coin<T0> | TransactionArgument
|
|
903
1027
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
1028
|
+
function redeemFunds<T0 = any>(tx: Transaction, args: [
|
|
1029
|
+
funds_accumulator.Withdrawal<balance.Balance<T0>> | TransactionArgument
|
|
1030
|
+
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
1031
|
+
function sendFunds<T0 = any>(tx: Transaction, args: [coin.Coin<T0> | TransactionArgument, string | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
904
1032
|
function split<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument, bigint | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
905
1033
|
function supply<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
906
1034
|
function supplyImmut<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
@@ -908,6 +1036,19 @@ export declare namespace coin {
|
|
|
908
1036
|
function take<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument, bigint | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
909
1037
|
function totalSupply<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
910
1038
|
function treasuryIntoSupply<T0 = any>(tx: Transaction, args: [coin.TreasuryCap<T0> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
1039
|
+
function updateCoinMetadata<T0 = any>(tx: Transaction, args: [
|
|
1040
|
+
string | TransactionObjectArgument,
|
|
1041
|
+
string | TransactionArgument,
|
|
1042
|
+
_0x1.ascii.String | TransactionArgument,
|
|
1043
|
+
string | TransactionArgument,
|
|
1044
|
+
_0x1.ascii.String | TransactionArgument
|
|
1045
|
+
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [
|
|
1046
|
+
TransactionArgument,
|
|
1047
|
+
TransactionArgument,
|
|
1048
|
+
TransactionArgument,
|
|
1049
|
+
TransactionArgument,
|
|
1050
|
+
TransactionArgument
|
|
1051
|
+
];
|
|
911
1052
|
function updateDescription<T0 = any>(tx: Transaction, args: [
|
|
912
1053
|
string | TransactionObjectArgument,
|
|
913
1054
|
string | TransactionObjectArgument,
|
|
@@ -948,10 +1089,11 @@ export declare namespace coin {
|
|
|
948
1089
|
function zero<T0 = any>(tx: Transaction, args: [], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [];
|
|
949
1090
|
}
|
|
950
1091
|
namespace view {
|
|
951
|
-
function
|
|
952
|
-
function
|
|
953
|
-
function
|
|
954
|
-
function
|
|
1092
|
+
function allowGlobalPause<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1093
|
+
function balance<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
1094
|
+
function balanceMut<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
1095
|
+
function burn<T0 = any>(client: SuiJsonRpcClient, args: [string, coin.Coin<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
1096
|
+
function createCurrency<T0 = any>(client: SuiJsonRpcClient, args: [
|
|
955
1097
|
T0,
|
|
956
1098
|
number,
|
|
957
1099
|
string[],
|
|
@@ -959,7 +1101,7 @@ export declare namespace coin {
|
|
|
959
1101
|
string[],
|
|
960
1102
|
_0x1.option.Option<url.Url>
|
|
961
1103
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.TreasuryCap<T0>, coin.CoinMetadata<T0>]>>;
|
|
962
|
-
function createRegulatedCurrency<T0 = any>(client:
|
|
1104
|
+
function createRegulatedCurrency<T0 = any>(client: SuiJsonRpcClient, args: [
|
|
963
1105
|
T0,
|
|
964
1106
|
number,
|
|
965
1107
|
string[],
|
|
@@ -971,7 +1113,7 @@ export declare namespace coin {
|
|
|
971
1113
|
coin.DenyCap<T0>,
|
|
972
1114
|
coin.CoinMetadata<T0>
|
|
973
1115
|
]>>;
|
|
974
|
-
function createRegulatedCurrencyV2<T0 = any>(client:
|
|
1116
|
+
function createRegulatedCurrencyV2<T0 = any>(client: SuiJsonRpcClient, args: [
|
|
975
1117
|
T0,
|
|
976
1118
|
number,
|
|
977
1119
|
string[],
|
|
@@ -984,45 +1126,53 @@ export declare namespace coin {
|
|
|
984
1126
|
coin.DenyCapV2<T0>,
|
|
985
1127
|
coin.CoinMetadata<T0>
|
|
986
1128
|
]>>;
|
|
987
|
-
function
|
|
988
|
-
function
|
|
989
|
-
function
|
|
990
|
-
function
|
|
991
|
-
function
|
|
992
|
-
function
|
|
993
|
-
function
|
|
994
|
-
function
|
|
995
|
-
function
|
|
996
|
-
function
|
|
997
|
-
function
|
|
998
|
-
function
|
|
999
|
-
function
|
|
1000
|
-
function
|
|
1001
|
-
function
|
|
1002
|
-
function
|
|
1003
|
-
function
|
|
1004
|
-
function
|
|
1005
|
-
function
|
|
1006
|
-
function
|
|
1007
|
-
function
|
|
1008
|
-
function
|
|
1009
|
-
function
|
|
1010
|
-
function
|
|
1011
|
-
function
|
|
1012
|
-
function
|
|
1013
|
-
function
|
|
1014
|
-
function
|
|
1015
|
-
function
|
|
1016
|
-
function
|
|
1017
|
-
function
|
|
1018
|
-
function
|
|
1019
|
-
function
|
|
1020
|
-
function
|
|
1021
|
-
function
|
|
1022
|
-
function
|
|
1023
|
-
function
|
|
1024
|
-
function
|
|
1025
|
-
function
|
|
1129
|
+
function denyCapId<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[object$.ID]>>;
|
|
1130
|
+
function denyListAdd<T0 = any>(client: SuiJsonRpcClient, args: [string, string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1131
|
+
function denyListContains<T0 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1132
|
+
function denyListRemove<T0 = any>(client: SuiJsonRpcClient, args: [string, string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1133
|
+
function denyListV2Add<T0 = any>(client: SuiJsonRpcClient, args: [string, string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1134
|
+
function denyListV2ContainsCurrentEpoch<T0 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1135
|
+
function denyListV2ContainsNextEpoch<T0 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1136
|
+
function denyListV2DisableGlobalPause<T0 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1137
|
+
function denyListV2EnableGlobalPause<T0 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1138
|
+
function denyListV2IsGlobalPauseEnabledCurrentEpoch<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1139
|
+
function denyListV2IsGlobalPauseEnabledNextEpoch<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1140
|
+
function denyListV2Remove<T0 = any>(client: SuiJsonRpcClient, args: [string, string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1141
|
+
function destroyMetadata<T0 = any>(client: SuiJsonRpcClient, args: [coin.CoinMetadata<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1142
|
+
function destroyZero<T0 = any>(client: SuiJsonRpcClient, args: [coin.Coin<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1143
|
+
function divideIntoN<T0 = any>(client: SuiJsonRpcClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.Coin<T0>[]]>>;
|
|
1144
|
+
function fromBalance<T0 = any>(client: SuiJsonRpcClient, args: [balance.Balance<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.Coin<T0>]>>;
|
|
1145
|
+
function getDecimals<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[number]>>;
|
|
1146
|
+
function getDescription<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
1147
|
+
function getIconUrl<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[_0x1.option.Option<url.Url>]>>;
|
|
1148
|
+
function getName<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
1149
|
+
function getSymbol<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[_0x1.ascii.String]>>;
|
|
1150
|
+
function intoBalance<T0 = any>(client: SuiJsonRpcClient, args: [coin.Coin<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[balance.Balance<T0>]>>;
|
|
1151
|
+
function join<T0 = any>(client: SuiJsonRpcClient, args: [string, coin.Coin<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1152
|
+
function migrateRegulatedCurrencyToV2<T0 = any>(client: SuiJsonRpcClient, args: [string, coin.DenyCap<T0>, boolean], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.DenyCapV2<T0>]>>;
|
|
1153
|
+
function mint<T0 = any>(client: SuiJsonRpcClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.Coin<T0>]>>;
|
|
1154
|
+
function mintAndTransfer<T0 = any>(client: SuiJsonRpcClient, args: [string, bigint, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1155
|
+
function mintBalance<T0 = any>(client: SuiJsonRpcClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[balance.Balance<T0>]>>;
|
|
1156
|
+
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>]>>;
|
|
1157
|
+
function newDenyCapV2<T0 = any>(client: SuiJsonRpcClient, args: [boolean], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.DenyCapV2<T0>]>>;
|
|
1158
|
+
function newTreasuryCap<T0 = any>(client: SuiJsonRpcClient, args: [], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.TreasuryCap<T0>]>>;
|
|
1159
|
+
function put<T0 = any>(client: SuiJsonRpcClient, args: [string, coin.Coin<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1160
|
+
function redeemFunds<T0 = any>(client: SuiJsonRpcClient, args: [funds_accumulator.Withdrawal<balance.Balance<T0>>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.Coin<T0>]>>;
|
|
1161
|
+
function sendFunds<T0 = any>(client: SuiJsonRpcClient, args: [coin.Coin<T0>, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1162
|
+
function split<T0 = any>(client: SuiJsonRpcClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.Coin<T0>]>>;
|
|
1163
|
+
function supply<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
1164
|
+
function supplyImmut<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
1165
|
+
function supplyMut<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
1166
|
+
function take<T0 = any>(client: SuiJsonRpcClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.Coin<T0>]>>;
|
|
1167
|
+
function totalSupply<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
1168
|
+
function treasuryIntoSupply<T0 = any>(client: SuiJsonRpcClient, args: [coin.TreasuryCap<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[balance.Supply<T0>]>>;
|
|
1169
|
+
function updateCoinMetadata<T0 = any>(client: SuiJsonRpcClient, args: [string, string, _0x1.ascii.String, string, _0x1.ascii.String], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1170
|
+
function updateDescription<T0 = any>(client: SuiJsonRpcClient, args: [string, string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1171
|
+
function updateIconUrl<T0 = any>(client: SuiJsonRpcClient, args: [string, string, _0x1.ascii.String], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1172
|
+
function updateName<T0 = any>(client: SuiJsonRpcClient, args: [string, string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1173
|
+
function updateSymbol<T0 = any>(client: SuiJsonRpcClient, args: [string, string, _0x1.ascii.String], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1174
|
+
function value<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
1175
|
+
function zero<T0 = any>(client: SuiJsonRpcClient, args: [], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.Coin<T0>]>>;
|
|
1026
1176
|
}
|
|
1027
1177
|
interface BurnPayload<T0 = any> extends TypedFunctionPayload<[string, coin.Coin<T0>]> {
|
|
1028
1178
|
arguments_decoded: [string, coin.Coin<T0>];
|
|
@@ -1053,6 +1203,311 @@ export declare namespace coin {
|
|
|
1053
1203
|
type_arguments: [string];
|
|
1054
1204
|
}
|
|
1055
1205
|
}
|
|
1206
|
+
export declare class coin_registry extends SuiBaseProcessor {
|
|
1207
|
+
constructor(options: SuiBindOptions);
|
|
1208
|
+
static DEFAULT_OPTIONS: SuiBindOptions;
|
|
1209
|
+
static bind(options?: Partial<SuiBindOptions>): coin_registry;
|
|
1210
|
+
onEventCurrencyKey(func: (event: coin_registry.CurrencyKeyInstance, ctx: SuiContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, coin_registry.CurrencyKeyInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): coin_registry;
|
|
1211
|
+
onEventLegacyMetadataKey(func: (event: coin_registry.LegacyMetadataKeyInstance, ctx: SuiContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, coin_registry.LegacyMetadataKeyInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): coin_registry;
|
|
1212
|
+
}
|
|
1213
|
+
export declare namespace coin_registry {
|
|
1214
|
+
interface MetadataCapState {
|
|
1215
|
+
fields: {};
|
|
1216
|
+
variant: "Claimed" | "Deleted" | "Unclaimed";
|
|
1217
|
+
}
|
|
1218
|
+
namespace MetadataCapState {
|
|
1219
|
+
const TYPE_QNAME = "0x2::coin_registry::MetadataCapState";
|
|
1220
|
+
function type(): TypeDescriptor<MetadataCapState>;
|
|
1221
|
+
}
|
|
1222
|
+
interface RegulatedState {
|
|
1223
|
+
fields: {};
|
|
1224
|
+
variant: "Regulated" | "Unknown" | "Unregulated";
|
|
1225
|
+
}
|
|
1226
|
+
namespace RegulatedState {
|
|
1227
|
+
const TYPE_QNAME = "0x2::coin_registry::RegulatedState";
|
|
1228
|
+
function type(): TypeDescriptor<RegulatedState>;
|
|
1229
|
+
}
|
|
1230
|
+
interface SupplyState<T0> {
|
|
1231
|
+
fields: {};
|
|
1232
|
+
variant: "BurnOnly" | "Fixed" | "Unknown";
|
|
1233
|
+
}
|
|
1234
|
+
namespace SupplyState {
|
|
1235
|
+
const TYPE_QNAME = "0x2::coin_registry::SupplyState";
|
|
1236
|
+
function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<SupplyState<T0>>;
|
|
1237
|
+
}
|
|
1238
|
+
interface Borrow<T0> {
|
|
1239
|
+
dummy_field: boolean;
|
|
1240
|
+
}
|
|
1241
|
+
namespace Borrow {
|
|
1242
|
+
const TYPE_QNAME = "0x2::coin_registry::Borrow";
|
|
1243
|
+
function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<Borrow<T0>>;
|
|
1244
|
+
}
|
|
1245
|
+
interface CoinRegistry {
|
|
1246
|
+
id: object$.UID;
|
|
1247
|
+
}
|
|
1248
|
+
namespace CoinRegistry {
|
|
1249
|
+
const TYPE_QNAME = "0x2::coin_registry::CoinRegistry";
|
|
1250
|
+
function type(): TypeDescriptor<CoinRegistry>;
|
|
1251
|
+
}
|
|
1252
|
+
interface Currency<T0> {
|
|
1253
|
+
id: object$.UID;
|
|
1254
|
+
decimals: number;
|
|
1255
|
+
name: string;
|
|
1256
|
+
symbol: string;
|
|
1257
|
+
description: string;
|
|
1258
|
+
icon_url: string;
|
|
1259
|
+
supply: _0x1.option.Option<coin_registry.SupplyState<T0>>;
|
|
1260
|
+
regulated: coin_registry.RegulatedState;
|
|
1261
|
+
treasury_cap_id: _0x1.option.Option<object$.ID>;
|
|
1262
|
+
metadata_cap_id: coin_registry.MetadataCapState;
|
|
1263
|
+
extra_fields: vec_map.VecMap<string, coin_registry.ExtraField>;
|
|
1264
|
+
}
|
|
1265
|
+
namespace Currency {
|
|
1266
|
+
const TYPE_QNAME = "0x2::coin_registry::Currency";
|
|
1267
|
+
function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<Currency<T0>>;
|
|
1268
|
+
}
|
|
1269
|
+
interface CurrencyInitializer<T0> {
|
|
1270
|
+
currency: coin_registry.Currency<T0>;
|
|
1271
|
+
extra_fields: bag.Bag;
|
|
1272
|
+
is_otw: boolean;
|
|
1273
|
+
}
|
|
1274
|
+
namespace CurrencyInitializer {
|
|
1275
|
+
const TYPE_QNAME = "0x2::coin_registry::CurrencyInitializer";
|
|
1276
|
+
function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<CurrencyInitializer<T0>>;
|
|
1277
|
+
}
|
|
1278
|
+
interface CurrencyKey<T0> {
|
|
1279
|
+
dummy_field: boolean;
|
|
1280
|
+
}
|
|
1281
|
+
namespace CurrencyKey {
|
|
1282
|
+
const TYPE_QNAME = "0x2::coin_registry::CurrencyKey";
|
|
1283
|
+
function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<CurrencyKey<T0>>;
|
|
1284
|
+
}
|
|
1285
|
+
type CurrencyKeyInstance = TypedEventInstance<CurrencyKey<any>> & {
|
|
1286
|
+
data_decoded: CurrencyKey<any>;
|
|
1287
|
+
type_arguments: [string];
|
|
1288
|
+
};
|
|
1289
|
+
interface ExtraField {
|
|
1290
|
+
pos0: _0x1.type_name.TypeName;
|
|
1291
|
+
pos1: number[];
|
|
1292
|
+
}
|
|
1293
|
+
namespace ExtraField {
|
|
1294
|
+
const TYPE_QNAME = "0x2::coin_registry::ExtraField";
|
|
1295
|
+
function type(): TypeDescriptor<ExtraField>;
|
|
1296
|
+
}
|
|
1297
|
+
interface LegacyMetadataKey {
|
|
1298
|
+
dummy_field: boolean;
|
|
1299
|
+
}
|
|
1300
|
+
namespace LegacyMetadataKey {
|
|
1301
|
+
const TYPE_QNAME = "0x2::coin_registry::LegacyMetadataKey";
|
|
1302
|
+
function type(): TypeDescriptor<LegacyMetadataKey>;
|
|
1303
|
+
}
|
|
1304
|
+
type LegacyMetadataKeyInstance = TypedEventInstance<LegacyMetadataKey> & {
|
|
1305
|
+
data_decoded: LegacyMetadataKey;
|
|
1306
|
+
type_arguments: [];
|
|
1307
|
+
};
|
|
1308
|
+
interface MetadataCap<T0> {
|
|
1309
|
+
id: object$.UID;
|
|
1310
|
+
}
|
|
1311
|
+
namespace MetadataCap {
|
|
1312
|
+
const TYPE_QNAME = "0x2::coin_registry::MetadataCap";
|
|
1313
|
+
function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<MetadataCap<T0>>;
|
|
1314
|
+
}
|
|
1315
|
+
namespace builder {
|
|
1316
|
+
function borrowLegacyMetadata<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
1317
|
+
function burn<T0 = any>(tx: Transaction, args: [
|
|
1318
|
+
string | TransactionObjectArgument,
|
|
1319
|
+
coin.Coin<T0> | TransactionArgument
|
|
1320
|
+
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
1321
|
+
function burnBalance<T0 = any>(tx: Transaction, args: [
|
|
1322
|
+
string | TransactionObjectArgument,
|
|
1323
|
+
balance.Balance<T0> | TransactionArgument
|
|
1324
|
+
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
1325
|
+
function claimMetadataCap<T0 = any>(tx: Transaction, args: [
|
|
1326
|
+
string | TransactionObjectArgument,
|
|
1327
|
+
string | TransactionObjectArgument
|
|
1328
|
+
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
1329
|
+
function decimals<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
1330
|
+
function deleteMetadataCap<T0 = any>(tx: Transaction, args: [
|
|
1331
|
+
string | TransactionObjectArgument,
|
|
1332
|
+
coin_registry.MetadataCap<T0> | TransactionArgument
|
|
1333
|
+
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
1334
|
+
function deleteMigratedLegacyMetadata<T0 = any>(tx: Transaction, args: [
|
|
1335
|
+
string | TransactionObjectArgument,
|
|
1336
|
+
coin.CoinMetadata<T0> | TransactionArgument
|
|
1337
|
+
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
1338
|
+
function denyCapId<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
1339
|
+
function description<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
1340
|
+
function exists<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
1341
|
+
function finalize<T0 = any>(tx: Transaction, args: [coin_registry.CurrencyInitializer<T0> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
1342
|
+
function finalizeAndDeleteMetadataCap<T0 = any>(tx: Transaction, args: [coin_registry.CurrencyInitializer<T0> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
1343
|
+
function finalizeRegistration<T0 = any>(tx: Transaction, args: [
|
|
1344
|
+
string | TransactionObjectArgument,
|
|
1345
|
+
transfer.Receiving<coin_registry.Currency<T0>> | TransactionArgument
|
|
1346
|
+
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
1347
|
+
function iconUrl<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
1348
|
+
function isMetadataCapClaimed<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
1349
|
+
function isMetadataCapDeleted<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
1350
|
+
function isRegulated<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
1351
|
+
function isSupplyBurnOnly<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
1352
|
+
function isSupplyFixed<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
1353
|
+
function makeRegulated<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument, boolean | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
1354
|
+
function makeSupplyBurnOnly<T0 = any>(tx: Transaction, args: [
|
|
1355
|
+
string | TransactionObjectArgument,
|
|
1356
|
+
coin.TreasuryCap<T0> | TransactionArgument
|
|
1357
|
+
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
1358
|
+
function makeSupplyBurnOnlyInit<T0 = any>(tx: Transaction, args: [
|
|
1359
|
+
string | TransactionObjectArgument,
|
|
1360
|
+
coin.TreasuryCap<T0> | TransactionArgument
|
|
1361
|
+
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
1362
|
+
function makeSupplyFixed<T0 = any>(tx: Transaction, args: [
|
|
1363
|
+
string | TransactionObjectArgument,
|
|
1364
|
+
coin.TreasuryCap<T0> | TransactionArgument
|
|
1365
|
+
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
1366
|
+
function makeSupplyFixedInit<T0 = any>(tx: Transaction, args: [
|
|
1367
|
+
string | TransactionObjectArgument,
|
|
1368
|
+
coin.TreasuryCap<T0> | TransactionArgument
|
|
1369
|
+
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
1370
|
+
function metadataCapId<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
1371
|
+
function migrateLegacyMetadata<T0 = any>(tx: Transaction, args: [
|
|
1372
|
+
string | TransactionObjectArgument,
|
|
1373
|
+
string | TransactionObjectArgument
|
|
1374
|
+
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
1375
|
+
function migrateRegulatedStateByCap<T0 = any>(tx: Transaction, args: [
|
|
1376
|
+
string | TransactionObjectArgument,
|
|
1377
|
+
string | TransactionObjectArgument
|
|
1378
|
+
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
1379
|
+
function migrateRegulatedStateByMetadata<T0 = any>(tx: Transaction, args: [
|
|
1380
|
+
string | TransactionObjectArgument,
|
|
1381
|
+
string | TransactionObjectArgument
|
|
1382
|
+
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
1383
|
+
function name<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
1384
|
+
function newCurrency<T0 = any>(tx: Transaction, args: [
|
|
1385
|
+
string | TransactionObjectArgument,
|
|
1386
|
+
number | TransactionArgument,
|
|
1387
|
+
string | TransactionArgument,
|
|
1388
|
+
string | TransactionArgument,
|
|
1389
|
+
string | TransactionArgument,
|
|
1390
|
+
string | TransactionArgument
|
|
1391
|
+
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [
|
|
1392
|
+
TransactionArgument,
|
|
1393
|
+
TransactionArgument,
|
|
1394
|
+
TransactionArgument,
|
|
1395
|
+
TransactionArgument,
|
|
1396
|
+
TransactionArgument,
|
|
1397
|
+
TransactionArgument
|
|
1398
|
+
];
|
|
1399
|
+
function newCurrencyWithOtw<T0 = any>(tx: Transaction, args: [
|
|
1400
|
+
T0 | TransactionArgument,
|
|
1401
|
+
number | TransactionArgument,
|
|
1402
|
+
string | TransactionArgument,
|
|
1403
|
+
string | TransactionArgument,
|
|
1404
|
+
string | TransactionArgument,
|
|
1405
|
+
string | TransactionArgument
|
|
1406
|
+
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [
|
|
1407
|
+
TransactionArgument,
|
|
1408
|
+
TransactionArgument,
|
|
1409
|
+
TransactionArgument,
|
|
1410
|
+
TransactionArgument,
|
|
1411
|
+
TransactionArgument,
|
|
1412
|
+
TransactionArgument
|
|
1413
|
+
];
|
|
1414
|
+
function returnBorrowedLegacyMetadata<T0 = any>(tx: Transaction, args: [
|
|
1415
|
+
string | TransactionObjectArgument,
|
|
1416
|
+
coin.CoinMetadata<T0> | TransactionArgument,
|
|
1417
|
+
coin_registry.Borrow<T0> | TransactionArgument
|
|
1418
|
+
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [
|
|
1419
|
+
TransactionArgument,
|
|
1420
|
+
TransactionArgument,
|
|
1421
|
+
TransactionArgument
|
|
1422
|
+
];
|
|
1423
|
+
function setDescription<T0 = any>(tx: Transaction, args: [
|
|
1424
|
+
string | TransactionObjectArgument,
|
|
1425
|
+
string | TransactionObjectArgument,
|
|
1426
|
+
string | TransactionArgument
|
|
1427
|
+
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [
|
|
1428
|
+
TransactionArgument,
|
|
1429
|
+
TransactionArgument,
|
|
1430
|
+
TransactionArgument
|
|
1431
|
+
];
|
|
1432
|
+
function setIconUrl<T0 = any>(tx: Transaction, args: [
|
|
1433
|
+
string | TransactionObjectArgument,
|
|
1434
|
+
string | TransactionObjectArgument,
|
|
1435
|
+
string | TransactionArgument
|
|
1436
|
+
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [
|
|
1437
|
+
TransactionArgument,
|
|
1438
|
+
TransactionArgument,
|
|
1439
|
+
TransactionArgument
|
|
1440
|
+
];
|
|
1441
|
+
function setName<T0 = any>(tx: Transaction, args: [
|
|
1442
|
+
string | TransactionObjectArgument,
|
|
1443
|
+
string | TransactionObjectArgument,
|
|
1444
|
+
string | TransactionArgument
|
|
1445
|
+
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [
|
|
1446
|
+
TransactionArgument,
|
|
1447
|
+
TransactionArgument,
|
|
1448
|
+
TransactionArgument
|
|
1449
|
+
];
|
|
1450
|
+
function setTreasuryCapId<T0 = any>(tx: Transaction, args: [
|
|
1451
|
+
string | TransactionObjectArgument,
|
|
1452
|
+
string | TransactionObjectArgument
|
|
1453
|
+
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
1454
|
+
function symbol$<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
1455
|
+
function totalSupply<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
1456
|
+
function treasuryCapId<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
1457
|
+
function updateFromLegacyMetadata<T0 = any>(tx: Transaction, args: [
|
|
1458
|
+
string | TransactionObjectArgument,
|
|
1459
|
+
string | TransactionObjectArgument
|
|
1460
|
+
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
1461
|
+
}
|
|
1462
|
+
namespace view {
|
|
1463
|
+
function borrowLegacyMetadata<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.CoinMetadata<T0>, coin_registry.Borrow<T0>]>>;
|
|
1464
|
+
function burn<T0 = any>(client: SuiJsonRpcClient, args: [string, coin.Coin<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1465
|
+
function burnBalance<T0 = any>(client: SuiJsonRpcClient, args: [string, balance.Balance<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1466
|
+
function claimMetadataCap<T0 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin_registry.MetadataCap<T0>]>>;
|
|
1467
|
+
function decimals<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[number]>>;
|
|
1468
|
+
function deleteMetadataCap<T0 = any>(client: SuiJsonRpcClient, args: [string, coin_registry.MetadataCap<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1469
|
+
function deleteMigratedLegacyMetadata<T0 = any>(client: SuiJsonRpcClient, args: [string, coin.CoinMetadata<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1470
|
+
function denyCapId<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[_0x1.option.Option<object$.ID>]>>;
|
|
1471
|
+
function description<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
1472
|
+
function exists<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1473
|
+
function finalize<T0 = any>(client: SuiJsonRpcClient, args: [coin_registry.CurrencyInitializer<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin_registry.MetadataCap<T0>]>>;
|
|
1474
|
+
function finalizeAndDeleteMetadataCap<T0 = any>(client: SuiJsonRpcClient, args: [coin_registry.CurrencyInitializer<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1475
|
+
function finalizeRegistration<T0 = any>(client: SuiJsonRpcClient, args: [string, transfer.Receiving<coin_registry.Currency<T0>>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1476
|
+
function iconUrl<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
1477
|
+
function isMetadataCapClaimed<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1478
|
+
function isMetadataCapDeleted<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1479
|
+
function isRegulated<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1480
|
+
function isSupplyBurnOnly<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1481
|
+
function isSupplyFixed<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1482
|
+
function makeRegulated<T0 = any>(client: SuiJsonRpcClient, args: [string, boolean], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.DenyCapV2<T0>]>>;
|
|
1483
|
+
function makeSupplyBurnOnly<T0 = any>(client: SuiJsonRpcClient, args: [string, coin.TreasuryCap<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1484
|
+
function makeSupplyBurnOnlyInit<T0 = any>(client: SuiJsonRpcClient, args: [string, coin.TreasuryCap<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1485
|
+
function makeSupplyFixed<T0 = any>(client: SuiJsonRpcClient, args: [string, coin.TreasuryCap<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1486
|
+
function makeSupplyFixedInit<T0 = any>(client: SuiJsonRpcClient, args: [string, coin.TreasuryCap<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1487
|
+
function metadataCapId<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[_0x1.option.Option<object$.ID>]>>;
|
|
1488
|
+
function migrateLegacyMetadata<T0 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1489
|
+
function migrateRegulatedStateByCap<T0 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1490
|
+
function migrateRegulatedStateByMetadata<T0 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1491
|
+
function name<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
1492
|
+
function newCurrency<T0 = any>(client: SuiJsonRpcClient, args: [string, number, string, string, string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
|
1493
|
+
coin_registry.CurrencyInitializer<T0>,
|
|
1494
|
+
coin.TreasuryCap<T0>
|
|
1495
|
+
]>>;
|
|
1496
|
+
function newCurrencyWithOtw<T0 = any>(client: SuiJsonRpcClient, args: [T0, number, string, string, string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
|
1497
|
+
coin_registry.CurrencyInitializer<T0>,
|
|
1498
|
+
coin.TreasuryCap<T0>
|
|
1499
|
+
]>>;
|
|
1500
|
+
function returnBorrowedLegacyMetadata<T0 = any>(client: SuiJsonRpcClient, args: [string, coin.CoinMetadata<T0>, coin_registry.Borrow<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1501
|
+
function setDescription<T0 = any>(client: SuiJsonRpcClient, args: [string, string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1502
|
+
function setIconUrl<T0 = any>(client: SuiJsonRpcClient, args: [string, string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1503
|
+
function setName<T0 = any>(client: SuiJsonRpcClient, args: [string, string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1504
|
+
function setTreasuryCapId<T0 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1505
|
+
function symbol$<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
1506
|
+
function totalSupply<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[_0x1.option.Option<bigint>]>>;
|
|
1507
|
+
function treasuryCapId<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[_0x1.option.Option<object$.ID>]>>;
|
|
1508
|
+
function updateFromLegacyMetadata<T0 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1509
|
+
}
|
|
1510
|
+
}
|
|
1056
1511
|
export declare namespace config {
|
|
1057
1512
|
interface Config<T0> {
|
|
1058
1513
|
id: object$.UID;
|
|
@@ -1143,40 +1598,40 @@ export declare namespace config {
|
|
|
1143
1598
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
1144
1599
|
}
|
|
1145
1600
|
namespace view {
|
|
1146
|
-
function addForNextEpoch<T0 = any, T1 = any, T2 = any>(client:
|
|
1601
|
+
function addForNextEpoch<T0 = any, T1 = any, T2 = any>(client: SuiJsonRpcClient, args: [string, string, T1, T2], typeArguments: [
|
|
1147
1602
|
TypeDescriptor<T0> | string,
|
|
1148
1603
|
TypeDescriptor<T1> | string,
|
|
1149
1604
|
TypeDescriptor<T2> | string
|
|
1150
1605
|
]): Promise<TypedDevInspectResults<[_0x1.option.Option<T2>]>>;
|
|
1151
|
-
function borrowForNextEpochMut<T0 = any, T1 = any, T2 = any>(client:
|
|
1606
|
+
function borrowForNextEpochMut<T0 = any, T1 = any, T2 = any>(client: SuiJsonRpcClient, args: [string, string, T1], typeArguments: [
|
|
1152
1607
|
TypeDescriptor<T0> | string,
|
|
1153
1608
|
TypeDescriptor<T1> | string,
|
|
1154
1609
|
TypeDescriptor<T2> | string
|
|
1155
1610
|
]): Promise<TypedDevInspectResults<[string]>>;
|
|
1156
|
-
function existsWithType<T0 = any, T1 = any, T2 = any>(client:
|
|
1611
|
+
function existsWithType<T0 = any, T1 = any, T2 = any>(client: SuiJsonRpcClient, args: [string, T1], typeArguments: [
|
|
1157
1612
|
TypeDescriptor<T0> | string,
|
|
1158
1613
|
TypeDescriptor<T1> | string,
|
|
1159
1614
|
TypeDescriptor<T2> | string
|
|
1160
1615
|
]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1161
|
-
function existsWithTypeForNextEpoch<T0 = any, T1 = any, T2 = any>(client:
|
|
1616
|
+
function existsWithTypeForNextEpoch<T0 = any, T1 = any, T2 = any>(client: SuiJsonRpcClient, args: [string, T1], typeArguments: [
|
|
1162
1617
|
TypeDescriptor<T0> | string,
|
|
1163
1618
|
TypeDescriptor<T1> | string,
|
|
1164
1619
|
TypeDescriptor<T2> | string
|
|
1165
1620
|
]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1166
|
-
function new$<T0 = any>(client:
|
|
1167
|
-
function readSetting<T0 = any, T1 = any>(client:
|
|
1168
|
-
function readSettingForNextEpoch<T0 = any, T1 = any, T2 = any>(client:
|
|
1621
|
+
function new$<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[config.Config<T0>]>>;
|
|
1622
|
+
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>]>>;
|
|
1623
|
+
function readSettingForNextEpoch<T0 = any, T1 = any, T2 = any>(client: SuiJsonRpcClient, args: [string, T1], typeArguments: [
|
|
1169
1624
|
TypeDescriptor<T0> | string,
|
|
1170
1625
|
TypeDescriptor<T1> | string,
|
|
1171
1626
|
TypeDescriptor<T2> | string
|
|
1172
1627
|
]): Promise<TypedDevInspectResults<[_0x1.option.Option<T2>]>>;
|
|
1173
|
-
function removeForNextEpoch<T0 = any, T1 = any, T2 = any>(client:
|
|
1628
|
+
function removeForNextEpoch<T0 = any, T1 = any, T2 = any>(client: SuiJsonRpcClient, args: [string, string, T1], typeArguments: [
|
|
1174
1629
|
TypeDescriptor<T0> | string,
|
|
1175
1630
|
TypeDescriptor<T1> | string,
|
|
1176
1631
|
TypeDescriptor<T2> | string
|
|
1177
1632
|
]): Promise<TypedDevInspectResults<[_0x1.option.Option<T2>]>>;
|
|
1178
|
-
function share<T0 = any>(client:
|
|
1179
|
-
function transfer<T0 = any>(client:
|
|
1633
|
+
function share<T0 = any>(client: SuiJsonRpcClient, args: [config.Config<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1634
|
+
function transfer<T0 = any>(client: SuiJsonRpcClient, args: [config.Config<T0>, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1180
1635
|
}
|
|
1181
1636
|
}
|
|
1182
1637
|
export declare class deny_list extends SuiBaseProcessor {
|
|
@@ -1384,18 +1839,18 @@ export declare namespace deny_list {
|
|
|
1384
1839
|
];
|
|
1385
1840
|
}
|
|
1386
1841
|
namespace view {
|
|
1387
|
-
function migrateV1ToV2(client:
|
|
1388
|
-
function v1Add(client:
|
|
1389
|
-
function v1Contains(client:
|
|
1390
|
-
function v1Remove(client:
|
|
1391
|
-
function v2Add(client:
|
|
1392
|
-
function v2ContainsCurrentEpoch(client:
|
|
1393
|
-
function v2ContainsNextEpoch(client:
|
|
1394
|
-
function v2DisableGlobalPause(client:
|
|
1395
|
-
function v2EnableGlobalPause(client:
|
|
1396
|
-
function v2IsGlobalPauseEnabledCurrentEpoch(client:
|
|
1397
|
-
function v2IsGlobalPauseEnabledNextEpoch(client:
|
|
1398
|
-
function v2Remove(client:
|
|
1842
|
+
function migrateV1ToV2(client: SuiJsonRpcClient, args: [string, bigint, string[]]): Promise<TypedDevInspectResults<[]>>;
|
|
1843
|
+
function v1Add(client: SuiJsonRpcClient, args: [string, bigint, string[], string]): Promise<TypedDevInspectResults<[]>>;
|
|
1844
|
+
function v1Contains(client: SuiJsonRpcClient, args: [string, bigint, string[], string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1845
|
+
function v1Remove(client: SuiJsonRpcClient, args: [string, bigint, string[], string]): Promise<TypedDevInspectResults<[]>>;
|
|
1846
|
+
function v2Add(client: SuiJsonRpcClient, args: [string, bigint, string[], string]): Promise<TypedDevInspectResults<[]>>;
|
|
1847
|
+
function v2ContainsCurrentEpoch(client: SuiJsonRpcClient, args: [string, bigint, string[], string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1848
|
+
function v2ContainsNextEpoch(client: SuiJsonRpcClient, args: [string, bigint, string[], string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1849
|
+
function v2DisableGlobalPause(client: SuiJsonRpcClient, args: [string, bigint, string[]]): Promise<TypedDevInspectResults<[]>>;
|
|
1850
|
+
function v2EnableGlobalPause(client: SuiJsonRpcClient, args: [string, bigint, string[]]): Promise<TypedDevInspectResults<[]>>;
|
|
1851
|
+
function v2IsGlobalPauseEnabledCurrentEpoch(client: SuiJsonRpcClient, args: [string, bigint, string[]]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1852
|
+
function v2IsGlobalPauseEnabledNextEpoch(client: SuiJsonRpcClient, args: [string, bigint, string[]]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1853
|
+
function v2Remove(client: SuiJsonRpcClient, args: [string, bigint, string[], string]): Promise<TypedDevInspectResults<[]>>;
|
|
1399
1854
|
}
|
|
1400
1855
|
}
|
|
1401
1856
|
export declare class derived_object extends SuiBaseProcessor {
|
|
@@ -1442,9 +1897,9 @@ export declare namespace derived_object {
|
|
|
1442
1897
|
function exists<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument, T0 | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
1443
1898
|
}
|
|
1444
1899
|
namespace view {
|
|
1445
|
-
function claim<T0 = any>(client:
|
|
1446
|
-
function deriveAddress<T0 = any>(client:
|
|
1447
|
-
function exists<T0 = any>(client:
|
|
1900
|
+
function claim<T0 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[object$.UID]>>;
|
|
1901
|
+
function deriveAddress<T0 = any>(client: SuiJsonRpcClient, args: [object$.ID, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
1902
|
+
function exists<T0 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1448
1903
|
}
|
|
1449
1904
|
}
|
|
1450
1905
|
export declare class display extends SuiBaseProcessor {
|
|
@@ -1540,17 +1995,17 @@ export declare namespace display {
|
|
|
1540
1995
|
function version<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
1541
1996
|
}
|
|
1542
1997
|
namespace view {
|
|
1543
|
-
function add<T0 = any>(client:
|
|
1544
|
-
function addMultiple<T0 = any>(client:
|
|
1545
|
-
function createAndKeep<T0 = any>(client:
|
|
1546
|
-
function edit<T0 = any>(client:
|
|
1547
|
-
function fields<T0 = any>(client:
|
|
1548
|
-
function isAuthorized<T0 = any>(client:
|
|
1549
|
-
function new$<T0 = any>(client:
|
|
1550
|
-
function newWithFields<T0 = any>(client:
|
|
1551
|
-
function remove<T0 = any>(client:
|
|
1552
|
-
function updateVersion<T0 = any>(client:
|
|
1553
|
-
function version<T0 = any>(client:
|
|
1998
|
+
function add<T0 = any>(client: SuiJsonRpcClient, args: [string, string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
1999
|
+
function addMultiple<T0 = any>(client: SuiJsonRpcClient, args: [string, string[], string[]], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2000
|
+
function createAndKeep<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2001
|
+
function edit<T0 = any>(client: SuiJsonRpcClient, args: [string, string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2002
|
+
function fields<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
2003
|
+
function isAuthorized<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
2004
|
+
function new$<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[display.Display<T0>]>>;
|
|
2005
|
+
function newWithFields<T0 = any>(client: SuiJsonRpcClient, args: [string, string[], string[]], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[display.Display<T0>]>>;
|
|
2006
|
+
function remove<T0 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2007
|
+
function updateVersion<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2008
|
+
function version<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[number]>>;
|
|
1554
2009
|
}
|
|
1555
2010
|
interface AddPayload<T0 = any> extends TypedFunctionPayload<[string, string, string]> {
|
|
1556
2011
|
arguments_decoded: [string, string, string];
|
|
@@ -1614,22 +2069,22 @@ export declare namespace dynamic_field {
|
|
|
1614
2069
|
function removeIfExists<T0 = any, T1 = any>(tx: Transaction, args: [string | TransactionObjectArgument, T0 | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
1615
2070
|
}
|
|
1616
2071
|
namespace view {
|
|
1617
|
-
function add<T0 = any, T1 = any>(client:
|
|
1618
|
-
function addChildObject<T0 = any>(client:
|
|
1619
|
-
function borrow<T0 = any, T1 = any>(client:
|
|
1620
|
-
function borrowChildObject<T0 = any>(client:
|
|
1621
|
-
function borrowChildObjectMut<T0 = any>(client:
|
|
1622
|
-
function borrowMut<T0 = any, T1 = any>(client:
|
|
1623
|
-
function exists_<T0 = any>(client:
|
|
1624
|
-
function existsWithType<T0 = any, T1 = any>(client:
|
|
1625
|
-
function fieldInfo<T0 = any>(client:
|
|
1626
|
-
function fieldInfoMut<T0 = any>(client:
|
|
1627
|
-
function hasChildObject(client:
|
|
1628
|
-
function hasChildObjectWithTy<T0 = any>(client:
|
|
1629
|
-
function hashTypeAndKey<T0 = any>(client:
|
|
1630
|
-
function remove<T0 = any, T1 = any>(client:
|
|
1631
|
-
function removeChildObject<T0 = any>(client:
|
|
1632
|
-
function removeIfExists<T0 = any, T1 = any>(client:
|
|
2072
|
+
function add<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0, T1], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2073
|
+
function addChildObject<T0 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2074
|
+
function borrow<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
2075
|
+
function borrowChildObject<T0 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
2076
|
+
function borrowChildObjectMut<T0 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
2077
|
+
function borrowMut<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
2078
|
+
function exists_<T0 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
2079
|
+
function existsWithType<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
2080
|
+
function fieldInfo<T0 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string, string]>>;
|
|
2081
|
+
function fieldInfoMut<T0 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string, string]>>;
|
|
2082
|
+
function hasChildObject(client: SuiJsonRpcClient, args: [string, string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
2083
|
+
function hasChildObjectWithTy<T0 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
2084
|
+
function hashTypeAndKey<T0 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
2085
|
+
function remove<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T1]>>;
|
|
2086
|
+
function removeChildObject<T0 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[T0]>>;
|
|
2087
|
+
function removeIfExists<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[_0x1.option.Option<T1>]>>;
|
|
1633
2088
|
}
|
|
1634
2089
|
}
|
|
1635
2090
|
export declare class dynamic_object_field extends SuiBaseProcessor {
|
|
@@ -1681,18 +2136,18 @@ export declare namespace dynamic_object_field {
|
|
|
1681
2136
|
function remove<T0 = any, T1 = any>(tx: Transaction, args: [string | TransactionObjectArgument, T0 | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
1682
2137
|
}
|
|
1683
2138
|
namespace view {
|
|
1684
|
-
function add<T0 = any, T1 = any>(client:
|
|
1685
|
-
function borrow<T0 = any, T1 = any>(client:
|
|
1686
|
-
function borrowMut<T0 = any, T1 = any>(client:
|
|
1687
|
-
function exists_<T0 = any>(client:
|
|
1688
|
-
function existsWithType<T0 = any, T1 = any>(client:
|
|
1689
|
-
function id<T0 = any>(client:
|
|
1690
|
-
function internalAdd<T0 = any, T1 = any>(client:
|
|
1691
|
-
function internalBorrow<T0 = any, T1 = any>(client:
|
|
1692
|
-
function internalBorrowMut<T0 = any, T1 = any>(client:
|
|
1693
|
-
function internalExistsWithType<T0 = any, T1 = any>(client:
|
|
1694
|
-
function internalRemove<T0 = any, T1 = any>(client:
|
|
1695
|
-
function remove<T0 = any, T1 = any>(client:
|
|
2139
|
+
function add<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0, T1], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2140
|
+
function borrow<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
2141
|
+
function borrowMut<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
2142
|
+
function exists_<T0 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
2143
|
+
function existsWithType<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
2144
|
+
function id<T0 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[_0x1.option.Option<object$.ID>]>>;
|
|
2145
|
+
function internalAdd<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0, T1], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2146
|
+
function internalBorrow<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
2147
|
+
function internalBorrowMut<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
2148
|
+
function internalExistsWithType<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
2149
|
+
function internalRemove<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T1]>>;
|
|
2150
|
+
function remove<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T1]>>;
|
|
1696
2151
|
}
|
|
1697
2152
|
}
|
|
1698
2153
|
export declare namespace ecdsa_k1 {
|
|
@@ -1720,9 +2175,9 @@ export declare namespace ecdsa_k1 {
|
|
|
1720
2175
|
];
|
|
1721
2176
|
}
|
|
1722
2177
|
namespace view {
|
|
1723
|
-
function decompressPubkey(client:
|
|
1724
|
-
function secp256k1Ecrecover(client:
|
|
1725
|
-
function secp256k1Verify(client:
|
|
2178
|
+
function decompressPubkey(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[number[]]>>;
|
|
2179
|
+
function secp256k1Ecrecover(client: SuiJsonRpcClient, args: [string, string, number]): Promise<TypedDevInspectResults<[number[]]>>;
|
|
2180
|
+
function secp256k1Verify(client: SuiJsonRpcClient, args: [string, string, string, number]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1726
2181
|
}
|
|
1727
2182
|
}
|
|
1728
2183
|
export declare namespace ecdsa_r1 {
|
|
@@ -1749,8 +2204,8 @@ export declare namespace ecdsa_r1 {
|
|
|
1749
2204
|
];
|
|
1750
2205
|
}
|
|
1751
2206
|
namespace view {
|
|
1752
|
-
function secp256r1Ecrecover(client:
|
|
1753
|
-
function secp256r1Verify(client:
|
|
2207
|
+
function secp256r1Ecrecover(client: SuiJsonRpcClient, args: [string, string, number]): Promise<TypedDevInspectResults<[number[]]>>;
|
|
2208
|
+
function secp256r1Verify(client: SuiJsonRpcClient, args: [string, string, string, number]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1754
2209
|
}
|
|
1755
2210
|
}
|
|
1756
2211
|
export declare namespace ecvrf {
|
|
@@ -1768,7 +2223,7 @@ export declare namespace ecvrf {
|
|
|
1768
2223
|
];
|
|
1769
2224
|
}
|
|
1770
2225
|
namespace view {
|
|
1771
|
-
function ecvrfVerify(client:
|
|
2226
|
+
function ecvrfVerify(client: SuiJsonRpcClient, args: [string, string, string, string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1772
2227
|
}
|
|
1773
2228
|
}
|
|
1774
2229
|
export declare namespace ed25519 {
|
|
@@ -1784,15 +2239,53 @@ export declare namespace ed25519 {
|
|
|
1784
2239
|
];
|
|
1785
2240
|
}
|
|
1786
2241
|
namespace view {
|
|
1787
|
-
function ed25519Verify(client:
|
|
2242
|
+
function ed25519Verify(client: SuiJsonRpcClient, args: [string, string, string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1788
2243
|
}
|
|
1789
2244
|
}
|
|
1790
2245
|
export declare namespace event {
|
|
1791
2246
|
namespace builder {
|
|
1792
2247
|
function emit<T0 = any>(tx: Transaction, args: [T0 | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
2248
|
+
function emitAuthenticated<T0 = any>(tx: Transaction, args: [T0 | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
1793
2249
|
}
|
|
1794
2250
|
namespace view {
|
|
1795
|
-
function emit<T0 = any>(client:
|
|
2251
|
+
function emit<T0 = any>(client: SuiJsonRpcClient, args: [T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2252
|
+
function emitAuthenticated<T0 = any>(client: SuiJsonRpcClient, args: [T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2253
|
+
}
|
|
2254
|
+
}
|
|
2255
|
+
export declare namespace funds_accumulator {
|
|
2256
|
+
interface Withdrawal<T0> {
|
|
2257
|
+
owner: string;
|
|
2258
|
+
limit: bigint;
|
|
2259
|
+
}
|
|
2260
|
+
namespace Withdrawal {
|
|
2261
|
+
const TYPE_QNAME = "0x2::funds_accumulator::Withdrawal";
|
|
2262
|
+
function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<Withdrawal<T0>>;
|
|
2263
|
+
}
|
|
2264
|
+
namespace builder {
|
|
2265
|
+
function addImpl<T0 = any>(tx: Transaction, args: [T0 | TransactionArgument, string | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
2266
|
+
function createWithdrawal<T0 = any>(tx: Transaction, args: [string | TransactionArgument, bigint | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
2267
|
+
function redeem<T0 = any>(tx: Transaction, args: [
|
|
2268
|
+
funds_accumulator.Withdrawal<T0> | TransactionArgument,
|
|
2269
|
+
_0x1.internal.Permit<T0> | TransactionArgument
|
|
2270
|
+
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
2271
|
+
function withdrawFromObject<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument, bigint | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
2272
|
+
function withdrawalJoin<T0 = any>(tx: Transaction, args: [
|
|
2273
|
+
string | TransactionObjectArgument,
|
|
2274
|
+
funds_accumulator.Withdrawal<T0> | TransactionArgument
|
|
2275
|
+
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
2276
|
+
function withdrawalLimit<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
2277
|
+
function withdrawalOwner<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
2278
|
+
function withdrawalSplit<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument, bigint | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
2279
|
+
}
|
|
2280
|
+
namespace view {
|
|
2281
|
+
function addImpl<T0 = any>(client: SuiJsonRpcClient, args: [T0, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2282
|
+
function createWithdrawal<T0 = any>(client: SuiJsonRpcClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[funds_accumulator.Withdrawal<T0>]>>;
|
|
2283
|
+
function redeem<T0 = any>(client: SuiJsonRpcClient, args: [funds_accumulator.Withdrawal<T0>, _0x1.internal.Permit<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[T0]>>;
|
|
2284
|
+
function withdrawFromObject<T0 = any>(client: SuiJsonRpcClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[funds_accumulator.Withdrawal<T0>]>>;
|
|
2285
|
+
function withdrawalJoin<T0 = any>(client: SuiJsonRpcClient, args: [string, funds_accumulator.Withdrawal<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2286
|
+
function withdrawalLimit<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
2287
|
+
function withdrawalOwner<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
2288
|
+
function withdrawalSplit<T0 = any>(client: SuiJsonRpcClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[funds_accumulator.Withdrawal<T0>]>>;
|
|
1796
2289
|
}
|
|
1797
2290
|
}
|
|
1798
2291
|
export declare class groth16 extends SuiBaseProcessor {
|
|
@@ -1886,14 +2379,14 @@ export declare namespace groth16 {
|
|
|
1886
2379
|
];
|
|
1887
2380
|
}
|
|
1888
2381
|
namespace view {
|
|
1889
|
-
function bls12381(client:
|
|
1890
|
-
function bn254(client:
|
|
1891
|
-
function prepareVerifyingKey(client:
|
|
1892
|
-
function proofPointsFromBytes(client:
|
|
1893
|
-
function publicProofInputsFromBytes(client:
|
|
1894
|
-
function pvkFromBytes(client:
|
|
1895
|
-
function pvkToBytes(client:
|
|
1896
|
-
function verifyGroth16Proof(client:
|
|
2382
|
+
function bls12381(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[groth16.Curve]>>;
|
|
2383
|
+
function bn254(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[groth16.Curve]>>;
|
|
2384
|
+
function prepareVerifyingKey(client: SuiJsonRpcClient, args: [string, string]): Promise<TypedDevInspectResults<[groth16.PreparedVerifyingKey]>>;
|
|
2385
|
+
function proofPointsFromBytes(client: SuiJsonRpcClient, args: [string[]]): Promise<TypedDevInspectResults<[groth16.ProofPoints]>>;
|
|
2386
|
+
function publicProofInputsFromBytes(client: SuiJsonRpcClient, args: [string[]]): Promise<TypedDevInspectResults<[groth16.PublicProofInputs]>>;
|
|
2387
|
+
function pvkFromBytes(client: SuiJsonRpcClient, args: [string[], string[], string[], string[]]): Promise<TypedDevInspectResults<[groth16.PreparedVerifyingKey]>>;
|
|
2388
|
+
function pvkToBytes(client: SuiJsonRpcClient, args: [groth16.PreparedVerifyingKey]): Promise<TypedDevInspectResults<[number[][]]>>;
|
|
2389
|
+
function verifyGroth16Proof(client: SuiJsonRpcClient, args: [string, string, string, string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
1897
2390
|
}
|
|
1898
2391
|
}
|
|
1899
2392
|
export declare class group_ops extends SuiBaseProcessor {
|
|
@@ -1949,7 +2442,7 @@ export declare namespace group_ops {
|
|
|
1949
2442
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
1950
2443
|
function fromBytes<T0 = any>(tx: Transaction, args: [
|
|
1951
2444
|
number | TransactionArgument,
|
|
1952
|
-
string | TransactionObjectArgument,
|
|
2445
|
+
(string | TransactionObjectArgument)[] | TransactionArgument,
|
|
1953
2446
|
boolean | TransactionArgument
|
|
1954
2447
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [
|
|
1955
2448
|
TransactionArgument,
|
|
@@ -2009,23 +2502,23 @@ export declare namespace group_ops {
|
|
|
2009
2502
|
function sum<T0 = any>(tx: Transaction, args: [number | TransactionArgument, string | TransactionObjectArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
2010
2503
|
}
|
|
2011
2504
|
namespace view {
|
|
2012
|
-
function add<T0 = any>(client:
|
|
2013
|
-
function bytes<T0 = any>(client:
|
|
2014
|
-
function convert<T0 = any, T1 = any>(client:
|
|
2015
|
-
function div<T0 = any, T1 = any>(client:
|
|
2016
|
-
function equal<T0 = any>(client:
|
|
2017
|
-
function fromBytes<T0 = any>(client:
|
|
2018
|
-
function hashTo<T0 = any>(client:
|
|
2019
|
-
function mul<T0 = any, T1 = any>(client:
|
|
2020
|
-
function multiScalarMultiplication<T0 = any, T1 = any>(client:
|
|
2021
|
-
function pairing<T0 = any, T1 = any, T2 = any>(client:
|
|
2505
|
+
function add<T0 = any>(client: SuiJsonRpcClient, args: [number, string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[group_ops.Element<T0>]>>;
|
|
2506
|
+
function bytes<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
2507
|
+
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>]>>;
|
|
2508
|
+
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>]>>;
|
|
2509
|
+
function equal<T0 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
2510
|
+
function fromBytes<T0 = any>(client: SuiJsonRpcClient, args: [number, string[], boolean], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[group_ops.Element<T0>]>>;
|
|
2511
|
+
function hashTo<T0 = any>(client: SuiJsonRpcClient, args: [number, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[group_ops.Element<T0>]>>;
|
|
2512
|
+
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>]>>;
|
|
2513
|
+
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>]>>;
|
|
2514
|
+
function pairing<T0 = any, T1 = any, T2 = any>(client: SuiJsonRpcClient, args: [number, string, string], typeArguments: [
|
|
2022
2515
|
TypeDescriptor<T0> | string,
|
|
2023
2516
|
TypeDescriptor<T1> | string,
|
|
2024
2517
|
TypeDescriptor<T2> | string
|
|
2025
2518
|
]): Promise<TypedDevInspectResults<[group_ops.Element<T2>]>>;
|
|
2026
|
-
function setAsPrefix(client:
|
|
2027
|
-
function sub<T0 = any>(client:
|
|
2028
|
-
function sum<T0 = any>(client:
|
|
2519
|
+
function setAsPrefix(client: SuiJsonRpcClient, args: [bigint, boolean, string]): Promise<TypedDevInspectResults<[]>>;
|
|
2520
|
+
function sub<T0 = any>(client: SuiJsonRpcClient, args: [number, string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[group_ops.Element<T0>]>>;
|
|
2521
|
+
function sum<T0 = any>(client: SuiJsonRpcClient, args: [number, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[group_ops.Element<T0>]>>;
|
|
2029
2522
|
}
|
|
2030
2523
|
}
|
|
2031
2524
|
export declare namespace hash {
|
|
@@ -2034,8 +2527,8 @@ export declare namespace hash {
|
|
|
2034
2527
|
function keccak256(tx: Transaction, args: [string | TransactionObjectArgument]): TransactionArgument & [TransactionArgument];
|
|
2035
2528
|
}
|
|
2036
2529
|
namespace view {
|
|
2037
|
-
function blake2b256(client:
|
|
2038
|
-
function keccak256(client:
|
|
2530
|
+
function blake2b256(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[number[]]>>;
|
|
2531
|
+
function keccak256(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[number[]]>>;
|
|
2039
2532
|
}
|
|
2040
2533
|
}
|
|
2041
2534
|
export declare namespace hex {
|
|
@@ -2044,8 +2537,8 @@ export declare namespace hex {
|
|
|
2044
2537
|
function encode(tx: Transaction, args: [(string | TransactionObjectArgument)[] | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
|
2045
2538
|
}
|
|
2046
2539
|
namespace view {
|
|
2047
|
-
function decode(client:
|
|
2048
|
-
function encode(client:
|
|
2540
|
+
function decode(client: SuiJsonRpcClient, args: [string[]]): Promise<TypedDevInspectResults<[number[]]>>;
|
|
2541
|
+
function encode(client: SuiJsonRpcClient, args: [string[]]): Promise<TypedDevInspectResults<[number[]]>>;
|
|
2049
2542
|
}
|
|
2050
2543
|
}
|
|
2051
2544
|
export declare namespace hmac {
|
|
@@ -2056,7 +2549,7 @@ export declare namespace hmac {
|
|
|
2056
2549
|
]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
2057
2550
|
}
|
|
2058
2551
|
namespace view {
|
|
2059
|
-
function hmacSha3256(client:
|
|
2552
|
+
function hmacSha3256(client: SuiJsonRpcClient, args: [string, string]): Promise<TypedDevInspectResults<[number[]]>>;
|
|
2060
2553
|
}
|
|
2061
2554
|
}
|
|
2062
2555
|
export declare class kiosk extends SuiBaseProcessor {
|
|
@@ -2394,46 +2887,46 @@ export declare namespace kiosk {
|
|
|
2394
2887
|
];
|
|
2395
2888
|
}
|
|
2396
2889
|
namespace view {
|
|
2397
|
-
function borrow<T0 = any>(client:
|
|
2398
|
-
function borrowMut<T0 = any>(client:
|
|
2399
|
-
function borrowVal<T0 = any>(client:
|
|
2400
|
-
function closeAndWithdraw(client:
|
|
2401
|
-
function delist<T0 = any>(client:
|
|
2402
|
-
function hasAccess(client:
|
|
2403
|
-
function hasItem(client:
|
|
2404
|
-
function hasItemWithType<T0 = any>(client:
|
|
2405
|
-
function isListed(client:
|
|
2406
|
-
function isListedExclusively(client:
|
|
2407
|
-
function isLocked(client:
|
|
2408
|
-
function itemCount(client:
|
|
2409
|
-
function kioskOwnerCapFor(client:
|
|
2410
|
-
function list<T0 = any>(client:
|
|
2411
|
-
function listWithPurchaseCap<T0 = any>(client:
|
|
2412
|
-
function lock<T0 = any>(client:
|
|
2413
|
-
function lockInternal<T0 = any>(client:
|
|
2414
|
-
function new$(client:
|
|
2415
|
-
function owner(client:
|
|
2416
|
-
function place<T0 = any>(client:
|
|
2417
|
-
function placeAndList<T0 = any>(client:
|
|
2418
|
-
function placeInternal<T0 = any>(client:
|
|
2419
|
-
function profitsAmount(client:
|
|
2420
|
-
function profitsMut(client:
|
|
2421
|
-
function purchase<T0 = any>(client:
|
|
2422
|
-
function purchaseCapItem<T0 = any>(client:
|
|
2423
|
-
function purchaseCapKiosk<T0 = any>(client:
|
|
2424
|
-
function purchaseCapMinPrice<T0 = any>(client:
|
|
2425
|
-
function purchaseWithCap<T0 = any>(client:
|
|
2426
|
-
function returnPurchaseCap<T0 = any>(client:
|
|
2427
|
-
function returnVal<T0 = any>(client:
|
|
2428
|
-
function setAllowExtensions(client:
|
|
2429
|
-
function setOwner(client:
|
|
2430
|
-
function setOwnerCustom(client:
|
|
2431
|
-
function take<T0 = any>(client:
|
|
2432
|
-
function uid(client:
|
|
2433
|
-
function uidMut(client:
|
|
2434
|
-
function uidMutAsOwner(client:
|
|
2435
|
-
function uidMutInternal(client:
|
|
2436
|
-
function withdraw(client:
|
|
2890
|
+
function borrow<T0 = any>(client: SuiJsonRpcClient, args: [string, string, object$.ID], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
2891
|
+
function borrowMut<T0 = any>(client: SuiJsonRpcClient, args: [string, string, object$.ID], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
2892
|
+
function borrowVal<T0 = any>(client: SuiJsonRpcClient, args: [string, string, object$.ID], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[T0, kiosk.Borrow]>>;
|
|
2893
|
+
function closeAndWithdraw(client: SuiJsonRpcClient, args: [kiosk.Kiosk, kiosk.KioskOwnerCap]): Promise<TypedDevInspectResults<[coin.Coin<sui.SUI>]>>;
|
|
2894
|
+
function delist<T0 = any>(client: SuiJsonRpcClient, args: [string, string, object$.ID], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2895
|
+
function hasAccess(client: SuiJsonRpcClient, args: [string, string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
2896
|
+
function hasItem(client: SuiJsonRpcClient, args: [string, object$.ID]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
2897
|
+
function hasItemWithType<T0 = any>(client: SuiJsonRpcClient, args: [string, object$.ID], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
2898
|
+
function isListed(client: SuiJsonRpcClient, args: [string, object$.ID]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
2899
|
+
function isListedExclusively(client: SuiJsonRpcClient, args: [string, object$.ID]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
2900
|
+
function isLocked(client: SuiJsonRpcClient, args: [string, object$.ID]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
2901
|
+
function itemCount(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[number]>>;
|
|
2902
|
+
function kioskOwnerCapFor(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[object$.ID]>>;
|
|
2903
|
+
function list<T0 = any>(client: SuiJsonRpcClient, args: [string, string, object$.ID, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2904
|
+
function listWithPurchaseCap<T0 = any>(client: SuiJsonRpcClient, args: [string, string, object$.ID, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[kiosk.PurchaseCap<T0>]>>;
|
|
2905
|
+
function lock<T0 = any>(client: SuiJsonRpcClient, args: [string, string, string, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2906
|
+
function lockInternal<T0 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2907
|
+
function new$(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[kiosk.Kiosk, kiosk.KioskOwnerCap]>>;
|
|
2908
|
+
function owner(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
|
2909
|
+
function place<T0 = any>(client: SuiJsonRpcClient, args: [string, string, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2910
|
+
function placeAndList<T0 = any>(client: SuiJsonRpcClient, args: [string, string, T0, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2911
|
+
function placeInternal<T0 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2912
|
+
function profitsAmount(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
2913
|
+
function profitsMut(client: SuiJsonRpcClient, args: [string, string]): Promise<TypedDevInspectResults<[string]>>;
|
|
2914
|
+
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>]>>;
|
|
2915
|
+
function purchaseCapItem<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[object$.ID]>>;
|
|
2916
|
+
function purchaseCapKiosk<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[object$.ID]>>;
|
|
2917
|
+
function purchaseCapMinPrice<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
2918
|
+
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>]>>;
|
|
2919
|
+
function returnPurchaseCap<T0 = any>(client: SuiJsonRpcClient, args: [string, kiosk.PurchaseCap<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2920
|
+
function returnVal<T0 = any>(client: SuiJsonRpcClient, args: [string, T0, kiosk.Borrow], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
2921
|
+
function setAllowExtensions(client: SuiJsonRpcClient, args: [string, string, boolean]): Promise<TypedDevInspectResults<[]>>;
|
|
2922
|
+
function setOwner(client: SuiJsonRpcClient, args: [string, string]): Promise<TypedDevInspectResults<[]>>;
|
|
2923
|
+
function setOwnerCustom(client: SuiJsonRpcClient, args: [string, string, string]): Promise<TypedDevInspectResults<[]>>;
|
|
2924
|
+
function take<T0 = any>(client: SuiJsonRpcClient, args: [string, string, object$.ID], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[T0]>>;
|
|
2925
|
+
function uid(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
|
2926
|
+
function uidMut(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
|
2927
|
+
function uidMutAsOwner(client: SuiJsonRpcClient, args: [string, string]): Promise<TypedDevInspectResults<[string]>>;
|
|
2928
|
+
function uidMutInternal(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
|
2929
|
+
function withdraw(client: SuiJsonRpcClient, args: [string, string, _0x1.option.Option<bigint>]): Promise<TypedDevInspectResults<[coin.Coin<sui.SUI>]>>;
|
|
2437
2930
|
}
|
|
2438
2931
|
interface DefaultPayload extends TypedFunctionPayload<[string]> {
|
|
2439
2932
|
arguments_decoded: [string];
|
|
@@ -2521,18 +3014,18 @@ export declare namespace kiosk_extension {
|
|
|
2521
3014
|
function storageMut<T0 = any>(tx: Transaction, args: [T0 | TransactionArgument, string | TransactionObjectArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
2522
3015
|
}
|
|
2523
3016
|
namespace view {
|
|
2524
|
-
function add<T0 = any>(client:
|
|
2525
|
-
function canLock<T0 = any>(client:
|
|
2526
|
-
function canPlace<T0 = any>(client:
|
|
2527
|
-
function disable<T0 = any>(client:
|
|
2528
|
-
function enable<T0 = any>(client:
|
|
2529
|
-
function isEnabled<T0 = any>(client:
|
|
2530
|
-
function isInstalled<T0 = any>(client:
|
|
2531
|
-
function lock<T0 = any, T1 = any>(client:
|
|
2532
|
-
function place<T0 = any, T1 = any>(client:
|
|
2533
|
-
function remove<T0 = any>(client:
|
|
2534
|
-
function storage<T0 = any>(client:
|
|
2535
|
-
function storageMut<T0 = any>(client:
|
|
3017
|
+
function add<T0 = any>(client: SuiJsonRpcClient, args: [T0, string, string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3018
|
+
function canLock<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
3019
|
+
function canPlace<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
3020
|
+
function disable<T0 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3021
|
+
function enable<T0 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3022
|
+
function isEnabled<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
3023
|
+
function isInstalled<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
3024
|
+
function lock<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [T0, string, T1, string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3025
|
+
function place<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [T0, string, T1, string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3026
|
+
function remove<T0 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3027
|
+
function storage<T0 = any>(client: SuiJsonRpcClient, args: [T0, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
3028
|
+
function storageMut<T0 = any>(client: SuiJsonRpcClient, args: [T0, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
2536
3029
|
}
|
|
2537
3030
|
}
|
|
2538
3031
|
export declare namespace linked_table {
|
|
@@ -2591,23 +3084,23 @@ export declare namespace linked_table {
|
|
|
2591
3084
|
function remove<T0 = any, T1 = any>(tx: Transaction, args: [string | TransactionObjectArgument, T0 | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
2592
3085
|
}
|
|
2593
3086
|
namespace view {
|
|
2594
|
-
function back<T0 = any, T1 = any>(client:
|
|
2595
|
-
function borrow<T0 = any, T1 = any>(client:
|
|
2596
|
-
function borrowMut<T0 = any, T1 = any>(client:
|
|
2597
|
-
function contains<T0 = any, T1 = any>(client:
|
|
2598
|
-
function destroyEmpty<T0 = any, T1 = any>(client:
|
|
2599
|
-
function drop<T0 = any, T1 = any>(client:
|
|
2600
|
-
function front<T0 = any, T1 = any>(client:
|
|
2601
|
-
function isEmpty<T0 = any, T1 = any>(client:
|
|
2602
|
-
function length<T0 = any, T1 = any>(client:
|
|
2603
|
-
function new$<T0 = any, T1 = any>(client:
|
|
2604
|
-
function next<T0 = any, T1 = any>(client:
|
|
2605
|
-
function popBack<T0 = any, T1 = any>(client:
|
|
2606
|
-
function popFront<T0 = any, T1 = any>(client:
|
|
2607
|
-
function prev<T0 = any, T1 = any>(client:
|
|
2608
|
-
function pushBack<T0 = any, T1 = any>(client:
|
|
2609
|
-
function pushFront<T0 = any, T1 = any>(client:
|
|
2610
|
-
function remove<T0 = any, T1 = any>(client:
|
|
3087
|
+
function back<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
3088
|
+
function borrow<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
3089
|
+
function borrowMut<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
3090
|
+
function contains<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
3091
|
+
function destroyEmpty<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [linked_table.LinkedTable<T0, T1>], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3092
|
+
function drop<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [linked_table.LinkedTable<T0, T1>], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3093
|
+
function front<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
3094
|
+
function isEmpty<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
3095
|
+
function length<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
3096
|
+
function new$<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[linked_table.LinkedTable<T0, T1>]>>;
|
|
3097
|
+
function next<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
3098
|
+
function popBack<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T0, T1]>>;
|
|
3099
|
+
function popFront<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T0, T1]>>;
|
|
3100
|
+
function prev<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
3101
|
+
function pushBack<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0, T1], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3102
|
+
function pushFront<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0, T1], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3103
|
+
function remove<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T1]>>;
|
|
2611
3104
|
}
|
|
2612
3105
|
}
|
|
2613
3106
|
export declare namespace math {
|
|
@@ -2621,13 +3114,13 @@ export declare namespace math {
|
|
|
2621
3114
|
function sqrtU128(tx: Transaction, args: [bigint | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
|
2622
3115
|
}
|
|
2623
3116
|
namespace view {
|
|
2624
|
-
function diff(client:
|
|
2625
|
-
function divideAndRoundUp(client:
|
|
2626
|
-
function max(client:
|
|
2627
|
-
function min(client:
|
|
2628
|
-
function pow(client:
|
|
2629
|
-
function sqrt(client:
|
|
2630
|
-
function sqrtU128(client:
|
|
3117
|
+
function diff(client: SuiJsonRpcClient, args: [bigint, bigint]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
3118
|
+
function divideAndRoundUp(client: SuiJsonRpcClient, args: [bigint, bigint]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
3119
|
+
function max(client: SuiJsonRpcClient, args: [bigint, bigint]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
3120
|
+
function min(client: SuiJsonRpcClient, args: [bigint, bigint]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
3121
|
+
function pow(client: SuiJsonRpcClient, args: [bigint, number]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
3122
|
+
function sqrt(client: SuiJsonRpcClient, args: [bigint]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
3123
|
+
function sqrtU128(client: SuiJsonRpcClient, args: [bigint]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
2631
3124
|
}
|
|
2632
3125
|
}
|
|
2633
3126
|
export declare class nitro_attestation extends SuiBaseProcessor {
|
|
@@ -2674,15 +3167,15 @@ export declare namespace nitro_attestation {
|
|
|
2674
3167
|
function value(tx: Transaction, args: [string | TransactionObjectArgument]): TransactionArgument & [TransactionArgument];
|
|
2675
3168
|
}
|
|
2676
3169
|
namespace view {
|
|
2677
|
-
function digest(client:
|
|
2678
|
-
function index(client:
|
|
2679
|
-
function moduleId(client:
|
|
2680
|
-
function nonce(client:
|
|
2681
|
-
function pcrs(client:
|
|
2682
|
-
function publicKey(client:
|
|
2683
|
-
function timestamp(client:
|
|
2684
|
-
function userData(client:
|
|
2685
|
-
function value(client:
|
|
3170
|
+
function digest(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
|
3171
|
+
function index(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[number]>>;
|
|
3172
|
+
function moduleId(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
|
3173
|
+
function nonce(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
|
3174
|
+
function pcrs(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
|
3175
|
+
function publicKey(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
|
3176
|
+
function timestamp(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
|
3177
|
+
function userData(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
|
3178
|
+
function value(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
|
2686
3179
|
}
|
|
2687
3180
|
interface LoadNitroAttestationPayload extends TypedFunctionPayload<[number[], string]> {
|
|
2688
3181
|
arguments_decoded: [number[], string];
|
|
@@ -2703,6 +3196,7 @@ export declare namespace object$ {
|
|
|
2703
3196
|
function type(): TypeDescriptor<UID>;
|
|
2704
3197
|
}
|
|
2705
3198
|
namespace builder {
|
|
3199
|
+
function addressAliasState(tx: Transaction, args: []): TransactionArgument & [];
|
|
2706
3200
|
function authenticatorState(tx: Transaction, args: []): TransactionArgument & [];
|
|
2707
3201
|
function borrowId<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
2708
3202
|
function clock(tx: Transaction, args: []): TransactionArgument & [];
|
|
@@ -2719,6 +3213,8 @@ export declare namespace object$ {
|
|
|
2719
3213
|
function randomnessState(tx: Transaction, args: []): TransactionArgument & [];
|
|
2720
3214
|
function suiAccumulatorRootAddress(tx: Transaction, args: []): TransactionArgument & [];
|
|
2721
3215
|
function suiAccumulatorRootObjectId(tx: Transaction, args: []): TransactionArgument & [];
|
|
3216
|
+
function suiCoinRegistryAddress(tx: Transaction, args: []): TransactionArgument & [];
|
|
3217
|
+
function suiCoinRegistryObjectId(tx: Transaction, args: []): TransactionArgument & [];
|
|
2722
3218
|
function suiDenyListObjectId(tx: Transaction, args: []): TransactionArgument & [];
|
|
2723
3219
|
function uidAsInner(tx: Transaction, args: [string | TransactionObjectArgument]): TransactionArgument & [TransactionArgument];
|
|
2724
3220
|
function uidToAddress(tx: Transaction, args: [string | TransactionObjectArgument]): TransactionArgument & [TransactionArgument];
|
|
@@ -2726,27 +3222,30 @@ export declare namespace object$ {
|
|
|
2726
3222
|
function uidToInner(tx: Transaction, args: [string | TransactionObjectArgument]): TransactionArgument & [TransactionArgument];
|
|
2727
3223
|
}
|
|
2728
3224
|
namespace view {
|
|
2729
|
-
function
|
|
2730
|
-
function
|
|
2731
|
-
function
|
|
2732
|
-
function
|
|
2733
|
-
function
|
|
2734
|
-
function
|
|
2735
|
-
function
|
|
2736
|
-
function
|
|
2737
|
-
function
|
|
2738
|
-
function
|
|
2739
|
-
function
|
|
2740
|
-
function
|
|
2741
|
-
function
|
|
2742
|
-
function
|
|
2743
|
-
function
|
|
2744
|
-
function
|
|
2745
|
-
function
|
|
2746
|
-
function
|
|
2747
|
-
function
|
|
2748
|
-
function
|
|
2749
|
-
function
|
|
3225
|
+
function addressAliasState(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[object$.UID]>>;
|
|
3226
|
+
function authenticatorState(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[object$.UID]>>;
|
|
3227
|
+
function borrowId<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
3228
|
+
function clock(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[object$.UID]>>;
|
|
3229
|
+
function delete$(client: SuiJsonRpcClient, args: [object$.UID]): Promise<TypedDevInspectResults<[]>>;
|
|
3230
|
+
function id<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[object$.ID]>>;
|
|
3231
|
+
function idAddress<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
3232
|
+
function idBytes<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[number[]]>>;
|
|
3233
|
+
function idFromAddress(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[object$.ID]>>;
|
|
3234
|
+
function idFromBytes(client: SuiJsonRpcClient, args: [string[]]): Promise<TypedDevInspectResults<[object$.ID]>>;
|
|
3235
|
+
function idToAddress(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
|
3236
|
+
function idToBytes(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[number[]]>>;
|
|
3237
|
+
function new$(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[object$.UID]>>;
|
|
3238
|
+
function newUidFromHash(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[object$.UID]>>;
|
|
3239
|
+
function randomnessState(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[object$.UID]>>;
|
|
3240
|
+
function suiAccumulatorRootAddress(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[string]>>;
|
|
3241
|
+
function suiAccumulatorRootObjectId(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[object$.UID]>>;
|
|
3242
|
+
function suiCoinRegistryAddress(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[string]>>;
|
|
3243
|
+
function suiCoinRegistryObjectId(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[object$.UID]>>;
|
|
3244
|
+
function suiDenyListObjectId(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[object$.UID]>>;
|
|
3245
|
+
function uidAsInner(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
|
3246
|
+
function uidToAddress(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
|
3247
|
+
function uidToBytes(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[number[]]>>;
|
|
3248
|
+
function uidToInner(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[object$.ID]>>;
|
|
2750
3249
|
}
|
|
2751
3250
|
}
|
|
2752
3251
|
export declare namespace object_bag {
|
|
@@ -2780,17 +3279,17 @@ export declare namespace object_bag {
|
|
|
2780
3279
|
function valueId<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument, T0 | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
2781
3280
|
}
|
|
2782
3281
|
namespace view {
|
|
2783
|
-
function add<T0 = any, T1 = any>(client:
|
|
2784
|
-
function borrow<T0 = any, T1 = any>(client:
|
|
2785
|
-
function borrowMut<T0 = any, T1 = any>(client:
|
|
2786
|
-
function contains<T0 = any>(client:
|
|
2787
|
-
function containsWithType<T0 = any, T1 = any>(client:
|
|
2788
|
-
function destroyEmpty(client:
|
|
2789
|
-
function isEmpty(client:
|
|
2790
|
-
function length(client:
|
|
2791
|
-
function new$(client:
|
|
2792
|
-
function remove<T0 = any, T1 = any>(client:
|
|
2793
|
-
function valueId<T0 = any>(client:
|
|
3282
|
+
function add<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0, T1], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3283
|
+
function borrow<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
3284
|
+
function borrowMut<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
3285
|
+
function contains<T0 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
3286
|
+
function containsWithType<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
3287
|
+
function destroyEmpty(client: SuiJsonRpcClient, args: [object_bag.ObjectBag]): Promise<TypedDevInspectResults<[]>>;
|
|
3288
|
+
function isEmpty(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
3289
|
+
function length(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
3290
|
+
function new$(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[object_bag.ObjectBag]>>;
|
|
3291
|
+
function remove<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T1]>>;
|
|
3292
|
+
function valueId<T0 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[_0x1.option.Option<object$.ID>]>>;
|
|
2794
3293
|
}
|
|
2795
3294
|
}
|
|
2796
3295
|
export declare namespace object_table {
|
|
@@ -2823,16 +3322,16 @@ export declare namespace object_table {
|
|
|
2823
3322
|
function valueId<T0 = any, T1 = any>(tx: Transaction, args: [string | TransactionObjectArgument, T0 | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
2824
3323
|
}
|
|
2825
3324
|
namespace view {
|
|
2826
|
-
function add<T0 = any, T1 = any>(client:
|
|
2827
|
-
function borrow<T0 = any, T1 = any>(client:
|
|
2828
|
-
function borrowMut<T0 = any, T1 = any>(client:
|
|
2829
|
-
function contains<T0 = any, T1 = any>(client:
|
|
2830
|
-
function destroyEmpty<T0 = any, T1 = any>(client:
|
|
2831
|
-
function isEmpty<T0 = any, T1 = any>(client:
|
|
2832
|
-
function length<T0 = any, T1 = any>(client:
|
|
2833
|
-
function new$<T0 = any, T1 = any>(client:
|
|
2834
|
-
function remove<T0 = any, T1 = any>(client:
|
|
2835
|
-
function valueId<T0 = any, T1 = any>(client:
|
|
3325
|
+
function add<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0, T1], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3326
|
+
function borrow<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
3327
|
+
function borrowMut<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
3328
|
+
function contains<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
3329
|
+
function destroyEmpty<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [object_table.ObjectTable<T0, T1>], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3330
|
+
function isEmpty<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
3331
|
+
function length<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
3332
|
+
function new$<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[object_table.ObjectTable<T0, T1>]>>;
|
|
3333
|
+
function remove<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T1]>>;
|
|
3334
|
+
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>]>>;
|
|
2836
3335
|
}
|
|
2837
3336
|
}
|
|
2838
3337
|
export declare class package$ extends SuiBaseProcessor {
|
|
@@ -2918,29 +3417,29 @@ export declare namespace package$ {
|
|
|
2918
3417
|
function version(tx: Transaction, args: [string | TransactionObjectArgument]): TransactionArgument & [TransactionArgument];
|
|
2919
3418
|
}
|
|
2920
3419
|
namespace view {
|
|
2921
|
-
function additivePolicy(client:
|
|
2922
|
-
function authorizeUpgrade(client:
|
|
2923
|
-
function burnPublisher(client:
|
|
2924
|
-
function claim<T0 = any>(client:
|
|
2925
|
-
function claimAndKeep<T0 = any>(client:
|
|
2926
|
-
function commitUpgrade(client:
|
|
2927
|
-
function compatiblePolicy(client:
|
|
2928
|
-
function depOnlyPolicy(client:
|
|
2929
|
-
function fromModule<T0 = any>(client:
|
|
2930
|
-
function fromPackage<T0 = any>(client:
|
|
2931
|
-
function makeImmutable(client:
|
|
2932
|
-
function onlyAdditiveUpgrades(client:
|
|
2933
|
-
function onlyDepUpgrades(client:
|
|
2934
|
-
function publishedModule(client:
|
|
2935
|
-
function publishedPackage(client:
|
|
2936
|
-
function receiptCap(client:
|
|
2937
|
-
function receiptPackage(client:
|
|
2938
|
-
function ticketDigest(client:
|
|
2939
|
-
function ticketPackage(client:
|
|
2940
|
-
function ticketPolicy(client:
|
|
2941
|
-
function upgradePackage(client:
|
|
2942
|
-
function upgradePolicy(client:
|
|
2943
|
-
function version(client:
|
|
3420
|
+
function additivePolicy(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[number]>>;
|
|
3421
|
+
function authorizeUpgrade(client: SuiJsonRpcClient, args: [string, number, string[]]): Promise<TypedDevInspectResults<[package$.UpgradeTicket]>>;
|
|
3422
|
+
function burnPublisher(client: SuiJsonRpcClient, args: [package$.Publisher]): Promise<TypedDevInspectResults<[]>>;
|
|
3423
|
+
function claim<T0 = any>(client: SuiJsonRpcClient, args: [T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[package$.Publisher]>>;
|
|
3424
|
+
function claimAndKeep<T0 = any>(client: SuiJsonRpcClient, args: [T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3425
|
+
function commitUpgrade(client: SuiJsonRpcClient, args: [string, package$.UpgradeReceipt]): Promise<TypedDevInspectResults<[]>>;
|
|
3426
|
+
function compatiblePolicy(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[number]>>;
|
|
3427
|
+
function depOnlyPolicy(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[number]>>;
|
|
3428
|
+
function fromModule<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
3429
|
+
function fromPackage<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
3430
|
+
function makeImmutable(client: SuiJsonRpcClient, args: [package$.UpgradeCap]): Promise<TypedDevInspectResults<[]>>;
|
|
3431
|
+
function onlyAdditiveUpgrades(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[]>>;
|
|
3432
|
+
function onlyDepUpgrades(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[]>>;
|
|
3433
|
+
function publishedModule(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
|
3434
|
+
function publishedPackage(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
|
3435
|
+
function receiptCap(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[object$.ID]>>;
|
|
3436
|
+
function receiptPackage(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[object$.ID]>>;
|
|
3437
|
+
function ticketDigest(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
|
3438
|
+
function ticketPackage(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[object$.ID]>>;
|
|
3439
|
+
function ticketPolicy(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[number]>>;
|
|
3440
|
+
function upgradePackage(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[object$.ID]>>;
|
|
3441
|
+
function upgradePolicy(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[number]>>;
|
|
3442
|
+
function version(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
2944
3443
|
}
|
|
2945
3444
|
interface MakeImmutablePayload extends TypedFunctionPayload<[package$.UpgradeCap]> {
|
|
2946
3445
|
arguments_decoded: [package$.UpgradeCap];
|
|
@@ -2992,9 +3491,9 @@ export declare namespace party {
|
|
|
2992
3491
|
function singleOwner(tx: Transaction, args: [string | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
|
2993
3492
|
}
|
|
2994
3493
|
namespace view {
|
|
2995
|
-
function intoNative(client:
|
|
2996
|
-
function isSingleOwner(client:
|
|
2997
|
-
function singleOwner(client:
|
|
3494
|
+
function intoNative(client: SuiJsonRpcClient, args: [party.Party]): Promise<TypedDevInspectResults<[bigint, string[], bigint[]]>>;
|
|
3495
|
+
function isSingleOwner(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
3496
|
+
function singleOwner(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[party.Party]>>;
|
|
2998
3497
|
}
|
|
2999
3498
|
}
|
|
3000
3499
|
export declare class pay extends SuiBaseProcessor {
|
|
@@ -3041,14 +3540,14 @@ export declare namespace pay {
|
|
|
3041
3540
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
3042
3541
|
}
|
|
3043
3542
|
namespace view {
|
|
3044
|
-
function divideAndKeep<T0 = any>(client:
|
|
3045
|
-
function join<T0 = any>(client:
|
|
3046
|
-
function joinVec<T0 = any>(client:
|
|
3047
|
-
function joinVecAndTransfer<T0 = any>(client:
|
|
3048
|
-
function keep<T0 = any>(client:
|
|
3049
|
-
function split<T0 = any>(client:
|
|
3050
|
-
function splitAndTransfer<T0 = any>(client:
|
|
3051
|
-
function splitVec<T0 = any>(client:
|
|
3543
|
+
function divideAndKeep<T0 = any>(client: SuiJsonRpcClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3544
|
+
function join<T0 = any>(client: SuiJsonRpcClient, args: [string, coin.Coin<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3545
|
+
function joinVec<T0 = any>(client: SuiJsonRpcClient, args: [string, string[]], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3546
|
+
function joinVecAndTransfer<T0 = any>(client: SuiJsonRpcClient, args: [string[], string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3547
|
+
function keep<T0 = any>(client: SuiJsonRpcClient, args: [coin.Coin<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3548
|
+
function split<T0 = any>(client: SuiJsonRpcClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3549
|
+
function splitAndTransfer<T0 = any>(client: SuiJsonRpcClient, args: [string, bigint, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3550
|
+
function splitVec<T0 = any>(client: SuiJsonRpcClient, args: [string, string[]], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3052
3551
|
}
|
|
3053
3552
|
interface DivideAndKeepPayload<T0 = any> extends TypedFunctionPayload<[string, bigint, string]> {
|
|
3054
3553
|
arguments_decoded: [string, bigint, string];
|
|
@@ -3084,7 +3583,7 @@ export declare namespace poseidon {
|
|
|
3084
3583
|
function poseidonBn254(tx: Transaction, args: [string | TransactionObjectArgument]): TransactionArgument & [TransactionArgument];
|
|
3085
3584
|
}
|
|
3086
3585
|
namespace view {
|
|
3087
|
-
function poseidonBn254(client:
|
|
3586
|
+
function poseidonBn254(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
3088
3587
|
}
|
|
3089
3588
|
}
|
|
3090
3589
|
export declare namespace priority_queue {
|
|
@@ -3123,12 +3622,20 @@ export declare namespace priority_queue {
|
|
|
3123
3622
|
function priorities<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
3124
3623
|
}
|
|
3125
3624
|
namespace view {
|
|
3126
|
-
function createEntries<T0 = any>(client:
|
|
3127
|
-
function insert<T0 = any>(client:
|
|
3128
|
-
function new$<T0 = any>(client:
|
|
3129
|
-
function newEntry<T0 = any>(client:
|
|
3130
|
-
function popMax<T0 = any>(client:
|
|
3131
|
-
function priorities<T0 = any>(client:
|
|
3625
|
+
function createEntries<T0 = any>(client: SuiJsonRpcClient, args: [string[], string[]], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[priority_queue.Entry<T0>[]]>>;
|
|
3626
|
+
function insert<T0 = any>(client: SuiJsonRpcClient, args: [string, bigint, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3627
|
+
function new$<T0 = any>(client: SuiJsonRpcClient, args: [string[]], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[priority_queue.PriorityQueue<T0>]>>;
|
|
3628
|
+
function newEntry<T0 = any>(client: SuiJsonRpcClient, args: [bigint, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[priority_queue.Entry<T0>]>>;
|
|
3629
|
+
function popMax<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint, T0]>>;
|
|
3630
|
+
function priorities<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint[]]>>;
|
|
3631
|
+
}
|
|
3632
|
+
}
|
|
3633
|
+
export declare namespace protocol_config {
|
|
3634
|
+
namespace builder {
|
|
3635
|
+
function isFeatureEnabled(tx: Transaction, args: [(string | TransactionObjectArgument)[] | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
|
3636
|
+
}
|
|
3637
|
+
namespace view {
|
|
3638
|
+
function isFeatureEnabled(client: SuiJsonRpcClient, args: [string[]]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
3132
3639
|
}
|
|
3133
3640
|
}
|
|
3134
3641
|
export declare namespace prover {
|
|
@@ -3224,21 +3731,21 @@ export declare namespace random {
|
|
|
3224
3731
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
3225
3732
|
}
|
|
3226
3733
|
namespace view {
|
|
3227
|
-
function generateBool(client:
|
|
3228
|
-
function generateBytes(client:
|
|
3229
|
-
function generateU128(client:
|
|
3230
|
-
function generateU128InRange(client:
|
|
3231
|
-
function generateU16(client:
|
|
3232
|
-
function generateU16InRange(client:
|
|
3233
|
-
function generateU256(client:
|
|
3234
|
-
function generateU32(client:
|
|
3235
|
-
function generateU32InRange(client:
|
|
3236
|
-
function generateU64(client:
|
|
3237
|
-
function generateU64InRange(client:
|
|
3238
|
-
function generateU8(client:
|
|
3239
|
-
function generateU8InRange(client:
|
|
3240
|
-
function newGenerator(client:
|
|
3241
|
-
function shuffle<T0 = any>(client:
|
|
3734
|
+
function generateBool(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
3735
|
+
function generateBytes(client: SuiJsonRpcClient, args: [string, number]): Promise<TypedDevInspectResults<[number[]]>>;
|
|
3736
|
+
function generateU128(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
3737
|
+
function generateU128InRange(client: SuiJsonRpcClient, args: [string, bigint, bigint]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
3738
|
+
function generateU16(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[number]>>;
|
|
3739
|
+
function generateU16InRange(client: SuiJsonRpcClient, args: [string, number, number]): Promise<TypedDevInspectResults<[number]>>;
|
|
3740
|
+
function generateU256(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
3741
|
+
function generateU32(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[number]>>;
|
|
3742
|
+
function generateU32InRange(client: SuiJsonRpcClient, args: [string, number, number]): Promise<TypedDevInspectResults<[number]>>;
|
|
3743
|
+
function generateU64(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
3744
|
+
function generateU64InRange(client: SuiJsonRpcClient, args: [string, bigint, bigint]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
3745
|
+
function generateU8(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[number]>>;
|
|
3746
|
+
function generateU8InRange(client: SuiJsonRpcClient, args: [string, number, number]): Promise<TypedDevInspectResults<[number]>>;
|
|
3747
|
+
function newGenerator(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[random.RandomGenerator]>>;
|
|
3748
|
+
function shuffle<T0 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3242
3749
|
}
|
|
3243
3750
|
}
|
|
3244
3751
|
export declare class sui extends SuiBaseProcessor {
|
|
@@ -3262,7 +3769,7 @@ export declare namespace sui {
|
|
|
3262
3769
|
]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
3263
3770
|
}
|
|
3264
3771
|
namespace view {
|
|
3265
|
-
function transfer(client:
|
|
3772
|
+
function transfer(client: SuiJsonRpcClient, args: [coin.Coin<sui.SUI>, string]): Promise<TypedDevInspectResults<[]>>;
|
|
3266
3773
|
}
|
|
3267
3774
|
interface TransferPayload extends TypedFunctionPayload<[coin.Coin<sui.SUI>, string]> {
|
|
3268
3775
|
arguments_decoded: [coin.Coin<sui.SUI>, string];
|
|
@@ -3299,16 +3806,16 @@ export declare namespace table {
|
|
|
3299
3806
|
function remove<T0 = any, T1 = any>(tx: Transaction, args: [string | TransactionObjectArgument, T0 | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
3300
3807
|
}
|
|
3301
3808
|
namespace view {
|
|
3302
|
-
function add<T0 = any, T1 = any>(client:
|
|
3303
|
-
function borrow<T0 = any, T1 = any>(client:
|
|
3304
|
-
function borrowMut<T0 = any, T1 = any>(client:
|
|
3305
|
-
function contains<T0 = any, T1 = any>(client:
|
|
3306
|
-
function destroyEmpty<T0 = any, T1 = any>(client:
|
|
3307
|
-
function drop<T0 = any, T1 = any>(client:
|
|
3308
|
-
function isEmpty<T0 = any, T1 = any>(client:
|
|
3309
|
-
function length<T0 = any, T1 = any>(client:
|
|
3310
|
-
function new$<T0 = any, T1 = any>(client:
|
|
3311
|
-
function remove<T0 = any, T1 = any>(client:
|
|
3809
|
+
function add<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0, T1], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3810
|
+
function borrow<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
3811
|
+
function borrowMut<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
3812
|
+
function contains<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
3813
|
+
function destroyEmpty<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [table.Table<T0, T1>], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3814
|
+
function drop<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [table.Table<T0, T1>], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3815
|
+
function isEmpty<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
3816
|
+
function length<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
3817
|
+
function new$<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[table.Table<T0, T1>]>>;
|
|
3818
|
+
function remove<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T1]>>;
|
|
3312
3819
|
}
|
|
3313
3820
|
}
|
|
3314
3821
|
export declare namespace table_vec {
|
|
@@ -3342,18 +3849,18 @@ export declare namespace table_vec {
|
|
|
3342
3849
|
function swapRemove<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument, bigint | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
3343
3850
|
}
|
|
3344
3851
|
namespace view {
|
|
3345
|
-
function borrow<T0 = any>(client:
|
|
3346
|
-
function borrowMut<T0 = any>(client:
|
|
3347
|
-
function destroyEmpty<T0 = any>(client:
|
|
3348
|
-
function drop<T0 = any>(client:
|
|
3349
|
-
function empty<T0 = any>(client:
|
|
3350
|
-
function isEmpty<T0 = any>(client:
|
|
3351
|
-
function length<T0 = any>(client:
|
|
3352
|
-
function popBack<T0 = any>(client:
|
|
3353
|
-
function pushBack<T0 = any>(client:
|
|
3354
|
-
function singleton<T0 = any>(client:
|
|
3355
|
-
function swap<T0 = any>(client:
|
|
3356
|
-
function swapRemove<T0 = any>(client:
|
|
3852
|
+
function borrow<T0 = any>(client: SuiJsonRpcClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
3853
|
+
function borrowMut<T0 = any>(client: SuiJsonRpcClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
3854
|
+
function destroyEmpty<T0 = any>(client: SuiJsonRpcClient, args: [table_vec.TableVec<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3855
|
+
function drop<T0 = any>(client: SuiJsonRpcClient, args: [table_vec.TableVec<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3856
|
+
function empty<T0 = any>(client: SuiJsonRpcClient, args: [], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[table_vec.TableVec<T0>]>>;
|
|
3857
|
+
function isEmpty<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
3858
|
+
function length<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
3859
|
+
function popBack<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[T0]>>;
|
|
3860
|
+
function pushBack<T0 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3861
|
+
function singleton<T0 = any>(client: SuiJsonRpcClient, args: [T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[table_vec.TableVec<T0>]>>;
|
|
3862
|
+
function swap<T0 = any>(client: SuiJsonRpcClient, args: [string, bigint, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3863
|
+
function swapRemove<T0 = any>(client: SuiJsonRpcClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[T0]>>;
|
|
3357
3864
|
}
|
|
3358
3865
|
}
|
|
3359
3866
|
export declare class token extends SuiBaseProcessor {
|
|
@@ -3584,95 +4091,95 @@ export declare namespace token {
|
|
|
3584
4091
|
function zero<T0 = any>(tx: Transaction, args: [], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [];
|
|
3585
4092
|
}
|
|
3586
4093
|
namespace view {
|
|
3587
|
-
function action<T0 = any>(client:
|
|
3588
|
-
function addApproval<T0 = any, T1 = any>(client:
|
|
3589
|
-
function addRuleConfig<T0 = any, T1 = any, T2 = any>(client:
|
|
4094
|
+
function action<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
4095
|
+
function addApproval<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [T1, string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
4096
|
+
function addRuleConfig<T0 = any, T1 = any, T2 = any>(client: SuiJsonRpcClient, args: [T1, string, string, T2], typeArguments: [
|
|
3590
4097
|
TypeDescriptor<T0> | string,
|
|
3591
4098
|
TypeDescriptor<T1> | string,
|
|
3592
4099
|
TypeDescriptor<T2> | string
|
|
3593
4100
|
]): Promise<TypedDevInspectResults<[]>>;
|
|
3594
|
-
function addRuleForAction<T0 = any, T1 = any>(client:
|
|
3595
|
-
function allow<T0 = any>(client:
|
|
3596
|
-
function amount<T0 = any>(client:
|
|
3597
|
-
function approvals<T0 = any>(client:
|
|
3598
|
-
function burn<T0 = any>(client:
|
|
3599
|
-
function confirmRequest<T0 = any>(client:
|
|
4101
|
+
function addRuleForAction<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, string, string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
4102
|
+
function allow<T0 = any>(client: SuiJsonRpcClient, args: [string, string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
4103
|
+
function amount<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
4104
|
+
function approvals<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[vec_set.VecSet<_0x1.type_name.TypeName>]>>;
|
|
4105
|
+
function burn<T0 = any>(client: SuiJsonRpcClient, args: [string, token.Token<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
4106
|
+
function confirmRequest<T0 = any>(client: SuiJsonRpcClient, args: [string, token.ActionRequest<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
|
3600
4107
|
string,
|
|
3601
4108
|
bigint,
|
|
3602
4109
|
string,
|
|
3603
4110
|
_0x1.option.Option<string>
|
|
3604
4111
|
]>>;
|
|
3605
|
-
function confirmRequestMut<T0 = any>(client:
|
|
4112
|
+
function confirmRequestMut<T0 = any>(client: SuiJsonRpcClient, args: [string, token.ActionRequest<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
|
3606
4113
|
string,
|
|
3607
4114
|
bigint,
|
|
3608
4115
|
string,
|
|
3609
4116
|
_0x1.option.Option<string>
|
|
3610
4117
|
]>>;
|
|
3611
|
-
function confirmWithPolicyCap<T0 = any>(client:
|
|
4118
|
+
function confirmWithPolicyCap<T0 = any>(client: SuiJsonRpcClient, args: [string, token.ActionRequest<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
|
3612
4119
|
string,
|
|
3613
4120
|
bigint,
|
|
3614
4121
|
string,
|
|
3615
4122
|
_0x1.option.Option<string>
|
|
3616
4123
|
]>>;
|
|
3617
|
-
function confirmWithTreasuryCap<T0 = any>(client:
|
|
4124
|
+
function confirmWithTreasuryCap<T0 = any>(client: SuiJsonRpcClient, args: [string, token.ActionRequest<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
|
3618
4125
|
string,
|
|
3619
4126
|
bigint,
|
|
3620
4127
|
string,
|
|
3621
4128
|
_0x1.option.Option<string>
|
|
3622
4129
|
]>>;
|
|
3623
|
-
function destroyZero<T0 = any>(client:
|
|
3624
|
-
function disallow<T0 = any>(client:
|
|
3625
|
-
function flush<T0 = any>(client:
|
|
3626
|
-
function fromCoin<T0 = any>(client:
|
|
3627
|
-
function fromCoinAction(client:
|
|
3628
|
-
function hasRuleConfig<T0 = any, T1 = any>(client:
|
|
3629
|
-
function hasRuleConfigWithType<T0 = any, T1 = any, T2 = any>(client:
|
|
4130
|
+
function destroyZero<T0 = any>(client: SuiJsonRpcClient, args: [token.Token<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
4131
|
+
function disallow<T0 = any>(client: SuiJsonRpcClient, args: [string, string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
4132
|
+
function flush<T0 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
4133
|
+
function fromCoin<T0 = any>(client: SuiJsonRpcClient, args: [coin.Coin<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[token.Token<T0>, token.ActionRequest<T0>]>>;
|
|
4134
|
+
function fromCoinAction(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[string]>>;
|
|
4135
|
+
function hasRuleConfig<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
4136
|
+
function hasRuleConfigWithType<T0 = any, T1 = any, T2 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [
|
|
3630
4137
|
TypeDescriptor<T0> | string,
|
|
3631
4138
|
TypeDescriptor<T1> | string,
|
|
3632
4139
|
TypeDescriptor<T2> | string
|
|
3633
4140
|
]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
3634
|
-
function isAllowed<T0 = any>(client:
|
|
3635
|
-
function join<T0 = any>(client:
|
|
3636
|
-
function keep<T0 = any>(client:
|
|
3637
|
-
function mint<T0 = any>(client:
|
|
3638
|
-
function newPolicy<T0 = any>(client:
|
|
3639
|
-
function newRequest<T0 = any>(client:
|
|
4141
|
+
function isAllowed<T0 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
4142
|
+
function join<T0 = any>(client: SuiJsonRpcClient, args: [string, token.Token<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
4143
|
+
function keep<T0 = any>(client: SuiJsonRpcClient, args: [token.Token<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
4144
|
+
function mint<T0 = any>(client: SuiJsonRpcClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[token.Token<T0>]>>;
|
|
4145
|
+
function newPolicy<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[token.TokenPolicy<T0>, token.TokenPolicyCap<T0>]>>;
|
|
4146
|
+
function newRequest<T0 = any>(client: SuiJsonRpcClient, args: [
|
|
3640
4147
|
string,
|
|
3641
4148
|
bigint,
|
|
3642
4149
|
_0x1.option.Option<string>,
|
|
3643
4150
|
_0x1.option.Option<balance.Balance<T0>>
|
|
3644
4151
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[token.ActionRequest<T0>]>>;
|
|
3645
|
-
function recipient<T0 = any>(client:
|
|
3646
|
-
function removeRuleConfig<T0 = any, T1 = any, T2 = any>(client:
|
|
4152
|
+
function recipient<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[_0x1.option.Option<string>]>>;
|
|
4153
|
+
function removeRuleConfig<T0 = any, T1 = any, T2 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [
|
|
3647
4154
|
TypeDescriptor<T0> | string,
|
|
3648
4155
|
TypeDescriptor<T1> | string,
|
|
3649
4156
|
TypeDescriptor<T2> | string
|
|
3650
4157
|
]): Promise<TypedDevInspectResults<[T2]>>;
|
|
3651
|
-
function removeRuleForAction<T0 = any, T1 = any>(client:
|
|
3652
|
-
function ruleConfig<T0 = any, T1 = any, T2 = any>(client:
|
|
4158
|
+
function removeRuleForAction<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, string, string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
4159
|
+
function ruleConfig<T0 = any, T1 = any, T2 = any>(client: SuiJsonRpcClient, args: [T1, string], typeArguments: [
|
|
3653
4160
|
TypeDescriptor<T0> | string,
|
|
3654
4161
|
TypeDescriptor<T1> | string,
|
|
3655
4162
|
TypeDescriptor<T2> | string
|
|
3656
4163
|
]): Promise<TypedDevInspectResults<[string]>>;
|
|
3657
|
-
function ruleConfigMut<T0 = any, T1 = any, T2 = any>(client:
|
|
4164
|
+
function ruleConfigMut<T0 = any, T1 = any, T2 = any>(client: SuiJsonRpcClient, args: [T1, string, string], typeArguments: [
|
|
3658
4165
|
TypeDescriptor<T0> | string,
|
|
3659
4166
|
TypeDescriptor<T1> | string,
|
|
3660
4167
|
TypeDescriptor<T2> | string
|
|
3661
4168
|
]): Promise<TypedDevInspectResults<[string]>>;
|
|
3662
|
-
function rules<T0 = any>(client:
|
|
3663
|
-
function sender<T0 = any>(client:
|
|
3664
|
-
function sharePolicy<T0 = any>(client:
|
|
3665
|
-
function spend<T0 = any>(client:
|
|
3666
|
-
function spendAction(client:
|
|
3667
|
-
function spent<T0 = any>(client:
|
|
3668
|
-
function spentBalance<T0 = any>(client:
|
|
3669
|
-
function split<T0 = any>(client:
|
|
3670
|
-
function toCoin<T0 = any>(client:
|
|
3671
|
-
function toCoinAction(client:
|
|
3672
|
-
function transfer<T0 = any>(client:
|
|
3673
|
-
function transferAction(client:
|
|
3674
|
-
function value<T0 = any>(client:
|
|
3675
|
-
function zero<T0 = any>(client:
|
|
4169
|
+
function rules<T0 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[vec_set.VecSet<_0x1.type_name.TypeName>]>>;
|
|
4170
|
+
function sender<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
4171
|
+
function sharePolicy<T0 = any>(client: SuiJsonRpcClient, args: [token.TokenPolicy<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
4172
|
+
function spend<T0 = any>(client: SuiJsonRpcClient, args: [token.Token<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[token.ActionRequest<T0>]>>;
|
|
4173
|
+
function spendAction(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[string]>>;
|
|
4174
|
+
function spent<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[_0x1.option.Option<bigint>]>>;
|
|
4175
|
+
function spentBalance<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
4176
|
+
function split<T0 = any>(client: SuiJsonRpcClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[token.Token<T0>]>>;
|
|
4177
|
+
function toCoin<T0 = any>(client: SuiJsonRpcClient, args: [token.Token<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.Coin<T0>, token.ActionRequest<T0>]>>;
|
|
4178
|
+
function toCoinAction(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[string]>>;
|
|
4179
|
+
function transfer<T0 = any>(client: SuiJsonRpcClient, args: [token.Token<T0>, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[token.ActionRequest<T0>]>>;
|
|
4180
|
+
function transferAction(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[string]>>;
|
|
4181
|
+
function value<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
4182
|
+
function zero<T0 = any>(client: SuiJsonRpcClient, args: [], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[token.Token<T0>]>>;
|
|
3676
4183
|
}
|
|
3677
4184
|
}
|
|
3678
4185
|
export declare namespace transfer {
|
|
@@ -3718,21 +4225,21 @@ export declare namespace transfer {
|
|
|
3718
4225
|
function transferImpl<T0 = any>(tx: Transaction, args: [T0 | TransactionArgument, string | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
3719
4226
|
}
|
|
3720
4227
|
namespace view {
|
|
3721
|
-
function freezeObject<T0 = any>(client:
|
|
3722
|
-
function freezeObjectImpl<T0 = any>(client:
|
|
3723
|
-
function partyTransfer<T0 = any>(client:
|
|
3724
|
-
function partyTransferImpl<T0 = any>(client:
|
|
3725
|
-
function publicFreezeObject<T0 = any>(client:
|
|
3726
|
-
function publicPartyTransfer<T0 = any>(client:
|
|
3727
|
-
function publicReceive<T0 = any>(client:
|
|
3728
|
-
function publicShareObject<T0 = any>(client:
|
|
3729
|
-
function publicTransfer<T0 = any>(client:
|
|
3730
|
-
function receive<T0 = any>(client:
|
|
3731
|
-
function receivingObjectId<T0 = any>(client:
|
|
3732
|
-
function shareObject<T0 = any>(client:
|
|
3733
|
-
function shareObjectImpl<T0 = any>(client:
|
|
3734
|
-
function transfer<T0 = any>(client:
|
|
3735
|
-
function transferImpl<T0 = any>(client:
|
|
4228
|
+
function freezeObject<T0 = any>(client: SuiJsonRpcClient, args: [T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
4229
|
+
function freezeObjectImpl<T0 = any>(client: SuiJsonRpcClient, args: [T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
4230
|
+
function partyTransfer<T0 = any>(client: SuiJsonRpcClient, args: [T0, party.Party], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
4231
|
+
function partyTransferImpl<T0 = any>(client: SuiJsonRpcClient, args: [T0, bigint, string[], string[]], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
4232
|
+
function publicFreezeObject<T0 = any>(client: SuiJsonRpcClient, args: [T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
4233
|
+
function publicPartyTransfer<T0 = any>(client: SuiJsonRpcClient, args: [T0, party.Party], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
4234
|
+
function publicReceive<T0 = any>(client: SuiJsonRpcClient, args: [string, transfer.Receiving<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[T0]>>;
|
|
4235
|
+
function publicShareObject<T0 = any>(client: SuiJsonRpcClient, args: [T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
4236
|
+
function publicTransfer<T0 = any>(client: SuiJsonRpcClient, args: [T0, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
4237
|
+
function receive<T0 = any>(client: SuiJsonRpcClient, args: [string, transfer.Receiving<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[T0]>>;
|
|
4238
|
+
function receivingObjectId<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[object$.ID]>>;
|
|
4239
|
+
function shareObject<T0 = any>(client: SuiJsonRpcClient, args: [T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
4240
|
+
function shareObjectImpl<T0 = any>(client: SuiJsonRpcClient, args: [T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
4241
|
+
function transfer<T0 = any>(client: SuiJsonRpcClient, args: [T0, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
4242
|
+
function transferImpl<T0 = any>(client: SuiJsonRpcClient, args: [T0, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
3736
4243
|
}
|
|
3737
4244
|
}
|
|
3738
4245
|
export declare class transfer_policy extends SuiBaseProcessor {
|
|
@@ -3884,41 +4391,41 @@ export declare namespace transfer_policy {
|
|
|
3884
4391
|
];
|
|
3885
4392
|
}
|
|
3886
4393
|
namespace view {
|
|
3887
|
-
function addReceipt<T0 = any, T1 = any>(client:
|
|
3888
|
-
function addRule<T0 = any, T1 = any, T2 = any>(client:
|
|
4394
|
+
function addReceipt<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [T1, string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
4395
|
+
function addRule<T0 = any, T1 = any, T2 = any>(client: SuiJsonRpcClient, args: [T1, string, string, T2], typeArguments: [
|
|
3889
4396
|
TypeDescriptor<T0> | string,
|
|
3890
4397
|
TypeDescriptor<T1> | string,
|
|
3891
4398
|
TypeDescriptor<T2> | string
|
|
3892
4399
|
]): Promise<TypedDevInspectResults<[]>>;
|
|
3893
|
-
function addToBalance<T0 = any, T1 = any>(client:
|
|
3894
|
-
function confirmRequest<T0 = any>(client:
|
|
3895
|
-
function destroyAndWithdraw<T0 = any>(client:
|
|
4400
|
+
function addToBalance<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [T1, string, coin.Coin<sui.SUI>], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
4401
|
+
function confirmRequest<T0 = any>(client: SuiJsonRpcClient, args: [string, transfer_policy.TransferRequest<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[object$.ID, bigint, object$.ID]>>;
|
|
4402
|
+
function destroyAndWithdraw<T0 = any>(client: SuiJsonRpcClient, args: [
|
|
3896
4403
|
transfer_policy.TransferPolicy<T0>,
|
|
3897
4404
|
transfer_policy.TransferPolicyCap<T0>
|
|
3898
4405
|
], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.Coin<sui.SUI>]>>;
|
|
3899
|
-
function from$<T0 = any>(client:
|
|
3900
|
-
function getRule<T0 = any, T1 = any, T2 = any>(client:
|
|
4406
|
+
function from$<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[object$.ID]>>;
|
|
4407
|
+
function getRule<T0 = any, T1 = any, T2 = any>(client: SuiJsonRpcClient, args: [T1, string], typeArguments: [
|
|
3901
4408
|
TypeDescriptor<T0> | string,
|
|
3902
4409
|
TypeDescriptor<T1> | string,
|
|
3903
4410
|
TypeDescriptor<T2> | string
|
|
3904
4411
|
]): Promise<TypedDevInspectResults<[string]>>;
|
|
3905
|
-
function hasRule<T0 = any, T1 = any>(client:
|
|
3906
|
-
function item<T0 = any>(client:
|
|
3907
|
-
function new$<T0 = any>(client:
|
|
4412
|
+
function hasRule<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
4413
|
+
function item<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[object$.ID]>>;
|
|
4414
|
+
function new$<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[
|
|
3908
4415
|
transfer_policy.TransferPolicy<T0>,
|
|
3909
4416
|
transfer_policy.TransferPolicyCap<T0>
|
|
3910
4417
|
]>>;
|
|
3911
|
-
function newRequest<T0 = any>(client:
|
|
3912
|
-
function paid<T0 = any>(client:
|
|
3913
|
-
function removeRule<T0 = any, T1 = any, T2 = any>(client:
|
|
4418
|
+
function newRequest<T0 = any>(client: SuiJsonRpcClient, args: [object$.ID, bigint, object$.ID], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[transfer_policy.TransferRequest<T0>]>>;
|
|
4419
|
+
function paid<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
4420
|
+
function removeRule<T0 = any, T1 = any, T2 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [
|
|
3914
4421
|
TypeDescriptor<T0> | string,
|
|
3915
4422
|
TypeDescriptor<T1> | string,
|
|
3916
4423
|
TypeDescriptor<T2> | string
|
|
3917
4424
|
]): Promise<TypedDevInspectResults<[]>>;
|
|
3918
|
-
function rules<T0 = any>(client:
|
|
3919
|
-
function uid<T0 = any>(client:
|
|
3920
|
-
function uidMutAsOwner<T0 = any>(client:
|
|
3921
|
-
function withdraw<T0 = any>(client:
|
|
4425
|
+
function rules<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
4426
|
+
function uid<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
4427
|
+
function uidMutAsOwner<T0 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
4428
|
+
function withdraw<T0 = any>(client: SuiJsonRpcClient, args: [string, string, _0x1.option.Option<bigint>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[coin.Coin<sui.SUI>]>>;
|
|
3922
4429
|
}
|
|
3923
4430
|
interface DefaultPayload<T0 = any> extends TypedFunctionPayload<[string, string]> {
|
|
3924
4431
|
arguments_decoded: [string, string];
|
|
@@ -3948,14 +4455,14 @@ export declare namespace tx_context {
|
|
|
3948
4455
|
function sponsor(tx: Transaction, args: []): TransactionArgument & [];
|
|
3949
4456
|
}
|
|
3950
4457
|
namespace view {
|
|
3951
|
-
function digest(client:
|
|
3952
|
-
function epoch(client:
|
|
3953
|
-
function epochTimestampMs(client:
|
|
3954
|
-
function freshObjectAddress(client:
|
|
3955
|
-
function gasPrice(client:
|
|
3956
|
-
function referenceGasPrice(client:
|
|
3957
|
-
function sender(client:
|
|
3958
|
-
function sponsor(client:
|
|
4458
|
+
function digest(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[string]>>;
|
|
4459
|
+
function epoch(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[bigint]>>;
|
|
4460
|
+
function epochTimestampMs(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[bigint]>>;
|
|
4461
|
+
function freshObjectAddress(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[string]>>;
|
|
4462
|
+
function gasPrice(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[bigint]>>;
|
|
4463
|
+
function referenceGasPrice(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[bigint]>>;
|
|
4464
|
+
function sender(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[string]>>;
|
|
4465
|
+
function sponsor(client: SuiJsonRpcClient, args: []): Promise<TypedDevInspectResults<[_0x1.option.Option<string>]>>;
|
|
3959
4466
|
}
|
|
3960
4467
|
}
|
|
3961
4468
|
export declare namespace types {
|
|
@@ -3963,7 +4470,7 @@ export declare namespace types {
|
|
|
3963
4470
|
function isOneTimeWitness<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
3964
4471
|
}
|
|
3965
4472
|
namespace view {
|
|
3966
|
-
function isOneTimeWitness<T0 = any>(client:
|
|
4473
|
+
function isOneTimeWitness<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
3967
4474
|
}
|
|
3968
4475
|
}
|
|
3969
4476
|
export declare class url extends SuiBaseProcessor {
|
|
@@ -3994,10 +4501,10 @@ export declare namespace url {
|
|
|
3994
4501
|
]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
3995
4502
|
}
|
|
3996
4503
|
namespace view {
|
|
3997
|
-
function innerUrl(client:
|
|
3998
|
-
function newUnsafe(client:
|
|
3999
|
-
function newUnsafeFromBytes(client:
|
|
4000
|
-
function update(client:
|
|
4504
|
+
function innerUrl(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[_0x1.ascii.String]>>;
|
|
4505
|
+
function newUnsafe(client: SuiJsonRpcClient, args: [_0x1.ascii.String]): Promise<TypedDevInspectResults<[url.Url]>>;
|
|
4506
|
+
function newUnsafeFromBytes(client: SuiJsonRpcClient, args: [string[]]): Promise<TypedDevInspectResults<[url.Url]>>;
|
|
4507
|
+
function update(client: SuiJsonRpcClient, args: [string, _0x1.ascii.String]): Promise<TypedDevInspectResults<[]>>;
|
|
4001
4508
|
}
|
|
4002
4509
|
}
|
|
4003
4510
|
export declare namespace vdf {
|
|
@@ -4016,8 +4523,8 @@ export declare namespace vdf {
|
|
|
4016
4523
|
];
|
|
4017
4524
|
}
|
|
4018
4525
|
namespace view {
|
|
4019
|
-
function hashToInput(client:
|
|
4020
|
-
function vdfVerify(client:
|
|
4526
|
+
function hashToInput(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[number[]]>>;
|
|
4527
|
+
function vdfVerify(client: SuiJsonRpcClient, args: [string, string, string, bigint]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
4021
4528
|
}
|
|
4022
4529
|
}
|
|
4023
4530
|
export declare class vec_map extends SuiBaseProcessor {
|
|
@@ -4106,26 +4613,26 @@ export declare namespace vec_map {
|
|
|
4106
4613
|
], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
4107
4614
|
}
|
|
4108
4615
|
namespace view {
|
|
4109
|
-
function contains<T0 = any, T1 = any>(client:
|
|
4110
|
-
function destroyEmpty<T0 = any, T1 = any>(client:
|
|
4111
|
-
function empty<T0 = any, T1 = any>(client:
|
|
4112
|
-
function fromKeysValues<T0 = any, T1 = any>(client:
|
|
4113
|
-
function get<T0 = any, T1 = any>(client:
|
|
4114
|
-
function getEntryByIdx<T0 = any, T1 = any>(client:
|
|
4115
|
-
function getEntryByIdxMut<T0 = any, T1 = any>(client:
|
|
4116
|
-
function getIdx<T0 = any, T1 = any>(client:
|
|
4117
|
-
function getIdxOpt<T0 = any, T1 = any>(client:
|
|
4118
|
-
function getMut<T0 = any, T1 = any>(client:
|
|
4119
|
-
function insert<T0 = any, T1 = any>(client:
|
|
4120
|
-
function intoKeysValues<T0 = any, T1 = any>(client:
|
|
4121
|
-
function isEmpty<T0 = any, T1 = any>(client:
|
|
4122
|
-
function keys<T0 = any, T1 = any>(client:
|
|
4123
|
-
function length<T0 = any, T1 = any>(client:
|
|
4124
|
-
function pop<T0 = any, T1 = any>(client:
|
|
4125
|
-
function remove<T0 = any, T1 = any>(client:
|
|
4126
|
-
function removeEntryByIdx<T0 = any, T1 = any>(client:
|
|
4127
|
-
function size<T0 = any, T1 = any>(client:
|
|
4128
|
-
function tryGet<T0 = any, T1 = any>(client:
|
|
4616
|
+
function contains<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
4617
|
+
function destroyEmpty<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [vec_map.VecMap<T0, T1>], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
4618
|
+
function empty<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[vec_map.VecMap<T0, T1>]>>;
|
|
4619
|
+
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>]>>;
|
|
4620
|
+
function get<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
4621
|
+
function getEntryByIdx<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string, string]>>;
|
|
4622
|
+
function getEntryByIdxMut<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string, string]>>;
|
|
4623
|
+
function getIdx<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
4624
|
+
function getIdxOpt<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[_0x1.option.Option<bigint>]>>;
|
|
4625
|
+
function getMut<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
4626
|
+
function insert<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, T0, T1], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
4627
|
+
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[]]>>;
|
|
4628
|
+
function isEmpty<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
4629
|
+
function keys<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T0[]]>>;
|
|
4630
|
+
function length<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
4631
|
+
function pop<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T0, T1]>>;
|
|
4632
|
+
function remove<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T0, T1]>>;
|
|
4633
|
+
function removeEntryByIdx<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[T0, T1]>>;
|
|
4634
|
+
function size<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
4635
|
+
function tryGet<T0 = any, T1 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string, TypeDescriptor<T1> | string]): Promise<TypedDevInspectResults<[_0x1.option.Option<T1>]>>;
|
|
4129
4636
|
}
|
|
4130
4637
|
}
|
|
4131
4638
|
export declare class vec_set extends SuiBaseProcessor {
|
|
@@ -4166,17 +4673,17 @@ export declare namespace vec_set {
|
|
|
4166
4673
|
function size<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
4167
4674
|
}
|
|
4168
4675
|
namespace view {
|
|
4169
|
-
function contains<T0 = any>(client:
|
|
4170
|
-
function empty<T0 = any>(client:
|
|
4171
|
-
function fromKeys<T0 = any>(client:
|
|
4172
|
-
function insert<T0 = any>(client:
|
|
4173
|
-
function intoKeys<T0 = any>(client:
|
|
4174
|
-
function isEmpty<T0 = any>(client:
|
|
4175
|
-
function keys<T0 = any>(client:
|
|
4176
|
-
function length<T0 = any>(client:
|
|
4177
|
-
function remove<T0 = any>(client:
|
|
4178
|
-
function singleton<T0 = any>(client:
|
|
4179
|
-
function size<T0 = any>(client:
|
|
4676
|
+
function contains<T0 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
4677
|
+
function empty<T0 = any>(client: SuiJsonRpcClient, args: [], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[vec_set.VecSet<T0>]>>;
|
|
4678
|
+
function fromKeys<T0 = any>(client: SuiJsonRpcClient, args: [string[]], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[vec_set.VecSet<T0>]>>;
|
|
4679
|
+
function insert<T0 = any>(client: SuiJsonRpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
4680
|
+
function intoKeys<T0 = any>(client: SuiJsonRpcClient, args: [vec_set.VecSet<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[T0[]]>>;
|
|
4681
|
+
function isEmpty<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
4682
|
+
function keys<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
4683
|
+
function length<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
4684
|
+
function remove<T0 = any>(client: SuiJsonRpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
4685
|
+
function singleton<T0 = any>(client: SuiJsonRpcClient, args: [T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[vec_set.VecSet<T0>]>>;
|
|
4686
|
+
function size<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
4180
4687
|
}
|
|
4181
4688
|
}
|
|
4182
4689
|
export declare namespace versioned {
|
|
@@ -4216,13 +4723,13 @@ export declare namespace versioned {
|
|
|
4216
4723
|
function version(tx: Transaction, args: [string | TransactionObjectArgument]): TransactionArgument & [TransactionArgument];
|
|
4217
4724
|
}
|
|
4218
4725
|
namespace view {
|
|
4219
|
-
function create<T0 = any>(client:
|
|
4220
|
-
function destroy<T0 = any>(client:
|
|
4221
|
-
function loadValue<T0 = any>(client:
|
|
4222
|
-
function loadValueMut<T0 = any>(client:
|
|
4223
|
-
function removeValueForUpgrade<T0 = any>(client:
|
|
4224
|
-
function upgrade<T0 = any>(client:
|
|
4225
|
-
function version(client:
|
|
4726
|
+
function create<T0 = any>(client: SuiJsonRpcClient, args: [bigint, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[versioned.Versioned]>>;
|
|
4727
|
+
function destroy<T0 = any>(client: SuiJsonRpcClient, args: [versioned.Versioned], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[T0]>>;
|
|
4728
|
+
function loadValue<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
4729
|
+
function loadValueMut<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[string]>>;
|
|
4730
|
+
function removeValueForUpgrade<T0 = any>(client: SuiJsonRpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[T0, versioned.VersionChangeCap]>>;
|
|
4731
|
+
function upgrade<T0 = any>(client: SuiJsonRpcClient, args: [string, bigint, T0, versioned.VersionChangeCap], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedDevInspectResults<[]>>;
|
|
4732
|
+
function version(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[bigint]>>;
|
|
4226
4733
|
}
|
|
4227
4734
|
}
|
|
4228
4735
|
export declare namespace zklogin_verified_id {
|
|
@@ -4275,14 +4782,14 @@ export declare namespace zklogin_verified_id {
|
|
|
4275
4782
|
];
|
|
4276
4783
|
}
|
|
4277
4784
|
namespace view {
|
|
4278
|
-
function audience(client:
|
|
4279
|
-
function checkZkloginId(client:
|
|
4280
|
-
function delete$(client:
|
|
4281
|
-
function issuer(client:
|
|
4282
|
-
function keyClaimName(client:
|
|
4283
|
-
function keyClaimValue(client:
|
|
4284
|
-
function owner(client:
|
|
4285
|
-
function verifyZkloginId(client:
|
|
4785
|
+
function audience(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
|
4786
|
+
function checkZkloginId(client: SuiJsonRpcClient, args: [string, string, string, string, string, bigint]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
4787
|
+
function delete$(client: SuiJsonRpcClient, args: [zklogin_verified_id.VerifiedID]): Promise<TypedDevInspectResults<[]>>;
|
|
4788
|
+
function issuer(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
|
4789
|
+
function keyClaimName(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
|
4790
|
+
function keyClaimValue(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
|
4791
|
+
function owner(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
|
4792
|
+
function verifyZkloginId(client: SuiJsonRpcClient, args: [string, string, string, string, bigint]): Promise<TypedDevInspectResults<[]>>;
|
|
4286
4793
|
}
|
|
4287
4794
|
}
|
|
4288
4795
|
export declare namespace zklogin_verified_issuer {
|
|
@@ -4311,11 +4818,11 @@ export declare namespace zklogin_verified_issuer {
|
|
|
4311
4818
|
function verifyZkloginIssuer(tx: Transaction, args: [bigint | TransactionArgument, string | TransactionArgument]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
4312
4819
|
}
|
|
4313
4820
|
namespace view {
|
|
4314
|
-
function checkZkloginIssuer(client:
|
|
4315
|
-
function delete$(client:
|
|
4316
|
-
function issuer(client:
|
|
4317
|
-
function owner(client:
|
|
4318
|
-
function verifyZkloginIssuer(client:
|
|
4821
|
+
function checkZkloginIssuer(client: SuiJsonRpcClient, args: [string, bigint, string]): Promise<TypedDevInspectResults<[boolean]>>;
|
|
4822
|
+
function delete$(client: SuiJsonRpcClient, args: [zklogin_verified_issuer.VerifiedIssuer]): Promise<TypedDevInspectResults<[]>>;
|
|
4823
|
+
function issuer(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
|
4824
|
+
function owner(client: SuiJsonRpcClient, args: [string]): Promise<TypedDevInspectResults<[string]>>;
|
|
4825
|
+
function verifyZkloginIssuer(client: SuiJsonRpcClient, args: [bigint, string]): Promise<TypedDevInspectResults<[]>>;
|
|
4319
4826
|
}
|
|
4320
4827
|
}
|
|
4321
4828
|
export declare function loadAllTypes(coder: MoveCoder): void;
|