Open an existing Monero wallet using client-side WebAssembly bindings to monero-project's wallet2 in C++.
Example:
const wallet = await moneroTs.openWalletFull({ path: "./wallets/wallet1", password: "supersecretpassword", networkType: moneroTs.MoneroNetworkType.STAGENET, server: { // daemon configuration uri: "http://localhost:38081", username: "superuser", password: "abctesting123" } });
config to open a full wallet
the opened wallet
Generated using TypeDoc
Open an existing Monero wallet using client-side WebAssembly bindings to monero-project's wallet2 in C++.
Example:
const wallet = await moneroTs.openWalletFull({
path: "./wallets/wallet1",
password: "supersecretpassword",
networkType: moneroTs.MoneroNetworkType.STAGENET,
server: { // daemon configuration
uri: "http://localhost:38081",
username: "superuser",
password: "abctesting123"
}
});