git clone https://github.com/qitmeer/qitmeer-wallet ~/github.com/qitmeer/qitmeer-wallet
cd ~/github.com/qitmeer/qitmeer-wallet
make build
vi config.toml
# make sure ui=false
./qitmeer-wallet web
# by cURL
curl -k -u "${USER}:${PASSWORD}" -X POST -H 'Content-Type: application/json' --data '{"jsonrpc":"1.0","method":"${METHOD}","params":[${PARAMS}],"id":1}' ${API_URL} | jq
USER: (string)
rpcUser in the configPASSWORD: (string)
rpcPass in the configAPI_URL: (string)
listeners in the configMETHOD: (string)
RPC call namePARAMS: (array)
RPC call parameterscurl -k -u "user:password" -X POST -H 'Content-Type: application/json' --data '{"jsonrpc":"1.0","method":"wallet_createAccount","params":["account"],"id":1}' http://127.0.0.1:38130/api | jq
© Copyright Qitmeer 2021.
This work is licensed under a Creative Commons Attribution 4.0 International License