如何使用web3将以太坊从一个钱包转移到另一个钱包?

时间:2017-09-12 10:17:54

标签: node.js ethereum web3js vanity web3

我正在开发自定义ETH钱包,我可以使用虚荣心生成公钥/私钥。在收到这个钱包中的金额后,我需要将ETH发送到另一个我试图使用web3的钱包。我该怎么做呢?钱包目前很少有ETH但是当我尝试用web3代码检查余额时它显示零余额。那么如何使用web3代码将ETH从一个钱包转移到另一个钱包,请咨询。

我的钱包地址余额代码如下。

<script src="./node_modules/web3/dist/web3.min.js"></script>
<script type="text/javascript">
    var Web3 = require('web3');
    var web3 = new Web3(new Web3.providers.HttpProvider("http://localhost:8545"));
    console.log("Balance = " + web3.fromWei(web3.eth.getBalance('Wallet_address'), 'ether').toNumber());
</script>

1 个答案:

答案 0 :(得分:1)

试试这个。

web3.eth.sendTransaction({from: acct1, to:acct2, value: web3.toWei(1, 'ether'), gasLimit: 21000, gasPrice: 20000000000})

这是我在之前的项目中执行以太交易的方式。 此外,在将来发布的内容中,暂时可以为您提供更快的回复https://ethereum.stackexchange.com/