├── .gitignore ├── .solhint.json ├── README.md ├── contracts ├── DexExample.sol └── HoneypotToken.sol ├── hardhat.config.ts ├── package.json ├── test ├── HoneypotToken.test.ts ├── dex-example.contract.ts └── honeypot-token.contract.ts ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilych/honeypot-token-erc20/HEAD/.gitignore -------------------------------------------------------------------------------- /.solhint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilych/honeypot-token-erc20/HEAD/.solhint.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilych/honeypot-token-erc20/HEAD/README.md -------------------------------------------------------------------------------- /contracts/DexExample.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilych/honeypot-token-erc20/HEAD/contracts/DexExample.sol -------------------------------------------------------------------------------- /contracts/HoneypotToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilych/honeypot-token-erc20/HEAD/contracts/HoneypotToken.sol -------------------------------------------------------------------------------- /hardhat.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilych/honeypot-token-erc20/HEAD/hardhat.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilych/honeypot-token-erc20/HEAD/package.json -------------------------------------------------------------------------------- /test/HoneypotToken.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilych/honeypot-token-erc20/HEAD/test/HoneypotToken.test.ts -------------------------------------------------------------------------------- /test/dex-example.contract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilych/honeypot-token-erc20/HEAD/test/dex-example.contract.ts -------------------------------------------------------------------------------- /test/honeypot-token.contract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilych/honeypot-token-erc20/HEAD/test/honeypot-token.contract.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilych/honeypot-token-erc20/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilych/honeypot-token-erc20/HEAD/yarn.lock --------------------------------------------------------------------------------