以太坊geth基本命令
Posted 在家无聊
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了以太坊geth基本命令相关的知识,希望对你有一定的参考价值。
账户
- eth.newaccount("123456") : 新建账户
- eth.acounts : 查看账户
- eth.getBalance : 查看余额
挖矿
- eth.coinbase : 查看挖矿地址
- miner.setEtherbase : 设置挖矿地址
- miner.start : 挖矿
- miner.stop : 停止挖矿
转账
- eth.sendTransaction(from:账户1, to:账户2, value:web3.towei(1, "ether")):转账
- personal.unlockAccount() : 账户解锁
区块
- eth.blockNumber : 区块数
- eth.getBlock("lasest") : 查看最新区块
节点
- admin.nodeInfo : 查看节点信息
- admin.nodeInfo.enode : 查看节点名称
- admin.addPeer : 添加节点
- admin.peers:查看已经连接的远程节点
以上是关于以太坊geth基本命令的主要内容,如果未能解决你的问题,请参考以下文章