Function openWalletFull

  • 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"
       }
    });

    Parameters

    Returns Promise<MoneroWalletFull>

    the opened wallet

Generated using TypeDoc