@typemove/sui 1.6.11 → 1.6.12-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/dist/cjs/builtin/0x1.d.ts +5 -5
- package/dist/cjs/builtin/0x1.js +17 -17
- package/dist/cjs/builtin/0x2.d.ts +165 -165
- package/dist/cjs/builtin/0x2.d.ts.map +1 -1
- package/dist/cjs/builtin/0x2.js +106 -106
- package/dist/cjs/builtin/0x2.js.map +1 -1
- package/dist/cjs/builtin/0x3.d.ts +35 -35
- package/dist/cjs/builtin/0x3.js +20 -20
- package/dist/esm/builtin/0x1.d.ts +5 -5
- package/dist/esm/builtin/0x1.js +16 -16
- package/dist/esm/builtin/0x2.d.ts +165 -165
- package/dist/esm/builtin/0x2.d.ts.map +1 -1
- package/dist/esm/builtin/0x2.js +105 -105
- package/dist/esm/builtin/0x2.js.map +1 -1
- package/dist/esm/builtin/0x3.d.ts +35 -35
- package/dist/esm/builtin/0x3.js +20 -20
- package/package.json +2 -2
- package/src/builtin/0x1.ts +7 -7
- package/src/builtin/0x2.ts +212 -212
- package/src/builtin/0x3.ts +45 -45
- package/src/tests/types/testnet/0x1e2b124f746a339b3cf99b9f969393a96594519aafb1d06517aacfeeae20e7a5.ts +3 -3
- package/src/tests/types/testnet/0x6c4a21e3e7e6b6d51c4604021633e1d97e24e37a696f8c082cd48f37503e602a.ts +3 -3
- package/src/tests/types/testnet/0x7f7a37c826c88bcfe9aecc042453395ddfa9df6f29cb7c97590bf86cf2b0a75e.ts +12 -12
- package/src/tests/types/testnet/0xdee9.ts +47 -47
- package/src/tests/types/testnet/0xebaa2ad3eacc230f309cd933958cc52684df0a41ae7ac214d186b80f830867d2.ts +21 -21
package/dist/cjs/builtin/0x2.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/* tslint:disable */
|
|
4
4
|
/* eslint-disable */
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.zklogin_verified_id = exports.versioned = exports.vec_set = exports.vec_map = exports.vdf = exports.url = exports.types = exports.tx_context = exports.transfer_policy = exports.transfer = exports.token = exports.table_vec = exports.table = exports.sui = exports.random = exports.priority_queue = exports.poseidon = exports.pay = exports.
|
|
6
|
+
exports.zklogin_verified_id = exports.versioned = exports.vec_set = exports.vec_map = exports.vdf = exports.url = exports.types = exports.tx_context = exports.transfer_policy = exports.transfer = exports.token = exports.table_vec = exports.table = exports.sui = exports.random = exports.priority_queue = exports.poseidon = exports.pay = exports.package$ = exports.object_table = exports.object_bag = exports.object$ = exports.math = exports.linked_table = exports.kiosk_extension = exports.kiosk = exports.hmac = exports.hex = exports.hash = exports.group_ops = exports.groth16 = exports.event = exports.ed25519 = exports.ecvrf = exports.ecdsa_r1 = exports.ecdsa_k1 = exports.dynamic_object_field = exports.dynamic_field = exports.display = exports.deny_list = exports.config = exports.coin = exports.clock = exports.borrow = exports.bls12381 = exports.bcs = exports.balance = exports.bag = exports.authenticator_state = exports.address = void 0;
|
|
7
7
|
exports.loadAllTypes = exports.zklogin_verified_issuer = void 0;
|
|
8
8
|
const tslib_1 = require("tslib");
|
|
9
9
|
/* Generated types for 0x2, original address 0x2 */
|
|
@@ -384,7 +384,7 @@ var bag;
|
|
|
384
384
|
});
|
|
385
385
|
}
|
|
386
386
|
builder.length = length;
|
|
387
|
-
function
|
|
387
|
+
function new$(tx, args) {
|
|
388
388
|
const _args = [];
|
|
389
389
|
// @ts-ignore
|
|
390
390
|
return tx.moveCall({
|
|
@@ -392,7 +392,7 @@ var bag;
|
|
|
392
392
|
arguments: _args,
|
|
393
393
|
});
|
|
394
394
|
}
|
|
395
|
-
builder.
|
|
395
|
+
builder.new$ = new$;
|
|
396
396
|
function remove(tx, args, typeArguments) {
|
|
397
397
|
const _args = [];
|
|
398
398
|
_args.push((0, sui_3.transactionArgumentOrObject)(args[0], tx));
|
|
@@ -495,16 +495,16 @@ var bag;
|
|
|
495
495
|
return (await (0, sui_2.getMoveCoder)(client)).decodeDevInspectResult(inspectRes);
|
|
496
496
|
}
|
|
497
497
|
view.length = length;
|
|
498
|
-
async function
|
|
498
|
+
async function new$(client, args) {
|
|
499
499
|
const tx = new transactions_1.Transaction();
|
|
500
|
-
builder.
|
|
500
|
+
builder.new$(tx, args);
|
|
501
501
|
const inspectRes = await client.devInspectTransactionBlock({
|
|
502
502
|
transactionBlock: tx,
|
|
503
503
|
sender: sui_2.ZERO_ADDRESS,
|
|
504
504
|
});
|
|
505
505
|
return (await (0, sui_2.getMoveCoder)(client)).decodeDevInspectResult(inspectRes);
|
|
506
506
|
}
|
|
507
|
-
view.
|
|
507
|
+
view.new$ = new$;
|
|
508
508
|
async function remove(client, args, typeArguments) {
|
|
509
509
|
const tx = new transactions_1.Transaction();
|
|
510
510
|
builder.remove(tx, args, typeArguments);
|
|
@@ -845,7 +845,7 @@ var bcs;
|
|
|
845
845
|
});
|
|
846
846
|
}
|
|
847
847
|
builder.intoRemainderBytes = intoRemainderBytes;
|
|
848
|
-
function
|
|
848
|
+
function new$(tx, args) {
|
|
849
849
|
const _args = [];
|
|
850
850
|
_args.push((0, sui_3.transactionArgumentOrVec)(args[0], tx));
|
|
851
851
|
// @ts-ignore
|
|
@@ -854,7 +854,7 @@ var bcs;
|
|
|
854
854
|
arguments: _args,
|
|
855
855
|
});
|
|
856
856
|
}
|
|
857
|
-
builder.
|
|
857
|
+
builder.new$ = new$;
|
|
858
858
|
function peelAddress(tx, args) {
|
|
859
859
|
const _args = [];
|
|
860
860
|
_args.push((0, sui_3.transactionArgumentOrObject)(args[0], tx));
|
|
@@ -1143,16 +1143,16 @@ var bcs;
|
|
|
1143
1143
|
return (await (0, sui_2.getMoveCoder)(client)).decodeDevInspectResult(inspectRes);
|
|
1144
1144
|
}
|
|
1145
1145
|
view.intoRemainderBytes = intoRemainderBytes;
|
|
1146
|
-
async function
|
|
1146
|
+
async function new$(client, args) {
|
|
1147
1147
|
const tx = new transactions_1.Transaction();
|
|
1148
|
-
builder.
|
|
1148
|
+
builder.new$(tx, args);
|
|
1149
1149
|
const inspectRes = await client.devInspectTransactionBlock({
|
|
1150
1150
|
transactionBlock: tx,
|
|
1151
1151
|
sender: sui_2.ZERO_ADDRESS,
|
|
1152
1152
|
});
|
|
1153
1153
|
return (await (0, sui_2.getMoveCoder)(client)).decodeDevInspectResult(inspectRes);
|
|
1154
1154
|
}
|
|
1155
|
-
view.
|
|
1155
|
+
view.new$ = new$;
|
|
1156
1156
|
async function peelAddress(client, args) {
|
|
1157
1157
|
const tx = new transactions_1.Transaction();
|
|
1158
1158
|
builder.peelAddress(tx, args);
|
|
@@ -2337,7 +2337,7 @@ var borrow;
|
|
|
2337
2337
|
});
|
|
2338
2338
|
}
|
|
2339
2339
|
builder.destroy = destroy;
|
|
2340
|
-
function
|
|
2340
|
+
function new$(tx, args, typeArguments) {
|
|
2341
2341
|
const _args = [];
|
|
2342
2342
|
_args.push((0, sui_3.transactionArgumentOrPure)(args[0], tx));
|
|
2343
2343
|
// @ts-ignore
|
|
@@ -2351,7 +2351,7 @@ var borrow;
|
|
|
2351
2351
|
],
|
|
2352
2352
|
});
|
|
2353
2353
|
}
|
|
2354
|
-
builder.
|
|
2354
|
+
builder.new$ = new$;
|
|
2355
2355
|
function putBack(tx, args, typeArguments) {
|
|
2356
2356
|
const _args = [];
|
|
2357
2357
|
_args.push((0, sui_3.transactionArgumentOrObject)(args[0], tx));
|
|
@@ -2392,16 +2392,16 @@ var borrow;
|
|
|
2392
2392
|
return (await (0, sui_2.getMoveCoder)(client)).decodeDevInspectResult(inspectRes);
|
|
2393
2393
|
}
|
|
2394
2394
|
view.destroy = destroy;
|
|
2395
|
-
async function
|
|
2395
|
+
async function new$(client, args, typeArguments) {
|
|
2396
2396
|
const tx = new transactions_1.Transaction();
|
|
2397
|
-
builder.
|
|
2397
|
+
builder.new$(tx, args, typeArguments);
|
|
2398
2398
|
const inspectRes = await client.devInspectTransactionBlock({
|
|
2399
2399
|
transactionBlock: tx,
|
|
2400
2400
|
sender: sui_2.ZERO_ADDRESS,
|
|
2401
2401
|
});
|
|
2402
2402
|
return (await (0, sui_2.getMoveCoder)(client)).decodeDevInspectResult(inspectRes);
|
|
2403
2403
|
}
|
|
2404
|
-
view.
|
|
2404
|
+
view.new$ = new$;
|
|
2405
2405
|
async function putBack(client, args, typeArguments) {
|
|
2406
2406
|
const tx = new transactions_1.Transaction();
|
|
2407
2407
|
builder.putBack(tx, args, typeArguments);
|
|
@@ -3819,7 +3819,7 @@ var config;
|
|
|
3819
3819
|
});
|
|
3820
3820
|
}
|
|
3821
3821
|
builder.existsWithTypeForNextEpoch = existsWithTypeForNextEpoch;
|
|
3822
|
-
function
|
|
3822
|
+
function new$(tx, args, typeArguments) {
|
|
3823
3823
|
const _args = [];
|
|
3824
3824
|
_args.push((0, sui_3.transactionArgumentOrObject)(args[0], tx));
|
|
3825
3825
|
// @ts-ignore
|
|
@@ -3833,7 +3833,7 @@ var config;
|
|
|
3833
3833
|
],
|
|
3834
3834
|
});
|
|
3835
3835
|
}
|
|
3836
|
-
builder.
|
|
3836
|
+
builder.new$ = new$;
|
|
3837
3837
|
function readSetting(tx, args, typeArguments) {
|
|
3838
3838
|
const _args = [];
|
|
3839
3839
|
_args.push((0, sui_3.transactionArgumentOrPure)(args[0], tx));
|
|
@@ -3972,16 +3972,16 @@ var config;
|
|
|
3972
3972
|
return (await (0, sui_2.getMoveCoder)(client)).decodeDevInspectResult(inspectRes);
|
|
3973
3973
|
}
|
|
3974
3974
|
view.existsWithTypeForNextEpoch = existsWithTypeForNextEpoch;
|
|
3975
|
-
async function
|
|
3975
|
+
async function new$(client, args, typeArguments) {
|
|
3976
3976
|
const tx = new transactions_1.Transaction();
|
|
3977
|
-
builder.
|
|
3977
|
+
builder.new$(tx, args, typeArguments);
|
|
3978
3978
|
const inspectRes = await client.devInspectTransactionBlock({
|
|
3979
3979
|
transactionBlock: tx,
|
|
3980
3980
|
sender: sui_2.ZERO_ADDRESS,
|
|
3981
3981
|
});
|
|
3982
3982
|
return (await (0, sui_2.getMoveCoder)(client)).decodeDevInspectResult(inspectRes);
|
|
3983
3983
|
}
|
|
3984
|
-
view.
|
|
3984
|
+
view.new$ = new$;
|
|
3985
3985
|
async function readSetting(client, args, typeArguments) {
|
|
3986
3986
|
const tx = new transactions_1.Transaction();
|
|
3987
3987
|
builder.readSetting(tx, args, typeArguments);
|
|
@@ -4504,7 +4504,7 @@ var display;
|
|
|
4504
4504
|
});
|
|
4505
4505
|
}
|
|
4506
4506
|
builder.isAuthorized = isAuthorized;
|
|
4507
|
-
function
|
|
4507
|
+
function new$(tx, args, typeArguments) {
|
|
4508
4508
|
const _args = [];
|
|
4509
4509
|
_args.push((0, sui_3.transactionArgumentOrObject)(args[0], tx));
|
|
4510
4510
|
// @ts-ignore
|
|
@@ -4518,7 +4518,7 @@ var display;
|
|
|
4518
4518
|
],
|
|
4519
4519
|
});
|
|
4520
4520
|
}
|
|
4521
|
-
builder.
|
|
4521
|
+
builder.new$ = new$;
|
|
4522
4522
|
function newWithFields(tx, args, typeArguments) {
|
|
4523
4523
|
const _args = [];
|
|
4524
4524
|
_args.push((0, sui_3.transactionArgumentOrObject)(args[0], tx));
|
|
@@ -4645,16 +4645,16 @@ var display;
|
|
|
4645
4645
|
return (await (0, sui_2.getMoveCoder)(client)).decodeDevInspectResult(inspectRes);
|
|
4646
4646
|
}
|
|
4647
4647
|
view.isAuthorized = isAuthorized;
|
|
4648
|
-
async function
|
|
4648
|
+
async function new$(client, args, typeArguments) {
|
|
4649
4649
|
const tx = new transactions_1.Transaction();
|
|
4650
|
-
builder.
|
|
4650
|
+
builder.new$(tx, args, typeArguments);
|
|
4651
4651
|
const inspectRes = await client.devInspectTransactionBlock({
|
|
4652
4652
|
transactionBlock: tx,
|
|
4653
4653
|
sender: sui_2.ZERO_ADDRESS,
|
|
4654
4654
|
});
|
|
4655
4655
|
return (await (0, sui_2.getMoveCoder)(client)).decodeDevInspectResult(inspectRes);
|
|
4656
4656
|
}
|
|
4657
|
-
view.
|
|
4657
|
+
view.new$ = new$;
|
|
4658
4658
|
async function newWithFields(client, args, typeArguments) {
|
|
4659
4659
|
const tx = new transactions_1.Transaction();
|
|
4660
4660
|
builder.newWithFields(tx, args, typeArguments);
|
|
@@ -6547,7 +6547,7 @@ var kiosk;
|
|
|
6547
6547
|
});
|
|
6548
6548
|
}
|
|
6549
6549
|
builder.closeAndWithdraw = closeAndWithdraw;
|
|
6550
|
-
function
|
|
6550
|
+
function default$(tx, args) {
|
|
6551
6551
|
const _args = [];
|
|
6552
6552
|
// @ts-ignore
|
|
6553
6553
|
return tx.moveCall({
|
|
@@ -6555,7 +6555,7 @@ var kiosk;
|
|
|
6555
6555
|
arguments: _args,
|
|
6556
6556
|
});
|
|
6557
6557
|
}
|
|
6558
|
-
builder.
|
|
6558
|
+
builder.default$ = default$;
|
|
6559
6559
|
function delist(tx, args, typeArguments) {
|
|
6560
6560
|
const _args = [];
|
|
6561
6561
|
_args.push((0, sui_3.transactionArgumentOrObject)(args[0], tx));
|
|
@@ -6734,7 +6734,7 @@ var kiosk;
|
|
|
6734
6734
|
});
|
|
6735
6735
|
}
|
|
6736
6736
|
builder.lockInternal = lockInternal;
|
|
6737
|
-
function
|
|
6737
|
+
function new$(tx, args) {
|
|
6738
6738
|
const _args = [];
|
|
6739
6739
|
// @ts-ignore
|
|
6740
6740
|
return tx.moveCall({
|
|
@@ -6742,7 +6742,7 @@ var kiosk;
|
|
|
6742
6742
|
arguments: _args,
|
|
6743
6743
|
});
|
|
6744
6744
|
}
|
|
6745
|
-
builder.
|
|
6745
|
+
builder.new$ = new$;
|
|
6746
6746
|
function owner(tx, args) {
|
|
6747
6747
|
const _args = [];
|
|
6748
6748
|
_args.push((0, sui_3.transactionArgumentOrObject)(args[0], tx));
|
|
@@ -7215,16 +7215,16 @@ var kiosk;
|
|
|
7215
7215
|
return (await (0, sui_2.getMoveCoder)(client)).decodeDevInspectResult(inspectRes);
|
|
7216
7216
|
}
|
|
7217
7217
|
view.lockInternal = lockInternal;
|
|
7218
|
-
async function
|
|
7218
|
+
async function new$(client, args) {
|
|
7219
7219
|
const tx = new transactions_1.Transaction();
|
|
7220
|
-
builder.
|
|
7220
|
+
builder.new$(tx, args);
|
|
7221
7221
|
const inspectRes = await client.devInspectTransactionBlock({
|
|
7222
7222
|
transactionBlock: tx,
|
|
7223
7223
|
sender: sui_2.ZERO_ADDRESS,
|
|
7224
7224
|
});
|
|
7225
7225
|
return (await (0, sui_2.getMoveCoder)(client)).decodeDevInspectResult(inspectRes);
|
|
7226
7226
|
}
|
|
7227
|
-
view.
|
|
7227
|
+
view.new$ = new$;
|
|
7228
7228
|
async function owner(client, args) {
|
|
7229
7229
|
const tx = new transactions_1.Transaction();
|
|
7230
7230
|
builder.owner(tx, args);
|
|
@@ -7981,7 +7981,7 @@ var linked_table;
|
|
|
7981
7981
|
});
|
|
7982
7982
|
}
|
|
7983
7983
|
builder.length = length;
|
|
7984
|
-
function
|
|
7984
|
+
function new$(tx, args, typeArguments) {
|
|
7985
7985
|
const _args = [];
|
|
7986
7986
|
// @ts-ignore
|
|
7987
7987
|
return tx.moveCall({
|
|
@@ -7997,7 +7997,7 @@ var linked_table;
|
|
|
7997
7997
|
],
|
|
7998
7998
|
});
|
|
7999
7999
|
}
|
|
8000
|
-
builder.
|
|
8000
|
+
builder.new$ = new$;
|
|
8001
8001
|
function next(tx, args, typeArguments) {
|
|
8002
8002
|
const _args = [];
|
|
8003
8003
|
_args.push((0, sui_3.transactionArgumentOrObject)(args[0], tx));
|
|
@@ -8224,16 +8224,16 @@ var linked_table;
|
|
|
8224
8224
|
return (await (0, sui_2.getMoveCoder)(client)).decodeDevInspectResult(inspectRes);
|
|
8225
8225
|
}
|
|
8226
8226
|
view.length = length;
|
|
8227
|
-
async function
|
|
8227
|
+
async function new$(client, args, typeArguments) {
|
|
8228
8228
|
const tx = new transactions_1.Transaction();
|
|
8229
|
-
builder.
|
|
8229
|
+
builder.new$(tx, args, typeArguments);
|
|
8230
8230
|
const inspectRes = await client.devInspectTransactionBlock({
|
|
8231
8231
|
transactionBlock: tx,
|
|
8232
8232
|
sender: sui_2.ZERO_ADDRESS,
|
|
8233
8233
|
});
|
|
8234
8234
|
return (await (0, sui_2.getMoveCoder)(client)).decodeDevInspectResult(inspectRes);
|
|
8235
8235
|
}
|
|
8236
|
-
view.
|
|
8236
|
+
view.new$ = new$;
|
|
8237
8237
|
async function next(client, args, typeArguments) {
|
|
8238
8238
|
const tx = new transactions_1.Transaction();
|
|
8239
8239
|
builder.next(tx, args, typeArguments);
|
|
@@ -8460,8 +8460,8 @@ var math;
|
|
|
8460
8460
|
view.sqrtU128 = sqrtU128;
|
|
8461
8461
|
})(view = math.view || (math.view = {}));
|
|
8462
8462
|
})(math || (exports.math = math = {}));
|
|
8463
|
-
var
|
|
8464
|
-
(function (
|
|
8463
|
+
var object$;
|
|
8464
|
+
(function (object$) {
|
|
8465
8465
|
let ID;
|
|
8466
8466
|
(function (ID) {
|
|
8467
8467
|
ID.TYPE_QNAME = "0x2::object::ID";
|
|
@@ -8470,7 +8470,7 @@ var object_;
|
|
|
8470
8470
|
return TYPE.apply();
|
|
8471
8471
|
}
|
|
8472
8472
|
ID.type = type;
|
|
8473
|
-
})(ID =
|
|
8473
|
+
})(ID = object$.ID || (object$.ID = {}));
|
|
8474
8474
|
let UID;
|
|
8475
8475
|
(function (UID) {
|
|
8476
8476
|
UID.TYPE_QNAME = "0x2::object::UID";
|
|
@@ -8479,7 +8479,7 @@ var object_;
|
|
|
8479
8479
|
return TYPE.apply();
|
|
8480
8480
|
}
|
|
8481
8481
|
UID.type = type;
|
|
8482
|
-
})(UID =
|
|
8482
|
+
})(UID = object$.UID || (object$.UID = {}));
|
|
8483
8483
|
let builder;
|
|
8484
8484
|
(function (builder) {
|
|
8485
8485
|
function authenticatorState(tx, args) {
|
|
@@ -8515,7 +8515,7 @@ var object_;
|
|
|
8515
8515
|
});
|
|
8516
8516
|
}
|
|
8517
8517
|
builder.clock = clock;
|
|
8518
|
-
function
|
|
8518
|
+
function delete$(tx, args) {
|
|
8519
8519
|
const _args = [];
|
|
8520
8520
|
_args.push((0, sui_3.transactionArgumentOrPure)(args[0], tx));
|
|
8521
8521
|
// @ts-ignore
|
|
@@ -8524,7 +8524,7 @@ var object_;
|
|
|
8524
8524
|
arguments: _args,
|
|
8525
8525
|
});
|
|
8526
8526
|
}
|
|
8527
|
-
builder.
|
|
8527
|
+
builder.delete$ = delete$;
|
|
8528
8528
|
function id(tx, args, typeArguments) {
|
|
8529
8529
|
const _args = [];
|
|
8530
8530
|
_args.push((0, sui_3.transactionArgumentOrObject)(args[0], tx));
|
|
@@ -8610,7 +8610,7 @@ var object_;
|
|
|
8610
8610
|
});
|
|
8611
8611
|
}
|
|
8612
8612
|
builder.idToBytes = idToBytes;
|
|
8613
|
-
function
|
|
8613
|
+
function new$(tx, args) {
|
|
8614
8614
|
const _args = [];
|
|
8615
8615
|
// @ts-ignore
|
|
8616
8616
|
return tx.moveCall({
|
|
@@ -8618,7 +8618,7 @@ var object_;
|
|
|
8618
8618
|
arguments: _args,
|
|
8619
8619
|
});
|
|
8620
8620
|
}
|
|
8621
|
-
builder.
|
|
8621
|
+
builder.new$ = new$;
|
|
8622
8622
|
function newUidFromHash(tx, args) {
|
|
8623
8623
|
const _args = [];
|
|
8624
8624
|
_args.push((0, sui_3.transactionArgumentOrPureAddress)(args[0], tx));
|
|
@@ -8687,7 +8687,7 @@ var object_;
|
|
|
8687
8687
|
});
|
|
8688
8688
|
}
|
|
8689
8689
|
builder.uidToInner = uidToInner;
|
|
8690
|
-
})(builder =
|
|
8690
|
+
})(builder = object$.builder || (object$.builder = {}));
|
|
8691
8691
|
let view;
|
|
8692
8692
|
(function (view) {
|
|
8693
8693
|
async function authenticatorState(client, args) {
|
|
@@ -8720,16 +8720,16 @@ var object_;
|
|
|
8720
8720
|
return (await (0, sui_2.getMoveCoder)(client)).decodeDevInspectResult(inspectRes);
|
|
8721
8721
|
}
|
|
8722
8722
|
view.clock = clock;
|
|
8723
|
-
async function
|
|
8723
|
+
async function delete$(client, args) {
|
|
8724
8724
|
const tx = new transactions_1.Transaction();
|
|
8725
|
-
builder.
|
|
8725
|
+
builder.delete$(tx, args);
|
|
8726
8726
|
const inspectRes = await client.devInspectTransactionBlock({
|
|
8727
8727
|
transactionBlock: tx,
|
|
8728
8728
|
sender: sui_2.ZERO_ADDRESS,
|
|
8729
8729
|
});
|
|
8730
8730
|
return (await (0, sui_2.getMoveCoder)(client)).decodeDevInspectResult(inspectRes);
|
|
8731
8731
|
}
|
|
8732
|
-
view.
|
|
8732
|
+
view.delete$ = delete$;
|
|
8733
8733
|
async function id(client, args, typeArguments) {
|
|
8734
8734
|
const tx = new transactions_1.Transaction();
|
|
8735
8735
|
builder.id(tx, args, typeArguments);
|
|
@@ -8800,16 +8800,16 @@ var object_;
|
|
|
8800
8800
|
return (await (0, sui_2.getMoveCoder)(client)).decodeDevInspectResult(inspectRes);
|
|
8801
8801
|
}
|
|
8802
8802
|
view.idToBytes = idToBytes;
|
|
8803
|
-
async function
|
|
8803
|
+
async function new$(client, args) {
|
|
8804
8804
|
const tx = new transactions_1.Transaction();
|
|
8805
|
-
builder.
|
|
8805
|
+
builder.new$(tx, args);
|
|
8806
8806
|
const inspectRes = await client.devInspectTransactionBlock({
|
|
8807
8807
|
transactionBlock: tx,
|
|
8808
8808
|
sender: sui_2.ZERO_ADDRESS,
|
|
8809
8809
|
});
|
|
8810
8810
|
return (await (0, sui_2.getMoveCoder)(client)).decodeDevInspectResult(inspectRes);
|
|
8811
8811
|
}
|
|
8812
|
-
view.
|
|
8812
|
+
view.new$ = new$;
|
|
8813
8813
|
async function newUidFromHash(client, args) {
|
|
8814
8814
|
const tx = new transactions_1.Transaction();
|
|
8815
8815
|
builder.newUidFromHash(tx, args);
|
|
@@ -8880,8 +8880,8 @@ var object_;
|
|
|
8880
8880
|
return (await (0, sui_2.getMoveCoder)(client)).decodeDevInspectResult(inspectRes);
|
|
8881
8881
|
}
|
|
8882
8882
|
view.uidToInner = uidToInner;
|
|
8883
|
-
})(view =
|
|
8884
|
-
})(
|
|
8883
|
+
})(view = object$.view || (object$.view = {}));
|
|
8884
|
+
})(object$ || (exports.object$ = object$ = {}));
|
|
8885
8885
|
var object_bag;
|
|
8886
8886
|
(function (object_bag) {
|
|
8887
8887
|
let ObjectBag;
|
|
@@ -9018,7 +9018,7 @@ var object_bag;
|
|
|
9018
9018
|
});
|
|
9019
9019
|
}
|
|
9020
9020
|
builder.length = length;
|
|
9021
|
-
function
|
|
9021
|
+
function new$(tx, args) {
|
|
9022
9022
|
const _args = [];
|
|
9023
9023
|
// @ts-ignore
|
|
9024
9024
|
return tx.moveCall({
|
|
@@ -9026,7 +9026,7 @@ var object_bag;
|
|
|
9026
9026
|
arguments: _args,
|
|
9027
9027
|
});
|
|
9028
9028
|
}
|
|
9029
|
-
builder.
|
|
9029
|
+
builder.new$ = new$;
|
|
9030
9030
|
function remove(tx, args, typeArguments) {
|
|
9031
9031
|
const _args = [];
|
|
9032
9032
|
_args.push((0, sui_3.transactionArgumentOrObject)(args[0], tx));
|
|
@@ -9145,16 +9145,16 @@ var object_bag;
|
|
|
9145
9145
|
return (await (0, sui_2.getMoveCoder)(client)).decodeDevInspectResult(inspectRes);
|
|
9146
9146
|
}
|
|
9147
9147
|
view.length = length;
|
|
9148
|
-
async function
|
|
9148
|
+
async function new$(client, args) {
|
|
9149
9149
|
const tx = new transactions_1.Transaction();
|
|
9150
|
-
builder.
|
|
9150
|
+
builder.new$(tx, args);
|
|
9151
9151
|
const inspectRes = await client.devInspectTransactionBlock({
|
|
9152
9152
|
transactionBlock: tx,
|
|
9153
9153
|
sender: sui_2.ZERO_ADDRESS,
|
|
9154
9154
|
});
|
|
9155
9155
|
return (await (0, sui_2.getMoveCoder)(client)).decodeDevInspectResult(inspectRes);
|
|
9156
9156
|
}
|
|
9157
|
-
view.
|
|
9157
|
+
view.new$ = new$;
|
|
9158
9158
|
async function remove(client, args, typeArguments) {
|
|
9159
9159
|
const tx = new transactions_1.Transaction();
|
|
9160
9160
|
builder.remove(tx, args, typeArguments);
|
|
@@ -9321,7 +9321,7 @@ var object_table;
|
|
|
9321
9321
|
});
|
|
9322
9322
|
}
|
|
9323
9323
|
builder.length = length;
|
|
9324
|
-
function
|
|
9324
|
+
function new$(tx, args, typeArguments) {
|
|
9325
9325
|
const _args = [];
|
|
9326
9326
|
// @ts-ignore
|
|
9327
9327
|
return tx.moveCall({
|
|
@@ -9337,7 +9337,7 @@ var object_table;
|
|
|
9337
9337
|
],
|
|
9338
9338
|
});
|
|
9339
9339
|
}
|
|
9340
|
-
builder.
|
|
9340
|
+
builder.new$ = new$;
|
|
9341
9341
|
function remove(tx, args, typeArguments) {
|
|
9342
9342
|
const _args = [];
|
|
9343
9343
|
_args.push((0, sui_3.transactionArgumentOrObject)(args[0], tx));
|
|
@@ -9449,16 +9449,16 @@ var object_table;
|
|
|
9449
9449
|
return (await (0, sui_2.getMoveCoder)(client)).decodeDevInspectResult(inspectRes);
|
|
9450
9450
|
}
|
|
9451
9451
|
view.length = length;
|
|
9452
|
-
async function
|
|
9452
|
+
async function new$(client, args, typeArguments) {
|
|
9453
9453
|
const tx = new transactions_1.Transaction();
|
|
9454
|
-
builder.
|
|
9454
|
+
builder.new$(tx, args, typeArguments);
|
|
9455
9455
|
const inspectRes = await client.devInspectTransactionBlock({
|
|
9456
9456
|
transactionBlock: tx,
|
|
9457
9457
|
sender: sui_2.ZERO_ADDRESS,
|
|
9458
9458
|
});
|
|
9459
9459
|
return (await (0, sui_2.getMoveCoder)(client)).decodeDevInspectResult(inspectRes);
|
|
9460
9460
|
}
|
|
9461
|
-
view.
|
|
9461
|
+
view.new$ = new$;
|
|
9462
9462
|
async function remove(client, args, typeArguments) {
|
|
9463
9463
|
const tx = new transactions_1.Transaction();
|
|
9464
9464
|
builder.remove(tx, args, typeArguments);
|
|
@@ -9481,8 +9481,8 @@ var object_table;
|
|
|
9481
9481
|
view.valueId = valueId;
|
|
9482
9482
|
})(view = object_table.view || (object_table.view = {}));
|
|
9483
9483
|
})(object_table || (exports.object_table = object_table = {}));
|
|
9484
|
-
var
|
|
9485
|
-
(function (
|
|
9484
|
+
var package$;
|
|
9485
|
+
(function (package$) {
|
|
9486
9486
|
let Publisher;
|
|
9487
9487
|
(function (Publisher) {
|
|
9488
9488
|
Publisher.TYPE_QNAME = "0x2::package::Publisher";
|
|
@@ -9491,7 +9491,7 @@ var package_;
|
|
|
9491
9491
|
return TYPE.apply();
|
|
9492
9492
|
}
|
|
9493
9493
|
Publisher.type = type;
|
|
9494
|
-
})(Publisher =
|
|
9494
|
+
})(Publisher = package$.Publisher || (package$.Publisher = {}));
|
|
9495
9495
|
let UpgradeCap;
|
|
9496
9496
|
(function (UpgradeCap) {
|
|
9497
9497
|
UpgradeCap.TYPE_QNAME = "0x2::package::UpgradeCap";
|
|
@@ -9500,7 +9500,7 @@ var package_;
|
|
|
9500
9500
|
return TYPE.apply();
|
|
9501
9501
|
}
|
|
9502
9502
|
UpgradeCap.type = type;
|
|
9503
|
-
})(UpgradeCap =
|
|
9503
|
+
})(UpgradeCap = package$.UpgradeCap || (package$.UpgradeCap = {}));
|
|
9504
9504
|
let UpgradeReceipt;
|
|
9505
9505
|
(function (UpgradeReceipt) {
|
|
9506
9506
|
UpgradeReceipt.TYPE_QNAME = "0x2::package::UpgradeReceipt";
|
|
@@ -9509,7 +9509,7 @@ var package_;
|
|
|
9509
9509
|
return TYPE.apply();
|
|
9510
9510
|
}
|
|
9511
9511
|
UpgradeReceipt.type = type;
|
|
9512
|
-
})(UpgradeReceipt =
|
|
9512
|
+
})(UpgradeReceipt = package$.UpgradeReceipt || (package$.UpgradeReceipt = {}));
|
|
9513
9513
|
let UpgradeTicket;
|
|
9514
9514
|
(function (UpgradeTicket) {
|
|
9515
9515
|
UpgradeTicket.TYPE_QNAME = "0x2::package::UpgradeTicket";
|
|
@@ -9518,7 +9518,7 @@ var package_;
|
|
|
9518
9518
|
return TYPE.apply();
|
|
9519
9519
|
}
|
|
9520
9520
|
UpgradeTicket.type = type;
|
|
9521
|
-
})(UpgradeTicket =
|
|
9521
|
+
})(UpgradeTicket = package$.UpgradeTicket || (package$.UpgradeTicket = {}));
|
|
9522
9522
|
let builder;
|
|
9523
9523
|
(function (builder) {
|
|
9524
9524
|
function additivePolicy(tx, args) {
|
|
@@ -9771,7 +9771,7 @@ var package_;
|
|
|
9771
9771
|
});
|
|
9772
9772
|
}
|
|
9773
9773
|
builder.version = version;
|
|
9774
|
-
})(builder =
|
|
9774
|
+
})(builder = package$.builder || (package$.builder = {}));
|
|
9775
9775
|
let view;
|
|
9776
9776
|
(function (view) {
|
|
9777
9777
|
async function additivePolicy(client, args) {
|
|
@@ -10004,8 +10004,8 @@ var package_;
|
|
|
10004
10004
|
return (await (0, sui_2.getMoveCoder)(client)).decodeDevInspectResult(inspectRes);
|
|
10005
10005
|
}
|
|
10006
10006
|
view.version = version;
|
|
10007
|
-
})(view =
|
|
10008
|
-
})(
|
|
10007
|
+
})(view = package$.view || (package$.view = {}));
|
|
10008
|
+
})(package$ || (exports.package$ = package$ = {}));
|
|
10009
10009
|
var pay;
|
|
10010
10010
|
(function (pay) {
|
|
10011
10011
|
let builder;
|
|
@@ -10307,7 +10307,7 @@ var priority_queue;
|
|
|
10307
10307
|
});
|
|
10308
10308
|
}
|
|
10309
10309
|
builder.insert = insert;
|
|
10310
|
-
function
|
|
10310
|
+
function new$(tx, args, typeArguments) {
|
|
10311
10311
|
const _args = [];
|
|
10312
10312
|
_args.push((0, sui_3.transactionArgumentOrVec)(args[0], tx));
|
|
10313
10313
|
// @ts-ignore
|
|
@@ -10321,7 +10321,7 @@ var priority_queue;
|
|
|
10321
10321
|
],
|
|
10322
10322
|
});
|
|
10323
10323
|
}
|
|
10324
|
-
builder.
|
|
10324
|
+
builder.new$ = new$;
|
|
10325
10325
|
function newEntry(tx, args, typeArguments) {
|
|
10326
10326
|
const _args = [];
|
|
10327
10327
|
_args.push((0, sui_3.transactionArgumentOrPureU64)(args[0], tx));
|
|
@@ -10391,16 +10391,16 @@ var priority_queue;
|
|
|
10391
10391
|
return (await (0, sui_2.getMoveCoder)(client)).decodeDevInspectResult(inspectRes);
|
|
10392
10392
|
}
|
|
10393
10393
|
view.insert = insert;
|
|
10394
|
-
async function
|
|
10394
|
+
async function new$(client, args, typeArguments) {
|
|
10395
10395
|
const tx = new transactions_1.Transaction();
|
|
10396
|
-
builder.
|
|
10396
|
+
builder.new$(tx, args, typeArguments);
|
|
10397
10397
|
const inspectRes = await client.devInspectTransactionBlock({
|
|
10398
10398
|
transactionBlock: tx,
|
|
10399
10399
|
sender: sui_2.ZERO_ADDRESS,
|
|
10400
10400
|
});
|
|
10401
10401
|
return (await (0, sui_2.getMoveCoder)(client)).decodeDevInspectResult(inspectRes);
|
|
10402
10402
|
}
|
|
10403
|
-
view.
|
|
10403
|
+
view.new$ = new$;
|
|
10404
10404
|
async function newEntry(client, args, typeArguments) {
|
|
10405
10405
|
const tx = new transactions_1.Transaction();
|
|
10406
10406
|
builder.newEntry(tx, args, typeArguments);
|
|
@@ -10987,7 +10987,7 @@ var table;
|
|
|
10987
10987
|
});
|
|
10988
10988
|
}
|
|
10989
10989
|
builder.length = length;
|
|
10990
|
-
function
|
|
10990
|
+
function new$(tx, args, typeArguments) {
|
|
10991
10991
|
const _args = [];
|
|
10992
10992
|
// @ts-ignore
|
|
10993
10993
|
return tx.moveCall({
|
|
@@ -11003,7 +11003,7 @@ var table;
|
|
|
11003
11003
|
],
|
|
11004
11004
|
});
|
|
11005
11005
|
}
|
|
11006
|
-
builder.
|
|
11006
|
+
builder.new$ = new$;
|
|
11007
11007
|
function remove(tx, args, typeArguments) {
|
|
11008
11008
|
const _args = [];
|
|
11009
11009
|
_args.push((0, sui_3.transactionArgumentOrObject)(args[0], tx));
|
|
@@ -11106,16 +11106,16 @@ var table;
|
|
|
11106
11106
|
return (await (0, sui_2.getMoveCoder)(client)).decodeDevInspectResult(inspectRes);
|
|
11107
11107
|
}
|
|
11108
11108
|
view.length = length;
|
|
11109
|
-
async function
|
|
11109
|
+
async function new$(client, args, typeArguments) {
|
|
11110
11110
|
const tx = new transactions_1.Transaction();
|
|
11111
|
-
builder.
|
|
11111
|
+
builder.new$(tx, args, typeArguments);
|
|
11112
11112
|
const inspectRes = await client.devInspectTransactionBlock({
|
|
11113
11113
|
transactionBlock: tx,
|
|
11114
11114
|
sender: sui_2.ZERO_ADDRESS,
|
|
11115
11115
|
});
|
|
11116
11116
|
return (await (0, sui_2.getMoveCoder)(client)).decodeDevInspectResult(inspectRes);
|
|
11117
11117
|
}
|
|
11118
|
-
view.
|
|
11118
|
+
view.new$ = new$;
|
|
11119
11119
|
async function remove(client, args, typeArguments) {
|
|
11120
11120
|
const tx = new transactions_1.Transaction();
|
|
11121
11121
|
builder.remove(tx, args, typeArguments);
|
|
@@ -13122,7 +13122,7 @@ var transfer_policy;
|
|
|
13122
13122
|
});
|
|
13123
13123
|
}
|
|
13124
13124
|
builder.confirmRequest = confirmRequest;
|
|
13125
|
-
function
|
|
13125
|
+
function default$(tx, args, typeArguments) {
|
|
13126
13126
|
const _args = [];
|
|
13127
13127
|
_args.push((0, sui_3.transactionArgumentOrObject)(args[0], tx));
|
|
13128
13128
|
// @ts-ignore
|
|
@@ -13136,7 +13136,7 @@ var transfer_policy;
|
|
|
13136
13136
|
],
|
|
13137
13137
|
});
|
|
13138
13138
|
}
|
|
13139
|
-
builder.
|
|
13139
|
+
builder.default$ = default$;
|
|
13140
13140
|
function destroyAndWithdraw(tx, args, typeArguments) {
|
|
13141
13141
|
const _args = [];
|
|
13142
13142
|
_args.push((0, sui_3.transactionArgumentOrPure)(args[0], tx));
|
|
@@ -13153,7 +13153,7 @@ var transfer_policy;
|
|
|
13153
13153
|
});
|
|
13154
13154
|
}
|
|
13155
13155
|
builder.destroyAndWithdraw = destroyAndWithdraw;
|
|
13156
|
-
function from(tx, args, typeArguments) {
|
|
13156
|
+
function from$(tx, args, typeArguments) {
|
|
13157
13157
|
const _args = [];
|
|
13158
13158
|
_args.push((0, sui_3.transactionArgumentOrObject)(args[0], tx));
|
|
13159
13159
|
// @ts-ignore
|
|
@@ -13167,7 +13167,7 @@ var transfer_policy;
|
|
|
13167
13167
|
],
|
|
13168
13168
|
});
|
|
13169
13169
|
}
|
|
13170
|
-
builder.from = from
|
|
13170
|
+
builder.from$ = from$;
|
|
13171
13171
|
function getRule(tx, args, typeArguments) {
|
|
13172
13172
|
const _args = [];
|
|
13173
13173
|
_args.push((0, sui_3.transactionArgumentOrPure)(args[0], tx));
|
|
@@ -13223,7 +13223,7 @@ var transfer_policy;
|
|
|
13223
13223
|
});
|
|
13224
13224
|
}
|
|
13225
13225
|
builder.item = item;
|
|
13226
|
-
function
|
|
13226
|
+
function new$(tx, args, typeArguments) {
|
|
13227
13227
|
const _args = [];
|
|
13228
13228
|
_args.push((0, sui_3.transactionArgumentOrObject)(args[0], tx));
|
|
13229
13229
|
// @ts-ignore
|
|
@@ -13237,7 +13237,7 @@ var transfer_policy;
|
|
|
13237
13237
|
],
|
|
13238
13238
|
});
|
|
13239
13239
|
}
|
|
13240
|
-
builder.
|
|
13240
|
+
builder.new$ = new$;
|
|
13241
13241
|
function newRequest(tx, args, typeArguments) {
|
|
13242
13242
|
const _args = [];
|
|
13243
13243
|
_args.push((0, sui_3.transactionArgumentOrPure)(args[0], tx));
|
|
@@ -13408,16 +13408,16 @@ var transfer_policy;
|
|
|
13408
13408
|
return (await (0, sui_2.getMoveCoder)(client)).decodeDevInspectResult(inspectRes);
|
|
13409
13409
|
}
|
|
13410
13410
|
view.destroyAndWithdraw = destroyAndWithdraw;
|
|
13411
|
-
async function from(client, args, typeArguments) {
|
|
13411
|
+
async function from$(client, args, typeArguments) {
|
|
13412
13412
|
const tx = new transactions_1.Transaction();
|
|
13413
|
-
builder.from(tx, args, typeArguments);
|
|
13413
|
+
builder.from$(tx, args, typeArguments);
|
|
13414
13414
|
const inspectRes = await client.devInspectTransactionBlock({
|
|
13415
13415
|
transactionBlock: tx,
|
|
13416
13416
|
sender: sui_2.ZERO_ADDRESS,
|
|
13417
13417
|
});
|
|
13418
13418
|
return (await (0, sui_2.getMoveCoder)(client)).decodeDevInspectResult(inspectRes);
|
|
13419
13419
|
}
|
|
13420
|
-
view.from = from
|
|
13420
|
+
view.from$ = from$;
|
|
13421
13421
|
async function getRule(client, args, typeArguments) {
|
|
13422
13422
|
const tx = new transactions_1.Transaction();
|
|
13423
13423
|
builder.getRule(tx, args, typeArguments);
|
|
@@ -13448,16 +13448,16 @@ var transfer_policy;
|
|
|
13448
13448
|
return (await (0, sui_2.getMoveCoder)(client)).decodeDevInspectResult(inspectRes);
|
|
13449
13449
|
}
|
|
13450
13450
|
view.item = item;
|
|
13451
|
-
async function
|
|
13451
|
+
async function new$(client, args, typeArguments) {
|
|
13452
13452
|
const tx = new transactions_1.Transaction();
|
|
13453
|
-
builder.
|
|
13453
|
+
builder.new$(tx, args, typeArguments);
|
|
13454
13454
|
const inspectRes = await client.devInspectTransactionBlock({
|
|
13455
13455
|
transactionBlock: tx,
|
|
13456
13456
|
sender: sui_2.ZERO_ADDRESS,
|
|
13457
13457
|
});
|
|
13458
13458
|
return (await (0, sui_2.getMoveCoder)(client)).decodeDevInspectResult(inspectRes);
|
|
13459
13459
|
}
|
|
13460
|
-
view.
|
|
13460
|
+
view.new$ = new$;
|
|
13461
13461
|
async function newRequest(client, args, typeArguments) {
|
|
13462
13462
|
const tx = new transactions_1.Transaction();
|
|
13463
13463
|
builder.newRequest(tx, args, typeArguments);
|
|
@@ -14908,7 +14908,7 @@ var zklogin_verified_id;
|
|
|
14908
14908
|
});
|
|
14909
14909
|
}
|
|
14910
14910
|
builder.checkZkloginId = checkZkloginId;
|
|
14911
|
-
function
|
|
14911
|
+
function delete$(tx, args) {
|
|
14912
14912
|
const _args = [];
|
|
14913
14913
|
_args.push((0, sui_3.transactionArgumentOrPure)(args[0], tx));
|
|
14914
14914
|
// @ts-ignore
|
|
@@ -14917,7 +14917,7 @@ var zklogin_verified_id;
|
|
|
14917
14917
|
arguments: _args,
|
|
14918
14918
|
});
|
|
14919
14919
|
}
|
|
14920
|
-
builder.
|
|
14920
|
+
builder.delete$ = delete$;
|
|
14921
14921
|
function issuer(tx, args) {
|
|
14922
14922
|
const _args = [];
|
|
14923
14923
|
_args.push((0, sui_3.transactionArgumentOrObject)(args[0], tx));
|
|
@@ -14995,16 +14995,16 @@ var zklogin_verified_id;
|
|
|
14995
14995
|
return (await (0, sui_2.getMoveCoder)(client)).decodeDevInspectResult(inspectRes);
|
|
14996
14996
|
}
|
|
14997
14997
|
view.checkZkloginId = checkZkloginId;
|
|
14998
|
-
async function
|
|
14998
|
+
async function delete$(client, args) {
|
|
14999
14999
|
const tx = new transactions_1.Transaction();
|
|
15000
|
-
builder.
|
|
15000
|
+
builder.delete$(tx, args);
|
|
15001
15001
|
const inspectRes = await client.devInspectTransactionBlock({
|
|
15002
15002
|
transactionBlock: tx,
|
|
15003
15003
|
sender: sui_2.ZERO_ADDRESS,
|
|
15004
15004
|
});
|
|
15005
15005
|
return (await (0, sui_2.getMoveCoder)(client)).decodeDevInspectResult(inspectRes);
|
|
15006
15006
|
}
|
|
15007
|
-
view.
|
|
15007
|
+
view.delete$ = delete$;
|
|
15008
15008
|
async function issuer(client, args) {
|
|
15009
15009
|
const tx = new transactions_1.Transaction();
|
|
15010
15010
|
builder.issuer(tx, args);
|
|
@@ -15082,7 +15082,7 @@ var zklogin_verified_issuer;
|
|
|
15082
15082
|
});
|
|
15083
15083
|
}
|
|
15084
15084
|
builder.checkZkloginIssuer = checkZkloginIssuer;
|
|
15085
|
-
function
|
|
15085
|
+
function delete$(tx, args) {
|
|
15086
15086
|
const _args = [];
|
|
15087
15087
|
_args.push((0, sui_3.transactionArgumentOrPure)(args[0], tx));
|
|
15088
15088
|
// @ts-ignore
|
|
@@ -15091,7 +15091,7 @@ var zklogin_verified_issuer;
|
|
|
15091
15091
|
arguments: _args,
|
|
15092
15092
|
});
|
|
15093
15093
|
}
|
|
15094
|
-
builder.
|
|
15094
|
+
builder.delete$ = delete$;
|
|
15095
15095
|
function issuer(tx, args) {
|
|
15096
15096
|
const _args = [];
|
|
15097
15097
|
_args.push((0, sui_3.transactionArgumentOrObject)(args[0], tx));
|
|
@@ -15136,16 +15136,16 @@ var zklogin_verified_issuer;
|
|
|
15136
15136
|
return (await (0, sui_2.getMoveCoder)(client)).decodeDevInspectResult(inspectRes);
|
|
15137
15137
|
}
|
|
15138
15138
|
view.checkZkloginIssuer = checkZkloginIssuer;
|
|
15139
|
-
async function
|
|
15139
|
+
async function delete$(client, args) {
|
|
15140
15140
|
const tx = new transactions_1.Transaction();
|
|
15141
|
-
builder.
|
|
15141
|
+
builder.delete$(tx, args);
|
|
15142
15142
|
const inspectRes = await client.devInspectTransactionBlock({
|
|
15143
15143
|
transactionBlock: tx,
|
|
15144
15144
|
sender: sui_2.ZERO_ADDRESS,
|
|
15145
15145
|
});
|
|
15146
15146
|
return (await (0, sui_2.getMoveCoder)(client)).decodeDevInspectResult(inspectRes);
|
|
15147
15147
|
}
|
|
15148
|
-
view.
|
|
15148
|
+
view.delete$ = delete$;
|
|
15149
15149
|
async function issuer(client, args) {
|
|
15150
15150
|
const tx = new transactions_1.Transaction();
|
|
15151
15151
|
builder.issuer(tx, args);
|