@wgb5445/aptos-intent-npm 0.0.6 → 0.0.8
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/aptos_intent_bg-Cvhg0cOA.js +42 -0
- package/dist/cjs/entry.js +7 -7
- package/dist/esm/aptos_intent_bg-Dr5TXbTf.js +40 -0
- package/dist/esm/entry.js +7 -7
- package/package.json +4 -1
- package/dist/cjs/aptos_intent_bg-DG0JV4lY.js +0 -42
- package/dist/cjs/aptos_intent_bg-DUElQ7EK.js +0 -42
- package/dist/esm/aptos_intent_bg-5HKQ9euF.js +0 -40
- package/dist/esm/aptos_intent_bg-BNAl9sFX.js +0 -40
package/dist/esm/entry.js
CHANGED
@@ -553,14 +553,14 @@ function __wbg_get_imports() {
|
|
553
553
|
getInt32Memory0()[arg0 / 4 + 1] = len1;
|
554
554
|
getInt32Memory0()[arg0 / 4 + 0] = ptr1;
|
555
555
|
};
|
556
|
-
imports.wbg.__wbg_batchargument_new = function(arg0) {
|
557
|
-
const ret = BatchArgument.__wrap(arg0);
|
558
|
-
return addHeapObject(ret);
|
559
|
-
};
|
560
556
|
imports.wbg.__wbg_batchargument_unwrap = function(arg0) {
|
561
557
|
const ret = BatchArgument.__unwrap(takeObject(arg0));
|
562
558
|
return ret;
|
563
559
|
};
|
560
|
+
imports.wbg.__wbg_batchargument_new = function(arg0) {
|
561
|
+
const ret = BatchArgument.__wrap(arg0);
|
562
|
+
return addHeapObject(ret);
|
563
|
+
};
|
564
564
|
imports.wbg.__wbindgen_cb_drop = function(arg0) {
|
565
565
|
const obj = takeObject(arg0).original;
|
566
566
|
if (obj.cnt-- == 1) {
|
@@ -777,8 +777,8 @@ function __wbg_get_imports() {
|
|
777
777
|
const ret = wasm.memory;
|
778
778
|
return addHeapObject(ret);
|
779
779
|
};
|
780
|
-
imports.wbg.
|
781
|
-
const ret = makeMutClosure(arg0, arg1,
|
780
|
+
imports.wbg.__wbindgen_closure_wrapper540 = function(arg0, arg1, arg2) {
|
781
|
+
const ret = makeMutClosure(arg0, arg1, 264, __wbg_adapter_24);
|
782
782
|
return addHeapObject(ret);
|
783
783
|
};
|
784
784
|
|
@@ -810,7 +810,7 @@ function initSync(module) {
|
|
810
810
|
}
|
811
811
|
|
812
812
|
async function get_wasm (){
|
813
|
-
return (await import('./aptos_intent_bg-
|
813
|
+
return (await import('./aptos_intent_bg-Dr5TXbTf.js')).default()
|
814
814
|
}
|
815
815
|
|
816
816
|
export { ArgumentOperation, BatchArgument, BatchArgumentType, BatchedFunctionCall, BatchedFunctionCallBuilder, PreviousResult, get_wasm, initSync };
|
package/package.json
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
"Aptos Labs <opensource@aptoslabs.com>"
|
5
5
|
],
|
6
6
|
"description": "Generating Move Script from intent",
|
7
|
-
"version": "0.0.
|
7
|
+
"version": "0.0.8",
|
8
8
|
"type": "module",
|
9
9
|
"license": "Apache-2.0",
|
10
10
|
"repository": {
|
@@ -31,5 +31,8 @@
|
|
31
31
|
"import": "./dist/esm/entry.js",
|
32
32
|
"default": "./dist/cjs/entry.js"
|
33
33
|
}
|
34
|
+
},
|
35
|
+
"scripts": {
|
36
|
+
"build": "npx rollup -c rollup.config.mjs"
|
34
37
|
}
|
35
38
|
}
|