Skip to content

Latest commit

 

History

History
56 lines (45 loc) · 1.36 KB

readme.md

File metadata and controls

56 lines (45 loc) · 1.36 KB

原文地址: https://lhartikk.github.io/

安装依赖

npm install

开启服务

node lib/main.js
获取区块链
curl http://localhost:3001/blocks
挖矿
curl -X POST http://localhost:3001/mineBlock
发送交易
curl -H "Content-type: application/json" --data '{"address": "04bfcab8722991ae774db48f934ca79cfb7dd991229153b9f732ba5334aafcd8e7266e47076996b55a14bf9913ee3145ce0cfc1372ada8ada74bd287450313534b", "amount" : 35}' http://localhost:3001/sendTransaction
查询交易池
curl http://localhost:3001/transactionPool
创建交易并且挖矿
curl -H "Content-type: application/json" --data '{"address": "04bfcab8722991ae774db48f934ca79cfb7dd991229153b9f732ba5334aafcd8e7266e47076996b55a14bf9913ee3145ce0cfc1372ada8ada74bd287450313534b", "amount" : 35}' http://localhost:3001/mineTransaction
获取钱包
curl http://localhost:3001/balance

Query information about a specific address

curl http://localhost:3001/address/04f72a4541275aeb4344a8b049bfe2734b49fe25c08d56918f033507b96a61f9e3c330c4fcd46d0854a712dc878b9c280abe90c788c47497e06df78b25bf60ae64
添加节点
curl -H "Content-type:application/json" --data '{"peer" : "ws://localhost:6001"}' http://localhost:3001/addPeer

查询现在链了那些节点

curl http://localhost:3001/peers