{"id":51165388,"url":"https://github.com/0xhappydev/evm-timlock-dex","last_synced_at":"2026-06-26T18:31:03.476Z","repository":{"id":339300032,"uuid":"1081696269","full_name":"0xhappydev/evm-timlock-dex","owner":"0xhappydev","description":"This project introduces a timelocked token for DEX purchases on EVM-compatible networks. It delays token access after buying, promoting secure and controlled trading.","archived":false,"fork":false,"pushed_at":"2025-10-23T06:46:35.000Z","size":428,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-24T22:00:03.171Z","etag":null,"topics":["dex","evm","timelock"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/0xhappydev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-10-23T06:46:16.000Z","updated_at":"2025-10-23T06:49:53.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/0xhappydev/evm-timlock-dex","commit_stats":null,"previous_names":["0xhappydev/evm-timlock-dex"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/0xhappydev/evm-timlock-dex","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xhappydev%2Fevm-timlock-dex","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xhappydev%2Fevm-timlock-dex/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xhappydev%2Fevm-timlock-dex/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xhappydev%2Fevm-timlock-dex/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/0xhappydev","download_url":"https://codeload.github.com/0xhappydev/evm-timlock-dex/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xhappydev%2Fevm-timlock-dex/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34829415,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-26T02:00:06.560Z","response_time":106,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dex","evm","timelock"],"created_at":"2026-06-26T18:31:02.784Z","updated_at":"2026-06-26T18:31:03.470Z","avatar_url":"https://github.com/0xhappydev.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Token Contract\n\n## About\n* It is a ERC20-based native token contract for the project.\n* For more, refer [Wiki](https://github.com/UnicoinOfficial/token-contract/wiki).\n\n## Installation\n```console\n$ npm install\n```\n\n## Usage\n\n### Build\n```console\n$ npx hardhat compile\n```\n\n### Test\n```console\n$ npx hardhat test\n```\n\n### Deploying contracts to localhost Hardhat EVM\n#### localhost-1\n```console\n// on terminal-1\n$ npx hardhat node\n\n// on terminal-2\n$ npx hardhat run deployment/hardhat/ETH/deploy_hardhat_eth.ts --network localhost1\n```\n\n#### localhost-2\n```console\n// on terminal-1\n$ npx hardhat node\n\n// on terminal-2\n$ npx hardhat run deployment/hardhat/BSC/deploy_hardhat_bsc.ts --network localhost2\n```\n\n### Deploying contracts to Testnet (Public)\n#### ETH Testnet - Rinkeby\n* Environment variables\n\t- Create a `.env` file with its values:\n```\nINFURA_API_KEY=[YOUR_INFURA_API_KEY_HERE]\nSPEEDY_NODE_KEY=[YOUR_SPEEDY_NODE_KEY_HERE]\nDEPLOYER_PRIVATE_KEY=[YOUR_DEPLOYER_PRIVATE_KEY_without_0x]\nREPORT_GAS=\u003ctrue_or_false\u003e\n```\n\n* Deploy the token on one-chain\n```console\n$ npx hardhat run deployment/testnet/ETH/deploy_testnet_eth.ts  --network rinkeby\n```\n\n#### BSC Testnet\n* Environment variables\n\t- Create a `.env` file with its values:\n```\nINFURA_API_KEY=[YOUR_INFURA_API_KEY_HERE]\nSPEEDY_NODE_KEY=[YOUR_SPEEDY_NODE_KEY_HERE]\nDEPLOYER_PRIVATE_KEY=[YOUR_DEPLOYER_PRIVATE_KEY_without_0x]\nREPORT_GAS=\u003ctrue_or_false\u003e\n```\n\n* Deploy the token on one-chain\n```console\n$ npx hardhat run deployment/testnet/BSC/deploy_testnet_bsc.ts  --network bsctest\n```\n\n\n\n### Deploying contracts to Mainnet\n#### ETH Mainnet\n* Environment variables\n\t- Create a `.env` file with its values:\n```\nINFURA_API_KEY=[YOUR_INFURA_API_KEY_HERE]\nSPEEDY_NODE_KEY=[YOUR_SPEEDY_NODE_KEY_HERE]\nDEPLOYER_PRIVATE_KEY=[YOUR_DEPLOYER_PRIVATE_KEY_without_0x]\nREPORT_GAS=\u003ctrue_or_false\u003e\n```\n\n* Deploy the token on one-chain\n```console\n$ npx hardhat run deployment/testnet/ETH/deploy_mainnet_eth.ts  --network eth\n```\n\n#### BSC Mainnet\n* Environment variables\n\t- Create a `.env` file with its values:\n```\nINFURA_API_KEY=[YOUR_INFURA_API_KEY_HERE]\nSPEEDY_NODE_KEY=[YOUR_SPEEDY_NODE_KEY_HERE]\nDEPLOYER_PRIVATE_KEY=[YOUR_DEPLOYER_PRIVATE_KEY_without_0x]\nREPORT_GAS=\u003ctrue_or_false\u003e\n```\n\n* Deploy the token on one-chain\n```console\n$ npx hardhat run deployment/testnet/BSC/deploy_mainnet_bsc.ts  --network bsc\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F0xhappydev%2Fevm-timlock-dex","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F0xhappydev%2Fevm-timlock-dex","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F0xhappydev%2Fevm-timlock-dex/lists"}