@sentio/sdk 2.46.0-rc.1 → 2.46.0-rc.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/aptos/builtin/0x1.d.ts +65 -65
- package/lib/aptos/builtin/0x1.js +27 -27
- package/lib/aptos/builtin/0x3.d.ts +1 -1
- package/lib/aptos/builtin/0x4.d.ts +34 -34
- package/lib/sui/builtin/0x1.d.ts +172 -311
- package/lib/sui/builtin/0x1.d.ts.map +1 -1
- package/lib/sui/builtin/0x1.js +17 -17
- package/lib/sui/builtin/0x1.js.map +1 -1
- package/lib/sui/builtin/0x2.d.ts +673 -1589
- package/lib/sui/builtin/0x2.d.ts.map +1 -1
- package/lib/sui/builtin/0x2.js +106 -106
- package/lib/sui/builtin/0x2.js.map +1 -1
- package/lib/sui/builtin/0x3.d.ts +359 -831
- package/lib/sui/builtin/0x3.d.ts.map +1 -1
- package/lib/sui/builtin/0x3.js +20 -20
- package/lib/sui/builtin/0x3.js.map +1 -1
- package/package.json +6 -6
- package/src/aptos/builtin/0x1.ts +78 -78
- package/src/aptos/builtin/0x3.ts +1 -1
- package/src/aptos/builtin/0x4.ts +34 -34
- package/src/sui/builtin/0x1.ts +178 -317
- package/src/sui/builtin/0x2.ts +752 -1668
- package/src/sui/builtin/0x3.ts +374 -846
package/lib/sui/builtin/0x2.js
CHANGED
@@ -406,7 +406,7 @@ export var bag;
|
|
406
406
|
});
|
407
407
|
}
|
408
408
|
builder.length = length;
|
409
|
-
function
|
409
|
+
function new$(tx, args) {
|
410
410
|
const _args = [];
|
411
411
|
// @ts-ignore
|
412
412
|
return tx.moveCall({
|
@@ -414,7 +414,7 @@ export var bag;
|
|
414
414
|
arguments: _args,
|
415
415
|
});
|
416
416
|
}
|
417
|
-
builder.
|
417
|
+
builder.new$ = new$;
|
418
418
|
function remove(tx, args, typeArguments) {
|
419
419
|
const _args = [];
|
420
420
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -517,16 +517,16 @@ export var bag;
|
|
517
517
|
return (await getMoveCoder(client)).decodeDevInspectResult(inspectRes);
|
518
518
|
}
|
519
519
|
view.length = length;
|
520
|
-
async function
|
520
|
+
async function new$(client, args) {
|
521
521
|
const tx = new Transaction();
|
522
|
-
builder.
|
522
|
+
builder.new$(tx, args);
|
523
523
|
const inspectRes = await client.devInspectTransactionBlock({
|
524
524
|
transactionBlock: tx,
|
525
525
|
sender: ZERO_ADDRESS,
|
526
526
|
});
|
527
527
|
return (await getMoveCoder(client)).decodeDevInspectResult(inspectRes);
|
528
528
|
}
|
529
|
-
view.
|
529
|
+
view.new$ = new$;
|
530
530
|
async function remove(client, args, typeArguments) {
|
531
531
|
const tx = new Transaction();
|
532
532
|
builder.remove(tx, args, typeArguments);
|
@@ -882,7 +882,7 @@ export class bcs extends SuiBaseProcessor {
|
|
882
882
|
});
|
883
883
|
}
|
884
884
|
builder.intoRemainderBytes = intoRemainderBytes;
|
885
|
-
function
|
885
|
+
function new$(tx, args) {
|
886
886
|
const _args = [];
|
887
887
|
_args.push(transactionArgumentOrVec(args[0], tx));
|
888
888
|
// @ts-ignore
|
@@ -891,7 +891,7 @@ export class bcs extends SuiBaseProcessor {
|
|
891
891
|
arguments: _args,
|
892
892
|
});
|
893
893
|
}
|
894
|
-
builder.
|
894
|
+
builder.new$ = new$;
|
895
895
|
function peelAddress(tx, args) {
|
896
896
|
const _args = [];
|
897
897
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -1180,16 +1180,16 @@ export class bcs extends SuiBaseProcessor {
|
|
1180
1180
|
return (await getMoveCoder(client)).decodeDevInspectResult(inspectRes);
|
1181
1181
|
}
|
1182
1182
|
view.intoRemainderBytes = intoRemainderBytes;
|
1183
|
-
async function
|
1183
|
+
async function new$(client, args) {
|
1184
1184
|
const tx = new Transaction();
|
1185
|
-
builder.
|
1185
|
+
builder.new$(tx, args);
|
1186
1186
|
const inspectRes = await client.devInspectTransactionBlock({
|
1187
1187
|
transactionBlock: tx,
|
1188
1188
|
sender: ZERO_ADDRESS,
|
1189
1189
|
});
|
1190
1190
|
return (await getMoveCoder(client)).decodeDevInspectResult(inspectRes);
|
1191
1191
|
}
|
1192
|
-
view.
|
1192
|
+
view.new$ = new$;
|
1193
1193
|
async function peelAddress(client, args) {
|
1194
1194
|
const tx = new Transaction();
|
1195
1195
|
builder.peelAddress(tx, args);
|
@@ -2374,7 +2374,7 @@ export var borrow;
|
|
2374
2374
|
});
|
2375
2375
|
}
|
2376
2376
|
builder.destroy = destroy;
|
2377
|
-
function
|
2377
|
+
function new$(tx, args, typeArguments) {
|
2378
2378
|
const _args = [];
|
2379
2379
|
_args.push(transactionArgumentOrPure(args[0], tx));
|
2380
2380
|
// @ts-ignore
|
@@ -2388,7 +2388,7 @@ export var borrow;
|
|
2388
2388
|
],
|
2389
2389
|
});
|
2390
2390
|
}
|
2391
|
-
builder.
|
2391
|
+
builder.new$ = new$;
|
2392
2392
|
function putBack(tx, args, typeArguments) {
|
2393
2393
|
const _args = [];
|
2394
2394
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -2429,16 +2429,16 @@ export var borrow;
|
|
2429
2429
|
return (await getMoveCoder(client)).decodeDevInspectResult(inspectRes);
|
2430
2430
|
}
|
2431
2431
|
view.destroy = destroy;
|
2432
|
-
async function
|
2432
|
+
async function new$(client, args, typeArguments) {
|
2433
2433
|
const tx = new Transaction();
|
2434
|
-
builder.
|
2434
|
+
builder.new$(tx, args, typeArguments);
|
2435
2435
|
const inspectRes = await client.devInspectTransactionBlock({
|
2436
2436
|
transactionBlock: tx,
|
2437
2437
|
sender: ZERO_ADDRESS,
|
2438
2438
|
});
|
2439
2439
|
return (await getMoveCoder(client)).decodeDevInspectResult(inspectRes);
|
2440
2440
|
}
|
2441
|
-
view.
|
2441
|
+
view.new$ = new$;
|
2442
2442
|
async function putBack(client, args, typeArguments) {
|
2443
2443
|
const tx = new Transaction();
|
2444
2444
|
builder.putBack(tx, args, typeArguments);
|
@@ -3920,7 +3920,7 @@ export var config;
|
|
3920
3920
|
});
|
3921
3921
|
}
|
3922
3922
|
builder.existsWithTypeForNextEpoch = existsWithTypeForNextEpoch;
|
3923
|
-
function
|
3923
|
+
function new$(tx, args, typeArguments) {
|
3924
3924
|
const _args = [];
|
3925
3925
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
3926
3926
|
// @ts-ignore
|
@@ -3934,7 +3934,7 @@ export var config;
|
|
3934
3934
|
],
|
3935
3935
|
});
|
3936
3936
|
}
|
3937
|
-
builder.
|
3937
|
+
builder.new$ = new$;
|
3938
3938
|
function readSetting(tx, args, typeArguments) {
|
3939
3939
|
const _args = [];
|
3940
3940
|
_args.push(transactionArgumentOrPure(args[0], tx));
|
@@ -4073,16 +4073,16 @@ export var config;
|
|
4073
4073
|
return (await getMoveCoder(client)).decodeDevInspectResult(inspectRes);
|
4074
4074
|
}
|
4075
4075
|
view.existsWithTypeForNextEpoch = existsWithTypeForNextEpoch;
|
4076
|
-
async function
|
4076
|
+
async function new$(client, args, typeArguments) {
|
4077
4077
|
const tx = new Transaction();
|
4078
|
-
builder.
|
4078
|
+
builder.new$(tx, args, typeArguments);
|
4079
4079
|
const inspectRes = await client.devInspectTransactionBlock({
|
4080
4080
|
transactionBlock: tx,
|
4081
4081
|
sender: ZERO_ADDRESS,
|
4082
4082
|
});
|
4083
4083
|
return (await getMoveCoder(client)).decodeDevInspectResult(inspectRes);
|
4084
4084
|
}
|
4085
|
-
view.
|
4085
|
+
view.new$ = new$;
|
4086
4086
|
async function readSetting(client, args, typeArguments) {
|
4087
4087
|
const tx = new Transaction();
|
4088
4088
|
builder.readSetting(tx, args, typeArguments);
|
@@ -4693,7 +4693,7 @@ export class display extends SuiBaseProcessor {
|
|
4693
4693
|
});
|
4694
4694
|
}
|
4695
4695
|
builder.isAuthorized = isAuthorized;
|
4696
|
-
function
|
4696
|
+
function new$(tx, args, typeArguments) {
|
4697
4697
|
const _args = [];
|
4698
4698
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
4699
4699
|
// @ts-ignore
|
@@ -4707,7 +4707,7 @@ export class display extends SuiBaseProcessor {
|
|
4707
4707
|
],
|
4708
4708
|
});
|
4709
4709
|
}
|
4710
|
-
builder.
|
4710
|
+
builder.new$ = new$;
|
4711
4711
|
function newWithFields(tx, args, typeArguments) {
|
4712
4712
|
const _args = [];
|
4713
4713
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -4834,16 +4834,16 @@ export class display extends SuiBaseProcessor {
|
|
4834
4834
|
return (await getMoveCoder(client)).decodeDevInspectResult(inspectRes);
|
4835
4835
|
}
|
4836
4836
|
view.isAuthorized = isAuthorized;
|
4837
|
-
async function
|
4837
|
+
async function new$(client, args, typeArguments) {
|
4838
4838
|
const tx = new Transaction();
|
4839
|
-
builder.
|
4839
|
+
builder.new$(tx, args, typeArguments);
|
4840
4840
|
const inspectRes = await client.devInspectTransactionBlock({
|
4841
4841
|
transactionBlock: tx,
|
4842
4842
|
sender: ZERO_ADDRESS,
|
4843
4843
|
});
|
4844
4844
|
return (await getMoveCoder(client)).decodeDevInspectResult(inspectRes);
|
4845
4845
|
}
|
4846
|
-
view.
|
4846
|
+
view.new$ = new$;
|
4847
4847
|
async function newWithFields(client, args, typeArguments) {
|
4848
4848
|
const tx = new Transaction();
|
4849
4849
|
builder.newWithFields(tx, args, typeArguments);
|
@@ -6838,7 +6838,7 @@ export class kiosk extends SuiBaseProcessor {
|
|
6838
6838
|
});
|
6839
6839
|
}
|
6840
6840
|
builder.closeAndWithdraw = closeAndWithdraw;
|
6841
|
-
function
|
6841
|
+
function default$(tx, args) {
|
6842
6842
|
const _args = [];
|
6843
6843
|
// @ts-ignore
|
6844
6844
|
return tx.moveCall({
|
@@ -6846,7 +6846,7 @@ export class kiosk extends SuiBaseProcessor {
|
|
6846
6846
|
arguments: _args,
|
6847
6847
|
});
|
6848
6848
|
}
|
6849
|
-
builder.
|
6849
|
+
builder.default$ = default$;
|
6850
6850
|
function delist(tx, args, typeArguments) {
|
6851
6851
|
const _args = [];
|
6852
6852
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -7025,7 +7025,7 @@ export class kiosk extends SuiBaseProcessor {
|
|
7025
7025
|
});
|
7026
7026
|
}
|
7027
7027
|
builder.lockInternal = lockInternal;
|
7028
|
-
function
|
7028
|
+
function new$(tx, args) {
|
7029
7029
|
const _args = [];
|
7030
7030
|
// @ts-ignore
|
7031
7031
|
return tx.moveCall({
|
@@ -7033,7 +7033,7 @@ export class kiosk extends SuiBaseProcessor {
|
|
7033
7033
|
arguments: _args,
|
7034
7034
|
});
|
7035
7035
|
}
|
7036
|
-
builder.
|
7036
|
+
builder.new$ = new$;
|
7037
7037
|
function owner(tx, args) {
|
7038
7038
|
const _args = [];
|
7039
7039
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -7506,16 +7506,16 @@ export class kiosk extends SuiBaseProcessor {
|
|
7506
7506
|
return (await getMoveCoder(client)).decodeDevInspectResult(inspectRes);
|
7507
7507
|
}
|
7508
7508
|
view.lockInternal = lockInternal;
|
7509
|
-
async function
|
7509
|
+
async function new$(client, args) {
|
7510
7510
|
const tx = new Transaction();
|
7511
|
-
builder.
|
7511
|
+
builder.new$(tx, args);
|
7512
7512
|
const inspectRes = await client.devInspectTransactionBlock({
|
7513
7513
|
transactionBlock: tx,
|
7514
7514
|
sender: ZERO_ADDRESS,
|
7515
7515
|
});
|
7516
7516
|
return (await getMoveCoder(client)).decodeDevInspectResult(inspectRes);
|
7517
7517
|
}
|
7518
|
-
view.
|
7518
|
+
view.new$ = new$;
|
7519
7519
|
async function owner(client, args) {
|
7520
7520
|
const tx = new Transaction();
|
7521
7521
|
builder.owner(tx, args);
|
@@ -8290,7 +8290,7 @@ export var linked_table;
|
|
8290
8290
|
});
|
8291
8291
|
}
|
8292
8292
|
builder.length = length;
|
8293
|
-
function
|
8293
|
+
function new$(tx, args, typeArguments) {
|
8294
8294
|
const _args = [];
|
8295
8295
|
// @ts-ignore
|
8296
8296
|
return tx.moveCall({
|
@@ -8306,7 +8306,7 @@ export var linked_table;
|
|
8306
8306
|
],
|
8307
8307
|
});
|
8308
8308
|
}
|
8309
|
-
builder.
|
8309
|
+
builder.new$ = new$;
|
8310
8310
|
function next(tx, args, typeArguments) {
|
8311
8311
|
const _args = [];
|
8312
8312
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -8533,16 +8533,16 @@ export var linked_table;
|
|
8533
8533
|
return (await getMoveCoder(client)).decodeDevInspectResult(inspectRes);
|
8534
8534
|
}
|
8535
8535
|
view.length = length;
|
8536
|
-
async function
|
8536
|
+
async function new$(client, args, typeArguments) {
|
8537
8537
|
const tx = new Transaction();
|
8538
|
-
builder.
|
8538
|
+
builder.new$(tx, args, typeArguments);
|
8539
8539
|
const inspectRes = await client.devInspectTransactionBlock({
|
8540
8540
|
transactionBlock: tx,
|
8541
8541
|
sender: ZERO_ADDRESS,
|
8542
8542
|
});
|
8543
8543
|
return (await getMoveCoder(client)).decodeDevInspectResult(inspectRes);
|
8544
8544
|
}
|
8545
|
-
view.
|
8545
|
+
view.new$ = new$;
|
8546
8546
|
async function next(client, args, typeArguments) {
|
8547
8547
|
const tx = new Transaction();
|
8548
8548
|
builder.next(tx, args, typeArguments);
|
@@ -8769,8 +8769,8 @@ export var math;
|
|
8769
8769
|
view.sqrtU128 = sqrtU128;
|
8770
8770
|
})(view = math.view || (math.view = {}));
|
8771
8771
|
})(math || (math = {}));
|
8772
|
-
export var
|
8773
|
-
(function (
|
8772
|
+
export var object$;
|
8773
|
+
(function (object$) {
|
8774
8774
|
let ID;
|
8775
8775
|
(function (ID) {
|
8776
8776
|
ID.TYPE_QNAME = "0x2::object::ID";
|
@@ -8779,7 +8779,7 @@ export var object_;
|
|
8779
8779
|
return TYPE.apply();
|
8780
8780
|
}
|
8781
8781
|
ID.type = type;
|
8782
|
-
})(ID =
|
8782
|
+
})(ID = object$.ID || (object$.ID = {}));
|
8783
8783
|
let UID;
|
8784
8784
|
(function (UID) {
|
8785
8785
|
UID.TYPE_QNAME = "0x2::object::UID";
|
@@ -8788,7 +8788,7 @@ export var object_;
|
|
8788
8788
|
return TYPE.apply();
|
8789
8789
|
}
|
8790
8790
|
UID.type = type;
|
8791
|
-
})(UID =
|
8791
|
+
})(UID = object$.UID || (object$.UID = {}));
|
8792
8792
|
let builder;
|
8793
8793
|
(function (builder) {
|
8794
8794
|
function authenticatorState(tx, args) {
|
@@ -8824,7 +8824,7 @@ export var object_;
|
|
8824
8824
|
});
|
8825
8825
|
}
|
8826
8826
|
builder.clock = clock;
|
8827
|
-
function
|
8827
|
+
function delete$(tx, args) {
|
8828
8828
|
const _args = [];
|
8829
8829
|
_args.push(transactionArgumentOrPure(args[0], tx));
|
8830
8830
|
// @ts-ignore
|
@@ -8833,7 +8833,7 @@ export var object_;
|
|
8833
8833
|
arguments: _args,
|
8834
8834
|
});
|
8835
8835
|
}
|
8836
|
-
builder.
|
8836
|
+
builder.delete$ = delete$;
|
8837
8837
|
function id(tx, args, typeArguments) {
|
8838
8838
|
const _args = [];
|
8839
8839
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -8919,7 +8919,7 @@ export var object_;
|
|
8919
8919
|
});
|
8920
8920
|
}
|
8921
8921
|
builder.idToBytes = idToBytes;
|
8922
|
-
function
|
8922
|
+
function new$(tx, args) {
|
8923
8923
|
const _args = [];
|
8924
8924
|
// @ts-ignore
|
8925
8925
|
return tx.moveCall({
|
@@ -8927,7 +8927,7 @@ export var object_;
|
|
8927
8927
|
arguments: _args,
|
8928
8928
|
});
|
8929
8929
|
}
|
8930
|
-
builder.
|
8930
|
+
builder.new$ = new$;
|
8931
8931
|
function newUidFromHash(tx, args) {
|
8932
8932
|
const _args = [];
|
8933
8933
|
_args.push(transactionArgumentOrPureAddress(args[0], tx));
|
@@ -8996,7 +8996,7 @@ export var object_;
|
|
8996
8996
|
});
|
8997
8997
|
}
|
8998
8998
|
builder.uidToInner = uidToInner;
|
8999
|
-
})(builder =
|
8999
|
+
})(builder = object$.builder || (object$.builder = {}));
|
9000
9000
|
let view;
|
9001
9001
|
(function (view) {
|
9002
9002
|
async function authenticatorState(client, args) {
|
@@ -9029,16 +9029,16 @@ export var object_;
|
|
9029
9029
|
return (await getMoveCoder(client)).decodeDevInspectResult(inspectRes);
|
9030
9030
|
}
|
9031
9031
|
view.clock = clock;
|
9032
|
-
async function
|
9032
|
+
async function delete$(client, args) {
|
9033
9033
|
const tx = new Transaction();
|
9034
|
-
builder.
|
9034
|
+
builder.delete$(tx, args);
|
9035
9035
|
const inspectRes = await client.devInspectTransactionBlock({
|
9036
9036
|
transactionBlock: tx,
|
9037
9037
|
sender: ZERO_ADDRESS,
|
9038
9038
|
});
|
9039
9039
|
return (await getMoveCoder(client)).decodeDevInspectResult(inspectRes);
|
9040
9040
|
}
|
9041
|
-
view.
|
9041
|
+
view.delete$ = delete$;
|
9042
9042
|
async function id(client, args, typeArguments) {
|
9043
9043
|
const tx = new Transaction();
|
9044
9044
|
builder.id(tx, args, typeArguments);
|
@@ -9109,16 +9109,16 @@ export var object_;
|
|
9109
9109
|
return (await getMoveCoder(client)).decodeDevInspectResult(inspectRes);
|
9110
9110
|
}
|
9111
9111
|
view.idToBytes = idToBytes;
|
9112
|
-
async function
|
9112
|
+
async function new$(client, args) {
|
9113
9113
|
const tx = new Transaction();
|
9114
|
-
builder.
|
9114
|
+
builder.new$(tx, args);
|
9115
9115
|
const inspectRes = await client.devInspectTransactionBlock({
|
9116
9116
|
transactionBlock: tx,
|
9117
9117
|
sender: ZERO_ADDRESS,
|
9118
9118
|
});
|
9119
9119
|
return (await getMoveCoder(client)).decodeDevInspectResult(inspectRes);
|
9120
9120
|
}
|
9121
|
-
view.
|
9121
|
+
view.new$ = new$;
|
9122
9122
|
async function newUidFromHash(client, args) {
|
9123
9123
|
const tx = new Transaction();
|
9124
9124
|
builder.newUidFromHash(tx, args);
|
@@ -9189,8 +9189,8 @@ export var object_;
|
|
9189
9189
|
return (await getMoveCoder(client)).decodeDevInspectResult(inspectRes);
|
9190
9190
|
}
|
9191
9191
|
view.uidToInner = uidToInner;
|
9192
|
-
})(view =
|
9193
|
-
})(
|
9192
|
+
})(view = object$.view || (object$.view = {}));
|
9193
|
+
})(object$ || (object$ = {}));
|
9194
9194
|
export var object_bag;
|
9195
9195
|
(function (object_bag) {
|
9196
9196
|
let ObjectBag;
|
@@ -9327,7 +9327,7 @@ export var object_bag;
|
|
9327
9327
|
});
|
9328
9328
|
}
|
9329
9329
|
builder.length = length;
|
9330
|
-
function
|
9330
|
+
function new$(tx, args) {
|
9331
9331
|
const _args = [];
|
9332
9332
|
// @ts-ignore
|
9333
9333
|
return tx.moveCall({
|
@@ -9335,7 +9335,7 @@ export var object_bag;
|
|
9335
9335
|
arguments: _args,
|
9336
9336
|
});
|
9337
9337
|
}
|
9338
|
-
builder.
|
9338
|
+
builder.new$ = new$;
|
9339
9339
|
function remove(tx, args, typeArguments) {
|
9340
9340
|
const _args = [];
|
9341
9341
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -9454,16 +9454,16 @@ export var object_bag;
|
|
9454
9454
|
return (await getMoveCoder(client)).decodeDevInspectResult(inspectRes);
|
9455
9455
|
}
|
9456
9456
|
view.length = length;
|
9457
|
-
async function
|
9457
|
+
async function new$(client, args) {
|
9458
9458
|
const tx = new Transaction();
|
9459
|
-
builder.
|
9459
|
+
builder.new$(tx, args);
|
9460
9460
|
const inspectRes = await client.devInspectTransactionBlock({
|
9461
9461
|
transactionBlock: tx,
|
9462
9462
|
sender: ZERO_ADDRESS,
|
9463
9463
|
});
|
9464
9464
|
return (await getMoveCoder(client)).decodeDevInspectResult(inspectRes);
|
9465
9465
|
}
|
9466
|
-
view.
|
9466
|
+
view.new$ = new$;
|
9467
9467
|
async function remove(client, args, typeArguments) {
|
9468
9468
|
const tx = new Transaction();
|
9469
9469
|
builder.remove(tx, args, typeArguments);
|
@@ -9630,7 +9630,7 @@ export var object_table;
|
|
9630
9630
|
});
|
9631
9631
|
}
|
9632
9632
|
builder.length = length;
|
9633
|
-
function
|
9633
|
+
function new$(tx, args, typeArguments) {
|
9634
9634
|
const _args = [];
|
9635
9635
|
// @ts-ignore
|
9636
9636
|
return tx.moveCall({
|
@@ -9646,7 +9646,7 @@ export var object_table;
|
|
9646
9646
|
],
|
9647
9647
|
});
|
9648
9648
|
}
|
9649
|
-
builder.
|
9649
|
+
builder.new$ = new$;
|
9650
9650
|
function remove(tx, args, typeArguments) {
|
9651
9651
|
const _args = [];
|
9652
9652
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -9758,16 +9758,16 @@ export var object_table;
|
|
9758
9758
|
return (await getMoveCoder(client)).decodeDevInspectResult(inspectRes);
|
9759
9759
|
}
|
9760
9760
|
view.length = length;
|
9761
|
-
async function
|
9761
|
+
async function new$(client, args, typeArguments) {
|
9762
9762
|
const tx = new Transaction();
|
9763
|
-
builder.
|
9763
|
+
builder.new$(tx, args, typeArguments);
|
9764
9764
|
const inspectRes = await client.devInspectTransactionBlock({
|
9765
9765
|
transactionBlock: tx,
|
9766
9766
|
sender: ZERO_ADDRESS,
|
9767
9767
|
});
|
9768
9768
|
return (await getMoveCoder(client)).decodeDevInspectResult(inspectRes);
|
9769
9769
|
}
|
9770
|
-
view.
|
9770
|
+
view.new$ = new$;
|
9771
9771
|
async function remove(client, args, typeArguments) {
|
9772
9772
|
const tx = new Transaction();
|
9773
9773
|
builder.remove(tx, args, typeArguments);
|
@@ -9790,7 +9790,7 @@ export var object_table;
|
|
9790
9790
|
view.valueId = valueId;
|
9791
9791
|
})(view = object_table.view || (object_table.view = {}));
|
9792
9792
|
})(object_table || (object_table = {}));
|
9793
|
-
export class
|
9793
|
+
export class package$ extends SuiBaseProcessor {
|
9794
9794
|
constructor(options) {
|
9795
9795
|
super("package", options);
|
9796
9796
|
}
|
@@ -9799,7 +9799,7 @@ export class package_ extends SuiBaseProcessor {
|
|
9799
9799
|
network: SuiNetwork.MAIN_NET,
|
9800
9800
|
};
|
9801
9801
|
static bind(options = {}) {
|
9802
|
-
return new
|
9802
|
+
return new package$({ ...package$.DEFAULT_OPTIONS, ...options });
|
9803
9803
|
}
|
9804
9804
|
onEntryMakeImmutable(func, filter, fetchConfig) {
|
9805
9805
|
this.onEntryFunctionCall(func, {
|
@@ -9823,7 +9823,7 @@ export class package_ extends SuiBaseProcessor {
|
|
9823
9823
|
return this;
|
9824
9824
|
}
|
9825
9825
|
}
|
9826
|
-
(function (
|
9826
|
+
(function (package$) {
|
9827
9827
|
let Publisher;
|
9828
9828
|
(function (Publisher) {
|
9829
9829
|
Publisher.TYPE_QNAME = "0x2::package::Publisher";
|
@@ -9832,7 +9832,7 @@ export class package_ extends SuiBaseProcessor {
|
|
9832
9832
|
return TYPE.apply();
|
9833
9833
|
}
|
9834
9834
|
Publisher.type = type;
|
9835
|
-
})(Publisher =
|
9835
|
+
})(Publisher = package$.Publisher || (package$.Publisher = {}));
|
9836
9836
|
let UpgradeCap;
|
9837
9837
|
(function (UpgradeCap) {
|
9838
9838
|
UpgradeCap.TYPE_QNAME = "0x2::package::UpgradeCap";
|
@@ -9841,7 +9841,7 @@ export class package_ extends SuiBaseProcessor {
|
|
9841
9841
|
return TYPE.apply();
|
9842
9842
|
}
|
9843
9843
|
UpgradeCap.type = type;
|
9844
|
-
})(UpgradeCap =
|
9844
|
+
})(UpgradeCap = package$.UpgradeCap || (package$.UpgradeCap = {}));
|
9845
9845
|
let UpgradeReceipt;
|
9846
9846
|
(function (UpgradeReceipt) {
|
9847
9847
|
UpgradeReceipt.TYPE_QNAME = "0x2::package::UpgradeReceipt";
|
@@ -9850,7 +9850,7 @@ export class package_ extends SuiBaseProcessor {
|
|
9850
9850
|
return TYPE.apply();
|
9851
9851
|
}
|
9852
9852
|
UpgradeReceipt.type = type;
|
9853
|
-
})(UpgradeReceipt =
|
9853
|
+
})(UpgradeReceipt = package$.UpgradeReceipt || (package$.UpgradeReceipt = {}));
|
9854
9854
|
let UpgradeTicket;
|
9855
9855
|
(function (UpgradeTicket) {
|
9856
9856
|
UpgradeTicket.TYPE_QNAME = "0x2::package::UpgradeTicket";
|
@@ -9859,7 +9859,7 @@ export class package_ extends SuiBaseProcessor {
|
|
9859
9859
|
return TYPE.apply();
|
9860
9860
|
}
|
9861
9861
|
UpgradeTicket.type = type;
|
9862
|
-
})(UpgradeTicket =
|
9862
|
+
})(UpgradeTicket = package$.UpgradeTicket || (package$.UpgradeTicket = {}));
|
9863
9863
|
let builder;
|
9864
9864
|
(function (builder) {
|
9865
9865
|
function additivePolicy(tx, args) {
|
@@ -10112,7 +10112,7 @@ export class package_ extends SuiBaseProcessor {
|
|
10112
10112
|
});
|
10113
10113
|
}
|
10114
10114
|
builder.version = version;
|
10115
|
-
})(builder =
|
10115
|
+
})(builder = package$.builder || (package$.builder = {}));
|
10116
10116
|
let view;
|
10117
10117
|
(function (view) {
|
10118
10118
|
async function additivePolicy(client, args) {
|
@@ -10345,8 +10345,8 @@ export class package_ extends SuiBaseProcessor {
|
|
10345
10345
|
return (await getMoveCoder(client)).decodeDevInspectResult(inspectRes);
|
10346
10346
|
}
|
10347
10347
|
view.version = version;
|
10348
|
-
})(view =
|
10349
|
-
})(
|
10348
|
+
})(view = package$.view || (package$.view = {}));
|
10349
|
+
})(package$ || (package$ = {}));
|
10350
10350
|
export class pay extends SuiBaseProcessor {
|
10351
10351
|
constructor(options) {
|
10352
10352
|
super("pay", options);
|
@@ -10708,7 +10708,7 @@ export var priority_queue;
|
|
10708
10708
|
});
|
10709
10709
|
}
|
10710
10710
|
builder.insert = insert;
|
10711
|
-
function
|
10711
|
+
function new$(tx, args, typeArguments) {
|
10712
10712
|
const _args = [];
|
10713
10713
|
_args.push(transactionArgumentOrVec(args[0], tx));
|
10714
10714
|
// @ts-ignore
|
@@ -10722,7 +10722,7 @@ export var priority_queue;
|
|
10722
10722
|
],
|
10723
10723
|
});
|
10724
10724
|
}
|
10725
|
-
builder.
|
10725
|
+
builder.new$ = new$;
|
10726
10726
|
function newEntry(tx, args, typeArguments) {
|
10727
10727
|
const _args = [];
|
10728
10728
|
_args.push(transactionArgumentOrPureU64(args[0], tx));
|
@@ -10792,16 +10792,16 @@ export var priority_queue;
|
|
10792
10792
|
return (await getMoveCoder(client)).decodeDevInspectResult(inspectRes);
|
10793
10793
|
}
|
10794
10794
|
view.insert = insert;
|
10795
|
-
async function
|
10795
|
+
async function new$(client, args, typeArguments) {
|
10796
10796
|
const tx = new Transaction();
|
10797
|
-
builder.
|
10797
|
+
builder.new$(tx, args, typeArguments);
|
10798
10798
|
const inspectRes = await client.devInspectTransactionBlock({
|
10799
10799
|
transactionBlock: tx,
|
10800
10800
|
sender: ZERO_ADDRESS,
|
10801
10801
|
});
|
10802
10802
|
return (await getMoveCoder(client)).decodeDevInspectResult(inspectRes);
|
10803
10803
|
}
|
10804
|
-
view.
|
10804
|
+
view.new$ = new$;
|
10805
10805
|
async function newEntry(client, args, typeArguments) {
|
10806
10806
|
const tx = new Transaction();
|
10807
10807
|
builder.newEntry(tx, args, typeArguments);
|
@@ -11406,7 +11406,7 @@ export var table;
|
|
11406
11406
|
});
|
11407
11407
|
}
|
11408
11408
|
builder.length = length;
|
11409
|
-
function
|
11409
|
+
function new$(tx, args, typeArguments) {
|
11410
11410
|
const _args = [];
|
11411
11411
|
// @ts-ignore
|
11412
11412
|
return tx.moveCall({
|
@@ -11422,7 +11422,7 @@ export var table;
|
|
11422
11422
|
],
|
11423
11423
|
});
|
11424
11424
|
}
|
11425
|
-
builder.
|
11425
|
+
builder.new$ = new$;
|
11426
11426
|
function remove(tx, args, typeArguments) {
|
11427
11427
|
const _args = [];
|
11428
11428
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -11525,16 +11525,16 @@ export var table;
|
|
11525
11525
|
return (await getMoveCoder(client)).decodeDevInspectResult(inspectRes);
|
11526
11526
|
}
|
11527
11527
|
view.length = length;
|
11528
|
-
async function
|
11528
|
+
async function new$(client, args, typeArguments) {
|
11529
11529
|
const tx = new Transaction();
|
11530
|
-
builder.
|
11530
|
+
builder.new$(tx, args, typeArguments);
|
11531
11531
|
const inspectRes = await client.devInspectTransactionBlock({
|
11532
11532
|
transactionBlock: tx,
|
11533
11533
|
sender: ZERO_ADDRESS,
|
11534
11534
|
});
|
11535
11535
|
return (await getMoveCoder(client)).decodeDevInspectResult(inspectRes);
|
11536
11536
|
}
|
11537
|
-
view.
|
11537
|
+
view.new$ = new$;
|
11538
11538
|
async function remove(client, args, typeArguments) {
|
11539
11539
|
const tx = new Transaction();
|
11540
11540
|
builder.remove(tx, args, typeArguments);
|
@@ -13593,7 +13593,7 @@ export class transfer_policy extends SuiBaseProcessor {
|
|
13593
13593
|
});
|
13594
13594
|
}
|
13595
13595
|
builder.confirmRequest = confirmRequest;
|
13596
|
-
function
|
13596
|
+
function default$(tx, args, typeArguments) {
|
13597
13597
|
const _args = [];
|
13598
13598
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
13599
13599
|
// @ts-ignore
|
@@ -13607,7 +13607,7 @@ export class transfer_policy extends SuiBaseProcessor {
|
|
13607
13607
|
],
|
13608
13608
|
});
|
13609
13609
|
}
|
13610
|
-
builder.
|
13610
|
+
builder.default$ = default$;
|
13611
13611
|
function destroyAndWithdraw(tx, args, typeArguments) {
|
13612
13612
|
const _args = [];
|
13613
13613
|
_args.push(transactionArgumentOrPure(args[0], tx));
|
@@ -13624,7 +13624,7 @@ export class transfer_policy extends SuiBaseProcessor {
|
|
13624
13624
|
});
|
13625
13625
|
}
|
13626
13626
|
builder.destroyAndWithdraw = destroyAndWithdraw;
|
13627
|
-
function from(tx, args, typeArguments) {
|
13627
|
+
function from$(tx, args, typeArguments) {
|
13628
13628
|
const _args = [];
|
13629
13629
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
13630
13630
|
// @ts-ignore
|
@@ -13638,7 +13638,7 @@ export class transfer_policy extends SuiBaseProcessor {
|
|
13638
13638
|
],
|
13639
13639
|
});
|
13640
13640
|
}
|
13641
|
-
builder.from = from
|
13641
|
+
builder.from$ = from$;
|
13642
13642
|
function getRule(tx, args, typeArguments) {
|
13643
13643
|
const _args = [];
|
13644
13644
|
_args.push(transactionArgumentOrPure(args[0], tx));
|
@@ -13694,7 +13694,7 @@ export class transfer_policy extends SuiBaseProcessor {
|
|
13694
13694
|
});
|
13695
13695
|
}
|
13696
13696
|
builder.item = item;
|
13697
|
-
function
|
13697
|
+
function new$(tx, args, typeArguments) {
|
13698
13698
|
const _args = [];
|
13699
13699
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
13700
13700
|
// @ts-ignore
|
@@ -13708,7 +13708,7 @@ export class transfer_policy extends SuiBaseProcessor {
|
|
13708
13708
|
],
|
13709
13709
|
});
|
13710
13710
|
}
|
13711
|
-
builder.
|
13711
|
+
builder.new$ = new$;
|
13712
13712
|
function newRequest(tx, args, typeArguments) {
|
13713
13713
|
const _args = [];
|
13714
13714
|
_args.push(transactionArgumentOrPure(args[0], tx));
|
@@ -13879,16 +13879,16 @@ export class transfer_policy extends SuiBaseProcessor {
|
|
13879
13879
|
return (await getMoveCoder(client)).decodeDevInspectResult(inspectRes);
|
13880
13880
|
}
|
13881
13881
|
view.destroyAndWithdraw = destroyAndWithdraw;
|
13882
|
-
async function from(client, args, typeArguments) {
|
13882
|
+
async function from$(client, args, typeArguments) {
|
13883
13883
|
const tx = new Transaction();
|
13884
|
-
builder.from(tx, args, typeArguments);
|
13884
|
+
builder.from$(tx, args, typeArguments);
|
13885
13885
|
const inspectRes = await client.devInspectTransactionBlock({
|
13886
13886
|
transactionBlock: tx,
|
13887
13887
|
sender: ZERO_ADDRESS,
|
13888
13888
|
});
|
13889
13889
|
return (await getMoveCoder(client)).decodeDevInspectResult(inspectRes);
|
13890
13890
|
}
|
13891
|
-
view.from = from
|
13891
|
+
view.from$ = from$;
|
13892
13892
|
async function getRule(client, args, typeArguments) {
|
13893
13893
|
const tx = new Transaction();
|
13894
13894
|
builder.getRule(tx, args, typeArguments);
|
@@ -13919,16 +13919,16 @@ export class transfer_policy extends SuiBaseProcessor {
|
|
13919
13919
|
return (await getMoveCoder(client)).decodeDevInspectResult(inspectRes);
|
13920
13920
|
}
|
13921
13921
|
view.item = item;
|
13922
|
-
async function
|
13922
|
+
async function new$(client, args, typeArguments) {
|
13923
13923
|
const tx = new Transaction();
|
13924
|
-
builder.
|
13924
|
+
builder.new$(tx, args, typeArguments);
|
13925
13925
|
const inspectRes = await client.devInspectTransactionBlock({
|
13926
13926
|
transactionBlock: tx,
|
13927
13927
|
sender: ZERO_ADDRESS,
|
13928
13928
|
});
|
13929
13929
|
return (await getMoveCoder(client)).decodeDevInspectResult(inspectRes);
|
13930
13930
|
}
|
13931
|
-
view.
|
13931
|
+
view.new$ = new$;
|
13932
13932
|
async function newRequest(client, args, typeArguments) {
|
13933
13933
|
const tx = new Transaction();
|
13934
13934
|
builder.newRequest(tx, args, typeArguments);
|
@@ -15428,7 +15428,7 @@ export var zklogin_verified_id;
|
|
15428
15428
|
});
|
15429
15429
|
}
|
15430
15430
|
builder.checkZkloginId = checkZkloginId;
|
15431
|
-
function
|
15431
|
+
function delete$(tx, args) {
|
15432
15432
|
const _args = [];
|
15433
15433
|
_args.push(transactionArgumentOrPure(args[0], tx));
|
15434
15434
|
// @ts-ignore
|
@@ -15437,7 +15437,7 @@ export var zklogin_verified_id;
|
|
15437
15437
|
arguments: _args,
|
15438
15438
|
});
|
15439
15439
|
}
|
15440
|
-
builder.
|
15440
|
+
builder.delete$ = delete$;
|
15441
15441
|
function issuer(tx, args) {
|
15442
15442
|
const _args = [];
|
15443
15443
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -15515,16 +15515,16 @@ export var zklogin_verified_id;
|
|
15515
15515
|
return (await getMoveCoder(client)).decodeDevInspectResult(inspectRes);
|
15516
15516
|
}
|
15517
15517
|
view.checkZkloginId = checkZkloginId;
|
15518
|
-
async function
|
15518
|
+
async function delete$(client, args) {
|
15519
15519
|
const tx = new Transaction();
|
15520
|
-
builder.
|
15520
|
+
builder.delete$(tx, args);
|
15521
15521
|
const inspectRes = await client.devInspectTransactionBlock({
|
15522
15522
|
transactionBlock: tx,
|
15523
15523
|
sender: ZERO_ADDRESS,
|
15524
15524
|
});
|
15525
15525
|
return (await getMoveCoder(client)).decodeDevInspectResult(inspectRes);
|
15526
15526
|
}
|
15527
|
-
view.
|
15527
|
+
view.delete$ = delete$;
|
15528
15528
|
async function issuer(client, args) {
|
15529
15529
|
const tx = new Transaction();
|
15530
15530
|
builder.issuer(tx, args);
|
@@ -15602,7 +15602,7 @@ export var zklogin_verified_issuer;
|
|
15602
15602
|
});
|
15603
15603
|
}
|
15604
15604
|
builder.checkZkloginIssuer = checkZkloginIssuer;
|
15605
|
-
function
|
15605
|
+
function delete$(tx, args) {
|
15606
15606
|
const _args = [];
|
15607
15607
|
_args.push(transactionArgumentOrPure(args[0], tx));
|
15608
15608
|
// @ts-ignore
|
@@ -15611,7 +15611,7 @@ export var zklogin_verified_issuer;
|
|
15611
15611
|
arguments: _args,
|
15612
15612
|
});
|
15613
15613
|
}
|
15614
|
-
builder.
|
15614
|
+
builder.delete$ = delete$;
|
15615
15615
|
function issuer(tx, args) {
|
15616
15616
|
const _args = [];
|
15617
15617
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -15656,16 +15656,16 @@ export var zklogin_verified_issuer;
|
|
15656
15656
|
return (await getMoveCoder(client)).decodeDevInspectResult(inspectRes);
|
15657
15657
|
}
|
15658
15658
|
view.checkZkloginIssuer = checkZkloginIssuer;
|
15659
|
-
async function
|
15659
|
+
async function delete$(client, args) {
|
15660
15660
|
const tx = new Transaction();
|
15661
|
-
builder.
|
15661
|
+
builder.delete$(tx, args);
|
15662
15662
|
const inspectRes = await client.devInspectTransactionBlock({
|
15663
15663
|
transactionBlock: tx,
|
15664
15664
|
sender: ZERO_ADDRESS,
|
15665
15665
|
});
|
15666
15666
|
return (await getMoveCoder(client)).decodeDevInspectResult(inspectRes);
|
15667
15667
|
}
|
15668
|
-
view.
|
15668
|
+
view.delete$ = delete$;
|
15669
15669
|
async function issuer(client, args) {
|
15670
15670
|
const tx = new Transaction();
|
15671
15671
|
builder.issuer(tx, args);
|