fix gen_wallet_for_test

master
Niko PLP 3 days ago
parent 8d7f63849d
commit 9cb763479a
  1. 8
      ng-sdk-js/app-node/index.js
  2. 2
      ng-sdk-js/prepare-node.js
  3. 4
      ng-sdk-js/src/lib.rs
  4. 2
      ng-wallet/src/lib.rs

@ -14,6 +14,14 @@ global.WebSocket = WebSocket;
// get your wallet file as an ArrayBuffer and pass it to wallet_read_file
// ng.gen_wallet_for_test("rS6pZiroUZ5yjq9eraesDkpxWWOAoX_8QZ_5U9GXsOgA").then( async (res) => {
// console.log(res[0]);
// let opened = await ng.wallet_open_with_mnemonic_words(res[0].wallet, res[1], [1, 2, 1, 2]);
// console.log(opened.V0.personal_site);
// });
// return;
const fs = require('fs');
let buffer = fs.readFileSync("/Users/nl/Downloads/wallet-Hr-UITwGtjE1k6lXBoVGzD4FQMiDkM3T6bSeAi9PXt4A.ngw");

@ -6,7 +6,7 @@ const PATH_README = './pkg-node/README.md';
const pkg_json = fs.readFileSync(PATH);
let pkg = JSON.parse(pkg_json)
pkg.name = "nextgraph";
pkg.version = "0.1.1-alpha.4";
pkg.version = "0.1.1-alpha.5";
pkg.description = "nodeJS SDK of NextGraph";
pkg.files.push("ng_sdk_js_bg.wasm.d.ts");
pkg.files.push("snippets/**/*.js");

@ -1970,7 +1970,7 @@ pub async fn gen_wallet_for_test(ngd_peer_id: String)-> Result<JsValue, String>
pazzle_length: 9,
send_bootstrap: false,
send_wallet: false,
result_with_wallet_file: true,
result_with_wallet_file: false,
local_save: false,
core_bootstrap: BootstrapContentV0::new_localhost(peer_id_of_server_broker),
core_registration: None,
@ -1988,7 +1988,7 @@ pub async fn gen_wallet_for_test(ngd_peer_id: String)-> Result<JsValue, String>
mnemonic_words.push(word.clone());
});
let res = (serde_bytes::ByteBuf::from(wallet_result.wallet_file.clone()),mnemonic_words);
let res = (wallet_result,mnemonic_words);
Ok(serde_wasm_bindgen::to_value(&res).unwrap())
}

@ -787,6 +787,8 @@ pub async fn create_wallet_second_step_v0(
#[cfg(test)]
mod test {
use crate::emojis::display_pazzle_one;
use super::*;
use ng_net::types::BootstrapContentV0;
use std::fs::File;

Loading…
Cancel
Save