diff options
| author | cyan <cyjan@mrcyjanek.net> | 2024-12-02 11:54:58 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-12-02 11:54:58 -0500 |
| commit | 8f52aebdd89471d2eaf5dd4cdc3c8278c4bfd70e (patch) | |
| tree | 3e9e0b5b765fc8605c56afb8b688f14db3f9fd4b /impls/monero.ts/README.md | |
| parent | fffd22288aa9384add744a04251f68ec65124980 (diff) | |
| parent | 40c1a1bda4b6f125c702f5a37ecc48a6ebec24b8 (diff) | |
Merge branch 'master' into cyjan-cleanup-patches
Diffstat (limited to 'impls/monero.ts/README.md')
| -rw-r--r-- | impls/monero.ts/README.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/impls/monero.ts/README.md b/impls/monero.ts/README.md index fe06467..9e3b27a 100644 --- a/impls/monero.ts/README.md +++ b/impls/monero.ts/README.md @@ -23,7 +23,7 @@ There are at least two ways to do so: loadMoneroDylib(); const wm = await WalletManager.new(); - const wallet = await Wallet.create(wm, "./my_wallet", "password"); + const wallet = await wm.createWallet("./my_wallet", "password"); console.log(await wallet.address()); @@ -41,7 +41,7 @@ There are at least two ways to do so: loadMoneroDylib(lib); const wm = await WalletManager.new(); - const wallet = await Wallet.create(wm, "./my_wallet", "password"); + const wallet = await wm.createWallet("./my_wallet", "password"); console.log(await wallet.address()); |
