Authority A
curl -X POST --data '{"method":"parity_newAccountFromPhrase","params":["I want to try PoA at home, not secure at all","1234567890"],"id":1,"jsonrpc":"2.0"}' -H "Content-Type: application/json" localhost:8545
>> 0x0097c0cfe63b641f9fb034f7bd8ecb99f2dabaf3
Authority B
curl -X POST --data '{"method":"parity_newAccountFromPhrase","params":["PoA will rule the private blockchain, but this is just a POC, not secure at all","1234567890"],"id":1,"jsonrpc":"2.0"}' -H "Content-Type: application/json" localhost:8545
>> 0x008549c7265000f5c06413c451d529870cf75d35
User1
curl -X POST --data '{"method":"parity_newAccountFromPhrase","params":["PoA user, first of all, with a lot of eth","1234567890"],"id":1,"jsonrpc":"2.0"}' -H "Content-Type: application/json" localhost:8545
>> 0x009b98e786952f3ace412961b6008a34b059ff74
Update the authority keys in ./dockerimage/PoA.json engine.authorityRound.params.List if you decide to change them. Update the accounts in ./dockerimage/PoA.json if you decide to change it.
cd dockerimage
./build_docker_image.sh
./launch_docker_stack.sh
Add the user1:
curl -X POST --data '{"method":"parity_newAccountFromPhrase","params":["PoA user, first of all, with a lot of eth","1234567890"],"id":1,"jsonrpc":"2.0"}' -H "Content-Type: application/json" localhost:8545
>> 0x009b98e786952f3ace412961b6008a34b059ff74
docker exec -it $(docker container ls | grep poa_A | awk '{ print $1 }') /parity/parity signer new-token
docker exec -it $(docker container ls | grep poa_B | awk '{ print $1 }') /parity/parity signer new-token
Then you can now go to http://0.0.0.0:8180 and http://0.0.0.0:8181
get the node A enode id:
curl --data '{"jsonrpc":"2.0","method":"parity_enode","params":[],"id":0}' -H "Content-Type: application/json" -X POST 0.0.0.0:8545
>> {"jsonrpc":"2.0","result":"enode://[email protected]:30303","id":0}
BEWARE, the default given IP (here 10.255.0.4) is obviously wrong! These containers speak together directly, so we need the virtual poa_network IP that was given to it.
docker service inspect poa_A -f '{{index .Endpoint.VirtualIPs 1}}'
>> {ohifa7fog4gyacne0w88bawaw 10.0.1.2/24}
You need to use the address 10.0.1.2 when you add the peer to the B peer
curl -X POST --data '{"jsonrpc":"2.0","method":"parity_addReservedPeer","params":["enode://[email protected]:30303"],"id":0}' -H "Content-Type: application/json" 0.0.0.0:8547
>> {"jsonrpc":"2.0","result":true,"id":0}
You should now see the two peers synced (UI or logs)
The accounts are easy to remember as created from passphrase + password. They are securely stored using docker secrets.
[] recover from command line [] test adding user account later [] test adding authority later