@typemove/sui 1.6.12-rc.1 → 1.6.12
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/0x2.d.ts +2 -2
- package/dist/cjs/builtin/0x2.d.ts.map +1 -1
- package/dist/cjs/builtin/0x2.js +5 -5
- package/dist/cjs/builtin/0x2.js.map +1 -1
- package/dist/esm/builtin/0x2.d.ts +2 -2
- package/dist/esm/builtin/0x2.d.ts.map +1 -1
- package/dist/esm/builtin/0x2.js +5 -5
- package/dist/esm/builtin/0x2.js.map +1 -1
- package/package.json +2 -2
- package/src/builtin/0x2.ts +3 -3
- package/src/tests/types/testnet/0xebaa2ad3eacc230f309cd933958cc52684df0a41ae7ac214d186b80f830867d2.ts +3 -3
package/dist/esm/builtin/0x2.js
CHANGED
|
@@ -13148,7 +13148,7 @@ export var transfer_policy;
|
|
|
13148
13148
|
});
|
|
13149
13149
|
}
|
|
13150
13150
|
builder.destroyAndWithdraw = destroyAndWithdraw;
|
|
13151
|
-
function from(tx, args, typeArguments) {
|
|
13151
|
+
function from$(tx, args, typeArguments) {
|
|
13152
13152
|
const _args = [];
|
|
13153
13153
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
|
13154
13154
|
// @ts-ignore
|
|
@@ -13162,7 +13162,7 @@ export var transfer_policy;
|
|
|
13162
13162
|
],
|
|
13163
13163
|
});
|
|
13164
13164
|
}
|
|
13165
|
-
builder.from = from
|
|
13165
|
+
builder.from$ = from$;
|
|
13166
13166
|
function getRule(tx, args, typeArguments) {
|
|
13167
13167
|
const _args = [];
|
|
13168
13168
|
_args.push(transactionArgumentOrPure(args[0], tx));
|
|
@@ -13403,16 +13403,16 @@ export var transfer_policy;
|
|
|
13403
13403
|
return (await getMoveCoder(client)).decodeDevInspectResult(inspectRes);
|
|
13404
13404
|
}
|
|
13405
13405
|
view.destroyAndWithdraw = destroyAndWithdraw;
|
|
13406
|
-
async function from(client, args, typeArguments) {
|
|
13406
|
+
async function from$(client, args, typeArguments) {
|
|
13407
13407
|
const tx = new Transaction();
|
|
13408
|
-
builder.from(tx, args, typeArguments);
|
|
13408
|
+
builder.from$(tx, args, typeArguments);
|
|
13409
13409
|
const inspectRes = await client.devInspectTransactionBlock({
|
|
13410
13410
|
transactionBlock: tx,
|
|
13411
13411
|
sender: ZERO_ADDRESS,
|
|
13412
13412
|
});
|
|
13413
13413
|
return (await getMoveCoder(client)).decodeDevInspectResult(inspectRes);
|
|
13414
13414
|
}
|
|
13415
|
-
view.from = from
|
|
13415
|
+
view.from$ = from$;
|
|
13416
13416
|
async function getRule(client, args, typeArguments) {
|
|
13417
13417
|
const tx = new Transaction();
|
|
13418
13418
|
builder.getRule(tx, args, typeArguments);
|