@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.js
CHANGED
|
@@ -39373,7 +39373,7 @@ function requireVortex () {
|
|
|
39373
39373
|
table.set(offset + 2, true);
|
|
39374
39374
|
table.set(offset + 3, false);
|
|
39375
39375
|
};
|
|
39376
|
-
const wasmPath = `${__dirname}/vortex_bg.wasm`;
|
|
39376
|
+
const wasmPath = `${__dirname}/vortex_bg.nodejs.wasm`;
|
|
39377
39377
|
const wasmBytes = require$$0.readFileSync(wasmPath);
|
|
39378
39378
|
const wasmModule = new WebAssembly.Module(wasmBytes);
|
|
39379
39379
|
const wasm = (exports.__wasm = new WebAssembly.Instance(wasmModule, imports).exports);
|