├── .gitignore ├── README.md ├── artifacts ├── @openzeppelin │ └── contracts │ │ ├── access │ │ └── Ownable.sol │ │ │ ├── Ownable.dbg.json │ │ │ └── Ownable.json │ │ ├── interfaces │ │ └── draft-IERC6093.sol │ │ │ ├── IERC1155Errors.dbg.json │ │ │ ├── IERC1155Errors.json │ │ │ ├── IERC20Errors.dbg.json │ │ │ ├── IERC20Errors.json │ │ │ ├── IERC721Errors.dbg.json │ │ │ └── IERC721Errors.json │ │ ├── token │ │ └── ERC20 │ │ │ ├── ERC20.sol │ │ │ ├── ERC20.dbg.json │ │ │ └── ERC20.json │ │ │ ├── IERC20.sol │ │ │ ├── IERC20.dbg.json │ │ │ └── IERC20.json │ │ │ └── extensions │ │ │ └── IERC20Metadata.sol │ │ │ ├── IERC20Metadata.dbg.json │ │ │ └── IERC20Metadata.json │ │ └── utils │ │ └── Context.sol │ │ ├── Context.dbg.json │ │ └── Context.json ├── build-info │ └── f765e202ef6eba23b7c8522c59a88be2.json └── contracts │ ├── Lock.sol │ ├── Lock.dbg.json │ └── Lock.json │ └── MyToken.sol │ ├── MyToken.dbg.json │ └── MyToken.json ├── cache └── solidity-files-cache.json ├── contracts ├── Lock.sol └── MyToken.sol ├── hardhat.config.js ├── ignition └── modules │ └── Lock.js ├── package.json └── test └── Lock.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | *.log 3 | .env 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaCrypto4/erc20token/HEAD/README.md -------------------------------------------------------------------------------- /artifacts/@openzeppelin/contracts/access/Ownable.sol/Ownable.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaCrypto4/erc20token/HEAD/artifacts/@openzeppelin/contracts/access/Ownable.sol/Ownable.dbg.json -------------------------------------------------------------------------------- /artifacts/@openzeppelin/contracts/access/Ownable.sol/Ownable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaCrypto4/erc20token/HEAD/artifacts/@openzeppelin/contracts/access/Ownable.sol/Ownable.json -------------------------------------------------------------------------------- /artifacts/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC1155Errors.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaCrypto4/erc20token/HEAD/artifacts/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC1155Errors.dbg.json -------------------------------------------------------------------------------- /artifacts/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC1155Errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaCrypto4/erc20token/HEAD/artifacts/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC1155Errors.json -------------------------------------------------------------------------------- /artifacts/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC20Errors.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaCrypto4/erc20token/HEAD/artifacts/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC20Errors.dbg.json -------------------------------------------------------------------------------- /artifacts/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC20Errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaCrypto4/erc20token/HEAD/artifacts/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC20Errors.json -------------------------------------------------------------------------------- /artifacts/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaCrypto4/erc20token/HEAD/artifacts/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors.dbg.json -------------------------------------------------------------------------------- /artifacts/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaCrypto4/erc20token/HEAD/artifacts/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors.json -------------------------------------------------------------------------------- /artifacts/@openzeppelin/contracts/token/ERC20/ERC20.sol/ERC20.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaCrypto4/erc20token/HEAD/artifacts/@openzeppelin/contracts/token/ERC20/ERC20.sol/ERC20.dbg.json -------------------------------------------------------------------------------- /artifacts/@openzeppelin/contracts/token/ERC20/ERC20.sol/ERC20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaCrypto4/erc20token/HEAD/artifacts/@openzeppelin/contracts/token/ERC20/ERC20.sol/ERC20.json -------------------------------------------------------------------------------- /artifacts/@openzeppelin/contracts/token/ERC20/IERC20.sol/IERC20.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaCrypto4/erc20token/HEAD/artifacts/@openzeppelin/contracts/token/ERC20/IERC20.sol/IERC20.dbg.json -------------------------------------------------------------------------------- /artifacts/@openzeppelin/contracts/token/ERC20/IERC20.sol/IERC20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaCrypto4/erc20token/HEAD/artifacts/@openzeppelin/contracts/token/ERC20/IERC20.sol/IERC20.json -------------------------------------------------------------------------------- /artifacts/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol/IERC20Metadata.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaCrypto4/erc20token/HEAD/artifacts/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol/IERC20Metadata.dbg.json -------------------------------------------------------------------------------- /artifacts/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol/IERC20Metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaCrypto4/erc20token/HEAD/artifacts/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol/IERC20Metadata.json -------------------------------------------------------------------------------- /artifacts/@openzeppelin/contracts/utils/Context.sol/Context.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaCrypto4/erc20token/HEAD/artifacts/@openzeppelin/contracts/utils/Context.sol/Context.dbg.json -------------------------------------------------------------------------------- /artifacts/@openzeppelin/contracts/utils/Context.sol/Context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaCrypto4/erc20token/HEAD/artifacts/@openzeppelin/contracts/utils/Context.sol/Context.json -------------------------------------------------------------------------------- /artifacts/build-info/f765e202ef6eba23b7c8522c59a88be2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaCrypto4/erc20token/HEAD/artifacts/build-info/f765e202ef6eba23b7c8522c59a88be2.json -------------------------------------------------------------------------------- /artifacts/contracts/Lock.sol/Lock.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaCrypto4/erc20token/HEAD/artifacts/contracts/Lock.sol/Lock.dbg.json -------------------------------------------------------------------------------- /artifacts/contracts/Lock.sol/Lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaCrypto4/erc20token/HEAD/artifacts/contracts/Lock.sol/Lock.json -------------------------------------------------------------------------------- /artifacts/contracts/MyToken.sol/MyToken.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaCrypto4/erc20token/HEAD/artifacts/contracts/MyToken.sol/MyToken.dbg.json -------------------------------------------------------------------------------- /artifacts/contracts/MyToken.sol/MyToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaCrypto4/erc20token/HEAD/artifacts/contracts/MyToken.sol/MyToken.json -------------------------------------------------------------------------------- /cache/solidity-files-cache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaCrypto4/erc20token/HEAD/cache/solidity-files-cache.json -------------------------------------------------------------------------------- /contracts/Lock.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaCrypto4/erc20token/HEAD/contracts/Lock.sol -------------------------------------------------------------------------------- /contracts/MyToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaCrypto4/erc20token/HEAD/contracts/MyToken.sol -------------------------------------------------------------------------------- /hardhat.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaCrypto4/erc20token/HEAD/hardhat.config.js -------------------------------------------------------------------------------- /ignition/modules/Lock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaCrypto4/erc20token/HEAD/ignition/modules/Lock.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaCrypto4/erc20token/HEAD/package.json -------------------------------------------------------------------------------- /test/Lock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaCrypto4/erc20token/HEAD/test/Lock.js --------------------------------------------------------------------------------