@interest-protocol/vortex-sdk 1.1.0 → 2.0.0
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/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -4
- package/src/pkg/nodejs/vortex.js +1 -1
- package/src/pkg/web/vortex.js +1 -1
- package/src/pkg/web/vortex_bg.web.wasm +0 -0
- /package/dist/{vortex_bg.wasm → vortex_bg.nodejs.wasm} +0 -0
- /package/{src/pkg/web/vortex_bg.wasm → dist/vortex_bg.web.wasm} +0 -0
- /package/src/pkg/nodejs/{vortex_bg.wasm → vortex_bg.nodejs.wasm} +0 -0
package/dist/index.mjs
CHANGED
|
@@ -39371,7 +39371,7 @@ function requireVortex () {
|
|
|
39371
39371
|
table.set(offset + 2, true);
|
|
39372
39372
|
table.set(offset + 3, false);
|
|
39373
39373
|
};
|
|
39374
|
-
const wasmPath = `${__dirname}/vortex_bg.wasm`;
|
|
39374
|
+
const wasmPath = `${__dirname}/vortex_bg.nodejs.wasm`;
|
|
39375
39375
|
const wasmBytes = require$$0.readFileSync(wasmPath);
|
|
39376
39376
|
const wasmModule = new WebAssembly.Module(wasmBytes);
|
|
39377
39377
|
const wasm = (exports.__wasm = new WebAssembly.Instance(wasmModule, imports).exports);
|