update to monero-javascript v0.7.2

add funding wallet mnemonic to config
This commit is contained in:
woodser 2022-08-06 18:38:31 -04:00
parent c86b734ee9
commit 711b4c003e
3 changed files with 93 additions and 889 deletions

965
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -48,7 +48,7 @@
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"jest": "^26.6.0",
"monero-javascript": "^0.7.0",
"monero-javascript": "^0.7.2",
"typedoc": "^0.22.15",
"typedoc-plugin-missing-exports": "^0.22.6",
"typedoc-plugin-rename-defaults": "^0.5.1",

View File

@ -64,7 +64,10 @@ const TestConfig = {
password: "abc123",
walletPassword: "abc123",
defaultPath: "funding_wallet-" + getBaseCurrencyNetwork(),
minimumFunding: BigInt("5000000000000")
minimumFunding: BigInt("5000000000000"),
mnemonic: "silk mocked cucumber lettuce hope adrenalin aching lush roles fuel revamp baptism wrist long tender teardrop midst pastry pigment equip frying inbound pinched ravine frying",
primaryAddress: "A1y9sbVt8nqhZAVm3me1U18rUVXcjeNKuBd1oE2cTs8biA9cozPMeyYLhe77nPv12JA3ejJN3qprmREriit2fi6tJDi99RR",
restoreHeight: 150
},
defaultHavenod: {
logProcessOutput: true, // log output for processes started by tests (except arbitrator, user1, and user2 which are configured separately)
@ -196,6 +199,9 @@ beforeAll(async () => {
HavenoUtils.log(0, "Funding wallet balance: " + await fundingWallet.getBalance());
HavenoUtils.log(0, "Funding wallet unlocked balance: " + await fundingWallet.getUnlockedBalance());
const subaddress = await fundingWallet.createSubaddress(0);
HavenoUtils.log(0, "Funding wallet height: " + await fundingWallet.getHeight());
HavenoUtils.log(0, "Funding wallet mnemonic: " + await fundingWallet.getMnemonic());
HavenoUtils.log(0, "Funding wallet primary address: " + await fundingWallet.getPrimaryAddress());
HavenoUtils.log(0, "Funding wallet new subaddress: " + subaddress.getAddress());
// start configured haveno daemons
@ -2000,7 +2006,12 @@ async function initFundingWallet() {
if (err.getCode() === -1) {
// create wallet
await fundingWallet.createWallet({path: TestConfig.fundingWallet.defaultPath, password: TestConfig.fundingWallet.walletPassword});
await fundingWallet.createWallet({
path: TestConfig.fundingWallet.defaultPath,
password: TestConfig.fundingWallet.walletPassword,
mnemonic: TestConfig.fundingWallet.mnemonic,
restoreHeight: TestConfig.fundingWallet.restoreHeight
});
} else {
throw err;
}