├── .editorconfig ├── .gitattributes ├── .gitignore ├── .openzeppelin ├── dev-100.json └── project.json ├── .solcover.js ├── .soliumignore ├── .soliumrc.json ├── contracts ├── VotingSpace.sol └── VotingSpaceFactory.sol ├── networks.js ├── package.json ├── scripts ├── make_flat.sh └── test.sh └── truffle.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdaichain/voting-dapp-contracts/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdaichain/voting-dapp-contracts/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdaichain/voting-dapp-contracts/HEAD/.gitignore -------------------------------------------------------------------------------- /.openzeppelin/dev-100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdaichain/voting-dapp-contracts/HEAD/.openzeppelin/dev-100.json -------------------------------------------------------------------------------- /.openzeppelin/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdaichain/voting-dapp-contracts/HEAD/.openzeppelin/project.json -------------------------------------------------------------------------------- /.solcover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdaichain/voting-dapp-contracts/HEAD/.solcover.js -------------------------------------------------------------------------------- /.soliumignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | contracts/Migrations.sol 3 | -------------------------------------------------------------------------------- /.soliumrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdaichain/voting-dapp-contracts/HEAD/.soliumrc.json -------------------------------------------------------------------------------- /contracts/VotingSpace.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdaichain/voting-dapp-contracts/HEAD/contracts/VotingSpace.sol -------------------------------------------------------------------------------- /contracts/VotingSpaceFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdaichain/voting-dapp-contracts/HEAD/contracts/VotingSpaceFactory.sol -------------------------------------------------------------------------------- /networks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdaichain/voting-dapp-contracts/HEAD/networks.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdaichain/voting-dapp-contracts/HEAD/package.json -------------------------------------------------------------------------------- /scripts/make_flat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdaichain/voting-dapp-contracts/HEAD/scripts/make_flat.sh -------------------------------------------------------------------------------- /scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdaichain/voting-dapp-contracts/HEAD/scripts/test.sh -------------------------------------------------------------------------------- /truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdaichain/voting-dapp-contracts/HEAD/truffle.js --------------------------------------------------------------------------------