geth常用命令
轉載地址
https://blog.csdn.net/qq_36124194/article/details/83686823
geth常用命令
初始化私鏈
geth --datadir /path/to/datadir init /path/to/genesis.json啟動私鏈
geth --identity "TestNode" --rpc --rpcport "8545" --datadir /path/to/datadir --port "30303" --nodiscover consol創建賬戶
可直接在括號加密碼
personal.newAccount()獲取賬戶余額
eth.getBalance(myAddress)編譯
solc --bin testContract.sol solc --abi testContract.sol解鎖賬戶
personal.unlockAccount(myAddress)發送部署的合約
myContract = eth.contract(abi) contract = myContract.new({from:myAddress,data:code,gas:1000000})獲取正在等待確認的交易
eth.getBlock("pending",true).transactions調用智能合約
contract.multiply.sendTransaction(10, {from:myAddress})本地測試合約
contract.multiply.call(10)獲取區塊
eth.getBlock()獲取交易
eth.getTransaction()總結
- 上一篇: 永磁同步电机 SVPWM 原理
- 下一篇: UG模具设计滑块设计要点讲解,建议收藏