Compare commits

..

No commits in common. "v0.2.0-develop.9" and "v0.2.0-develop.8" have entirely different histories.

6 changed files with 10 additions and 10 deletions

4
npm-shrinkwrap.json generated
View File

@ -1,12 +1,12 @@
{
"name": "@lumeweb/libportal",
"version": "0.2.0-develop.9",
"version": "0.2.0-develop.8",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@lumeweb/libportal",
"version": "0.2.0-develop.9",
"version": "0.2.0-develop.8",
"dependencies": {
"@noble/curves": "^1.1.0",
"@noble/hashes": "^1.3.1",

View File

@ -1,6 +1,6 @@
{
"name": "@lumeweb/libportal",
"version": "0.2.0-develop.9",
"version": "0.2.0-develop.8",
"main": "lib/index.js",
"module": "lib/index.mjs",
"types": "lib/index.d.ts",

View File

@ -36,7 +36,7 @@ export function encodeCid(hash: any, size: bigint) {
export function decodeCid(cid: string): CID {
let bytes = base58btc.decode(cid);
if (!arrayBufferEqual(bytes.slice(0, 2).buffer, MAGIC_BYTES.buffer)) {
if (!arrayBufferEqual(bytes.slice(0, 2).buffer, bytes.buffer)) {
throw new Error("Invalid cid");
}

View File

@ -105,7 +105,7 @@ export class Client {
}
async login(): Promise<LoginResponse> {
if (this._options.privateKey) {
if (!this._options.privateKey) {
return this.loginPubkey();
}

View File

@ -44,11 +44,11 @@ export async function getVerifiableStream(
});
};
await getNextBytes();
// @ts-ignore
const wasmId = callExports("start");
getWasmProperty(wasmId, "set_root")(root);
getWasmProperty(wasmId, "set_proof")(proof);
await getNextBytes();
return new ReadableStream({
async pull(controller) {

View File

@ -5,12 +5,12 @@ export default async function (imports) {
// @ts-ignore
const wasmPath = new URL("wasm/bao.wasm", import.meta.url);
const wasm = await fs.readFile(wasmPath);
return (await WebAssembly.instantiate(wasm, imports)).instance;
return WebAssembly.instantiate(wasm, imports);
}
// @ts-ignore
let wasm = await import("./wasm/bao.wasm");
wasm = wasm.default || wasm;
return (await wasm(imports)).instance;
return await import("./wasm/bao.wasm");
}