├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── LICENSE.txt ├── README.md ├── conf ├── config.json └── historical │ ├── founders.json │ ├── preBuyers.json │ ├── sale.json │ └── token.json ├── contracts ├── AttributeStore.sol ├── Challenge.sol ├── DLL.sol ├── Migrations.sol ├── PLCRVoting.sol ├── Parameterizer.sol ├── Registry.sol └── historical │ ├── Disbursement.sol │ ├── Filter.sol │ ├── HumanStandardToken.sol │ ├── Migrations.sol │ ├── Sale.sol │ ├── StandardToken.sol │ └── Token.sol ├── migrations ├── 1_initial_migration.js ├── 2_optional_deploy_historical.js └── 3_deploy_contracts.js ├── package.json ├── s3push.js ├── test.js ├── test ├── parameterizer.js ├── registry.js └── utils.js └── truffle.js /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdChain/AdChainRegistry/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "airbnb-base" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdChain/AdChainRegistry/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdChain/AdChainRegistry/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdChain/AdChainRegistry/HEAD/README.md -------------------------------------------------------------------------------- /conf/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdChain/AdChainRegistry/HEAD/conf/config.json -------------------------------------------------------------------------------- /conf/historical/founders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdChain/AdChainRegistry/HEAD/conf/historical/founders.json -------------------------------------------------------------------------------- /conf/historical/preBuyers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdChain/AdChainRegistry/HEAD/conf/historical/preBuyers.json -------------------------------------------------------------------------------- /conf/historical/sale.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdChain/AdChainRegistry/HEAD/conf/historical/sale.json -------------------------------------------------------------------------------- /conf/historical/token.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdChain/AdChainRegistry/HEAD/conf/historical/token.json -------------------------------------------------------------------------------- /contracts/AttributeStore.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdChain/AdChainRegistry/HEAD/contracts/AttributeStore.sol -------------------------------------------------------------------------------- /contracts/Challenge.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdChain/AdChainRegistry/HEAD/contracts/Challenge.sol -------------------------------------------------------------------------------- /contracts/DLL.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdChain/AdChainRegistry/HEAD/contracts/DLL.sol -------------------------------------------------------------------------------- /contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdChain/AdChainRegistry/HEAD/contracts/Migrations.sol -------------------------------------------------------------------------------- /contracts/PLCRVoting.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdChain/AdChainRegistry/HEAD/contracts/PLCRVoting.sol -------------------------------------------------------------------------------- /contracts/Parameterizer.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdChain/AdChainRegistry/HEAD/contracts/Parameterizer.sol -------------------------------------------------------------------------------- /contracts/Registry.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdChain/AdChainRegistry/HEAD/contracts/Registry.sol -------------------------------------------------------------------------------- /contracts/historical/Disbursement.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdChain/AdChainRegistry/HEAD/contracts/historical/Disbursement.sol -------------------------------------------------------------------------------- /contracts/historical/Filter.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdChain/AdChainRegistry/HEAD/contracts/historical/Filter.sol -------------------------------------------------------------------------------- /contracts/historical/HumanStandardToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdChain/AdChainRegistry/HEAD/contracts/historical/HumanStandardToken.sol -------------------------------------------------------------------------------- /contracts/historical/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdChain/AdChainRegistry/HEAD/contracts/historical/Migrations.sol -------------------------------------------------------------------------------- /contracts/historical/Sale.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdChain/AdChainRegistry/HEAD/contracts/historical/Sale.sol -------------------------------------------------------------------------------- /contracts/historical/StandardToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdChain/AdChainRegistry/HEAD/contracts/historical/StandardToken.sol -------------------------------------------------------------------------------- /contracts/historical/Token.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdChain/AdChainRegistry/HEAD/contracts/historical/Token.sol -------------------------------------------------------------------------------- /migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdChain/AdChainRegistry/HEAD/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /migrations/2_optional_deploy_historical.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdChain/AdChainRegistry/HEAD/migrations/2_optional_deploy_historical.js -------------------------------------------------------------------------------- /migrations/3_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdChain/AdChainRegistry/HEAD/migrations/3_deploy_contracts.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdChain/AdChainRegistry/HEAD/package.json -------------------------------------------------------------------------------- /s3push.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdChain/AdChainRegistry/HEAD/s3push.js -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdChain/AdChainRegistry/HEAD/test.js -------------------------------------------------------------------------------- /test/parameterizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdChain/AdChainRegistry/HEAD/test/parameterizer.js -------------------------------------------------------------------------------- /test/registry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdChain/AdChainRegistry/HEAD/test/registry.js -------------------------------------------------------------------------------- /test/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdChain/AdChainRegistry/HEAD/test/utils.js -------------------------------------------------------------------------------- /truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdChain/AdChainRegistry/HEAD/truffle.js --------------------------------------------------------------------------------