How can I create a new wallet by just specifying the strength and passphrase? (not from mnemonic phrase) #1928
Answered
by
RobinOnTheWay
RobinOnTheWay
asked this question in
Q&A
-
Beta Was this translation helpful? Give feedback.
Answered by
RobinOnTheWay
Jan 14, 2022
Replies: 1 comment
-
It is as simple as this Firstly, I took the number of 'bits' as the number of 'mnemonic words' and tried Sorry for this thread. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
hewigovens
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It is as simple as this
HDWallet wallet = new HDWallet(128, "");
Firstly, I took the number of 'bits' as the number of 'mnemonic words' and tried
HDWallet wallet = new HDWallet(12, "");
and kept on getting mistakes.
Sorry for this thread.