You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With web3js v1.0.0 you can create accounts with web3.eth.accounts.create(); and access the public address and private key with newWallet.address and newWallet.privateKey.
We have to implement the same thing in web3j (@ligi) and web3swift
Here an usage example:
newWallet = web3.eth.accounts.create()
// access the public address
newWallet.address
//private key:
newWallet.privateKey
The text was updated successfully, but these errors were encountered:
With web3js v1.0.0 you can create accounts with
web3.eth.accounts.create();
and access the public address and private key withnewWallet.address
andnewWallet.privateKey
.We have to implement the same thing in web3j (@ligi) and web3swift
Here an usage example:
The text was updated successfully, but these errors were encountered: