summaryrefslogtreecommitdiff
path: root/impls/monero.ts/README.md
diff options
context:
space:
mode:
authorCzarek Nakamoto <cyjan@mrcyjanek.net>2024-12-04 12:26:45 -0500
committerCzarek Nakamoto <cyjan@mrcyjanek.net>2024-12-04 12:26:45 -0500
commitecc31787c2174a829848aac403bd13e663fe33c3 (patch)
tree7f505dc9bfe9c34c36c5043911be0cfc0d146a8d /impls/monero.ts/README.md
parent24076c5a32bbec3c77cc996cb74dd08d8077a7e0 (diff)
parent40c1a1bda4b6f125c702f5a37ecc48a6ebec24b8 (diff)
Merge branch 'develop' into zano
Diffstat (limited to 'impls/monero.ts/README.md')
-rw-r--r--impls/monero.ts/README.md4
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());