├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── MAINTAINERS.md ├── README.md ├── img ├── 843-flow.png ├── add_yes.png ├── all.png ├── compose-cli.png ├── hyperether-steps.png ├── hyperether.png ├── maybe.png ├── start.png ├── steps.png └── yes.png ├── ingredients.md ├── manual_steps.md ├── proxy.sh └── start.sh /.gitignore: -------------------------------------------------------------------------------- 1 | web3-fabric-voting-dapp 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/vote-hyperledger-ethereum/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/vote-hyperledger-ethereum/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/vote-hyperledger-ethereum/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/vote-hyperledger-ethereum/HEAD/README.md -------------------------------------------------------------------------------- /img/843-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/vote-hyperledger-ethereum/HEAD/img/843-flow.png -------------------------------------------------------------------------------- /img/add_yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/vote-hyperledger-ethereum/HEAD/img/add_yes.png -------------------------------------------------------------------------------- /img/all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/vote-hyperledger-ethereum/HEAD/img/all.png -------------------------------------------------------------------------------- /img/compose-cli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/vote-hyperledger-ethereum/HEAD/img/compose-cli.png -------------------------------------------------------------------------------- /img/hyperether-steps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/vote-hyperledger-ethereum/HEAD/img/hyperether-steps.png -------------------------------------------------------------------------------- /img/hyperether.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/vote-hyperledger-ethereum/HEAD/img/hyperether.png -------------------------------------------------------------------------------- /img/maybe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/vote-hyperledger-ethereum/HEAD/img/maybe.png -------------------------------------------------------------------------------- /img/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/vote-hyperledger-ethereum/HEAD/img/start.png -------------------------------------------------------------------------------- /img/steps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/vote-hyperledger-ethereum/HEAD/img/steps.png -------------------------------------------------------------------------------- /img/yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/vote-hyperledger-ethereum/HEAD/img/yes.png -------------------------------------------------------------------------------- /ingredients.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/vote-hyperledger-ethereum/HEAD/ingredients.md -------------------------------------------------------------------------------- /manual_steps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/vote-hyperledger-ethereum/HEAD/manual_steps.md -------------------------------------------------------------------------------- /proxy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/vote-hyperledger-ethereum/HEAD/proxy.sh -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/vote-hyperledger-ethereum/HEAD/start.sh --------------------------------------------------------------------------------