This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
0xb3adb09F0ebcD060432B8ec42B9CF0455Be0B216 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:xenial | |
MAINTAINER Tim Zöller <[email protected]> | |
RUN apt-get update \ | |
&& apt-get install -y wget \ | |
&& rm -rf /var/lib/apt/lists/* | |
WORKDIR "/opt" | |
ARG BINARY="geth-alltools-linux-amd64-1.8.1-1e67410e.tar.gz" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:xenial | |
MAINTAINER Tim Zöller <[email protected]> | |
RUN apt-get update \ | |
&& apt-get install -y wget \ | |
&& rm -rf /var/lib/apt/lists/* | |
WORKDIR "/opt" | |
ARG BINARY="geth-alltools-linux-amd64-1.8.1-1e67410e.tar.gz" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"config": { | |
"chainId": 500, | |
"homesteadBlock": 1, | |
"eip150Block": 2, | |
"eip150Hash": "0x0000000000000000000000000000000000000000000000000000000000000000", | |
"eip155Block": 3, | |
"eip158Block": 3, | |
"byzantiumBlock": 4, | |
"clique": { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3" | |
services: | |
geth-bootnode: | |
hostname: geth-bootnode | |
environment: | |
- nodekeyhex=08f0e1dee5c1b4645f3331a566009e41a4514b6cd28656d63d0449ecf812812b #Needs to be fix, so that the miners know the resulting enode id | |
build: | |
context: ./bootnode | |
ports: | |
- 30301:30301/udp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:xenial | |
MAINTAINER Tim Zöller <[email protected]> | |
RUN apt-get update \ | |
&& apt-get install -y wget nodejs npm ntp git\ | |
&& rm -rf /var/lib/apt/lists/* | |
RUN ln -s /usr/bin/nodejs /usr/bin/node |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:xenial | |
MAINTAINER Tim Zöller <[email protected]> | |
RUN apt-get update \ | |
&& apt-get install -y wget nodejs npm ntp git\ | |
&& rm -rf /var/lib/apt/lists/* | |
RUN ln -s /usr/bin/nodejs /usr/bin/node |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"name" : "geth-dev-0", | |
"cwd" : ".", | |
"script" : "app.js", | |
"log_date_format" : "YYYY-MM-DD HH:mm Z", | |
"merge_logs" : false, | |
"watch" : false, | |
"exec_interpreter" : "node", | |
"exec_mode" : "fork_mode", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.4.21; | |
/** | |
* Contract to store the mileage of a car | |
*/ | |
contract Odometer { | |
event Creation( | |
address indexed from, | |
string indexed vin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var web3 = new Web3(new Web3.providers.HttpProvider("http://localhost:8545")); |
OlderNewer