├── .circleci └── config.yml ├── .editorconfig ├── .gitignore ├── .mnemonic.template ├── .private-keys.template ├── .soliumignore ├── .soliumrc.json ├── CONTRIBUTING.md ├── README.md ├── contracts ├── Migrations.sol ├── Referral.sol ├── examples │ └── BetWithReferral.sol └── mocks │ └── ReferralMock.sol ├── migrations ├── 1_initial_migration.js └── 2_deploy.js ├── package.json ├── test ├── referral.js └── utils │ ├── Date.js │ └── constants.js ├── truffle-config.js └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thundercore/referral-solidity/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thundercore/referral-solidity/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thundercore/referral-solidity/HEAD/.gitignore -------------------------------------------------------------------------------- /.mnemonic.template: -------------------------------------------------------------------------------- 1 | # Replace this line with your mnemonic 2 | -------------------------------------------------------------------------------- /.private-keys.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thundercore/referral-solidity/HEAD/.private-keys.template -------------------------------------------------------------------------------- /.soliumignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | contracts/Migrations.sol 3 | -------------------------------------------------------------------------------- /.soliumrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thundercore/referral-solidity/HEAD/.soliumrc.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thundercore/referral-solidity/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thundercore/referral-solidity/HEAD/README.md -------------------------------------------------------------------------------- /contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thundercore/referral-solidity/HEAD/contracts/Migrations.sol -------------------------------------------------------------------------------- /contracts/Referral.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thundercore/referral-solidity/HEAD/contracts/Referral.sol -------------------------------------------------------------------------------- /contracts/examples/BetWithReferral.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thundercore/referral-solidity/HEAD/contracts/examples/BetWithReferral.sol -------------------------------------------------------------------------------- /contracts/mocks/ReferralMock.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thundercore/referral-solidity/HEAD/contracts/mocks/ReferralMock.sol -------------------------------------------------------------------------------- /migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thundercore/referral-solidity/HEAD/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /migrations/2_deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thundercore/referral-solidity/HEAD/migrations/2_deploy.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thundercore/referral-solidity/HEAD/package.json -------------------------------------------------------------------------------- /test/referral.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thundercore/referral-solidity/HEAD/test/referral.js -------------------------------------------------------------------------------- /test/utils/Date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thundercore/referral-solidity/HEAD/test/utils/Date.js -------------------------------------------------------------------------------- /test/utils/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thundercore/referral-solidity/HEAD/test/utils/constants.js -------------------------------------------------------------------------------- /truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thundercore/referral-solidity/HEAD/truffle-config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thundercore/referral-solidity/HEAD/yarn.lock --------------------------------------------------------------------------------