├── .gitignore ├── CODE_OF_CONDUCT.md ├── README.md ├── contracts ├── Migrations.sol ├── bounty │ └── BountyIndex.sol ├── shared │ └── strings.sol ├── token │ └── BasicERC20Token.sol └── zeppelin-solidity ├── docker-compose.yml ├── liscense.txt ├── migrations ├── 1_initial_migration.js └── 2_deploy_contracts.js ├── mnemonic.js.dist ├── package.json ├── scripts ├── getabi.py ├── install.bash ├── prepTestRPC.bash ├── prepTestRPC │ ├── mint.js │ ├── sampleBounty.js │ └── sendETH.js └── stats │ ├── dilligence_scoping.bash │ └── get_coverage_num.bash ├── test ├── bounty │ └── bounty.js ├── token │ └── ERC20.js └── tools.js └── truffle.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/smart_contracts/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/smart_contracts/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/smart_contracts/HEAD/README.md -------------------------------------------------------------------------------- /contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/smart_contracts/HEAD/contracts/Migrations.sol -------------------------------------------------------------------------------- /contracts/bounty/BountyIndex.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/smart_contracts/HEAD/contracts/bounty/BountyIndex.sol -------------------------------------------------------------------------------- /contracts/shared/strings.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/smart_contracts/HEAD/contracts/shared/strings.sol -------------------------------------------------------------------------------- /contracts/token/BasicERC20Token.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/smart_contracts/HEAD/contracts/token/BasicERC20Token.sol -------------------------------------------------------------------------------- /contracts/zeppelin-solidity: -------------------------------------------------------------------------------- 1 | /usr/local/lib/node_modules/zeppelin-solidity -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/smart_contracts/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /liscense.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/smart_contracts/HEAD/liscense.txt -------------------------------------------------------------------------------- /migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/smart_contracts/HEAD/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /migrations/2_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/smart_contracts/HEAD/migrations/2_deploy_contracts.js -------------------------------------------------------------------------------- /mnemonic.js.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/smart_contracts/HEAD/mnemonic.js.dist -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/smart_contracts/HEAD/package.json -------------------------------------------------------------------------------- /scripts/getabi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/smart_contracts/HEAD/scripts/getabi.py -------------------------------------------------------------------------------- /scripts/install.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/smart_contracts/HEAD/scripts/install.bash -------------------------------------------------------------------------------- /scripts/prepTestRPC.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/smart_contracts/HEAD/scripts/prepTestRPC.bash -------------------------------------------------------------------------------- /scripts/prepTestRPC/mint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/smart_contracts/HEAD/scripts/prepTestRPC/mint.js -------------------------------------------------------------------------------- /scripts/prepTestRPC/sampleBounty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/smart_contracts/HEAD/scripts/prepTestRPC/sampleBounty.js -------------------------------------------------------------------------------- /scripts/prepTestRPC/sendETH.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/smart_contracts/HEAD/scripts/prepTestRPC/sendETH.js -------------------------------------------------------------------------------- /scripts/stats/dilligence_scoping.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/smart_contracts/HEAD/scripts/stats/dilligence_scoping.bash -------------------------------------------------------------------------------- /scripts/stats/get_coverage_num.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/smart_contracts/HEAD/scripts/stats/get_coverage_num.bash -------------------------------------------------------------------------------- /test/bounty/bounty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/smart_contracts/HEAD/test/bounty/bounty.js -------------------------------------------------------------------------------- /test/token/ERC20.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/smart_contracts/HEAD/test/token/ERC20.js -------------------------------------------------------------------------------- /test/tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/smart_contracts/HEAD/test/tools.js -------------------------------------------------------------------------------- /truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/smart_contracts/HEAD/truffle.js --------------------------------------------------------------------------------