├── .circleci └── config.yml ├── .gitignore ├── HACKING.md ├── LICENSE ├── README.md ├── bitset.go ├── bitset_test.go ├── bn256 ├── cf │ ├── bn256.go │ └── bn256_test.go └── go │ ├── bn256.go │ └── bn256_test.go ├── config.go ├── crypto.go ├── crypto_test.go ├── go.mod ├── go.sum ├── handel.go ├── handel_test.go ├── identity.go ├── identity_test.go ├── log.go ├── log_test.go ├── net.go ├── net_test.go ├── network ├── counter_encoding.go ├── counter_test.go ├── examples │ ├── README.md │ ├── local_reg.csv │ └── start.go ├── gobEncoding.go ├── quic │ ├── config.go │ ├── dialer.go │ ├── net.go │ ├── sessionmanager.go │ └── sessionmanager_test.go ├── tcp │ ├── net.go │ └── net_test.go ├── udp │ ├── net.go │ └── net_test.go └── wireencoding.go ├── partitioner.go ├── partitioner_test.go ├── processing.go ├── processing_test.go ├── report.go ├── simul ├── HACKING.md ├── aws_config_example.toml ├── bad.toml ├── confgenerator │ ├── confgenerator.go │ ├── final_configs │ │ ├── 2000evaluator_equal.toml │ │ ├── 2000evaluator_store.toml │ │ ├── 2000node_100period_25fail_99thr.toml │ │ ├── 2000node_10period_25fail_99thr.toml │ │ ├── 2000node_20period_25fail_99thr.toml │ │ ├── 2000node_50period_25fail_99thr.toml │ │ ├── 2000node_Libp2pInc_51thr_agg1_gossip.toml │ │ ├── 2000node_Libp2pInc_75thr_agg1.toml │ │ ├── 2000node_Libp2pInc_75thr_agg1_gossip.toml │ │ ├── 2000node_Libp2pInc_99thr_agg1.toml │ │ ├── 2000node_Libp2pInc_99thr_agg1_gossip.toml │ │ ├── 2000node_count1.toml │ │ ├── 2000node_count10.toml │ │ ├── 2000node_count20.toml │ │ ├── 2000node_update1.toml │ │ ├── 2000node_update10.toml │ │ ├── 2000node_update20.toml │ │ ├── 2000nodes_100timeout_99thr.toml │ │ ├── 2000nodes_200timeout_99thr.toml │ │ ├── 2000nodes_50timeout_99thr.toml │ │ ├── 4000node_Libp2pInc_51thr_agg1.toml │ │ ├── 4000node_handel_real.toml │ │ ├── 4000node_nsquareInc_51thr_agg1.toml │ │ ├── 4000node_nsquareInc_75thr_agg1.toml │ │ ├── 4000node_nsquareInc_99thr_agg1.toml │ │ ├── 4000nodes_1fail_50thr.toml │ │ ├── 4000nodes_25fail_50thr.toml │ │ ├── 4000nodes_49fail_50thr.toml │ │ ├── 6000nodes_tests.toml │ │ ├── test_0failing_51thr.toml │ │ ├── test_0failing_75thr.toml │ │ ├── test_0failing_99thr.toml │ │ ├── test_0failing_99thr_sleep.toml │ │ └── test_with_failing.toml │ ├── generated_configs │ │ └── README.md │ └── scenarios │ │ ├── nodeInc.go │ │ ├── nodeInc_test.go │ │ └── thresholdFun.go ├── config_example.toml ├── config_example32.toml ├── config_example32gossip.toml ├── config_gossip.toml ├── config_udp.toml ├── lib │ ├── allocator.go │ ├── allocator_test.go │ ├── compat_test.go │ ├── config.go │ ├── crypto.go │ ├── generator.go │ ├── net.go │ ├── nodes.go │ ├── parser.go │ ├── parser_test.go │ ├── sync.go │ └── sync_test.go ├── main.go ├── main_test.go ├── master │ └── main.go ├── monitor │ ├── measure.go │ ├── measure_test.go │ ├── monitor.go │ ├── monitor_test.go │ ├── rtime.go │ ├── rtime_windows.go │ ├── stats.go │ └── stats_test.go ├── node │ └── main.go ├── p2p │ ├── aggregator.go │ ├── connector.go │ ├── constructor.go │ ├── libp2p │ │ ├── adaptor.go │ │ ├── bn256.go │ │ ├── libp2p │ │ ├── libp2p_test.go │ │ ├── main.go │ │ ├── node.go │ │ └── node_test.go │ ├── main.go │ ├── options.go │ ├── test │ │ └── test.go │ └── udp │ │ ├── adaptor.go │ │ ├── main.go │ │ ├── node.go │ │ └── udp_test.go ├── platform │ ├── aws.go │ ├── aws │ │ ├── awsManager.go │ │ ├── cmdbuilder.go │ │ ├── commands.go │ │ ├── commands_test.go │ │ ├── config.go │ │ ├── controller.go │ │ ├── multiRegionManager.go │ │ ├── multiRegionManager_test.go │ │ ├── singleRegionManager.go │ │ └── sshController.go │ ├── command.go │ ├── localhost.go │ ├── platform.go │ └── stats.go ├── plots │ ├── comparison_network.png │ ├── comparison_network.py │ ├── comparison_time.png │ ├── comparison_time.py │ ├── csv │ │ ├── handel_0failing_51thr.csv │ │ ├── handel_0failing_75thr.csv │ │ ├── handel_0failing_99thr.csv │ │ ├── handel_2000_100period_25fail_99thr.csv │ │ ├── handel_2000_100timeout_99thr.csv │ │ ├── handel_2000_10period_25fail_99thr.csv │ │ ├── handel_2000_200timeout_99thr.csv │ │ ├── handel_2000_20period_25fail_99thr.csv │ │ ├── handel_2000_50period_25fail_99thr.csv │ │ ├── handel_2000_50timeout_99thr.csv │ │ ├── handel_2000_failing.csv │ │ ├── handel_4000_failing.csv │ │ ├── handel_4000_real.csv │ │ ├── libp2p_2000_51thr_agg1.csv │ │ ├── n2_4000_51thr.csv │ │ ├── n2_4000_75thr.csv │ │ └── n2_4000_99thr.csv │ ├── failing_network.png │ ├── failing_network.py │ ├── failing_time.png │ ├── failing_time.py │ ├── handel_reallike.png │ ├── install.sh │ ├── lib.py │ ├── period_network.png │ ├── period_network.py │ ├── period_time.png │ ├── period_time.py │ ├── reallike.py │ ├── requirements.txt │ ├── sigchecked.py │ ├── signatures_checked.png │ ├── threshold_network.png │ ├── threshold_network.py │ ├── threshold_time.png │ ├── threshold_time.py │ ├── timeout_network.png │ ├── timeout_network.py │ ├── timeout_time.png │ ├── timeout_time.py │ └── whatwewant.md ├── terraform │ ├── .gitignore │ ├── README.md │ └── aws │ │ ├── main.tf │ │ └── vars.tf └── tests │ ├── gossip.toml │ ├── handel.toml │ └── udp.toml ├── store.go ├── store_test.go ├── test.go ├── timeout.go ├── timeout_test.go ├── util_test.go └── utils.go /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/.gitignore -------------------------------------------------------------------------------- /HACKING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/HACKING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/README.md -------------------------------------------------------------------------------- /bitset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/bitset.go -------------------------------------------------------------------------------- /bitset_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/bitset_test.go -------------------------------------------------------------------------------- /bn256/cf/bn256.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/bn256/cf/bn256.go -------------------------------------------------------------------------------- /bn256/cf/bn256_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/bn256/cf/bn256_test.go -------------------------------------------------------------------------------- /bn256/go/bn256.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/bn256/go/bn256.go -------------------------------------------------------------------------------- /bn256/go/bn256_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/bn256/go/bn256_test.go -------------------------------------------------------------------------------- /config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/config.go -------------------------------------------------------------------------------- /crypto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/crypto.go -------------------------------------------------------------------------------- /crypto_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/crypto_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/go.sum -------------------------------------------------------------------------------- /handel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/handel.go -------------------------------------------------------------------------------- /handel_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/handel_test.go -------------------------------------------------------------------------------- /identity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/identity.go -------------------------------------------------------------------------------- /identity_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/identity_test.go -------------------------------------------------------------------------------- /log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/log.go -------------------------------------------------------------------------------- /log_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/log_test.go -------------------------------------------------------------------------------- /net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/net.go -------------------------------------------------------------------------------- /net_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/net_test.go -------------------------------------------------------------------------------- /network/counter_encoding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/network/counter_encoding.go -------------------------------------------------------------------------------- /network/counter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/network/counter_test.go -------------------------------------------------------------------------------- /network/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/network/examples/README.md -------------------------------------------------------------------------------- /network/examples/local_reg.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/network/examples/local_reg.csv -------------------------------------------------------------------------------- /network/examples/start.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/network/examples/start.go -------------------------------------------------------------------------------- /network/gobEncoding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/network/gobEncoding.go -------------------------------------------------------------------------------- /network/quic/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/network/quic/config.go -------------------------------------------------------------------------------- /network/quic/dialer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/network/quic/dialer.go -------------------------------------------------------------------------------- /network/quic/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/network/quic/net.go -------------------------------------------------------------------------------- /network/quic/sessionmanager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/network/quic/sessionmanager.go -------------------------------------------------------------------------------- /network/quic/sessionmanager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/network/quic/sessionmanager_test.go -------------------------------------------------------------------------------- /network/tcp/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/network/tcp/net.go -------------------------------------------------------------------------------- /network/tcp/net_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/network/tcp/net_test.go -------------------------------------------------------------------------------- /network/udp/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/network/udp/net.go -------------------------------------------------------------------------------- /network/udp/net_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/network/udp/net_test.go -------------------------------------------------------------------------------- /network/wireencoding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/network/wireencoding.go -------------------------------------------------------------------------------- /partitioner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/partitioner.go -------------------------------------------------------------------------------- /partitioner_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/partitioner_test.go -------------------------------------------------------------------------------- /processing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/processing.go -------------------------------------------------------------------------------- /processing_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/processing_test.go -------------------------------------------------------------------------------- /report.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/report.go -------------------------------------------------------------------------------- /simul/HACKING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/HACKING.md -------------------------------------------------------------------------------- /simul/aws_config_example.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/aws_config_example.toml -------------------------------------------------------------------------------- /simul/bad.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/bad.toml -------------------------------------------------------------------------------- /simul/confgenerator/confgenerator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/confgenerator/confgenerator.go -------------------------------------------------------------------------------- /simul/confgenerator/final_configs/2000evaluator_equal.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/confgenerator/final_configs/2000evaluator_equal.toml -------------------------------------------------------------------------------- /simul/confgenerator/final_configs/2000evaluator_store.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/confgenerator/final_configs/2000evaluator_store.toml -------------------------------------------------------------------------------- /simul/confgenerator/final_configs/2000node_100period_25fail_99thr.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/confgenerator/final_configs/2000node_100period_25fail_99thr.toml -------------------------------------------------------------------------------- /simul/confgenerator/final_configs/2000node_10period_25fail_99thr.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/confgenerator/final_configs/2000node_10period_25fail_99thr.toml -------------------------------------------------------------------------------- /simul/confgenerator/final_configs/2000node_20period_25fail_99thr.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/confgenerator/final_configs/2000node_20period_25fail_99thr.toml -------------------------------------------------------------------------------- /simul/confgenerator/final_configs/2000node_50period_25fail_99thr.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/confgenerator/final_configs/2000node_50period_25fail_99thr.toml -------------------------------------------------------------------------------- /simul/confgenerator/final_configs/2000node_Libp2pInc_51thr_agg1_gossip.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/confgenerator/final_configs/2000node_Libp2pInc_51thr_agg1_gossip.toml -------------------------------------------------------------------------------- /simul/confgenerator/final_configs/2000node_Libp2pInc_75thr_agg1.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/confgenerator/final_configs/2000node_Libp2pInc_75thr_agg1.toml -------------------------------------------------------------------------------- /simul/confgenerator/final_configs/2000node_Libp2pInc_75thr_agg1_gossip.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/confgenerator/final_configs/2000node_Libp2pInc_75thr_agg1_gossip.toml -------------------------------------------------------------------------------- /simul/confgenerator/final_configs/2000node_Libp2pInc_99thr_agg1.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/confgenerator/final_configs/2000node_Libp2pInc_99thr_agg1.toml -------------------------------------------------------------------------------- /simul/confgenerator/final_configs/2000node_Libp2pInc_99thr_agg1_gossip.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/confgenerator/final_configs/2000node_Libp2pInc_99thr_agg1_gossip.toml -------------------------------------------------------------------------------- /simul/confgenerator/final_configs/2000node_count1.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/confgenerator/final_configs/2000node_count1.toml -------------------------------------------------------------------------------- /simul/confgenerator/final_configs/2000node_count10.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/confgenerator/final_configs/2000node_count10.toml -------------------------------------------------------------------------------- /simul/confgenerator/final_configs/2000node_count20.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/confgenerator/final_configs/2000node_count20.toml -------------------------------------------------------------------------------- /simul/confgenerator/final_configs/2000node_update1.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/confgenerator/final_configs/2000node_update1.toml -------------------------------------------------------------------------------- /simul/confgenerator/final_configs/2000node_update10.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/confgenerator/final_configs/2000node_update10.toml -------------------------------------------------------------------------------- /simul/confgenerator/final_configs/2000node_update20.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/confgenerator/final_configs/2000node_update20.toml -------------------------------------------------------------------------------- /simul/confgenerator/final_configs/2000nodes_100timeout_99thr.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/confgenerator/final_configs/2000nodes_100timeout_99thr.toml -------------------------------------------------------------------------------- /simul/confgenerator/final_configs/2000nodes_200timeout_99thr.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/confgenerator/final_configs/2000nodes_200timeout_99thr.toml -------------------------------------------------------------------------------- /simul/confgenerator/final_configs/2000nodes_50timeout_99thr.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/confgenerator/final_configs/2000nodes_50timeout_99thr.toml -------------------------------------------------------------------------------- /simul/confgenerator/final_configs/4000node_Libp2pInc_51thr_agg1.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/confgenerator/final_configs/4000node_Libp2pInc_51thr_agg1.toml -------------------------------------------------------------------------------- /simul/confgenerator/final_configs/4000node_handel_real.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/confgenerator/final_configs/4000node_handel_real.toml -------------------------------------------------------------------------------- /simul/confgenerator/final_configs/4000node_nsquareInc_51thr_agg1.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/confgenerator/final_configs/4000node_nsquareInc_51thr_agg1.toml -------------------------------------------------------------------------------- /simul/confgenerator/final_configs/4000node_nsquareInc_75thr_agg1.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/confgenerator/final_configs/4000node_nsquareInc_75thr_agg1.toml -------------------------------------------------------------------------------- /simul/confgenerator/final_configs/4000node_nsquareInc_99thr_agg1.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/confgenerator/final_configs/4000node_nsquareInc_99thr_agg1.toml -------------------------------------------------------------------------------- /simul/confgenerator/final_configs/4000nodes_1fail_50thr.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/confgenerator/final_configs/4000nodes_1fail_50thr.toml -------------------------------------------------------------------------------- /simul/confgenerator/final_configs/4000nodes_25fail_50thr.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/confgenerator/final_configs/4000nodes_25fail_50thr.toml -------------------------------------------------------------------------------- /simul/confgenerator/final_configs/4000nodes_49fail_50thr.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/confgenerator/final_configs/4000nodes_49fail_50thr.toml -------------------------------------------------------------------------------- /simul/confgenerator/final_configs/6000nodes_tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/confgenerator/final_configs/6000nodes_tests.toml -------------------------------------------------------------------------------- /simul/confgenerator/final_configs/test_0failing_51thr.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/confgenerator/final_configs/test_0failing_51thr.toml -------------------------------------------------------------------------------- /simul/confgenerator/final_configs/test_0failing_75thr.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/confgenerator/final_configs/test_0failing_75thr.toml -------------------------------------------------------------------------------- /simul/confgenerator/final_configs/test_0failing_99thr.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/confgenerator/final_configs/test_0failing_99thr.toml -------------------------------------------------------------------------------- /simul/confgenerator/final_configs/test_0failing_99thr_sleep.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/confgenerator/final_configs/test_0failing_99thr_sleep.toml -------------------------------------------------------------------------------- /simul/confgenerator/final_configs/test_with_failing.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/confgenerator/final_configs/test_with_failing.toml -------------------------------------------------------------------------------- /simul/confgenerator/generated_configs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/confgenerator/generated_configs/README.md -------------------------------------------------------------------------------- /simul/confgenerator/scenarios/nodeInc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/confgenerator/scenarios/nodeInc.go -------------------------------------------------------------------------------- /simul/confgenerator/scenarios/nodeInc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/confgenerator/scenarios/nodeInc_test.go -------------------------------------------------------------------------------- /simul/confgenerator/scenarios/thresholdFun.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/confgenerator/scenarios/thresholdFun.go -------------------------------------------------------------------------------- /simul/config_example.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/config_example.toml -------------------------------------------------------------------------------- /simul/config_example32.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/config_example32.toml -------------------------------------------------------------------------------- /simul/config_example32gossip.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/config_example32gossip.toml -------------------------------------------------------------------------------- /simul/config_gossip.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/config_gossip.toml -------------------------------------------------------------------------------- /simul/config_udp.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/config_udp.toml -------------------------------------------------------------------------------- /simul/lib/allocator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/lib/allocator.go -------------------------------------------------------------------------------- /simul/lib/allocator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/lib/allocator_test.go -------------------------------------------------------------------------------- /simul/lib/compat_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/lib/compat_test.go -------------------------------------------------------------------------------- /simul/lib/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/lib/config.go -------------------------------------------------------------------------------- /simul/lib/crypto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/lib/crypto.go -------------------------------------------------------------------------------- /simul/lib/generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/lib/generator.go -------------------------------------------------------------------------------- /simul/lib/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/lib/net.go -------------------------------------------------------------------------------- /simul/lib/nodes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/lib/nodes.go -------------------------------------------------------------------------------- /simul/lib/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/lib/parser.go -------------------------------------------------------------------------------- /simul/lib/parser_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/lib/parser_test.go -------------------------------------------------------------------------------- /simul/lib/sync.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/lib/sync.go -------------------------------------------------------------------------------- /simul/lib/sync_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/lib/sync_test.go -------------------------------------------------------------------------------- /simul/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/main.go -------------------------------------------------------------------------------- /simul/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/main_test.go -------------------------------------------------------------------------------- /simul/master/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/master/main.go -------------------------------------------------------------------------------- /simul/monitor/measure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/monitor/measure.go -------------------------------------------------------------------------------- /simul/monitor/measure_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/monitor/measure_test.go -------------------------------------------------------------------------------- /simul/monitor/monitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/monitor/monitor.go -------------------------------------------------------------------------------- /simul/monitor/monitor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/monitor/monitor_test.go -------------------------------------------------------------------------------- /simul/monitor/rtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/monitor/rtime.go -------------------------------------------------------------------------------- /simul/monitor/rtime_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/monitor/rtime_windows.go -------------------------------------------------------------------------------- /simul/monitor/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/monitor/stats.go -------------------------------------------------------------------------------- /simul/monitor/stats_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/monitor/stats_test.go -------------------------------------------------------------------------------- /simul/node/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/node/main.go -------------------------------------------------------------------------------- /simul/p2p/aggregator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/p2p/aggregator.go -------------------------------------------------------------------------------- /simul/p2p/connector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/p2p/connector.go -------------------------------------------------------------------------------- /simul/p2p/constructor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/p2p/constructor.go -------------------------------------------------------------------------------- /simul/p2p/libp2p/adaptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/p2p/libp2p/adaptor.go -------------------------------------------------------------------------------- /simul/p2p/libp2p/bn256.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/p2p/libp2p/bn256.go -------------------------------------------------------------------------------- /simul/p2p/libp2p/libp2p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/p2p/libp2p/libp2p -------------------------------------------------------------------------------- /simul/p2p/libp2p/libp2p_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/p2p/libp2p/libp2p_test.go -------------------------------------------------------------------------------- /simul/p2p/libp2p/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/p2p/libp2p/main.go -------------------------------------------------------------------------------- /simul/p2p/libp2p/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/p2p/libp2p/node.go -------------------------------------------------------------------------------- /simul/p2p/libp2p/node_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/p2p/libp2p/node_test.go -------------------------------------------------------------------------------- /simul/p2p/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/p2p/main.go -------------------------------------------------------------------------------- /simul/p2p/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/p2p/options.go -------------------------------------------------------------------------------- /simul/p2p/test/test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/p2p/test/test.go -------------------------------------------------------------------------------- /simul/p2p/udp/adaptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/p2p/udp/adaptor.go -------------------------------------------------------------------------------- /simul/p2p/udp/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/p2p/udp/main.go -------------------------------------------------------------------------------- /simul/p2p/udp/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/p2p/udp/node.go -------------------------------------------------------------------------------- /simul/p2p/udp/udp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/p2p/udp/udp_test.go -------------------------------------------------------------------------------- /simul/platform/aws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/platform/aws.go -------------------------------------------------------------------------------- /simul/platform/aws/awsManager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/platform/aws/awsManager.go -------------------------------------------------------------------------------- /simul/platform/aws/cmdbuilder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/platform/aws/cmdbuilder.go -------------------------------------------------------------------------------- /simul/platform/aws/commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/platform/aws/commands.go -------------------------------------------------------------------------------- /simul/platform/aws/commands_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/platform/aws/commands_test.go -------------------------------------------------------------------------------- /simul/platform/aws/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/platform/aws/config.go -------------------------------------------------------------------------------- /simul/platform/aws/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/platform/aws/controller.go -------------------------------------------------------------------------------- /simul/platform/aws/multiRegionManager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/platform/aws/multiRegionManager.go -------------------------------------------------------------------------------- /simul/platform/aws/multiRegionManager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/platform/aws/multiRegionManager_test.go -------------------------------------------------------------------------------- /simul/platform/aws/singleRegionManager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/platform/aws/singleRegionManager.go -------------------------------------------------------------------------------- /simul/platform/aws/sshController.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/platform/aws/sshController.go -------------------------------------------------------------------------------- /simul/platform/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/platform/command.go -------------------------------------------------------------------------------- /simul/platform/localhost.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/platform/localhost.go -------------------------------------------------------------------------------- /simul/platform/platform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/platform/platform.go -------------------------------------------------------------------------------- /simul/platform/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/platform/stats.go -------------------------------------------------------------------------------- /simul/plots/comparison_network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/plots/comparison_network.png -------------------------------------------------------------------------------- /simul/plots/comparison_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/plots/comparison_network.py -------------------------------------------------------------------------------- /simul/plots/comparison_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/plots/comparison_time.png -------------------------------------------------------------------------------- /simul/plots/comparison_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/plots/comparison_time.py -------------------------------------------------------------------------------- /simul/plots/csv/handel_0failing_51thr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/plots/csv/handel_0failing_51thr.csv -------------------------------------------------------------------------------- /simul/plots/csv/handel_0failing_75thr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/plots/csv/handel_0failing_75thr.csv -------------------------------------------------------------------------------- /simul/plots/csv/handel_0failing_99thr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/plots/csv/handel_0failing_99thr.csv -------------------------------------------------------------------------------- /simul/plots/csv/handel_2000_100period_25fail_99thr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/plots/csv/handel_2000_100period_25fail_99thr.csv -------------------------------------------------------------------------------- /simul/plots/csv/handel_2000_100timeout_99thr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/plots/csv/handel_2000_100timeout_99thr.csv -------------------------------------------------------------------------------- /simul/plots/csv/handel_2000_10period_25fail_99thr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/plots/csv/handel_2000_10period_25fail_99thr.csv -------------------------------------------------------------------------------- /simul/plots/csv/handel_2000_200timeout_99thr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/plots/csv/handel_2000_200timeout_99thr.csv -------------------------------------------------------------------------------- /simul/plots/csv/handel_2000_20period_25fail_99thr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/plots/csv/handel_2000_20period_25fail_99thr.csv -------------------------------------------------------------------------------- /simul/plots/csv/handel_2000_50period_25fail_99thr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/plots/csv/handel_2000_50period_25fail_99thr.csv -------------------------------------------------------------------------------- /simul/plots/csv/handel_2000_50timeout_99thr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/plots/csv/handel_2000_50timeout_99thr.csv -------------------------------------------------------------------------------- /simul/plots/csv/handel_2000_failing.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/plots/csv/handel_2000_failing.csv -------------------------------------------------------------------------------- /simul/plots/csv/handel_4000_failing.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/plots/csv/handel_4000_failing.csv -------------------------------------------------------------------------------- /simul/plots/csv/handel_4000_real.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/plots/csv/handel_4000_real.csv -------------------------------------------------------------------------------- /simul/plots/csv/libp2p_2000_51thr_agg1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/plots/csv/libp2p_2000_51thr_agg1.csv -------------------------------------------------------------------------------- /simul/plots/csv/n2_4000_51thr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/plots/csv/n2_4000_51thr.csv -------------------------------------------------------------------------------- /simul/plots/csv/n2_4000_75thr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/plots/csv/n2_4000_75thr.csv -------------------------------------------------------------------------------- /simul/plots/csv/n2_4000_99thr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/plots/csv/n2_4000_99thr.csv -------------------------------------------------------------------------------- /simul/plots/failing_network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/plots/failing_network.png -------------------------------------------------------------------------------- /simul/plots/failing_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/plots/failing_network.py -------------------------------------------------------------------------------- /simul/plots/failing_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/plots/failing_time.png -------------------------------------------------------------------------------- /simul/plots/failing_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/plots/failing_time.py -------------------------------------------------------------------------------- /simul/plots/handel_reallike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/plots/handel_reallike.png -------------------------------------------------------------------------------- /simul/plots/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/plots/install.sh -------------------------------------------------------------------------------- /simul/plots/lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/plots/lib.py -------------------------------------------------------------------------------- /simul/plots/period_network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/plots/period_network.png -------------------------------------------------------------------------------- /simul/plots/period_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/plots/period_network.py -------------------------------------------------------------------------------- /simul/plots/period_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/plots/period_time.png -------------------------------------------------------------------------------- /simul/plots/period_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/plots/period_time.py -------------------------------------------------------------------------------- /simul/plots/reallike.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/plots/reallike.py -------------------------------------------------------------------------------- /simul/plots/requirements.txt: -------------------------------------------------------------------------------- 1 | matplotlib 2 | pandas 3 | scipy 4 | -------------------------------------------------------------------------------- /simul/plots/sigchecked.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/plots/sigchecked.py -------------------------------------------------------------------------------- /simul/plots/signatures_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/plots/signatures_checked.png -------------------------------------------------------------------------------- /simul/plots/threshold_network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/plots/threshold_network.png -------------------------------------------------------------------------------- /simul/plots/threshold_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/plots/threshold_network.py -------------------------------------------------------------------------------- /simul/plots/threshold_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/plots/threshold_time.png -------------------------------------------------------------------------------- /simul/plots/threshold_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/plots/threshold_time.py -------------------------------------------------------------------------------- /simul/plots/timeout_network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/plots/timeout_network.png -------------------------------------------------------------------------------- /simul/plots/timeout_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/plots/timeout_network.py -------------------------------------------------------------------------------- /simul/plots/timeout_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/plots/timeout_time.png -------------------------------------------------------------------------------- /simul/plots/timeout_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/plots/timeout_time.py -------------------------------------------------------------------------------- /simul/plots/whatwewant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/plots/whatwewant.md -------------------------------------------------------------------------------- /simul/terraform/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/terraform/.gitignore -------------------------------------------------------------------------------- /simul/terraform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/terraform/README.md -------------------------------------------------------------------------------- /simul/terraform/aws/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/terraform/aws/main.tf -------------------------------------------------------------------------------- /simul/terraform/aws/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/terraform/aws/vars.tf -------------------------------------------------------------------------------- /simul/tests/gossip.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/tests/gossip.toml -------------------------------------------------------------------------------- /simul/tests/handel.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/tests/handel.toml -------------------------------------------------------------------------------- /simul/tests/udp.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/simul/tests/udp.toml -------------------------------------------------------------------------------- /store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/store.go -------------------------------------------------------------------------------- /store_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/store_test.go -------------------------------------------------------------------------------- /test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/test.go -------------------------------------------------------------------------------- /timeout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/timeout.go -------------------------------------------------------------------------------- /timeout_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/timeout_test.go -------------------------------------------------------------------------------- /util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/util_test.go -------------------------------------------------------------------------------- /utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/handel/HEAD/utils.go --------------------------------------------------------------------------------