We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Here you can find an instruction on how to sign an Ethereum transaction with KeyChain.
Here you can try out signing Ethereum transactions with KeyChain.
Start with the command `wscat -c ws://localhost:16384/, then select a key.
{ "command": "select_key" }
const ethUtil = require('ethereumjs-util'); const publicKey = 'YOUR_PUBLIC_KEY'; const address = ethUtil.publicToAddress(publicKey).toString('hex');
In case you work with ropsten - https://faucet.ropsten.be/
web3.eth.getBalance(address) .then(console.log);
You can find an example of the code here