'Hi everyone!
I'm wondering if anyone has trouble using web3's create wallet method? I do not have access to web3.eth.accounts.wallet command through my Geth's console.
Appreciate any help, R.
- Geth version: 1.10.12-stable
- Geth's web3 api version: 0.20.1
- OS: Windows
- web3.py version: 5.25.0
- python version: 3.10.1
- I started my geth using the following command:
geth console --goerli --syncmode "light" --http --http.port 20000 --http.api personal,eth,net,web3 --allow-insecure-unlock - Related questions: #2 and #3
geth console --goerli --syncmode "light" --http --http.port 20000 --http.api personal,eth,net,web3 --allow-insecure-unlock
– Rouhollah Joveini Jan 12 '22 at 08:28web3.personal.newAccount("pass_phrase"). I am wondering what areweb3.eth.accounts.wallet-base commands do? Are these attempting to create and interact with wallets, like in Bitcoin (which is weird, because of the difference between the concepts in these two networks, as @mikko-ohtamaa pointed out bellow, correctly)? Or it is just creating wallets and accounts inside them and has nothing to do about the wallet concept like the one in Bitcoin? – Rouhollah Joveini Jan 13 '22 at 05:33