├── .gitignore ├── LICENSE ├── README.md ├── Vagrantfile ├── img ├── QM2.png ├── cross.png ├── exp.png ├── gap.png ├── screenshot1.png ├── screenshot10.png ├── screenshot11.png ├── screenshot12.png ├── screenshot13.png ├── screenshot14.png ├── screenshot15.png ├── screenshot16.png ├── screenshot17.png ├── screenshot18.png ├── screenshot19.jpeg ├── screenshot19.png ├── screenshot2.png ├── screenshot20.png ├── screenshot21.png ├── screenshot3.png ├── screenshot4.png ├── screenshot5.png ├── screenshot6.png ├── screenshot7.png ├── screenshot8.png ├── screenshot9.png ├── tick.png └── wip.png ├── lib ├── attach │ ├── genesis_template.json │ ├── start_quorum_template.sh │ └── start_template.sh ├── attach_node.sh ├── common.sh ├── create_dev_network.sh ├── create_network.sh ├── dev │ ├── empty_h2.mv.db │ ├── genesis_template.json │ ├── header.yml │ ├── migrate_to_tessera.sh │ ├── passwords.txt │ ├── start_quorum_template.sh │ ├── start_template.sh │ ├── template.conf │ └── tessera-migration.properties ├── join_network.sh ├── master │ ├── constellation_template.conf │ ├── empty_h2.mv.db │ ├── genesis_template.json │ ├── init_template.sh │ ├── migrate_to_tessera.sh │ ├── nodemanager_template.sh │ ├── passwords.txt │ ├── pre_start_check_template.sh │ ├── start_quorum_template.sh │ ├── start_template.sh │ ├── static-nodes_template.json │ └── tessera-migration.properties ├── menu.sh └── slave │ ├── constellation_template.conf │ ├── empty_h2.mv.db │ ├── init_template.sh │ ├── migrate_to_tessera.sh │ ├── passwords.txt │ ├── pre_start_check_template.sh │ ├── start_quorum_template.sh │ ├── start_template.sh │ ├── template.conf │ └── tessera-migration.properties ├── qm.variables └── setup.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/Vagrantfile -------------------------------------------------------------------------------- /img/QM2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/img/QM2.png -------------------------------------------------------------------------------- /img/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/img/cross.png -------------------------------------------------------------------------------- /img/exp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/img/exp.png -------------------------------------------------------------------------------- /img/gap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/img/gap.png -------------------------------------------------------------------------------- /img/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/img/screenshot1.png -------------------------------------------------------------------------------- /img/screenshot10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/img/screenshot10.png -------------------------------------------------------------------------------- /img/screenshot11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/img/screenshot11.png -------------------------------------------------------------------------------- /img/screenshot12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/img/screenshot12.png -------------------------------------------------------------------------------- /img/screenshot13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/img/screenshot13.png -------------------------------------------------------------------------------- /img/screenshot14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/img/screenshot14.png -------------------------------------------------------------------------------- /img/screenshot15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/img/screenshot15.png -------------------------------------------------------------------------------- /img/screenshot16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/img/screenshot16.png -------------------------------------------------------------------------------- /img/screenshot17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/img/screenshot17.png -------------------------------------------------------------------------------- /img/screenshot18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/img/screenshot18.png -------------------------------------------------------------------------------- /img/screenshot19.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/img/screenshot19.jpeg -------------------------------------------------------------------------------- /img/screenshot19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/img/screenshot19.png -------------------------------------------------------------------------------- /img/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/img/screenshot2.png -------------------------------------------------------------------------------- /img/screenshot20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/img/screenshot20.png -------------------------------------------------------------------------------- /img/screenshot21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/img/screenshot21.png -------------------------------------------------------------------------------- /img/screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/img/screenshot3.png -------------------------------------------------------------------------------- /img/screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/img/screenshot4.png -------------------------------------------------------------------------------- /img/screenshot5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/img/screenshot5.png -------------------------------------------------------------------------------- /img/screenshot6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/img/screenshot6.png -------------------------------------------------------------------------------- /img/screenshot7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/img/screenshot7.png -------------------------------------------------------------------------------- /img/screenshot8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/img/screenshot8.png -------------------------------------------------------------------------------- /img/screenshot9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/img/screenshot9.png -------------------------------------------------------------------------------- /img/tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/img/tick.png -------------------------------------------------------------------------------- /img/wip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/img/wip.png -------------------------------------------------------------------------------- /lib/attach/genesis_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/lib/attach/genesis_template.json -------------------------------------------------------------------------------- /lib/attach/start_quorum_template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/lib/attach/start_quorum_template.sh -------------------------------------------------------------------------------- /lib/attach/start_template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/lib/attach/start_template.sh -------------------------------------------------------------------------------- /lib/attach_node.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/lib/attach_node.sh -------------------------------------------------------------------------------- /lib/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/lib/common.sh -------------------------------------------------------------------------------- /lib/create_dev_network.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/lib/create_dev_network.sh -------------------------------------------------------------------------------- /lib/create_network.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/lib/create_network.sh -------------------------------------------------------------------------------- /lib/dev/empty_h2.mv.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/lib/dev/empty_h2.mv.db -------------------------------------------------------------------------------- /lib/dev/genesis_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/lib/dev/genesis_template.json -------------------------------------------------------------------------------- /lib/dev/header.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/lib/dev/header.yml -------------------------------------------------------------------------------- /lib/dev/migrate_to_tessera.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/lib/dev/migrate_to_tessera.sh -------------------------------------------------------------------------------- /lib/dev/passwords.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dev/start_quorum_template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/lib/dev/start_quorum_template.sh -------------------------------------------------------------------------------- /lib/dev/start_template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/lib/dev/start_template.sh -------------------------------------------------------------------------------- /lib/dev/template.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/lib/dev/template.conf -------------------------------------------------------------------------------- /lib/dev/tessera-migration.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/lib/dev/tessera-migration.properties -------------------------------------------------------------------------------- /lib/join_network.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/lib/join_network.sh -------------------------------------------------------------------------------- /lib/master/constellation_template.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/lib/master/constellation_template.conf -------------------------------------------------------------------------------- /lib/master/empty_h2.mv.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/lib/master/empty_h2.mv.db -------------------------------------------------------------------------------- /lib/master/genesis_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/lib/master/genesis_template.json -------------------------------------------------------------------------------- /lib/master/init_template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/lib/master/init_template.sh -------------------------------------------------------------------------------- /lib/master/migrate_to_tessera.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/lib/master/migrate_to_tessera.sh -------------------------------------------------------------------------------- /lib/master/nodemanager_template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/lib/master/nodemanager_template.sh -------------------------------------------------------------------------------- /lib/master/passwords.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/master/pre_start_check_template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/lib/master/pre_start_check_template.sh -------------------------------------------------------------------------------- /lib/master/start_quorum_template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/lib/master/start_quorum_template.sh -------------------------------------------------------------------------------- /lib/master/start_template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/lib/master/start_template.sh -------------------------------------------------------------------------------- /lib/master/static-nodes_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/lib/master/static-nodes_template.json -------------------------------------------------------------------------------- /lib/master/tessera-migration.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/lib/master/tessera-migration.properties -------------------------------------------------------------------------------- /lib/menu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/lib/menu.sh -------------------------------------------------------------------------------- /lib/slave/constellation_template.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/lib/slave/constellation_template.conf -------------------------------------------------------------------------------- /lib/slave/empty_h2.mv.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/lib/slave/empty_h2.mv.db -------------------------------------------------------------------------------- /lib/slave/init_template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/lib/slave/init_template.sh -------------------------------------------------------------------------------- /lib/slave/migrate_to_tessera.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/lib/slave/migrate_to_tessera.sh -------------------------------------------------------------------------------- /lib/slave/passwords.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/slave/pre_start_check_template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/lib/slave/pre_start_check_template.sh -------------------------------------------------------------------------------- /lib/slave/start_quorum_template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/lib/slave/start_quorum_template.sh -------------------------------------------------------------------------------- /lib/slave/start_template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/lib/slave/start_template.sh -------------------------------------------------------------------------------- /lib/slave/template.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/lib/slave/template.conf -------------------------------------------------------------------------------- /lib/slave/tessera-migration.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/lib/slave/tessera-migration.properties -------------------------------------------------------------------------------- /qm.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/qm.variables -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synechron-finlabs/quorum-maker/HEAD/setup.sh --------------------------------------------------------------------------------