Following this video ---> https://www.youtube.com/watch?v=T3X7hfltr8c
https://ethereum.github.io/go-ethereum/downloads/
descomprimir y copiar a /usr/local/bin/geth
! ojo que lo tengas en el path
https://github.com/ethereum/mist/releases/tag/v0.9.0 https://github.com/ethereum/mist/releases/download/v0.9.0/Ethereum-Wallet-macosx-0-9-0.dmg
and isntall it ok, so mist wallet is the same than ethereum wallet :D
running geth, opens a go-ethereum node. control-c to c
Before starting you need a genesis block
{
"alloc" : {
"0x0000000000000000000000000000000000000000000000000000000000000001": {"balance": "111111111111111111111111"},
"0x0000000000000000000000000000000000000000000000000000000000000002": {"balance": "222222222222222222222222"},
},
"coinbase" : "0x0000000000000000000000000000000000000001",
"difficulty" : "0x1",
"extraData" : "0x00",
"gasLimit" : "0x47e7c5",
"nonce" : "0x0000000000000042",
"mixhash" : "0x0000000000000000000000000000000000000000000000000000000000000000",
"parentHash" : "0x0000000000000000000000000000000000000000000000000000000000000000",
"config": {
"chainId": 88888,
"homesteadBlock": 0,
"eip155Block": 0,
"eip158Block": 0
},
"timestamp" : "0x00",
}
geth --datadir ./chaindata init genesis.json
geth --datedir ./chaindata
geth attach
If you have this error Fatal: Unable to attach to remote geth: dial unix /Users/alfonso/Library/Ethereum/geth.ipc: connect: no such file or directory
You need to point to the ipc file.
geth attach ipc://Users/alfonso/code/example/chaindata/geth.ipc
To be able to pass the ipc parameter, we need to open it from command line
/Applications/Ethereum\ Wallet.app/Contents/MacOS/Ethereum\ Wallet --rpc ./chaindata/geth.ipc