以太币eth操作指令

正文开始

[md] 安装软件:geth-windows-amd64-1.9.15-0f77f34b.exe

//进入后台

> geth console

创建密码 > personal.newAccount("my pasword");

> personal.listAccounts; 或 web3.eth.accounts

查看挖矿账户地址(coinbase) > eth.coinbase

可以通过

> miner.setEtherbase("0xfbB446044E73D705e59de152aCeA5173C47E582F") 将其他账户设置成 coinbase。

转账 > amount = web3.toWei(100,'ether');

> personal.unlockAccount("0x3a2dC5335927E6040bEE748c8e0e17C3810aa3F0");

> eth.sendTransaction({"from":"0x3a2dC5335927E6040bEE748c8e0e17C3810aa3F0","to":"0xfbB446044E73D705e59de152aCeA5173C47E582F","value":"amount"})

> txpool.status

> eth.getBlock("pending", true).transactions

> miner.start(1);admin.sleepBlocks(1);miner.stop();

一般都是第一个地址,如果想修改挖矿账户,可以执行命令,其中序号从0开始,1表示第二个地址

> miner.setEtherbase(eth.accounts[1])

> miner.start(3)

> miner.stop()

查看我挖矿的块的数量 > eth.blockNumber

以太币余额 > web3.eth.getBalance(web3.eth.accounts[0]);

正文结束

PHP接口(interface)和抽象类(abstract) php加密解密算法