Ethereum Consortium

Proceed with the deployment as stated in the official reference document.

Reference Docs : https://docs.microsoft.com/en-us/azure/blockchain-workbench/ethereum-deployment-guide

#Some usefull commands to access the rpc from remote terminals:

geth --dev --rpc --rpcaddr "0.0.0.0"
geth -rpc --rpcapi="db,eth,net,web3,personal,web3"
geth --dev --rpc --rpcaddr "0.0.0.0" --rpcapi "eth,net,web3,admin,personal" [...]

#You can multiple instance of the Geth on different ports using --port flag and just run all Geth instance with --ipcdisable flag


geth [...] --rpc --rpcport 8546 --rpcaddr "0.0.0.0" --rpcapi "eth,net,web3,admin,personal" [...] --dev

./ethereumwallet --rpc --rpcapi="db,eth,net,web3,personal,web3" http://a3uc7l-dns-reg1.eastus.cloudapp.azure.com:8545

Wallets

Ethereum Wallet: https://github.com/ethereum/mist/releases

Mist: https://github.com/ethereum/mist/releases

MetaMask: https://metamask.io/

Leave a Reply