Skip to content

tssujt/travis

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Travis

Initialize tendermint & ethermint

$ mkdir -p ~/.ethermint/tendermint
$ cp -r $GOPATH/src/github.com/tendermint/ethermint/setup/* ~/.ethermint/
$ tendermint init --home ~/.ethermint/tendermint/
$ ethermint --datadir ~/.ethermint/ init ~/.ethermint/genesis.json

Start Travis

$ make all
$ travis node start

Start Tendermint

$ tendermint --home ~/.ethermint/tendermint/ node 

Start Ethermint

$ ethermint --datadir ~/.ethermint --rpc --rpcaddr=0.0.0.0 --ws --wsaddr=0.0.0.0 --rpcapi eth,net,web3,personal,admin --abci_laddr tcp://0.0.0.0:8848

Send transactions

$ geth attach http://localhost:8545
personal.unlockAccount("from_address")
eth.sendTransaction({"from": "from_address", "to": "to_address", "value": web3.toWei(0.001, "ether")})

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 76.9%
  • Go 22.7%
  • Other 0.4%