├── .gitignore ├── LICENSE ├── README.md ├── clean.sh ├── config ├── dev.json ├── docker │ ├── authority.yml │ ├── chain.yml │ ├── client.yml │ └── instantseal.yml ├── spec │ ├── accounts │ │ ├── aura │ │ ├── instantseal │ │ ├── tendermint │ │ └── validatorset │ ├── authcodes │ ├── authority_round.toml │ ├── chain_footer │ ├── chain_header │ ├── client.toml │ ├── engine │ │ ├── aura │ │ ├── instantseal │ │ ├── tendermint │ │ └── validatorset │ ├── example.spec │ ├── genesis │ │ ├── aura │ │ ├── instantseal │ │ └── tendermint │ ├── instant_seal.toml │ ├── name │ └── params │ │ ├── aura │ │ ├── instantseal │ │ ├── tendermint │ │ └── validatorset └── utils │ ├── keygen.sh │ └── pwdgen.sh ├── customchain ├── README.md ├── config │ ├── example.toml │ ├── keys │ │ ├── 1 │ │ ├── 2 │ │ ├── 3 │ │ └── address_book.json │ ├── node.yml │ └── password └── generate.py ├── dashboard └── ws_secret.json ├── include ├── docker-compose.yml └── ethstats.yml ├── load_tests ├── README.md ├── build.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── personal_sendTransaction_1500.jmx ├── src │ └── test │ │ ├── groovy │ │ └── EthSendRawTransactionBasic10000SpockTest.groovy │ │ └── resources │ │ └── eth_sendRawTransaction_basic_10000.rpc └── submit_corpus.sh ├── monitor └── app.json └── parity-deploy.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/parity-deploy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/parity-deploy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/parity-deploy/HEAD/README.md -------------------------------------------------------------------------------- /clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/parity-deploy/HEAD/clean.sh -------------------------------------------------------------------------------- /config/dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/parity-deploy/HEAD/config/dev.json -------------------------------------------------------------------------------- /config/docker/authority.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/parity-deploy/HEAD/config/docker/authority.yml -------------------------------------------------------------------------------- /config/docker/chain.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/parity-deploy/HEAD/config/docker/chain.yml -------------------------------------------------------------------------------- /config/docker/client.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/parity-deploy/HEAD/config/docker/client.yml -------------------------------------------------------------------------------- /config/docker/instantseal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/parity-deploy/HEAD/config/docker/instantseal.yml -------------------------------------------------------------------------------- /config/spec/accounts/aura: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/parity-deploy/HEAD/config/spec/accounts/aura -------------------------------------------------------------------------------- /config/spec/accounts/instantseal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/parity-deploy/HEAD/config/spec/accounts/instantseal -------------------------------------------------------------------------------- /config/spec/accounts/tendermint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/parity-deploy/HEAD/config/spec/accounts/tendermint -------------------------------------------------------------------------------- /config/spec/accounts/validatorset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/parity-deploy/HEAD/config/spec/accounts/validatorset -------------------------------------------------------------------------------- /config/spec/authcodes: -------------------------------------------------------------------------------- 1 | 34444c 0k. -------------------------------------------------------------------------------- /config/spec/authority_round.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/parity-deploy/HEAD/config/spec/authority_round.toml -------------------------------------------------------------------------------- /config/spec/chain_footer: -------------------------------------------------------------------------------- 1 | } 2 | -------------------------------------------------------------------------------- /config/spec/chain_header: -------------------------------------------------------------------------------- 1 | { 2 | 3 | -------------------------------------------------------------------------------- /config/spec/client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/parity-deploy/HEAD/config/spec/client.toml -------------------------------------------------------------------------------- /config/spec/engine/aura: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/parity-deploy/HEAD/config/spec/engine/aura -------------------------------------------------------------------------------- /config/spec/engine/instantseal: -------------------------------------------------------------------------------- 1 | "engine": { 2 | "instantSeal": null 3 | }, 4 | -------------------------------------------------------------------------------- /config/spec/engine/tendermint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/parity-deploy/HEAD/config/spec/engine/tendermint -------------------------------------------------------------------------------- /config/spec/engine/validatorset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/parity-deploy/HEAD/config/spec/engine/validatorset -------------------------------------------------------------------------------- /config/spec/example.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/parity-deploy/HEAD/config/spec/example.spec -------------------------------------------------------------------------------- /config/spec/genesis/aura: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/parity-deploy/HEAD/config/spec/genesis/aura -------------------------------------------------------------------------------- /config/spec/genesis/instantseal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/parity-deploy/HEAD/config/spec/genesis/instantseal -------------------------------------------------------------------------------- /config/spec/genesis/tendermint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/parity-deploy/HEAD/config/spec/genesis/tendermint -------------------------------------------------------------------------------- /config/spec/instant_seal.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/parity-deploy/HEAD/config/spec/instant_seal.toml -------------------------------------------------------------------------------- /config/spec/name: -------------------------------------------------------------------------------- 1 | "name": "CHAIN_NAME", 2 | -------------------------------------------------------------------------------- /config/spec/params/aura: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/parity-deploy/HEAD/config/spec/params/aura -------------------------------------------------------------------------------- /config/spec/params/instantseal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/parity-deploy/HEAD/config/spec/params/instantseal -------------------------------------------------------------------------------- /config/spec/params/tendermint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/parity-deploy/HEAD/config/spec/params/tendermint -------------------------------------------------------------------------------- /config/spec/params/validatorset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/parity-deploy/HEAD/config/spec/params/validatorset -------------------------------------------------------------------------------- /config/utils/keygen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/parity-deploy/HEAD/config/utils/keygen.sh -------------------------------------------------------------------------------- /config/utils/pwdgen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/parity-deploy/HEAD/config/utils/pwdgen.sh -------------------------------------------------------------------------------- /customchain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/parity-deploy/HEAD/customchain/README.md -------------------------------------------------------------------------------- /customchain/config/example.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/parity-deploy/HEAD/customchain/config/example.toml -------------------------------------------------------------------------------- /customchain/config/keys/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/parity-deploy/HEAD/customchain/config/keys/1 -------------------------------------------------------------------------------- /customchain/config/keys/2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/parity-deploy/HEAD/customchain/config/keys/2 -------------------------------------------------------------------------------- /customchain/config/keys/3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/parity-deploy/HEAD/customchain/config/keys/3 -------------------------------------------------------------------------------- /customchain/config/keys/address_book.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /customchain/config/node.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/parity-deploy/HEAD/customchain/config/node.yml -------------------------------------------------------------------------------- /customchain/config/password: -------------------------------------------------------------------------------- 1 | password 2 | -------------------------------------------------------------------------------- /customchain/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/parity-deploy/HEAD/customchain/generate.py -------------------------------------------------------------------------------- /dashboard/ws_secret.json: -------------------------------------------------------------------------------- 1 | ["OurDashSecret93%"] 2 | -------------------------------------------------------------------------------- /include/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/parity-deploy/HEAD/include/docker-compose.yml -------------------------------------------------------------------------------- /include/ethstats.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/parity-deploy/HEAD/include/ethstats.yml -------------------------------------------------------------------------------- /load_tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/parity-deploy/HEAD/load_tests/README.md -------------------------------------------------------------------------------- /load_tests/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/parity-deploy/HEAD/load_tests/build.gradle -------------------------------------------------------------------------------- /load_tests/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/parity-deploy/HEAD/load_tests/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /load_tests/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/parity-deploy/HEAD/load_tests/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /load_tests/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/parity-deploy/HEAD/load_tests/gradlew -------------------------------------------------------------------------------- /load_tests/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/parity-deploy/HEAD/load_tests/gradlew.bat -------------------------------------------------------------------------------- /load_tests/personal_sendTransaction_1500.jmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/parity-deploy/HEAD/load_tests/personal_sendTransaction_1500.jmx -------------------------------------------------------------------------------- /load_tests/src/test/groovy/EthSendRawTransactionBasic10000SpockTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/parity-deploy/HEAD/load_tests/src/test/groovy/EthSendRawTransactionBasic10000SpockTest.groovy -------------------------------------------------------------------------------- /load_tests/src/test/resources/eth_sendRawTransaction_basic_10000.rpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/parity-deploy/HEAD/load_tests/src/test/resources/eth_sendRawTransaction_basic_10000.rpc -------------------------------------------------------------------------------- /load_tests/submit_corpus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/parity-deploy/HEAD/load_tests/submit_corpus.sh -------------------------------------------------------------------------------- /monitor/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/parity-deploy/HEAD/monitor/app.json -------------------------------------------------------------------------------- /parity-deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/parity-deploy/HEAD/parity-deploy.sh --------------------------------------------------------------------------------