@typemove/sui 1.13.5-rc.1 → 1.14.0-rc.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm/builtin/0x1.d.ts +286 -286
- package/dist/esm/builtin/0x1.d.ts.map +1 -1
- package/dist/esm/builtin/0x1.js +2273 -853
- package/dist/esm/builtin/0x1.js.map +1 -1
- package/dist/esm/builtin/0x2.d.ts +752 -774
- package/dist/esm/builtin/0x2.d.ts.map +1 -1
- package/dist/esm/builtin/0x2.js +5859 -2184
- package/dist/esm/builtin/0x2.js.map +1 -1
- package/dist/esm/builtin/0x3.d.ts +285 -285
- package/dist/esm/builtin/0x3.d.ts.map +1 -1
- package/dist/esm/builtin/0x3.js +2201 -826
- package/dist/esm/builtin/0x3.js.map +1 -1
- package/dist/esm/codegen/codegen.d.ts +2 -2
- package/dist/esm/codegen/codegen.d.ts.map +1 -1
- package/dist/esm/codegen/codegen.js +24 -22
- package/dist/esm/codegen/codegen.js.map +1 -1
- package/dist/esm/codegen/run.js +8 -9
- package/dist/esm/codegen/run.js.map +1 -1
- package/dist/esm/index.d.ts +1 -0
- package/dist/esm/index.d.ts.map +1 -1
- package/dist/esm/index.js +1 -0
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/models.d.ts +9 -6
- package/dist/esm/models.d.ts.map +1 -1
- package/dist/esm/models.js.map +1 -1
- package/dist/esm/move-coder.d.ts +14 -12
- package/dist/esm/move-coder.d.ts.map +1 -1
- package/dist/esm/move-coder.js +81 -36
- package/dist/esm/move-coder.js.map +1 -1
- package/dist/esm/move-coder.test.js.map +1 -1
- package/dist/esm/sui-chain-adapter.d.ts +21 -9
- package/dist/esm/sui-chain-adapter.d.ts.map +1 -1
- package/dist/esm/sui-chain-adapter.js +57 -43
- package/dist/esm/sui-chain-adapter.js.map +1 -1
- package/dist/esm/to-internal.d.ts +4 -2
- package/dist/esm/to-internal.d.ts.map +1 -1
- package/dist/esm/to-internal.js +137 -63
- package/dist/esm/to-internal.js.map +1 -1
- package/package.json +3 -3
- package/src/abis/0x1.json +8996 -5947
- package/src/abis/0x2.json +38080 -30981
- package/src/abis/0x3.json +14723 -10800
- package/src/builtin/0x1.ts +3652 -2002
- package/src/builtin/0x2.ts +10449 -5781
- package/src/builtin/0x3.ts +3576 -1928
- package/src/codegen/codegen.ts +32 -28
- package/src/codegen/run.ts +8 -9
- package/src/index.ts +9 -0
- package/src/models.ts +17 -6
- package/src/move-coder.ts +110 -59
- package/src/sui-chain-adapter.ts +83 -62
- package/src/tests/abis/testnet/0x1e2b124f746a339b3cf99b9f969393a96594519aafb1d06517aacfeeae20e7a5.json +303 -227
- package/src/tests/abis/testnet/0x6c4a21e3e7e6b6d51c4604021633e1d97e24e37a696f8c082cd48f37503e602a.json +2580 -1634
- package/src/tests/abis/testnet/0x7f7a37c826c88bcfe9aecc042453395ddfa9df6f29cb7c97590bf86cf2b0a75e.json +1472 -1293
- package/src/tests/abis/testnet/0xdee9.json +8577 -3924
- package/src/tests/abis/testnet/0xebaa2ad3eacc230f309cd933958cc52684df0a41ae7ac214d186b80f830867d2.json +12844 -10000
- package/src/tests/abis/testnet/enum.json +6591 -5673
- package/src/tests/types/testnet/0x1e2b124f746a339b3cf99b9f969393a96594519aafb1d06517aacfeeae20e7a5.ts +57 -31
- package/src/tests/types/testnet/0x6c4a21e3e7e6b6d51c4604021633e1d97e24e37a696f8c082cd48f37503e602a.ts +710 -359
- package/src/tests/types/testnet/0x7f7a37c826c88bcfe9aecc042453395ddfa9df6f29cb7c97590bf86cf2b0a75e.ts +462 -239
- package/src/tests/types/testnet/0xdee9.ts +3352 -775
- package/src/tests/types/testnet/0xebaa2ad3eacc230f309cd933958cc52684df0a41ae7ac214d186b80f830867d2.ts +2432 -1318
- package/src/tests/types/testnet/enum.ts +1729 -836
- package/src/to-internal.ts +153 -79
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import { TypeDescriptor } from "@typemove/move";
|
|
2
2
|
import { MoveCoder, TypedEventInstance } from "@typemove/sui";
|
|
3
|
-
import {
|
|
3
|
+
import { TypedSimulateResults } from "@typemove/sui";
|
|
4
4
|
import { Transaction, TransactionArgument, TransactionObjectArgument } from "@mysten/sui/transactions";
|
|
5
|
-
import {
|
|
5
|
+
import { SuiGrpcClient } from "@mysten/sui/grpc";
|
|
6
6
|
export declare namespace address {
|
|
7
7
|
namespace builder {
|
|
8
8
|
function length(tx: Transaction, args: []): TransactionArgument & [];
|
|
9
9
|
}
|
|
10
10
|
namespace view {
|
|
11
|
-
function length(client:
|
|
11
|
+
function length(client: SuiGrpcClient, args: []): Promise<TypedSimulateResults<[bigint]>>;
|
|
12
12
|
}
|
|
13
13
|
}
|
|
14
14
|
export declare namespace ascii {
|
|
@@ -69,25 +69,25 @@ export declare namespace ascii {
|
|
|
69
69
|
function tryString(tx: Transaction, args: [(string | TransactionObjectArgument)[] | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
|
70
70
|
}
|
|
71
71
|
namespace view {
|
|
72
|
-
function allCharactersPrintable(client:
|
|
73
|
-
function append(client:
|
|
74
|
-
function asBytes(client:
|
|
75
|
-
function byte(client:
|
|
76
|
-
function char(client:
|
|
77
|
-
function indexOf(client:
|
|
78
|
-
function insert(client:
|
|
79
|
-
function intoBytes(client:
|
|
80
|
-
function isEmpty(client:
|
|
81
|
-
function isPrintableChar(client:
|
|
82
|
-
function isValidChar(client:
|
|
83
|
-
function length(client:
|
|
84
|
-
function popChar(client:
|
|
85
|
-
function pushChar(client:
|
|
86
|
-
function string$(client:
|
|
87
|
-
function substring(client:
|
|
88
|
-
function toLowercase(client:
|
|
89
|
-
function toUppercase(client:
|
|
90
|
-
function tryString(client:
|
|
72
|
+
function allCharactersPrintable(client: SuiGrpcClient, args: [string]): Promise<TypedSimulateResults<[boolean]>>;
|
|
73
|
+
function append(client: SuiGrpcClient, args: [string, ascii.String]): Promise<TypedSimulateResults<[]>>;
|
|
74
|
+
function asBytes(client: SuiGrpcClient, args: [string]): Promise<TypedSimulateResults<[string]>>;
|
|
75
|
+
function byte(client: SuiGrpcClient, args: [ascii.Char]): Promise<TypedSimulateResults<[number]>>;
|
|
76
|
+
function char(client: SuiGrpcClient, args: [number]): Promise<TypedSimulateResults<[ascii.Char]>>;
|
|
77
|
+
function indexOf(client: SuiGrpcClient, args: [string, string]): Promise<TypedSimulateResults<[bigint]>>;
|
|
78
|
+
function insert(client: SuiGrpcClient, args: [string, bigint, ascii.String]): Promise<TypedSimulateResults<[]>>;
|
|
79
|
+
function intoBytes(client: SuiGrpcClient, args: [ascii.String]): Promise<TypedSimulateResults<[number[]]>>;
|
|
80
|
+
function isEmpty(client: SuiGrpcClient, args: [string]): Promise<TypedSimulateResults<[boolean]>>;
|
|
81
|
+
function isPrintableChar(client: SuiGrpcClient, args: [number]): Promise<TypedSimulateResults<[boolean]>>;
|
|
82
|
+
function isValidChar(client: SuiGrpcClient, args: [number]): Promise<TypedSimulateResults<[boolean]>>;
|
|
83
|
+
function length(client: SuiGrpcClient, args: [string]): Promise<TypedSimulateResults<[bigint]>>;
|
|
84
|
+
function popChar(client: SuiGrpcClient, args: [string]): Promise<TypedSimulateResults<[ascii.Char]>>;
|
|
85
|
+
function pushChar(client: SuiGrpcClient, args: [string, ascii.Char]): Promise<TypedSimulateResults<[]>>;
|
|
86
|
+
function string$(client: SuiGrpcClient, args: [string[]]): Promise<TypedSimulateResults<[ascii.String]>>;
|
|
87
|
+
function substring(client: SuiGrpcClient, args: [string, bigint, bigint]): Promise<TypedSimulateResults<[ascii.String]>>;
|
|
88
|
+
function toLowercase(client: SuiGrpcClient, args: [string]): Promise<TypedSimulateResults<[ascii.String]>>;
|
|
89
|
+
function toUppercase(client: SuiGrpcClient, args: [string]): Promise<TypedSimulateResults<[ascii.String]>>;
|
|
90
|
+
function tryString(client: SuiGrpcClient, args: [string[]]): Promise<TypedSimulateResults<[option.Option<ascii.String>]>>;
|
|
91
91
|
}
|
|
92
92
|
}
|
|
93
93
|
export declare namespace bcs {
|
|
@@ -95,7 +95,7 @@ export declare namespace bcs {
|
|
|
95
95
|
function toBytes<T0 = any>(tx: Transaction, args: [string | TransactionObjectArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
96
96
|
}
|
|
97
97
|
namespace view {
|
|
98
|
-
function toBytes<T0 = any>(client:
|
|
98
|
+
function toBytes<T0 = any>(client: SuiGrpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedSimulateResults<[number[]]>>;
|
|
99
99
|
}
|
|
100
100
|
}
|
|
101
101
|
export declare namespace bit_vector {
|
|
@@ -121,13 +121,13 @@ export declare namespace bit_vector {
|
|
|
121
121
|
function unset(tx: Transaction, args: [string | TransactionObjectArgument, bigint | TransactionArgument]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
122
122
|
}
|
|
123
123
|
namespace view {
|
|
124
|
-
function isIndexSet(client:
|
|
125
|
-
function length(client:
|
|
126
|
-
function longestSetSequenceStartingAt(client:
|
|
127
|
-
function new$(client:
|
|
128
|
-
function set(client:
|
|
129
|
-
function shiftLeft(client:
|
|
130
|
-
function unset(client:
|
|
124
|
+
function isIndexSet(client: SuiGrpcClient, args: [string, bigint]): Promise<TypedSimulateResults<[boolean]>>;
|
|
125
|
+
function length(client: SuiGrpcClient, args: [string]): Promise<TypedSimulateResults<[bigint]>>;
|
|
126
|
+
function longestSetSequenceStartingAt(client: SuiGrpcClient, args: [string, bigint]): Promise<TypedSimulateResults<[bigint]>>;
|
|
127
|
+
function new$(client: SuiGrpcClient, args: [bigint]): Promise<TypedSimulateResults<[bit_vector.BitVector]>>;
|
|
128
|
+
function set(client: SuiGrpcClient, args: [string, bigint]): Promise<TypedSimulateResults<[]>>;
|
|
129
|
+
function shiftLeft(client: SuiGrpcClient, args: [string, bigint]): Promise<TypedSimulateResults<[]>>;
|
|
130
|
+
function unset(client: SuiGrpcClient, args: [string, bigint]): Promise<TypedSimulateResults<[]>>;
|
|
131
131
|
}
|
|
132
132
|
}
|
|
133
133
|
export declare namespace bool {
|
|
@@ -140,8 +140,8 @@ export declare namespace debug {
|
|
|
140
140
|
function printStackTrace(tx: Transaction, args: []): TransactionArgument & [];
|
|
141
141
|
}
|
|
142
142
|
namespace view {
|
|
143
|
-
function print<T0 = any>(client:
|
|
144
|
-
function printStackTrace(client:
|
|
143
|
+
function print<T0 = any>(client: SuiGrpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedSimulateResults<[]>>;
|
|
144
|
+
function printStackTrace(client: SuiGrpcClient, args: []): Promise<TypedSimulateResults<[]>>;
|
|
145
145
|
}
|
|
146
146
|
}
|
|
147
147
|
export declare namespace fixed_point32 {
|
|
@@ -171,12 +171,12 @@ export declare namespace fixed_point32 {
|
|
|
171
171
|
]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
172
172
|
}
|
|
173
173
|
namespace view {
|
|
174
|
-
function createFromRational(client:
|
|
175
|
-
function createFromRawValue(client:
|
|
176
|
-
function divideU64(client:
|
|
177
|
-
function getRawValue(client:
|
|
178
|
-
function isZero(client:
|
|
179
|
-
function multiplyU64(client:
|
|
174
|
+
function createFromRational(client: SuiGrpcClient, args: [bigint, bigint]): Promise<TypedSimulateResults<[fixed_point32.FixedPoint32]>>;
|
|
175
|
+
function createFromRawValue(client: SuiGrpcClient, args: [bigint]): Promise<TypedSimulateResults<[fixed_point32.FixedPoint32]>>;
|
|
176
|
+
function divideU64(client: SuiGrpcClient, args: [bigint, fixed_point32.FixedPoint32]): Promise<TypedSimulateResults<[bigint]>>;
|
|
177
|
+
function getRawValue(client: SuiGrpcClient, args: [fixed_point32.FixedPoint32]): Promise<TypedSimulateResults<[bigint]>>;
|
|
178
|
+
function isZero(client: SuiGrpcClient, args: [fixed_point32.FixedPoint32]): Promise<TypedSimulateResults<[boolean]>>;
|
|
179
|
+
function multiplyU64(client: SuiGrpcClient, args: [bigint, fixed_point32.FixedPoint32]): Promise<TypedSimulateResults<[bigint]>>;
|
|
180
180
|
}
|
|
181
181
|
}
|
|
182
182
|
export declare namespace hash {
|
|
@@ -185,8 +185,8 @@ export declare namespace hash {
|
|
|
185
185
|
function sha3256(tx: Transaction, args: [(string | TransactionObjectArgument)[] | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
|
186
186
|
}
|
|
187
187
|
namespace view {
|
|
188
|
-
function sha2256(client:
|
|
189
|
-
function sha3256(client:
|
|
188
|
+
function sha2256(client: SuiGrpcClient, args: [string[]]): Promise<TypedSimulateResults<[number[]]>>;
|
|
189
|
+
function sha3256(client: SuiGrpcClient, args: [string[]]): Promise<TypedSimulateResults<[number[]]>>;
|
|
190
190
|
}
|
|
191
191
|
}
|
|
192
192
|
export declare namespace internal {
|
|
@@ -201,7 +201,7 @@ export declare namespace internal {
|
|
|
201
201
|
function permit<T0 = any>(tx: Transaction, args: [], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [];
|
|
202
202
|
}
|
|
203
203
|
namespace view {
|
|
204
|
-
function permit<T0 = any>(client:
|
|
204
|
+
function permit<T0 = any>(client: SuiGrpcClient, args: [], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedSimulateResults<[internal.Permit<T0>]>>;
|
|
205
205
|
}
|
|
206
206
|
}
|
|
207
207
|
export declare namespace macros {
|
|
@@ -240,23 +240,23 @@ export declare namespace option {
|
|
|
240
240
|
function toVec<T0 = any>(tx: Transaction, args: [option.Option<T0> | TransactionArgument], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument];
|
|
241
241
|
}
|
|
242
242
|
namespace view {
|
|
243
|
-
function borrow<T0 = any>(client:
|
|
244
|
-
function borrowMut<T0 = any>(client:
|
|
245
|
-
function borrowWithDefault<T0 = any>(client:
|
|
246
|
-
function contains<T0 = any>(client:
|
|
247
|
-
function destroyNone<T0 = any>(client:
|
|
248
|
-
function destroySome<T0 = any>(client:
|
|
249
|
-
function destroyWithDefault<T0 = any>(client:
|
|
250
|
-
function extract<T0 = any>(client:
|
|
251
|
-
function fill<T0 = any>(client:
|
|
252
|
-
function getWithDefault<T0 = any>(client:
|
|
253
|
-
function isNone<T0 = any>(client:
|
|
254
|
-
function isSome<T0 = any>(client:
|
|
255
|
-
function none<T0 = any>(client:
|
|
256
|
-
function some<T0 = any>(client:
|
|
257
|
-
function swap<T0 = any>(client:
|
|
258
|
-
function swapOrFill<T0 = any>(client:
|
|
259
|
-
function toVec<T0 = any>(client:
|
|
243
|
+
function borrow<T0 = any>(client: SuiGrpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedSimulateResults<[string]>>;
|
|
244
|
+
function borrowMut<T0 = any>(client: SuiGrpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedSimulateResults<[string]>>;
|
|
245
|
+
function borrowWithDefault<T0 = any>(client: SuiGrpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedSimulateResults<[string]>>;
|
|
246
|
+
function contains<T0 = any>(client: SuiGrpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedSimulateResults<[boolean]>>;
|
|
247
|
+
function destroyNone<T0 = any>(client: SuiGrpcClient, args: [option.Option<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedSimulateResults<[]>>;
|
|
248
|
+
function destroySome<T0 = any>(client: SuiGrpcClient, args: [option.Option<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedSimulateResults<[T0]>>;
|
|
249
|
+
function destroyWithDefault<T0 = any>(client: SuiGrpcClient, args: [option.Option<T0>, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedSimulateResults<[T0]>>;
|
|
250
|
+
function extract<T0 = any>(client: SuiGrpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedSimulateResults<[T0]>>;
|
|
251
|
+
function fill<T0 = any>(client: SuiGrpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedSimulateResults<[]>>;
|
|
252
|
+
function getWithDefault<T0 = any>(client: SuiGrpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedSimulateResults<[T0]>>;
|
|
253
|
+
function isNone<T0 = any>(client: SuiGrpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedSimulateResults<[boolean]>>;
|
|
254
|
+
function isSome<T0 = any>(client: SuiGrpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedSimulateResults<[boolean]>>;
|
|
255
|
+
function none<T0 = any>(client: SuiGrpcClient, args: [], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedSimulateResults<[option.Option<T0>]>>;
|
|
256
|
+
function some<T0 = any>(client: SuiGrpcClient, args: [T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedSimulateResults<[option.Option<T0>]>>;
|
|
257
|
+
function swap<T0 = any>(client: SuiGrpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedSimulateResults<[T0]>>;
|
|
258
|
+
function swapOrFill<T0 = any>(client: SuiGrpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedSimulateResults<[option.Option<T0>]>>;
|
|
259
|
+
function toVec<T0 = any>(client: SuiGrpcClient, args: [option.Option<T0>], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedSimulateResults<[T0[]]>>;
|
|
260
260
|
}
|
|
261
261
|
}
|
|
262
262
|
export declare namespace string$ {
|
|
@@ -319,21 +319,21 @@ export declare namespace string$ {
|
|
|
319
319
|
function utf8(tx: Transaction, args: [(string | TransactionObjectArgument)[] | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
|
320
320
|
}
|
|
321
321
|
namespace view {
|
|
322
|
-
function append(client:
|
|
323
|
-
function appendUtf8(client:
|
|
324
|
-
function asBytes(client:
|
|
325
|
-
function bytes(client:
|
|
326
|
-
function fromAscii(client:
|
|
327
|
-
function indexOf(client:
|
|
328
|
-
function insert(client:
|
|
329
|
-
function intoBytes(client:
|
|
330
|
-
function isEmpty(client:
|
|
331
|
-
function length(client:
|
|
332
|
-
function subString(client:
|
|
333
|
-
function substring(client:
|
|
334
|
-
function toAscii(client:
|
|
335
|
-
function tryUtf8(client:
|
|
336
|
-
function utf8(client:
|
|
322
|
+
function append(client: SuiGrpcClient, args: [string, string]): Promise<TypedSimulateResults<[]>>;
|
|
323
|
+
function appendUtf8(client: SuiGrpcClient, args: [string, string[]]): Promise<TypedSimulateResults<[]>>;
|
|
324
|
+
function asBytes(client: SuiGrpcClient, args: [string]): Promise<TypedSimulateResults<[string]>>;
|
|
325
|
+
function bytes(client: SuiGrpcClient, args: [string]): Promise<TypedSimulateResults<[string]>>;
|
|
326
|
+
function fromAscii(client: SuiGrpcClient, args: [ascii.String]): Promise<TypedSimulateResults<[string]>>;
|
|
327
|
+
function indexOf(client: SuiGrpcClient, args: [string, string]): Promise<TypedSimulateResults<[bigint]>>;
|
|
328
|
+
function insert(client: SuiGrpcClient, args: [string, bigint, string]): Promise<TypedSimulateResults<[]>>;
|
|
329
|
+
function intoBytes(client: SuiGrpcClient, args: [string]): Promise<TypedSimulateResults<[number[]]>>;
|
|
330
|
+
function isEmpty(client: SuiGrpcClient, args: [string]): Promise<TypedSimulateResults<[boolean]>>;
|
|
331
|
+
function length(client: SuiGrpcClient, args: [string]): Promise<TypedSimulateResults<[bigint]>>;
|
|
332
|
+
function subString(client: SuiGrpcClient, args: [string, bigint, bigint]): Promise<TypedSimulateResults<[string]>>;
|
|
333
|
+
function substring(client: SuiGrpcClient, args: [string, bigint, bigint]): Promise<TypedSimulateResults<[string]>>;
|
|
334
|
+
function toAscii(client: SuiGrpcClient, args: [string]): Promise<TypedSimulateResults<[ascii.String]>>;
|
|
335
|
+
function tryUtf8(client: SuiGrpcClient, args: [string[]]): Promise<TypedSimulateResults<[option.Option<string>]>>;
|
|
336
|
+
function utf8(client: SuiGrpcClient, args: [string[]]): Promise<TypedSimulateResults<[string]>>;
|
|
337
337
|
}
|
|
338
338
|
}
|
|
339
339
|
export declare namespace type_name {
|
|
@@ -366,21 +366,21 @@ export declare namespace type_name {
|
|
|
366
366
|
function withOriginalIds<T0 = any>(tx: Transaction, args: [], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [];
|
|
367
367
|
}
|
|
368
368
|
namespace view {
|
|
369
|
-
function addressString(client:
|
|
370
|
-
function asString(client:
|
|
371
|
-
function borrowString(client:
|
|
372
|
-
function datatypeString(client:
|
|
373
|
-
function definingId<T0 = any>(client:
|
|
374
|
-
function get<T0 = any>(client:
|
|
375
|
-
function getAddress(client:
|
|
376
|
-
function getModule(client:
|
|
377
|
-
function getWithOriginalIds<T0 = any>(client:
|
|
378
|
-
function intoString(client:
|
|
379
|
-
function isPrimitive(client:
|
|
380
|
-
function moduleString(client:
|
|
381
|
-
function originalId<T0 = any>(client:
|
|
382
|
-
function withDefiningIds<T0 = any>(client:
|
|
383
|
-
function withOriginalIds<T0 = any>(client:
|
|
369
|
+
function addressString(client: SuiGrpcClient, args: [string]): Promise<TypedSimulateResults<[ascii.String]>>;
|
|
370
|
+
function asString(client: SuiGrpcClient, args: [string]): Promise<TypedSimulateResults<[string]>>;
|
|
371
|
+
function borrowString(client: SuiGrpcClient, args: [string]): Promise<TypedSimulateResults<[string]>>;
|
|
372
|
+
function datatypeString(client: SuiGrpcClient, args: [string]): Promise<TypedSimulateResults<[ascii.String]>>;
|
|
373
|
+
function definingId<T0 = any>(client: SuiGrpcClient, args: [], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedSimulateResults<[string]>>;
|
|
374
|
+
function get<T0 = any>(client: SuiGrpcClient, args: [], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedSimulateResults<[type_name.TypeName]>>;
|
|
375
|
+
function getAddress(client: SuiGrpcClient, args: [string]): Promise<TypedSimulateResults<[ascii.String]>>;
|
|
376
|
+
function getModule(client: SuiGrpcClient, args: [string]): Promise<TypedSimulateResults<[ascii.String]>>;
|
|
377
|
+
function getWithOriginalIds<T0 = any>(client: SuiGrpcClient, args: [], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedSimulateResults<[type_name.TypeName]>>;
|
|
378
|
+
function intoString(client: SuiGrpcClient, args: [type_name.TypeName]): Promise<TypedSimulateResults<[ascii.String]>>;
|
|
379
|
+
function isPrimitive(client: SuiGrpcClient, args: [string]): Promise<TypedSimulateResults<[boolean]>>;
|
|
380
|
+
function moduleString(client: SuiGrpcClient, args: [string]): Promise<TypedSimulateResults<[ascii.String]>>;
|
|
381
|
+
function originalId<T0 = any>(client: SuiGrpcClient, args: [], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedSimulateResults<[string]>>;
|
|
382
|
+
function withDefiningIds<T0 = any>(client: SuiGrpcClient, args: [], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedSimulateResults<[type_name.TypeName]>>;
|
|
383
|
+
function withOriginalIds<T0 = any>(client: SuiGrpcClient, args: [], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedSimulateResults<[type_name.TypeName]>>;
|
|
384
384
|
}
|
|
385
385
|
}
|
|
386
386
|
export declare namespace u128 {
|
|
@@ -430,33 +430,33 @@ export declare namespace u128 {
|
|
|
430
430
|
function tryAsU8(tx: Transaction, args: [bigint | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
|
431
431
|
}
|
|
432
432
|
namespace view {
|
|
433
|
-
function bitwiseNot(client:
|
|
434
|
-
function checkedAdd(client:
|
|
435
|
-
function checkedDiv(client:
|
|
436
|
-
function checkedMul(client:
|
|
437
|
-
function checkedShl(client:
|
|
438
|
-
function checkedShr(client:
|
|
439
|
-
function checkedSub(client:
|
|
440
|
-
function diff(client:
|
|
441
|
-
function divCeil(client:
|
|
442
|
-
function divideAndRoundUp(client:
|
|
443
|
-
function losslessDiv(client:
|
|
444
|
-
function losslessShl(client:
|
|
445
|
-
function losslessShr(client:
|
|
446
|
-
function max(client:
|
|
447
|
-
function min(client:
|
|
448
|
-
function mulDiv(client:
|
|
449
|
-
function mulDivCeil(client:
|
|
450
|
-
function pow(client:
|
|
451
|
-
function saturatingAdd(client:
|
|
452
|
-
function saturatingMul(client:
|
|
453
|
-
function saturatingSub(client:
|
|
454
|
-
function sqrt(client:
|
|
455
|
-
function toString(client:
|
|
456
|
-
function tryAsU16(client:
|
|
457
|
-
function tryAsU32(client:
|
|
458
|
-
function tryAsU64(client:
|
|
459
|
-
function tryAsU8(client:
|
|
433
|
+
function bitwiseNot(client: SuiGrpcClient, args: [bigint]): Promise<TypedSimulateResults<[bigint]>>;
|
|
434
|
+
function checkedAdd(client: SuiGrpcClient, args: [bigint, bigint]): Promise<TypedSimulateResults<[option.Option<bigint>]>>;
|
|
435
|
+
function checkedDiv(client: SuiGrpcClient, args: [bigint, bigint]): Promise<TypedSimulateResults<[option.Option<bigint>]>>;
|
|
436
|
+
function checkedMul(client: SuiGrpcClient, args: [bigint, bigint]): Promise<TypedSimulateResults<[option.Option<bigint>]>>;
|
|
437
|
+
function checkedShl(client: SuiGrpcClient, args: [bigint, number]): Promise<TypedSimulateResults<[option.Option<bigint>]>>;
|
|
438
|
+
function checkedShr(client: SuiGrpcClient, args: [bigint, number]): Promise<TypedSimulateResults<[option.Option<bigint>]>>;
|
|
439
|
+
function checkedSub(client: SuiGrpcClient, args: [bigint, bigint]): Promise<TypedSimulateResults<[option.Option<bigint>]>>;
|
|
440
|
+
function diff(client: SuiGrpcClient, args: [bigint, bigint]): Promise<TypedSimulateResults<[bigint]>>;
|
|
441
|
+
function divCeil(client: SuiGrpcClient, args: [bigint, bigint]): Promise<TypedSimulateResults<[bigint]>>;
|
|
442
|
+
function divideAndRoundUp(client: SuiGrpcClient, args: [bigint, bigint]): Promise<TypedSimulateResults<[bigint]>>;
|
|
443
|
+
function losslessDiv(client: SuiGrpcClient, args: [bigint, bigint]): Promise<TypedSimulateResults<[option.Option<bigint>]>>;
|
|
444
|
+
function losslessShl(client: SuiGrpcClient, args: [bigint, number]): Promise<TypedSimulateResults<[option.Option<bigint>]>>;
|
|
445
|
+
function losslessShr(client: SuiGrpcClient, args: [bigint, number]): Promise<TypedSimulateResults<[option.Option<bigint>]>>;
|
|
446
|
+
function max(client: SuiGrpcClient, args: [bigint, bigint]): Promise<TypedSimulateResults<[bigint]>>;
|
|
447
|
+
function min(client: SuiGrpcClient, args: [bigint, bigint]): Promise<TypedSimulateResults<[bigint]>>;
|
|
448
|
+
function mulDiv(client: SuiGrpcClient, args: [bigint, bigint, bigint]): Promise<TypedSimulateResults<[bigint]>>;
|
|
449
|
+
function mulDivCeil(client: SuiGrpcClient, args: [bigint, bigint, bigint]): Promise<TypedSimulateResults<[bigint]>>;
|
|
450
|
+
function pow(client: SuiGrpcClient, args: [bigint, number]): Promise<TypedSimulateResults<[bigint]>>;
|
|
451
|
+
function saturatingAdd(client: SuiGrpcClient, args: [bigint, bigint]): Promise<TypedSimulateResults<[bigint]>>;
|
|
452
|
+
function saturatingMul(client: SuiGrpcClient, args: [bigint, bigint]): Promise<TypedSimulateResults<[bigint]>>;
|
|
453
|
+
function saturatingSub(client: SuiGrpcClient, args: [bigint, bigint]): Promise<TypedSimulateResults<[bigint]>>;
|
|
454
|
+
function sqrt(client: SuiGrpcClient, args: [bigint]): Promise<TypedSimulateResults<[bigint]>>;
|
|
455
|
+
function toString(client: SuiGrpcClient, args: [bigint]): Promise<TypedSimulateResults<[string]>>;
|
|
456
|
+
function tryAsU16(client: SuiGrpcClient, args: [bigint]): Promise<TypedSimulateResults<[option.Option<number>]>>;
|
|
457
|
+
function tryAsU32(client: SuiGrpcClient, args: [bigint]): Promise<TypedSimulateResults<[option.Option<number>]>>;
|
|
458
|
+
function tryAsU64(client: SuiGrpcClient, args: [bigint]): Promise<TypedSimulateResults<[option.Option<bigint>]>>;
|
|
459
|
+
function tryAsU8(client: SuiGrpcClient, args: [bigint]): Promise<TypedSimulateResults<[option.Option<number>]>>;
|
|
460
460
|
}
|
|
461
461
|
}
|
|
462
462
|
export declare namespace u16 {
|
|
@@ -503,30 +503,30 @@ export declare namespace u16 {
|
|
|
503
503
|
function tryAsU8(tx: Transaction, args: [number | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
|
504
504
|
}
|
|
505
505
|
namespace view {
|
|
506
|
-
function bitwiseNot(client:
|
|
507
|
-
function checkedAdd(client:
|
|
508
|
-
function checkedDiv(client:
|
|
509
|
-
function checkedMul(client:
|
|
510
|
-
function checkedShl(client:
|
|
511
|
-
function checkedShr(client:
|
|
512
|
-
function checkedSub(client:
|
|
513
|
-
function diff(client:
|
|
514
|
-
function divCeil(client:
|
|
515
|
-
function divideAndRoundUp(client:
|
|
516
|
-
function losslessDiv(client:
|
|
517
|
-
function losslessShl(client:
|
|
518
|
-
function losslessShr(client:
|
|
519
|
-
function max(client:
|
|
520
|
-
function min(client:
|
|
521
|
-
function mulDiv(client:
|
|
522
|
-
function mulDivCeil(client:
|
|
523
|
-
function pow(client:
|
|
524
|
-
function saturatingAdd(client:
|
|
525
|
-
function saturatingMul(client:
|
|
526
|
-
function saturatingSub(client:
|
|
527
|
-
function sqrt(client:
|
|
528
|
-
function toString(client:
|
|
529
|
-
function tryAsU8(client:
|
|
506
|
+
function bitwiseNot(client: SuiGrpcClient, args: [number]): Promise<TypedSimulateResults<[number]>>;
|
|
507
|
+
function checkedAdd(client: SuiGrpcClient, args: [number, number]): Promise<TypedSimulateResults<[option.Option<number>]>>;
|
|
508
|
+
function checkedDiv(client: SuiGrpcClient, args: [number, number]): Promise<TypedSimulateResults<[option.Option<number>]>>;
|
|
509
|
+
function checkedMul(client: SuiGrpcClient, args: [number, number]): Promise<TypedSimulateResults<[option.Option<number>]>>;
|
|
510
|
+
function checkedShl(client: SuiGrpcClient, args: [number, number]): Promise<TypedSimulateResults<[option.Option<number>]>>;
|
|
511
|
+
function checkedShr(client: SuiGrpcClient, args: [number, number]): Promise<TypedSimulateResults<[option.Option<number>]>>;
|
|
512
|
+
function checkedSub(client: SuiGrpcClient, args: [number, number]): Promise<TypedSimulateResults<[option.Option<number>]>>;
|
|
513
|
+
function diff(client: SuiGrpcClient, args: [number, number]): Promise<TypedSimulateResults<[number]>>;
|
|
514
|
+
function divCeil(client: SuiGrpcClient, args: [number, number]): Promise<TypedSimulateResults<[number]>>;
|
|
515
|
+
function divideAndRoundUp(client: SuiGrpcClient, args: [number, number]): Promise<TypedSimulateResults<[number]>>;
|
|
516
|
+
function losslessDiv(client: SuiGrpcClient, args: [number, number]): Promise<TypedSimulateResults<[option.Option<number>]>>;
|
|
517
|
+
function losslessShl(client: SuiGrpcClient, args: [number, number]): Promise<TypedSimulateResults<[option.Option<number>]>>;
|
|
518
|
+
function losslessShr(client: SuiGrpcClient, args: [number, number]): Promise<TypedSimulateResults<[option.Option<number>]>>;
|
|
519
|
+
function max(client: SuiGrpcClient, args: [number, number]): Promise<TypedSimulateResults<[number]>>;
|
|
520
|
+
function min(client: SuiGrpcClient, args: [number, number]): Promise<TypedSimulateResults<[number]>>;
|
|
521
|
+
function mulDiv(client: SuiGrpcClient, args: [number, number, number]): Promise<TypedSimulateResults<[number]>>;
|
|
522
|
+
function mulDivCeil(client: SuiGrpcClient, args: [number, number, number]): Promise<TypedSimulateResults<[number]>>;
|
|
523
|
+
function pow(client: SuiGrpcClient, args: [number, number]): Promise<TypedSimulateResults<[number]>>;
|
|
524
|
+
function saturatingAdd(client: SuiGrpcClient, args: [number, number]): Promise<TypedSimulateResults<[number]>>;
|
|
525
|
+
function saturatingMul(client: SuiGrpcClient, args: [number, number]): Promise<TypedSimulateResults<[number]>>;
|
|
526
|
+
function saturatingSub(client: SuiGrpcClient, args: [number, number]): Promise<TypedSimulateResults<[number]>>;
|
|
527
|
+
function sqrt(client: SuiGrpcClient, args: [number]): Promise<TypedSimulateResults<[number]>>;
|
|
528
|
+
function toString(client: SuiGrpcClient, args: [number]): Promise<TypedSimulateResults<[string]>>;
|
|
529
|
+
function tryAsU8(client: SuiGrpcClient, args: [number]): Promise<TypedSimulateResults<[option.Option<number>]>>;
|
|
530
530
|
}
|
|
531
531
|
}
|
|
532
532
|
export declare namespace u256 {
|
|
@@ -556,29 +556,29 @@ export declare namespace u256 {
|
|
|
556
556
|
function tryAsU8(tx: Transaction, args: [bigint | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
|
557
557
|
}
|
|
558
558
|
namespace view {
|
|
559
|
-
function bitwiseNot(client:
|
|
560
|
-
function checkedAdd(client:
|
|
561
|
-
function checkedDiv(client:
|
|
562
|
-
function checkedMul(client:
|
|
563
|
-
function checkedSub(client:
|
|
564
|
-
function diff(client:
|
|
565
|
-
function divCeil(client:
|
|
566
|
-
function divideAndRoundUp(client:
|
|
567
|
-
function losslessDiv(client:
|
|
568
|
-
function losslessShl(client:
|
|
569
|
-
function losslessShr(client:
|
|
570
|
-
function max(client:
|
|
571
|
-
function min(client:
|
|
572
|
-
function pow(client:
|
|
573
|
-
function saturatingAdd(client:
|
|
574
|
-
function saturatingMul(client:
|
|
575
|
-
function saturatingSub(client:
|
|
576
|
-
function toString(client:
|
|
577
|
-
function tryAsU128(client:
|
|
578
|
-
function tryAsU16(client:
|
|
579
|
-
function tryAsU32(client:
|
|
580
|
-
function tryAsU64(client:
|
|
581
|
-
function tryAsU8(client:
|
|
559
|
+
function bitwiseNot(client: SuiGrpcClient, args: [bigint]): Promise<TypedSimulateResults<[bigint]>>;
|
|
560
|
+
function checkedAdd(client: SuiGrpcClient, args: [bigint, bigint]): Promise<TypedSimulateResults<[option.Option<bigint>]>>;
|
|
561
|
+
function checkedDiv(client: SuiGrpcClient, args: [bigint, bigint]): Promise<TypedSimulateResults<[option.Option<bigint>]>>;
|
|
562
|
+
function checkedMul(client: SuiGrpcClient, args: [bigint, bigint]): Promise<TypedSimulateResults<[option.Option<bigint>]>>;
|
|
563
|
+
function checkedSub(client: SuiGrpcClient, args: [bigint, bigint]): Promise<TypedSimulateResults<[option.Option<bigint>]>>;
|
|
564
|
+
function diff(client: SuiGrpcClient, args: [bigint, bigint]): Promise<TypedSimulateResults<[bigint]>>;
|
|
565
|
+
function divCeil(client: SuiGrpcClient, args: [bigint, bigint]): Promise<TypedSimulateResults<[bigint]>>;
|
|
566
|
+
function divideAndRoundUp(client: SuiGrpcClient, args: [bigint, bigint]): Promise<TypedSimulateResults<[bigint]>>;
|
|
567
|
+
function losslessDiv(client: SuiGrpcClient, args: [bigint, bigint]): Promise<TypedSimulateResults<[option.Option<bigint>]>>;
|
|
568
|
+
function losslessShl(client: SuiGrpcClient, args: [bigint, number]): Promise<TypedSimulateResults<[option.Option<bigint>]>>;
|
|
569
|
+
function losslessShr(client: SuiGrpcClient, args: [bigint, number]): Promise<TypedSimulateResults<[option.Option<bigint>]>>;
|
|
570
|
+
function max(client: SuiGrpcClient, args: [bigint, bigint]): Promise<TypedSimulateResults<[bigint]>>;
|
|
571
|
+
function min(client: SuiGrpcClient, args: [bigint, bigint]): Promise<TypedSimulateResults<[bigint]>>;
|
|
572
|
+
function pow(client: SuiGrpcClient, args: [bigint, number]): Promise<TypedSimulateResults<[bigint]>>;
|
|
573
|
+
function saturatingAdd(client: SuiGrpcClient, args: [bigint, bigint]): Promise<TypedSimulateResults<[bigint]>>;
|
|
574
|
+
function saturatingMul(client: SuiGrpcClient, args: [bigint, bigint]): Promise<TypedSimulateResults<[bigint]>>;
|
|
575
|
+
function saturatingSub(client: SuiGrpcClient, args: [bigint, bigint]): Promise<TypedSimulateResults<[bigint]>>;
|
|
576
|
+
function toString(client: SuiGrpcClient, args: [bigint]): Promise<TypedSimulateResults<[string]>>;
|
|
577
|
+
function tryAsU128(client: SuiGrpcClient, args: [bigint]): Promise<TypedSimulateResults<[option.Option<bigint>]>>;
|
|
578
|
+
function tryAsU16(client: SuiGrpcClient, args: [bigint]): Promise<TypedSimulateResults<[option.Option<number>]>>;
|
|
579
|
+
function tryAsU32(client: SuiGrpcClient, args: [bigint]): Promise<TypedSimulateResults<[option.Option<number>]>>;
|
|
580
|
+
function tryAsU64(client: SuiGrpcClient, args: [bigint]): Promise<TypedSimulateResults<[option.Option<bigint>]>>;
|
|
581
|
+
function tryAsU8(client: SuiGrpcClient, args: [bigint]): Promise<TypedSimulateResults<[option.Option<number>]>>;
|
|
582
582
|
}
|
|
583
583
|
}
|
|
584
584
|
export declare namespace u32 {
|
|
@@ -626,31 +626,31 @@ export declare namespace u32 {
|
|
|
626
626
|
function tryAsU8(tx: Transaction, args: [number | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
|
627
627
|
}
|
|
628
628
|
namespace view {
|
|
629
|
-
function bitwiseNot(client:
|
|
630
|
-
function checkedAdd(client:
|
|
631
|
-
function checkedDiv(client:
|
|
632
|
-
function checkedMul(client:
|
|
633
|
-
function checkedShl(client:
|
|
634
|
-
function checkedShr(client:
|
|
635
|
-
function checkedSub(client:
|
|
636
|
-
function diff(client:
|
|
637
|
-
function divCeil(client:
|
|
638
|
-
function divideAndRoundUp(client:
|
|
639
|
-
function losslessDiv(client:
|
|
640
|
-
function losslessShl(client:
|
|
641
|
-
function losslessShr(client:
|
|
642
|
-
function max(client:
|
|
643
|
-
function min(client:
|
|
644
|
-
function mulDiv(client:
|
|
645
|
-
function mulDivCeil(client:
|
|
646
|
-
function pow(client:
|
|
647
|
-
function saturatingAdd(client:
|
|
648
|
-
function saturatingMul(client:
|
|
649
|
-
function saturatingSub(client:
|
|
650
|
-
function sqrt(client:
|
|
651
|
-
function toString(client:
|
|
652
|
-
function tryAsU16(client:
|
|
653
|
-
function tryAsU8(client:
|
|
629
|
+
function bitwiseNot(client: SuiGrpcClient, args: [number]): Promise<TypedSimulateResults<[number]>>;
|
|
630
|
+
function checkedAdd(client: SuiGrpcClient, args: [number, number]): Promise<TypedSimulateResults<[option.Option<number>]>>;
|
|
631
|
+
function checkedDiv(client: SuiGrpcClient, args: [number, number]): Promise<TypedSimulateResults<[option.Option<number>]>>;
|
|
632
|
+
function checkedMul(client: SuiGrpcClient, args: [number, number]): Promise<TypedSimulateResults<[option.Option<number>]>>;
|
|
633
|
+
function checkedShl(client: SuiGrpcClient, args: [number, number]): Promise<TypedSimulateResults<[option.Option<number>]>>;
|
|
634
|
+
function checkedShr(client: SuiGrpcClient, args: [number, number]): Promise<TypedSimulateResults<[option.Option<number>]>>;
|
|
635
|
+
function checkedSub(client: SuiGrpcClient, args: [number, number]): Promise<TypedSimulateResults<[option.Option<number>]>>;
|
|
636
|
+
function diff(client: SuiGrpcClient, args: [number, number]): Promise<TypedSimulateResults<[number]>>;
|
|
637
|
+
function divCeil(client: SuiGrpcClient, args: [number, number]): Promise<TypedSimulateResults<[number]>>;
|
|
638
|
+
function divideAndRoundUp(client: SuiGrpcClient, args: [number, number]): Promise<TypedSimulateResults<[number]>>;
|
|
639
|
+
function losslessDiv(client: SuiGrpcClient, args: [number, number]): Promise<TypedSimulateResults<[option.Option<number>]>>;
|
|
640
|
+
function losslessShl(client: SuiGrpcClient, args: [number, number]): Promise<TypedSimulateResults<[option.Option<number>]>>;
|
|
641
|
+
function losslessShr(client: SuiGrpcClient, args: [number, number]): Promise<TypedSimulateResults<[option.Option<number>]>>;
|
|
642
|
+
function max(client: SuiGrpcClient, args: [number, number]): Promise<TypedSimulateResults<[number]>>;
|
|
643
|
+
function min(client: SuiGrpcClient, args: [number, number]): Promise<TypedSimulateResults<[number]>>;
|
|
644
|
+
function mulDiv(client: SuiGrpcClient, args: [number, number, number]): Promise<TypedSimulateResults<[number]>>;
|
|
645
|
+
function mulDivCeil(client: SuiGrpcClient, args: [number, number, number]): Promise<TypedSimulateResults<[number]>>;
|
|
646
|
+
function pow(client: SuiGrpcClient, args: [number, number]): Promise<TypedSimulateResults<[number]>>;
|
|
647
|
+
function saturatingAdd(client: SuiGrpcClient, args: [number, number]): Promise<TypedSimulateResults<[number]>>;
|
|
648
|
+
function saturatingMul(client: SuiGrpcClient, args: [number, number]): Promise<TypedSimulateResults<[number]>>;
|
|
649
|
+
function saturatingSub(client: SuiGrpcClient, args: [number, number]): Promise<TypedSimulateResults<[number]>>;
|
|
650
|
+
function sqrt(client: SuiGrpcClient, args: [number]): Promise<TypedSimulateResults<[number]>>;
|
|
651
|
+
function toString(client: SuiGrpcClient, args: [number]): Promise<TypedSimulateResults<[string]>>;
|
|
652
|
+
function tryAsU16(client: SuiGrpcClient, args: [number]): Promise<TypedSimulateResults<[option.Option<number>]>>;
|
|
653
|
+
function tryAsU8(client: SuiGrpcClient, args: [number]): Promise<TypedSimulateResults<[option.Option<number>]>>;
|
|
654
654
|
}
|
|
655
655
|
}
|
|
656
656
|
export declare namespace u64 {
|
|
@@ -699,32 +699,32 @@ export declare namespace u64 {
|
|
|
699
699
|
function tryAsU8(tx: Transaction, args: [bigint | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
|
700
700
|
}
|
|
701
701
|
namespace view {
|
|
702
|
-
function bitwiseNot(client:
|
|
703
|
-
function checkedAdd(client:
|
|
704
|
-
function checkedDiv(client:
|
|
705
|
-
function checkedMul(client:
|
|
706
|
-
function checkedShl(client:
|
|
707
|
-
function checkedShr(client:
|
|
708
|
-
function checkedSub(client:
|
|
709
|
-
function diff(client:
|
|
710
|
-
function divCeil(client:
|
|
711
|
-
function divideAndRoundUp(client:
|
|
712
|
-
function losslessDiv(client:
|
|
713
|
-
function losslessShl(client:
|
|
714
|
-
function losslessShr(client:
|
|
715
|
-
function max(client:
|
|
716
|
-
function min(client:
|
|
717
|
-
function mulDiv(client:
|
|
718
|
-
function mulDivCeil(client:
|
|
719
|
-
function pow(client:
|
|
720
|
-
function saturatingAdd(client:
|
|
721
|
-
function saturatingMul(client:
|
|
722
|
-
function saturatingSub(client:
|
|
723
|
-
function sqrt(client:
|
|
724
|
-
function toString(client:
|
|
725
|
-
function tryAsU16(client:
|
|
726
|
-
function tryAsU32(client:
|
|
727
|
-
function tryAsU8(client:
|
|
702
|
+
function bitwiseNot(client: SuiGrpcClient, args: [bigint]): Promise<TypedSimulateResults<[bigint]>>;
|
|
703
|
+
function checkedAdd(client: SuiGrpcClient, args: [bigint, bigint]): Promise<TypedSimulateResults<[option.Option<bigint>]>>;
|
|
704
|
+
function checkedDiv(client: SuiGrpcClient, args: [bigint, bigint]): Promise<TypedSimulateResults<[option.Option<bigint>]>>;
|
|
705
|
+
function checkedMul(client: SuiGrpcClient, args: [bigint, bigint]): Promise<TypedSimulateResults<[option.Option<bigint>]>>;
|
|
706
|
+
function checkedShl(client: SuiGrpcClient, args: [bigint, number]): Promise<TypedSimulateResults<[option.Option<bigint>]>>;
|
|
707
|
+
function checkedShr(client: SuiGrpcClient, args: [bigint, number]): Promise<TypedSimulateResults<[option.Option<bigint>]>>;
|
|
708
|
+
function checkedSub(client: SuiGrpcClient, args: [bigint, bigint]): Promise<TypedSimulateResults<[option.Option<bigint>]>>;
|
|
709
|
+
function diff(client: SuiGrpcClient, args: [bigint, bigint]): Promise<TypedSimulateResults<[bigint]>>;
|
|
710
|
+
function divCeil(client: SuiGrpcClient, args: [bigint, bigint]): Promise<TypedSimulateResults<[bigint]>>;
|
|
711
|
+
function divideAndRoundUp(client: SuiGrpcClient, args: [bigint, bigint]): Promise<TypedSimulateResults<[bigint]>>;
|
|
712
|
+
function losslessDiv(client: SuiGrpcClient, args: [bigint, bigint]): Promise<TypedSimulateResults<[option.Option<bigint>]>>;
|
|
713
|
+
function losslessShl(client: SuiGrpcClient, args: [bigint, number]): Promise<TypedSimulateResults<[option.Option<bigint>]>>;
|
|
714
|
+
function losslessShr(client: SuiGrpcClient, args: [bigint, number]): Promise<TypedSimulateResults<[option.Option<bigint>]>>;
|
|
715
|
+
function max(client: SuiGrpcClient, args: [bigint, bigint]): Promise<TypedSimulateResults<[bigint]>>;
|
|
716
|
+
function min(client: SuiGrpcClient, args: [bigint, bigint]): Promise<TypedSimulateResults<[bigint]>>;
|
|
717
|
+
function mulDiv(client: SuiGrpcClient, args: [bigint, bigint, bigint]): Promise<TypedSimulateResults<[bigint]>>;
|
|
718
|
+
function mulDivCeil(client: SuiGrpcClient, args: [bigint, bigint, bigint]): Promise<TypedSimulateResults<[bigint]>>;
|
|
719
|
+
function pow(client: SuiGrpcClient, args: [bigint, number]): Promise<TypedSimulateResults<[bigint]>>;
|
|
720
|
+
function saturatingAdd(client: SuiGrpcClient, args: [bigint, bigint]): Promise<TypedSimulateResults<[bigint]>>;
|
|
721
|
+
function saturatingMul(client: SuiGrpcClient, args: [bigint, bigint]): Promise<TypedSimulateResults<[bigint]>>;
|
|
722
|
+
function saturatingSub(client: SuiGrpcClient, args: [bigint, bigint]): Promise<TypedSimulateResults<[bigint]>>;
|
|
723
|
+
function sqrt(client: SuiGrpcClient, args: [bigint]): Promise<TypedSimulateResults<[bigint]>>;
|
|
724
|
+
function toString(client: SuiGrpcClient, args: [bigint]): Promise<TypedSimulateResults<[string]>>;
|
|
725
|
+
function tryAsU16(client: SuiGrpcClient, args: [bigint]): Promise<TypedSimulateResults<[option.Option<number>]>>;
|
|
726
|
+
function tryAsU32(client: SuiGrpcClient, args: [bigint]): Promise<TypedSimulateResults<[option.Option<number>]>>;
|
|
727
|
+
function tryAsU8(client: SuiGrpcClient, args: [bigint]): Promise<TypedSimulateResults<[option.Option<number>]>>;
|
|
728
728
|
}
|
|
729
729
|
}
|
|
730
730
|
export declare namespace u8 {
|
|
@@ -770,29 +770,29 @@ export declare namespace u8 {
|
|
|
770
770
|
function toString(tx: Transaction, args: [number | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
|
771
771
|
}
|
|
772
772
|
namespace view {
|
|
773
|
-
function bitwiseNot(client:
|
|
774
|
-
function checkedAdd(client:
|
|
775
|
-
function checkedDiv(client:
|
|
776
|
-
function checkedMul(client:
|
|
777
|
-
function checkedShl(client:
|
|
778
|
-
function checkedShr(client:
|
|
779
|
-
function checkedSub(client:
|
|
780
|
-
function diff(client:
|
|
781
|
-
function divCeil(client:
|
|
782
|
-
function divideAndRoundUp(client:
|
|
783
|
-
function losslessDiv(client:
|
|
784
|
-
function losslessShl(client:
|
|
785
|
-
function losslessShr(client:
|
|
786
|
-
function max(client:
|
|
787
|
-
function min(client:
|
|
788
|
-
function mulDiv(client:
|
|
789
|
-
function mulDivCeil(client:
|
|
790
|
-
function pow(client:
|
|
791
|
-
function saturatingAdd(client:
|
|
792
|
-
function saturatingMul(client:
|
|
793
|
-
function saturatingSub(client:
|
|
794
|
-
function sqrt(client:
|
|
795
|
-
function toString(client:
|
|
773
|
+
function bitwiseNot(client: SuiGrpcClient, args: [number]): Promise<TypedSimulateResults<[number]>>;
|
|
774
|
+
function checkedAdd(client: SuiGrpcClient, args: [number, number]): Promise<TypedSimulateResults<[option.Option<number>]>>;
|
|
775
|
+
function checkedDiv(client: SuiGrpcClient, args: [number, number]): Promise<TypedSimulateResults<[option.Option<number>]>>;
|
|
776
|
+
function checkedMul(client: SuiGrpcClient, args: [number, number]): Promise<TypedSimulateResults<[option.Option<number>]>>;
|
|
777
|
+
function checkedShl(client: SuiGrpcClient, args: [number, number]): Promise<TypedSimulateResults<[option.Option<number>]>>;
|
|
778
|
+
function checkedShr(client: SuiGrpcClient, args: [number, number]): Promise<TypedSimulateResults<[option.Option<number>]>>;
|
|
779
|
+
function checkedSub(client: SuiGrpcClient, args: [number, number]): Promise<TypedSimulateResults<[option.Option<number>]>>;
|
|
780
|
+
function diff(client: SuiGrpcClient, args: [number, number]): Promise<TypedSimulateResults<[number]>>;
|
|
781
|
+
function divCeil(client: SuiGrpcClient, args: [number, number]): Promise<TypedSimulateResults<[number]>>;
|
|
782
|
+
function divideAndRoundUp(client: SuiGrpcClient, args: [number, number]): Promise<TypedSimulateResults<[number]>>;
|
|
783
|
+
function losslessDiv(client: SuiGrpcClient, args: [number, number]): Promise<TypedSimulateResults<[option.Option<number>]>>;
|
|
784
|
+
function losslessShl(client: SuiGrpcClient, args: [number, number]): Promise<TypedSimulateResults<[option.Option<number>]>>;
|
|
785
|
+
function losslessShr(client: SuiGrpcClient, args: [number, number]): Promise<TypedSimulateResults<[option.Option<number>]>>;
|
|
786
|
+
function max(client: SuiGrpcClient, args: [number, number]): Promise<TypedSimulateResults<[number]>>;
|
|
787
|
+
function min(client: SuiGrpcClient, args: [number, number]): Promise<TypedSimulateResults<[number]>>;
|
|
788
|
+
function mulDiv(client: SuiGrpcClient, args: [number, number, number]): Promise<TypedSimulateResults<[number]>>;
|
|
789
|
+
function mulDivCeil(client: SuiGrpcClient, args: [number, number, number]): Promise<TypedSimulateResults<[number]>>;
|
|
790
|
+
function pow(client: SuiGrpcClient, args: [number, number]): Promise<TypedSimulateResults<[number]>>;
|
|
791
|
+
function saturatingAdd(client: SuiGrpcClient, args: [number, number]): Promise<TypedSimulateResults<[number]>>;
|
|
792
|
+
function saturatingMul(client: SuiGrpcClient, args: [number, number]): Promise<TypedSimulateResults<[number]>>;
|
|
793
|
+
function saturatingSub(client: SuiGrpcClient, args: [number, number]): Promise<TypedSimulateResults<[number]>>;
|
|
794
|
+
function sqrt(client: SuiGrpcClient, args: [number]): Promise<TypedSimulateResults<[number]>>;
|
|
795
|
+
function toString(client: SuiGrpcClient, args: [number]): Promise<TypedSimulateResults<[string]>>;
|
|
796
796
|
}
|
|
797
797
|
}
|
|
798
798
|
export declare namespace uq32_32 {
|
|
@@ -855,21 +855,21 @@ export declare namespace uq32_32 {
|
|
|
855
855
|
function toRaw(tx: Transaction, args: [uq32_32.UQ32_32 | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
|
856
856
|
}
|
|
857
857
|
namespace view {
|
|
858
|
-
function add(client:
|
|
859
|
-
function div(client:
|
|
860
|
-
function fromInt(client:
|
|
861
|
-
function fromQuotient(client:
|
|
862
|
-
function fromRaw(client:
|
|
863
|
-
function ge(client:
|
|
864
|
-
function gt(client:
|
|
865
|
-
function intDiv(client:
|
|
866
|
-
function intMul(client:
|
|
867
|
-
function le(client:
|
|
868
|
-
function lt(client:
|
|
869
|
-
function mul(client:
|
|
870
|
-
function sub(client:
|
|
871
|
-
function toInt(client:
|
|
872
|
-
function toRaw(client:
|
|
858
|
+
function add(client: SuiGrpcClient, args: [uq32_32.UQ32_32, uq32_32.UQ32_32]): Promise<TypedSimulateResults<[uq32_32.UQ32_32]>>;
|
|
859
|
+
function div(client: SuiGrpcClient, args: [uq32_32.UQ32_32, uq32_32.UQ32_32]): Promise<TypedSimulateResults<[uq32_32.UQ32_32]>>;
|
|
860
|
+
function fromInt(client: SuiGrpcClient, args: [number]): Promise<TypedSimulateResults<[uq32_32.UQ32_32]>>;
|
|
861
|
+
function fromQuotient(client: SuiGrpcClient, args: [bigint, bigint]): Promise<TypedSimulateResults<[uq32_32.UQ32_32]>>;
|
|
862
|
+
function fromRaw(client: SuiGrpcClient, args: [bigint]): Promise<TypedSimulateResults<[uq32_32.UQ32_32]>>;
|
|
863
|
+
function ge(client: SuiGrpcClient, args: [uq32_32.UQ32_32, uq32_32.UQ32_32]): Promise<TypedSimulateResults<[boolean]>>;
|
|
864
|
+
function gt(client: SuiGrpcClient, args: [uq32_32.UQ32_32, uq32_32.UQ32_32]): Promise<TypedSimulateResults<[boolean]>>;
|
|
865
|
+
function intDiv(client: SuiGrpcClient, args: [bigint, uq32_32.UQ32_32]): Promise<TypedSimulateResults<[bigint]>>;
|
|
866
|
+
function intMul(client: SuiGrpcClient, args: [bigint, uq32_32.UQ32_32]): Promise<TypedSimulateResults<[bigint]>>;
|
|
867
|
+
function le(client: SuiGrpcClient, args: [uq32_32.UQ32_32, uq32_32.UQ32_32]): Promise<TypedSimulateResults<[boolean]>>;
|
|
868
|
+
function lt(client: SuiGrpcClient, args: [uq32_32.UQ32_32, uq32_32.UQ32_32]): Promise<TypedSimulateResults<[boolean]>>;
|
|
869
|
+
function mul(client: SuiGrpcClient, args: [uq32_32.UQ32_32, uq32_32.UQ32_32]): Promise<TypedSimulateResults<[uq32_32.UQ32_32]>>;
|
|
870
|
+
function sub(client: SuiGrpcClient, args: [uq32_32.UQ32_32, uq32_32.UQ32_32]): Promise<TypedSimulateResults<[uq32_32.UQ32_32]>>;
|
|
871
|
+
function toInt(client: SuiGrpcClient, args: [uq32_32.UQ32_32]): Promise<TypedSimulateResults<[number]>>;
|
|
872
|
+
function toRaw(client: SuiGrpcClient, args: [uq32_32.UQ32_32]): Promise<TypedSimulateResults<[bigint]>>;
|
|
873
873
|
}
|
|
874
874
|
}
|
|
875
875
|
export declare namespace uq64_64 {
|
|
@@ -932,21 +932,21 @@ export declare namespace uq64_64 {
|
|
|
932
932
|
function toRaw(tx: Transaction, args: [uq64_64.UQ64_64 | TransactionArgument]): TransactionArgument & [TransactionArgument];
|
|
933
933
|
}
|
|
934
934
|
namespace view {
|
|
935
|
-
function add(client:
|
|
936
|
-
function div(client:
|
|
937
|
-
function fromInt(client:
|
|
938
|
-
function fromQuotient(client:
|
|
939
|
-
function fromRaw(client:
|
|
940
|
-
function ge(client:
|
|
941
|
-
function gt(client:
|
|
942
|
-
function intDiv(client:
|
|
943
|
-
function intMul(client:
|
|
944
|
-
function le(client:
|
|
945
|
-
function lt(client:
|
|
946
|
-
function mul(client:
|
|
947
|
-
function sub(client:
|
|
948
|
-
function toInt(client:
|
|
949
|
-
function toRaw(client:
|
|
935
|
+
function add(client: SuiGrpcClient, args: [uq64_64.UQ64_64, uq64_64.UQ64_64]): Promise<TypedSimulateResults<[uq64_64.UQ64_64]>>;
|
|
936
|
+
function div(client: SuiGrpcClient, args: [uq64_64.UQ64_64, uq64_64.UQ64_64]): Promise<TypedSimulateResults<[uq64_64.UQ64_64]>>;
|
|
937
|
+
function fromInt(client: SuiGrpcClient, args: [bigint]): Promise<TypedSimulateResults<[uq64_64.UQ64_64]>>;
|
|
938
|
+
function fromQuotient(client: SuiGrpcClient, args: [bigint, bigint]): Promise<TypedSimulateResults<[uq64_64.UQ64_64]>>;
|
|
939
|
+
function fromRaw(client: SuiGrpcClient, args: [bigint]): Promise<TypedSimulateResults<[uq64_64.UQ64_64]>>;
|
|
940
|
+
function ge(client: SuiGrpcClient, args: [uq64_64.UQ64_64, uq64_64.UQ64_64]): Promise<TypedSimulateResults<[boolean]>>;
|
|
941
|
+
function gt(client: SuiGrpcClient, args: [uq64_64.UQ64_64, uq64_64.UQ64_64]): Promise<TypedSimulateResults<[boolean]>>;
|
|
942
|
+
function intDiv(client: SuiGrpcClient, args: [bigint, uq64_64.UQ64_64]): Promise<TypedSimulateResults<[bigint]>>;
|
|
943
|
+
function intMul(client: SuiGrpcClient, args: [bigint, uq64_64.UQ64_64]): Promise<TypedSimulateResults<[bigint]>>;
|
|
944
|
+
function le(client: SuiGrpcClient, args: [uq64_64.UQ64_64, uq64_64.UQ64_64]): Promise<TypedSimulateResults<[boolean]>>;
|
|
945
|
+
function lt(client: SuiGrpcClient, args: [uq64_64.UQ64_64, uq64_64.UQ64_64]): Promise<TypedSimulateResults<[boolean]>>;
|
|
946
|
+
function mul(client: SuiGrpcClient, args: [uq64_64.UQ64_64, uq64_64.UQ64_64]): Promise<TypedSimulateResults<[uq64_64.UQ64_64]>>;
|
|
947
|
+
function sub(client: SuiGrpcClient, args: [uq64_64.UQ64_64, uq64_64.UQ64_64]): Promise<TypedSimulateResults<[uq64_64.UQ64_64]>>;
|
|
948
|
+
function toInt(client: SuiGrpcClient, args: [uq64_64.UQ64_64]): Promise<TypedSimulateResults<[bigint]>>;
|
|
949
|
+
function toRaw(client: SuiGrpcClient, args: [uq64_64.UQ64_64]): Promise<TypedSimulateResults<[bigint]>>;
|
|
950
950
|
}
|
|
951
951
|
}
|
|
952
952
|
export declare namespace vector {
|
|
@@ -1004,26 +1004,26 @@ export declare namespace vector {
|
|
|
1004
1004
|
], typeArguments: [TypeDescriptor<T0> | string]): TransactionArgument & [TransactionArgument, TransactionArgument];
|
|
1005
1005
|
}
|
|
1006
1006
|
namespace view {
|
|
1007
|
-
function append<T0 = any>(client:
|
|
1008
|
-
function borrow<T0 = any>(client:
|
|
1009
|
-
function borrowMut<T0 = any>(client:
|
|
1010
|
-
function contains<T0 = any>(client:
|
|
1011
|
-
function destroyEmpty<T0 = any>(client:
|
|
1012
|
-
function empty<T0 = any>(client:
|
|
1013
|
-
function flatten<T0 = any>(client:
|
|
1014
|
-
function indexOf<T0 = any>(client:
|
|
1015
|
-
function insert<T0 = any>(client:
|
|
1016
|
-
function isEmpty<T0 = any>(client:
|
|
1017
|
-
function length<T0 = any>(client:
|
|
1018
|
-
function popBack<T0 = any>(client:
|
|
1019
|
-
function pushBack<T0 = any>(client:
|
|
1020
|
-
function remove<T0 = any>(client:
|
|
1021
|
-
function reverse<T0 = any>(client:
|
|
1022
|
-
function singleton<T0 = any>(client:
|
|
1023
|
-
function skip<T0 = any>(client:
|
|
1024
|
-
function swap<T0 = any>(client:
|
|
1025
|
-
function swapRemove<T0 = any>(client:
|
|
1026
|
-
function take<T0 = any>(client:
|
|
1007
|
+
function append<T0 = any>(client: SuiGrpcClient, args: [string, string[]], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedSimulateResults<[]>>;
|
|
1008
|
+
function borrow<T0 = any>(client: SuiGrpcClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedSimulateResults<[string]>>;
|
|
1009
|
+
function borrowMut<T0 = any>(client: SuiGrpcClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedSimulateResults<[string]>>;
|
|
1010
|
+
function contains<T0 = any>(client: SuiGrpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedSimulateResults<[boolean]>>;
|
|
1011
|
+
function destroyEmpty<T0 = any>(client: SuiGrpcClient, args: [string[]], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedSimulateResults<[]>>;
|
|
1012
|
+
function empty<T0 = any>(client: SuiGrpcClient, args: [], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedSimulateResults<[T0[]]>>;
|
|
1013
|
+
function flatten<T0 = any>(client: SuiGrpcClient, args: [string[]], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedSimulateResults<[T0[]]>>;
|
|
1014
|
+
function indexOf<T0 = any>(client: SuiGrpcClient, args: [string, string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedSimulateResults<[boolean, bigint]>>;
|
|
1015
|
+
function insert<T0 = any>(client: SuiGrpcClient, args: [string, T0, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedSimulateResults<[]>>;
|
|
1016
|
+
function isEmpty<T0 = any>(client: SuiGrpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedSimulateResults<[boolean]>>;
|
|
1017
|
+
function length<T0 = any>(client: SuiGrpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedSimulateResults<[bigint]>>;
|
|
1018
|
+
function popBack<T0 = any>(client: SuiGrpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedSimulateResults<[T0]>>;
|
|
1019
|
+
function pushBack<T0 = any>(client: SuiGrpcClient, args: [string, T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedSimulateResults<[]>>;
|
|
1020
|
+
function remove<T0 = any>(client: SuiGrpcClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedSimulateResults<[T0]>>;
|
|
1021
|
+
function reverse<T0 = any>(client: SuiGrpcClient, args: [string], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedSimulateResults<[]>>;
|
|
1022
|
+
function singleton<T0 = any>(client: SuiGrpcClient, args: [T0], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedSimulateResults<[T0[]]>>;
|
|
1023
|
+
function skip<T0 = any>(client: SuiGrpcClient, args: [string[], bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedSimulateResults<[T0[]]>>;
|
|
1024
|
+
function swap<T0 = any>(client: SuiGrpcClient, args: [string, bigint, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedSimulateResults<[]>>;
|
|
1025
|
+
function swapRemove<T0 = any>(client: SuiGrpcClient, args: [string, bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedSimulateResults<[T0]>>;
|
|
1026
|
+
function take<T0 = any>(client: SuiGrpcClient, args: [string[], bigint], typeArguments: [TypeDescriptor<T0> | string]): Promise<TypedSimulateResults<[T0[]]>>;
|
|
1027
1027
|
}
|
|
1028
1028
|
}
|
|
1029
1029
|
export declare function loadAllTypes(coder: MoveCoder): void;
|