Skip to content

Up node dev (testnet) Ethereum

Dmitry edited this page Jan 15, 2018 · 7 revisions

English

In order to deploy the dev-node, you need to do what is described here -> Up node Ethereum Replacing the startup line of the node:

geth --rpcport "8545" --datadir **/dir/.ethereum** --dev --rpc --rpcapi admin,debug,miner,ssh,txpool,personal,db,eth,net,web3 --rpcaddr "**Ip Address**" console

or

geth --rpcport "8545" --datadir **/dir/.ethereum** --testnet --rpc --rpcapi admin,debug,miner,ssh,txpool,personal,db,eth,net,web3 --rpcaddr "**Ip Address**" console

  1. /dir/.ethereum - the path to the Nod's database
  2. Ip Address - IP address of the machine

The difference between these commands is that in the first variant, the node for development is launched, in which you create one Ethereum purse with a huge balance in the account. The second option creates a Test node in which the balance needs to be typed using local mining.

The entire list of Geth commands is here


Russian

Для того чтобы развернуть dev-node нужно проделат описанное здесь -> Up node Ethereum Заменив строку запуска ноды:

geth --rpcport "8545" --datadir **/dir/.ethereum** --dev --rpc --rpcapi admin,debug,miner,ssh,txpool,personal,db,eth,net,web3 --rpcaddr "**Ip Address**" console

или

geth --rpcport "8545" --datadir **/dir/.ethereum** --testnet --rpc --rpcapi admin,debug,miner,ssh,txpool,personal,db,eth,net,web3 --rpcaddr "**Ip Address**" console

  1. /dir/.ethereum - путь к базе Ноды
  2. Ip Address - IP адрес машинки

Разница между этими командами в том что в первом варианте запускаеться ноду для разработок, в которой у Вас создаеться один кошелек Ethereum с огромным балансом на счету. Второй вариант создает Тестовую ноду, в которой баланс необходимо набрать с помощью локального майнинга.

Весь перечень Geth комманд есть здесь

Clone this wiki locally