├── .env.example ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .npmignore ├── .prettierignore ├── .prettierrc ├── .solhint.json ├── .solhintignore ├── README.md ├── contracts ├── BetToken.sol ├── CAddress.sol ├── Exp.sol └── IBetToken.sol ├── deploy ├── 00_deploy_bet.ts └── 01_deploy_exp.ts ├── hardhat.config.ts ├── package.json ├── scripts └── deploy.ts ├── test └── index.ts ├── tsconfig.json └── yarn.lock /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nishuzumi/ctf_betToken/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | artifacts 3 | cache 4 | coverage 5 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nishuzumi/ctf_betToken/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nishuzumi/ctf_betToken/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | hardhat.config.ts 2 | scripts 3 | test 4 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | artifacts 3 | cache 4 | coverage* 5 | gasReporterOutput.json 6 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /.solhint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nishuzumi/ctf_betToken/HEAD/.solhint.json -------------------------------------------------------------------------------- /.solhintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nishuzumi/ctf_betToken/HEAD/README.md -------------------------------------------------------------------------------- /contracts/BetToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nishuzumi/ctf_betToken/HEAD/contracts/BetToken.sol -------------------------------------------------------------------------------- /contracts/CAddress.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nishuzumi/ctf_betToken/HEAD/contracts/CAddress.sol -------------------------------------------------------------------------------- /contracts/Exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nishuzumi/ctf_betToken/HEAD/contracts/Exp.sol -------------------------------------------------------------------------------- /contracts/IBetToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nishuzumi/ctf_betToken/HEAD/contracts/IBetToken.sol -------------------------------------------------------------------------------- /deploy/00_deploy_bet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nishuzumi/ctf_betToken/HEAD/deploy/00_deploy_bet.ts -------------------------------------------------------------------------------- /deploy/01_deploy_exp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nishuzumi/ctf_betToken/HEAD/deploy/01_deploy_exp.ts -------------------------------------------------------------------------------- /hardhat.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nishuzumi/ctf_betToken/HEAD/hardhat.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nishuzumi/ctf_betToken/HEAD/package.json -------------------------------------------------------------------------------- /scripts/deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nishuzumi/ctf_betToken/HEAD/scripts/deploy.ts -------------------------------------------------------------------------------- /test/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nishuzumi/ctf_betToken/HEAD/test/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nishuzumi/ctf_betToken/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nishuzumi/ctf_betToken/HEAD/yarn.lock --------------------------------------------------------------------------------