name | category |
---|---|
First Steps wih Vapory JSON RPC |
git clone /~https://github.com/vaporyco/cpp-vapory
cd cpp-vapory
mkdir build
cd build
cmake ..
make -j 4
build instructions are here
eth -j
-j
option will start vapory node with jsonrpc http server at port 8080
etheruem should be ready to use now
type in console to check if everything is working fine
curl -X POST --data '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":83}' http://localhost:8080
try running
eth -j -m true -f -b
where:
-m true
- to do anything in vapory, you need some ethere, let's mine-f
- mine with force, even if there are no transactions to mine-b
- connect to vapory network
with latest version of cpp-vapory it may take some time to connect to network. If you see any delays with jsonrpc responses, or crashes contant us. We are probably aware of them, but it's good to know about any possible vulnerability
- eth_sendTransaction - used to send transaction / create contract
- eth_newBlockFilter - be notified any time there is new block on the chain
- eth_newFilter - create new custom filter and listen to blockchain events matching this filter
- eth_compileSolidity - used to compile solidity code