Rust implementation of NextGraph, a Decentralized and local-first web 3.0 ecosystem
https://nextgraph.org
byzantine-fault-tolerancecrdtsdappsdecentralizede2eeeventual-consistencyjson-ldlocal-firstmarkdownocapoffline-firstp2pp2p-networkprivacy-protectionrdfrich-text-editorself-hostedsemantic-websparqlweb3collaboration
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.2 KiB
42 lines
1.2 KiB
// Copyright (c) 2022-2024 Niko Bonnieure, Par le Peuple, NextGraph.org developers
|
|
// All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0
|
|
// <LICENSE-APACHE2 or http://www.apache.org/licenses/LICENSE-2.0>
|
|
// or the MIT license <LICENSE-MIT or http://opensource.org/licenses/MIT>,
|
|
// at your option. All files in the project carrying such
|
|
// notice may not be copied, modified, or distributed except
|
|
// according to those terms.
|
|
|
|
import * as api from "ng-sdk-js";
|
|
import { default as ng } from "./api";
|
|
|
|
//console.log("loaded worker");
|
|
|
|
onmessage = (e) => {
|
|
//console.log("Message received by worker", e.data);
|
|
(async function() {
|
|
try {
|
|
let secret_wallet;
|
|
if (e.data.pazzle) {
|
|
secret_wallet = await ng.wallet_open_with_pazzle(
|
|
e.data.wallet,
|
|
e.data.pazzle,
|
|
e.data.pin_code
|
|
);
|
|
} else if (e.data.mnemonic_words) {
|
|
secret_wallet = await ng.wallet_open_with_mnemonic_words(
|
|
e.data.wallet,
|
|
e.data.mnemonic_words,
|
|
e.data.pin_code
|
|
);
|
|
}
|
|
postMessage({success:secret_wallet});
|
|
} catch (e) {
|
|
postMessage({error:e});
|
|
}
|
|
})();
|
|
};
|
|
|
|
postMessage({loaded:true});
|
|
|
|
|