@wgb5445/aptos-intent-npm 0.1.3 → 0.1.5
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/aptos_dynamic_transaction_composer.d.ts +56 -4
- package/dist/cjs/entry.js +96 -13
- package/dist/esm/entry.js +94 -13
- package/entry.js +3 -3
- package/package.json +1 -1
- package/rollup.config.mjs +1 -1
- package/dist/cjs/aptos_dynamic_transaction_composer_bg-BYt8TUnu.js +0 -42
- package/dist/esm/aptos_dynamic_transaction_composer_bg-69aEwTzx.js +0 -40
package/entry.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
|
+
import * as wasm from "../pkg/aptos_dynamic_transaction_composer_bg.wasm";
|
1
2
|
export * from "../pkg/aptos_dynamic_transaction_composer.js";
|
2
|
-
|
3
|
-
|
4
|
-
return (await import("../pkg/aptos_dynamic_transaction_composer_bg.wasm")).default()
|
3
|
+
export async function create_wasm (){
|
4
|
+
return await wasm.default();
|
5
5
|
}
|
package/package.json
CHANGED