ERC-20
Overview
Max Total Supply
1,000,000,000 BTCH
Holders
1,496
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
1,450,000 BTCHValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TokenERC20
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
//Made with Student Coin Terminal //SPDX-License-Identifier: NONE pragma solidity ^0.8.0; import {AccessControl} from "@openzeppelin/contracts/access/AccessControl.sol"; import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import {IToken} from "../interfaces/IToken.sol"; contract TokenERC20 is ERC20, AccessControl, IToken { // roles bytes32 public constant CAN_MINT_ROLE = keccak256("CAN MINT"); bytes32 public constant CAN_BURN_ROLE = keccak256("CAN BURN"); // basic uint8 private immutable _decimals; uint256 private immutable _cap; // tax uint8 public immutable tax; // sale address public immutable saleAddress; uint256 private immutable _saleSupply; // vesting address public immutable vestingAddress; uint256 private immutable _vestingSupply; // internal mapping(address => bool) public internalContracts; // errors error InvalidDecimals(uint8 decimals_); error SupplyGreaterThanCap( uint256 supply_, uint256 saleSupply_, uint256 vestingSupply_, uint256 cap_ ); error CapExceeded(uint256 amount_, uint256 cap_); error InvalidTransactionTax(uint256 percentage_); error InvalidAllowance(uint256 allowance_, uint256 amount_); error InvalidSaleConfig(address sale_, uint256 saleSupply_); error InvalidVestingConfig(address vesting_, uint256 vestingSupply_); constructor( string memory name_, string memory symbol_, bytes memory arguments_ ) ERC20(name_, symbol_) { // tx members address sender = tx.origin; // decode ( uint8 decimals_, uint256 cap_, uint256 initialSupply_, bool canMint_, bool canBurn_, uint8 tax_, address sale_, uint256 saleSupply_, address vesting_, uint256 vestingSupply_ ) = abi.decode( arguments_, (uint8, uint256, uint256, bool, bool, uint8, address, uint256, address, uint256) ); // verify decimals if (decimals_ > 18) { revert InvalidDecimals(decimals_); } // for uncapped use max uint256 if (cap_ == 0) { cap_ = type(uint256).max; } // verify supply if (initialSupply_ + saleSupply_ + vestingSupply_ > cap_) { revert SupplyGreaterThanCap(initialSupply_, saleSupply_, vestingSupply_, cap_); } // verify transaction tax if (tax_ > 100) { revert InvalidTransactionTax(tax_); } if ((saleSupply_ > 0 && sale_ == address(0x0)) || (saleSupply_ == 0 && sale_ != address(0x0))) { revert InvalidSaleConfig(sale_, saleSupply_); } if ( (vestingSupply_ > 0 && vesting_ == address(0x0)) || (vestingSupply_ == 0 && vesting_ != address(0x0)) ) { revert InvalidVestingConfig(vesting_, vestingSupply_); } // token _decimals = decimals_; _cap = cap_; tax = tax_; // mint supply if (initialSupply_ > 0) { _mint(sender, initialSupply_); } // setup sale saleAddress = sale_; _saleSupply = saleSupply_; if (sale_ != address(0x0)) { // internal internalContracts[sale_] = true; // mint _mint(sale_, saleSupply_); } else { if (saleSupply_ != 0) revert InvalidSaleConfig(sale_, saleSupply_); } // setup vesting vestingAddress = vesting_; _vestingSupply = vestingSupply_; if (vesting_ != address(0x0)) { // internal internalContracts[vesting_] = true; // mint _mint(vesting_, vestingSupply_); } else { if (vestingSupply_ != 0) revert InvalidVestingConfig(vesting_, vestingSupply_); } // base role setup _setupRole(DEFAULT_ADMIN_ROLE, sender); _setRoleAdmin(CAN_MINT_ROLE, DEFAULT_ADMIN_ROLE); _setRoleAdmin(CAN_BURN_ROLE, DEFAULT_ADMIN_ROLE); // mint role if (canMint_) { _setupRole(CAN_MINT_ROLE, sender); } // burn role if (canBurn_) { _setupRole(CAN_BURN_ROLE, sender); } // burn for sale if (sale_ != address(0x0)) { _setupRole(CAN_BURN_ROLE, sale_); } } // getters function decimals() public view virtual override returns (uint8) { return _decimals; } function cap() public view virtual returns (uint256) { return _cap; } function saleSupply() external view override returns (uint256) { return _saleSupply; } function vestingSupply() external view override returns (uint256) { return _vestingSupply; } // mint & burn function mint(address account, uint256 amount) external onlyRole(CAN_MINT_ROLE) { _mint(account, amount); } function burn(uint256 amount) external override onlyRole(CAN_BURN_ROLE) { _burn(msg.sender, amount); } function _mint(address account, uint256 amount) internal virtual override { uint256 sum = ERC20.totalSupply() + amount; if (sum > _cap) { revert CapExceeded(sum, _cap); } super._mint(account, amount); } // transfer function _calculateTax(uint256 amount) internal view returns (uint256, uint256) { uint256 burned = (amount * tax) / 100; uint256 untaxed = amount - burned; return (burned, untaxed); } function isNotInternalTransfer() private view returns (bool) { return !internalContracts[msg.sender]; } function transfer(address recipient, uint256 amount) public virtual override returns (bool) { if (tax > 0 && isNotInternalTransfer()) { // calculate tax (uint256 burned, uint256 untaxed) = _calculateTax(amount); // burn and transfer _burn(msg.sender, burned); return super.transfer(recipient, untaxed); } else { return super.transfer(recipient, amount); } } function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { if (tax > 0 && isNotInternalTransfer()) { // calculate tax (uint256 burned, uint256 untaxed) = _calculateTax(amount); // allowance for burn uint256 currentAllowance = allowance(sender, _msgSender()); if (currentAllowance < amount) { revert InvalidAllowance(currentAllowance, amount); } unchecked { _approve(sender, _msgSender(), currentAllowance - burned); } // burn and transfer _burn(sender, burned); return super.transferFrom(sender, recipient, untaxed); } else { return super.transferFrom(sender, recipient, amount); } } }
//Made with Student Coin Terminal //SPDX-License-Identifier: GPL-2.0-or-later pragma solidity ^0.8.0; interface IBurnable { function burn(uint256) external; }
//Made with Student Coin Terminal //SPDX-License-Identifier: GPL-2.0-or-later pragma solidity ^0.8.0; import {IBurnable} from "./IBurnable.sol"; import {ISaleSupply} from "./ISaleSupply.sol"; import {IVestingSupply} from "./IVestingSupply.sol"; interface IToken is IBurnable, ISaleSupply, IVestingSupply {}
//Made with Student Coin Terminal //SPDX-License-Identifier: GPL-2.0-or-later pragma solidity ^0.8.0; interface ISaleSupply { function saleSupply() external view returns (uint256); }
//Made with Student Coin Terminal //SPDX-License-Identifier: GPL-2.0-or-later pragma solidity ^0.8.0; interface IVestingSupply { function vestingSupply() external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (access/AccessControl.sol) pragma solidity ^0.8.0; import "./IAccessControl.sol"; import "../utils/Context.sol"; import "../utils/Strings.sol"; import "../utils/introspection/ERC165.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role, _msgSender()); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
//Made with Student Coin Terminal //SPDX-License-Identifier: NONE pragma solidity ^0.8.0; import {AccessControl} from "@openzeppelin/contracts/access/AccessControl.sol"; import {Configurable} from "../utils/Configurable.sol"; import {IWhitelist} from "../interfaces/IWhitelist.sol"; contract Whitelist is AccessControl, Configurable, IWhitelist { // roles bytes32 public constant CAN_MANAGE_ROLE = keccak256("CAN MANAGE"); // structs struct Member { address account; uint256 allowance; // zero allowance -> inf allowance } struct Whitelisted { uint256 allowance; // zero allowance -> not whitelisted uint256 used; } // storage mapping(address => Whitelisted) public members; address public sale; // events event AccountNotWhitelisted(address account); event NotEnoughAllowance(address account, uint256 allowance, uint256 amount); event WhitelistUpdated(uint256 created, uint256 updated, uint256 deleted); // errors error InvalidAccount(address account, uint8 i); error AccountAlreadyWhitelisted(address account); error AccountDoesNotExist(address account); error InvalidSender(address account); error UsedBiggerThanAllowance(address account, uint256 used, uint256 newAllowance); modifier onlySale() { address sender = msg.sender; if (sender != sale) { revert InvalidSender(sender); } _; } constructor(bytes memory arguments_) { // tx members address sender = tx.origin; // decode Member[] memory members_ = abi.decode(arguments_, (Member[])); for (uint8 i = 0; i < members_.length; i++) { // member Member memory member = members_[i]; // check address if (member.account == address(0x0)) { revert InvalidAccount(member.account, i); } if (member.allowance == 0) { member.allowance = type(uint256).max; } members[member.account] = Whitelisted(member.allowance, 0); } // role setup _setupRole(DEFAULT_ADMIN_ROLE, sender); _setRoleAdmin(CAN_MANAGE_ROLE, DEFAULT_ADMIN_ROLE); _setupRole(CAN_MANAGE_ROLE, sender); } function configure(address sale_) external onlyInState(State.UNCONFIGURED) onlyRole(DEFAULT_ADMIN_ROLE) { // storage sale = sale_; // state state = State.CONFIGURED; } function update( Member[] memory toCreate, Member[] memory toUpdate, address[] memory toDelete ) external onlyRole(CAN_MANAGE_ROLE) { // bulk create for (uint8 i = 0; i < toCreate.length; i++) { // create member if not exists Member memory member = toCreate[i]; if (members[member.account].allowance != 0) { revert AccountAlreadyWhitelisted(member.account); } if (member.allowance == 0) { member.allowance = type(uint256).max; } // optional allowance, used 0 members[member.account] = Whitelisted(member.allowance, 0); } // bulk update for (uint8 i = 0; i < toUpdate.length; i++) { // update member if exists Member memory member = toUpdate[i]; if (members[member.account].allowance == 0) { revert AccountDoesNotExist(member.account); } // zero allowance in input is max allowance if (member.allowance == 0) { member.allowance = type(uint256).max; } // revert if allowance limited and smaller than used uint256 used = members[member.account].used; if (used > member.allowance) { revert UsedBiggerThanAllowance(member.account, used, member.allowance); } // allowance updated, preserve used members[member.account].allowance = member.allowance; } // bulk delete for (uint8 i = 0; i < toDelete.length; i++) { // delete member if exists address account = toDelete[i]; if (members[account].allowance == 0) { revert AccountDoesNotExist(account); } // empty storage members[account] = Whitelisted(0, 0); } // event emit WhitelistUpdated(toCreate.length, toUpdate.length, toDelete.length); } function use(uint256 amount) external override onlyInState(State.CONFIGURED) onlySale returns (bool) { // tx.members address sender = tx.origin; // member Whitelisted memory whitelisted = members[sender]; // not whitelisted if (whitelisted.allowance == 0) { emit AccountNotWhitelisted(sender); return false; } // limit not enough uint256 allowance = whitelisted.allowance; if (allowance < whitelisted.used + amount) { emit NotEnoughAllowance(sender, allowance, amount); return false; } // storage and return members[sender].used += amount; return true; } }
//Made with Student Coin Terminal //SPDX-License-Identifier: NONE pragma solidity ^0.8.0; abstract contract Configurable { // enum enum State { UNCONFIGURED, CONFIGURED } // storage State public state = State.UNCONFIGURED; // modifier modifier onlyInState(State _state) { require(state == _state, "Invalid state"); _; } }
//Made with Student Coin Terminal //SPDX-License-Identifier: GPL-2.0-or-later pragma solidity ^0.8.0; interface IWhitelist { function use(uint256) external returns (bool); }
//Made with Student Coin Terminal //SPDX-License-Identifier: NONE pragma solidity ^0.8.0; import {AccessControl} from "@openzeppelin/contracts/access/AccessControl.sol"; import {Configurable} from "../utils/Configurable.sol"; import {ITokenERC20} from "../interfaces/ITokenERC20.sol"; import {IWhitelist} from "../interfaces/IWhitelist.sol"; contract Sale is AccessControl, Configurable { // stage struct Stage { uint256 supply; // stage supply uint256 rate; // tokens per wei (example: value 20 -> for 1 ETH gives 20 tokens) uint256 minAlloc; // minimum wei invested uint256 openingTime; uint256 closingTime; } struct Phase { Stage stage; uint256 soldTokens; uint256 weiRaised; } // storage Phase[] public stages; ITokenERC20 public erc20; IWhitelist public whitelist; address payable public immutable wallet; uint256 public immutable supply; // sale supply uint256 public immutable hardCap; // ether value of sale supply uint256 public weiRaised; // events event TokenPurchase( address indexed purchaser, address indexed beneficiary, uint256 value, uint256 amount ); event TokenBurn(uint256 amount); // basic errors error SaleNotActive(uint256 timestamp); error SaleNotFinished(uint256 timestamp); error NoTokensLeft(); // sale errors error InvalidConfig(uint256 supply, uint256 cap, address wallet, uint256 stagesCount); error SupplyMismatch(uint256 supply, uint256 totalSupply); error ValueMismatch(uint256 hardCap, uint256 totalValue); // stage errors error InvalidStageConfig(uint256 rate, uint8 i); error StartDateInThePast(uint256 start, uint256 now_, uint8 i); error StartDateNotBeforeEndDate(uint256 start, uint256 end, uint8 i); error SupplySmallerThanRate(uint256 supply, uint256 rate, uint8 i); // configuration errors error SupplyConfigurationMishmatch(uint256 saleSupply, uint256 supply); error BalanceNotEqualSupply(uint256 balance, uint256 supply); // buy errors error InvalidReceiver(address receiver); error NotEnoughBigInvestment(uint256 amount, uint256 minimum); error HardCapExceeded(uint256 amount, uint256 hardCap); error StageSupplyDrained(uint256 amount, uint256 supply); error WhitelistNotPassed(address member, uint256 weiAmount); // modifiers modifier onlyWhenActive() { getCurrentStage(); _; } modifier onlyWhenFinished() { uint256 timestamp = block.timestamp; if (timestamp < closingTime()) { revert SaleNotFinished(timestamp); } _; } constructor(bytes memory arguments_) { // tx members address sender = tx.origin; // decode (uint256 supply_, uint256 hardCap_, address wallet_, Stage[] memory stages_) = abi.decode( arguments_, (uint256, uint256, address, Stage[]) ); // sale config uint256 stagesCount = stages_.length; if ( supply_ == 0 || hardCap_ == 0 || wallet_ == address(0x0) || stagesCount == 0 || stagesCount > 16 ) { revert InvalidConfig(supply_, hardCap_, wallet_, stages_.length); } uint256 totalSupply; uint256 totalValue; uint256 lastClosingTime = block.timestamp; for (uint8 i = 0; i < stages_.length; i++) { Stage memory stage = stages_[i]; // stage config if (stage.rate == 0) { revert InvalidStageConfig(stage.rate, i); } // stage opening if (stage.openingTime < lastClosingTime) { revert StartDateInThePast(stage.openingTime, lastClosingTime, i); } // stage closing if (stage.openingTime >= stage.closingTime) { revert StartDateNotBeforeEndDate(stage.openingTime, stage.closingTime, i); } // requirement of OpenZeppelin crowdsale from V2 // FIXME: to discuss if support for other rates is needed // 1 token (decimals 0) -> MAX 1 wei // 1 token (decimals 1) -> MAX 10 wei // 1 token (decimals 5) -> MAX 100 000 wei // 1 MLN token (decimals 0) -> MAX 1 MLN wei if (stage.supply < stage.rate) { revert SupplySmallerThanRate(stage.supply, stage.rate, i); } // increment counters totalValue += stage.supply / stage.rate; lastClosingTime = stage.closingTime; totalSupply += stage.supply; // storage stages.push(Phase(stage, 0, 0)); } // sum of stages supply if (supply_ != totalSupply) { revert SupplyMismatch(supply_, totalSupply); } // sum of stages hard caps if (hardCap_ != totalValue) { revert ValueMismatch(hardCap_, totalValue); } // save storage supply = supply_; hardCap = hardCap_; wallet = payable(wallet_); // base role _setupRole(DEFAULT_ADMIN_ROLE, sender); } function configure(address erc20_, address whitelist_) external onlyInState(State.UNCONFIGURED) onlyRole(DEFAULT_ADMIN_ROLE) { // storage erc20 = ITokenERC20(erc20_); whitelist = IWhitelist(whitelist_); // check supply vs params uint256 saleSupply = erc20.saleSupply(); if (saleSupply != supply) { revert SupplyConfigurationMishmatch(saleSupply, supply); } // check configuration vs balance uint256 balance = erc20.balanceOf(address(this)); if (saleSupply != balance) { revert BalanceNotEqualSupply(balance, saleSupply); } // state state = State.CONFIGURED; } function buyTokens(address _beneficiary) external payable onlyInState(State.CONFIGURED) onlyWhenActive { // current state uint8 currentStage = getCurrentStage(); Phase memory phase = stages[currentStage]; // tx members uint256 weiAmount = msg.value; // validate receiver if (_beneficiary == address(0)) { revert InvalidReceiver(_beneficiary); } // check min invesment if (weiAmount < phase.stage.minAlloc) { revert NotEnoughBigInvestment(weiAmount, phase.stage.minAlloc); } // check hardcap uint256 raised = weiRaised + weiAmount; if (raised > hardCap) { revert HardCapExceeded(raised, hardCap); } // calculate token amount to be sold uint256 tokenAmount = weiAmount * phase.stage.rate; // check supply uint256 sold = phase.soldTokens + tokenAmount; if (sold > phase.stage.supply) { revert StageSupplyDrained(sold, phase.stage.supply); } // use whitelist if (address(whitelist) != address(0x0)) { bool success = whitelist.use(weiAmount); if (!success) { revert WhitelistNotPassed(msg.sender, weiAmount); } } // update state weiRaised = raised; stages[currentStage].weiRaised += weiAmount; stages[currentStage].soldTokens = sold; // store profits wallet.transfer(weiAmount); // send tokens erc20.transfer(_beneficiary, tokenAmount); emit TokenPurchase(msg.sender, _beneficiary, weiAmount, tokenAmount); } receive() external payable { this.buyTokens(msg.sender); } function stageCount() external view returns (uint256) { // frontend view return stages.length; } function rate() external view returns (uint256) { // rate from current stage return stages[getCurrentStage()].stage.rate; } function openingTime() external view returns (uint256) { // opening time of first stage return stages[0].stage.openingTime; } function closingTime() public view returns (uint256) { // closing time of last stage return stages[getLastStage()].stage.closingTime; } function tokensLeft() public view onlyInState(State.CONFIGURED) returns (uint256) { // tokens left on sale contract return erc20.balanceOf(address(this)); } function getLastStage() internal view returns (uint8) { return uint8(stages.length - 1); } function getCurrentStage() public view returns (uint8) { // tx.members uint256 timestamp = block.timestamp; // return active stage for (uint8 i = 0; i < stages.length; i++) { if (stages[i].stage.openingTime <= timestamp && timestamp <= stages[i].stage.closingTime) { return i; } } // revert if no active stage revert SaleNotActive(timestamp); } function hasClosed() external view returns (bool) { // OpenZeppelin standard method return block.timestamp > closingTime(); } function finalize() external onlyInState(State.CONFIGURED) onlyWhenFinished { // check tokens left uint256 tokenAmount = tokensLeft(); // revert if no tokens left if (tokenAmount == 0) { revert NoTokensLeft(); } // burn remaining tokens erc20.burn(tokenAmount); emit TokenBurn(tokenAmount); } }
//Made with Student Coin Terminal //SPDX-License-Identifier: GPL-2.0-or-later pragma solidity ^0.8.0; import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import {IToken} from "./IToken.sol"; interface ITokenERC20 is IERC20, IToken {}
//Made with Student Coin Terminal //SPDX-License-Identifier: NONE pragma solidity ^0.8.0; import {AccessControl} from "@openzeppelin/contracts/access/AccessControl.sol"; import {Math} from "@openzeppelin/contracts/utils/math/Math.sol"; import {Configurable} from "../utils/Configurable.sol"; import {ITokenERC20} from "../interfaces/ITokenERC20.sol"; contract Vesting is AccessControl, Configurable { // structs struct Shareholder { address account; uint8 shares; } struct Member { Shareholder shareholder; uint256 collected; uint8 lastCheckpoint; } // storage ITokenERC20 public erc20; mapping(address => Member) public members; // config uint256 public immutable supply; uint8 public immutable duration; // 1-60 uint256 public startTime; // events event Collected(address sender, uint256 amount, uint8 lastCheckpoint, uint8 newCheckpoint); // errors error InvalidConfig(uint256 supply_, uint8 duration_); error SharesNotInTheRange(address account, uint256 shares); error SharesNotSumTo100(uint256 total); error InvalidMember(address member); error NothingToCollect(address member, uint8 collected, uint8 checkpoint); error SupplyMismatch(uint256 balance, uint256 declared); error ConfigurationBalanceMishmatch(uint256 amount, uint256 balance); // modifiers modifier onlyMember() { if (members[msg.sender].shareholder.shares == 0) { revert InvalidMember(msg.sender); } _; } constructor(bytes memory arguments_) { // tx members address sender = tx.origin; (uint256 supply_, uint8 duration_, Shareholder[] memory shareholders_) = abi.decode( arguments_, (uint256, uint8, Shareholder[]) ); // check supply and duration if (supply_ == 0 || duration_ == 0 || duration_ > 60) { revert InvalidConfig(supply_, duration_); } // check members uint8 totalShares = 0; for (uint8 i = 0; i < shareholders_.length; i++) { Member memory member = Member(shareholders_[i], 0, 0); uint8 shares = member.shareholder.shares; address account = member.shareholder.account; // check address and individual shares if (account == address(0x0)) { revert InvalidMember(account); } if (shares == 0 || shares > 100) { revert SharesNotInTheRange(account, shares); } members[account] = member; totalShares += shares; } // check sum of shares if (totalShares != 100) { revert SharesNotSumTo100(totalShares); } // storage supply = supply_; duration = duration_; // base role _setupRole(DEFAULT_ADMIN_ROLE, sender); } function configure(address erc20_) external onlyInState(State.UNCONFIGURED) onlyRole(DEFAULT_ADMIN_ROLE) { // tx.members startTime = block.timestamp; // token erc20 = ITokenERC20(erc20_); // check balance vs supply uint256 balance = erc20.balanceOf(address(this)); if (balance != supply) { revert SupplyMismatch(balance, supply); } // check configuration vs balance uint256 vestingSupply = erc20.vestingSupply(); if (vestingSupply != balance) { revert ConfigurationBalanceMishmatch(vestingSupply, balance); } // state state = State.CONFIGURED; } function endTime() public view onlyInState(State.CONFIGURED) returns (uint256) { // start time + X months (where X is duration) return startTime + (30 days * duration); } function currentCheckpoint() public view onlyInState(State.CONFIGURED) returns (uint8) { // not started case -> 0 if (startTime > block.timestamp) return 0; // checkpoint = (now - start time) / month uint256 checkpoint = (block.timestamp - startTime) / 30 days; // checkpoint or cap to duration -> 0 ~ duration return uint8(Math.min(checkpoint, uint256(duration))); } function collect() external onlyInState(State.CONFIGURED) onlyMember { // tx.members address sender = msg.sender; // checkpoints uint8 checkpoint = currentCheckpoint(); uint8 lastCheckpoint = members[sender].lastCheckpoint; // revert if nothing to collect if (checkpoint <= lastCheckpoint) { revert NothingToCollect(sender, lastCheckpoint, checkpoint); } uint256 amount; if (checkpoint == duration) { // calculate remaining amount amount = (supply * members[sender].shareholder.shares) / 100 - members[sender].collected; } else { // current checkpoint - last checkpoint uint8 checkpointsToCollect = checkpoint - lastCheckpoint; // single batch amount uint256 partialSupply = supply / duration; // shares of single batch uint256 singleCheckpointAmount = (partialSupply * members[sender].shareholder.shares) / 100; // amount based on shares and checkpoints amount = checkpointsToCollect * singleCheckpointAmount; } // update state and transfer members[sender].lastCheckpoint = checkpoint; members[sender].collected += amount; erc20.transfer(sender, amount); // events emit Collected(sender, amount, lastCheckpoint, checkpoint); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a >= b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a / b + (a % b == 0 ? 0 : 1); } }
{ "remappings": [], "optimizer": { "enabled": true, "runs": 200 }, "evmVersion": "london", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"bytes","name":"arguments_","type":"bytes"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"uint256","name":"amount_","type":"uint256"},{"internalType":"uint256","name":"cap_","type":"uint256"}],"name":"CapExceeded","type":"error"},{"inputs":[{"internalType":"uint256","name":"allowance_","type":"uint256"},{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"InvalidAllowance","type":"error"},{"inputs":[{"internalType":"uint8","name":"decimals_","type":"uint8"}],"name":"InvalidDecimals","type":"error"},{"inputs":[{"internalType":"address","name":"sale_","type":"address"},{"internalType":"uint256","name":"saleSupply_","type":"uint256"}],"name":"InvalidSaleConfig","type":"error"},{"inputs":[{"internalType":"uint256","name":"percentage_","type":"uint256"}],"name":"InvalidTransactionTax","type":"error"},{"inputs":[{"internalType":"address","name":"vesting_","type":"address"},{"internalType":"uint256","name":"vestingSupply_","type":"uint256"}],"name":"InvalidVestingConfig","type":"error"},{"inputs":[{"internalType":"uint256","name":"supply_","type":"uint256"},{"internalType":"uint256","name":"saleSupply_","type":"uint256"},{"internalType":"uint256","name":"vestingSupply_","type":"uint256"},{"internalType":"uint256","name":"cap_","type":"uint256"}],"name":"SupplyGreaterThanCap","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"CAN_BURN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CAN_MINT_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"internalContracts","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"saleSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tax","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vestingAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"vestingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
6101606040523480156200001257600080fd5b50604051620021623803806200216283398101604081905262000035916200080d565b8251839083906200004e90600390602085019062000683565b5080516200006490600490602084019062000683565b50505060003290506000806000806000806000806000808b806020019051810190620000919190620008f3565b995099509950995099509950995099509950995060128a60ff161115620000d55760405163ca95039160e01b815260ff8b1660048201526024015b60405180910390fd5b88620000e15760001998505b8881620000ef858b6200099e565b620000fb91906200099e565b11156200013457604051636c0cb0a960e11b8152600481018990526024810184905260448101829052606481018a9052608401620000cc565b60648560ff161115620001605760405163391710a160e21b815260ff86166004820152602401620000cc565b6000831180156200017857506001600160a01b038416155b80620001965750821580156200019657506001600160a01b03841615155b15620001c85760405163683ca69160e01b81526001600160a01b038516600482015260248101849052604401620000cc565b600081118015620001e057506001600160a01b038216155b80620001fe575080158015620001fe57506001600160a01b03821615155b15620002305760405163221540cf60e01b81526001600160a01b038316600482015260248101829052604401620000cc565b60ff808b1660805260a08a9052851660c05287156200025557620002558b8962000424565b6001600160a01b03841660e081905261010084905215620002a5576001600160a01b0384166000908152600660205260409020805460ff191660011790556200029f848462000424565b620002d8565b8215620002d85760405163683ca69160e01b81526001600160a01b038516600482015260248101849052604401620000cc565b6001600160a01b0382166101208190526101408290521562000329576001600160a01b0382166000908152600660205260409020805460ff1916600117905562000323828262000424565b6200035c565b80156200035c5760405163221540cf60e01b81526001600160a01b038316600482015260248101829052604401620000cc565b6200036960008c62000499565b62000385600080516020620021228339815191526000620004a9565b620003a1600080516020620021428339815191526000620004a9565b8615620003c357620003c3600080516020620021228339815191528c62000499565b8515620003e557620003e5600080516020620021428339815191528c62000499565b6001600160a01b03841615620004105762000410600080516020620021428339815191528562000499565b505050505050505050505050505062000a02565b6000816200043c620004f460201b6200060e1760201c565b6200044891906200099e565b905060a0518111156200047d5760a05160405163f480e28560e01b8152620000cc918391600401918252602082015260400190565b620004948383620004fa60201b620009bd1760201c565b505050565b620004a58282620005df565b5050565b600082815260056020526040808220600101805490849055905190918391839186917fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff9190a4505050565b60025490565b6001600160a01b038216620005525760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620000cc565b80600260008282546200056691906200099e565b90915550506001600160a01b03821660009081526020819052604081208054839290620005959084906200099e565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b60008281526005602090815260408083206001600160a01b038516845290915290205460ff16620004a55760008281526005602090815260408083206001600160a01b03851684529091529020805460ff191660011790556200063f3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b8280546200069190620009c5565b90600052602060002090601f016020900481019282620006b5576000855562000700565b82601f10620006d057805160ff191683800117855562000700565b8280016001018555821562000700579182015b8281111562000700578251825591602001919060010190620006e3565b506200070e92915062000712565b5090565b5b808211156200070e576000815560010162000713565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b03808411156200075c576200075c62000729565b604051601f8501601f19908116603f0116810190828211818310171562000787576200078762000729565b81604052809350858152868686011115620007a157600080fd5b600092505b85831015620007c6578285015160208483010152602083019250620007a6565b85831115620007d9576000602087830101525b5050509392505050565b600082601f830112620007f557600080fd5b62000806838351602085016200073f565b9392505050565b6000806000606084860312156200082357600080fd5b83516001600160401b03808211156200083b57600080fd5b6200084987838801620007e3565b945060208601519150808211156200086057600080fd5b6200086e87838801620007e3565b935060408601519150808211156200088557600080fd5b508401601f810186136200089857600080fd5b620008a9868251602084016200073f565b9150509250925092565b805160ff81168114620008c557600080fd5b919050565b80518015158114620008c557600080fd5b80516001600160a01b0381168114620008c557600080fd5b6000806000806000806000806000806101408b8d0312156200091457600080fd5b6200091f8b620008b3565b995060208b0151985060408b015197506200093d60608c01620008ca565b96506200094d60808c01620008ca565b95506200095d60a08c01620008b3565b94506200096d60c08c01620008db565b935060e08b01519250620009856101008c01620008db565b91506101208b015190509295989b9194979a5092959850565b60008219821115620009c057634e487b7160e01b600052601160045260246000fd5b500190565b600181811c90821680620009da57607f821691505b60208210811415620009fc57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e0516101005161012051610140516116a262000a8060003960006102b701526000610482015260006104590152600061050d01526000818161040701528181610619015281816109150152610bcd0152600081816102dd01528181610f770152610fb30152600061028301526116a26000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c806350a5250311610104578063a217fddf116100a2578063c77c738711610071578063c77c73871461047d578063d547741f146104bc578063dd62ed3e146104cf578063fffe088d1461050857600080fd5b8063a217fddf14610429578063a457c2d714610431578063a9059cbb14610444578063a96af0f41461045757600080fd5b806391d14854116100de57806391d14854146103c057806395d89b41146103d357806396daa968146103db57806399c8d5561461040257600080fd5b806350a525031461034d5780636a5a77ee1461037457806370a082311461039757600080fd5b8063313ce5671161017157806336568abe1161014b57806336568abe14610301578063395093511461031457806340c10f191461032757806342966c681461033a57600080fd5b8063313ce56714610281578063332e5bad146102b5578063355274ea146102db57600080fd5b806318160ddd116101ad57806318160ddd1461022457806323b872dd14610236578063248a9ca3146102495780632f2ff15d1461026c57600080fd5b806301ffc9a7146101d457806306fdde03146101fc578063095ea7b314610211575b600080fd5b6101e76101e236600461135e565b61052f565b60405190151581526020015b60405180910390f35b610204610566565b6040516101f391906113b4565b6101e761021f366004611403565b6105f8565b6002545b6040519081526020016101f3565b6101e761024436600461142d565b610614565b610228610257366004611469565b60009081526005602052604090206001015490565b61027f61027a366004611482565b6106ee565b005b7f00000000000000000000000000000000000000000000000000000000000000005b60405160ff90911681526020016101f3565b7f0000000000000000000000000000000000000000000000000000000000000000610228565b7f0000000000000000000000000000000000000000000000000000000000000000610228565b61027f61030f366004611482565b610719565b6101e7610322366004611403565b610797565b61027f610335366004611403565b6107d3565b61027f610348366004611469565b610808565b6102287ffaff01ca95586d20085dce0eb9c384cf58df7a188cfe76211db71886c8a2c9cf81565b6101e76103823660046114ae565b60066020526000908152604090205460ff1681565b6102286103a53660046114ae565b6001600160a01b031660009081526020819052604090205490565b6101e76103ce366004611482565b61083d565b610204610868565b6102287f21d33b64d960084e4ecc472243d172cd20c1b4be33451d9ecb56e1b27cc707ac81565b6102a37f000000000000000000000000000000000000000000000000000000000000000081565b610228600081565b6101e761043f366004611403565b610877565b6101e7610452366004611403565b610910565b7f0000000000000000000000000000000000000000000000000000000000000000610228565b6104a47f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016101f3565b61027f6104ca366004611482565b610997565b6102286104dd3660046114c9565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6104a47f000000000000000000000000000000000000000000000000000000000000000081565b60006001600160e01b03198216637965db0b60e01b148061056057506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060038054610575906114f3565b80601f01602080910402602001604051908101604052809291908181526020018280546105a1906114f3565b80156105ee5780601f106105c3576101008083540402835291602001916105ee565b820191906000526020600020905b8154815290600101906020018083116105d157829003601f168201915b5050505050905090565b6000610605338484610a9c565b50600192915050565b60025490565b6000807f000000000000000000000000000000000000000000000000000000000000000060ff1611801561065857503360009081526006602052604090205460ff16155b156106d95760008061066984610bc0565b91509150600061067a876104dd3390565b9050848110156106ac576040516358c2849760e11b815260048101829052602481018690526044015b60405180910390fd5b6106ba87335b858403610a9c565b6106c48784610c17565b6106cf878784610d65565b93505050506106e7565b6106e4848484610d65565b90505b9392505050565b60008281526005602052604090206001015461070a8133610e0c565b6107148383610e70565b505050565b6001600160a01b03811633146107895760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084016106a3565b6107938282610ef6565b5050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916106059185906107ce908690611544565b610a9c565b7ffaff01ca95586d20085dce0eb9c384cf58df7a188cfe76211db71886c8a2c9cf6107fe8133610e0c565b6107148383610f5d565b7f21d33b64d960084e4ecc472243d172cd20c1b4be33451d9ecb56e1b27cc707ac6108338133610e0c565b6107933383610c17565b60009182526005602090815260408084206001600160a01b0393909316845291905290205460ff1690565b606060048054610575906114f3565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156108f95760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016106a3565b6109063385858403610a9c565b5060019392505050565b6000807f000000000000000000000000000000000000000000000000000000000000000060ff1611801561095457503360009081526006602052604090205460ff16155b156109865760008061096584610bc0565b915091506109733383610c17565b61097d8582610fe9565b92505050610560565b6109908383610fe9565b9050610560565b6000828152600560205260409020600101546109b38133610e0c565b6107148383610ef6565b6001600160a01b038216610a135760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016106a3565b8060026000828254610a259190611544565b90915550506001600160a01b03821660009081526020819052604081208054839290610a52908490611544565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038316610afe5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016106a3565b6001600160a01b038216610b5f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016106a3565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600080806064610bf360ff7f0000000000000000000000000000000000000000000000000000000000000000168661155c565b610bfd919061157b565b90506000610c0b828661159d565b91959194509092505050565b6001600160a01b038216610c775760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016106a3565b6001600160a01b03821660009081526020819052604090205481811015610ceb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016106a3565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610d1a90849061159d565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b6000610d72848484610ff2565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610df75760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016106a3565b610e0185336106b2565b506001949350505050565b610e16828261083d565b61079357610e2e816001600160a01b031660146111c2565b610e398360206111c2565b604051602001610e4a9291906115b4565b60408051601f198184030181529082905262461bcd60e51b82526106a3916004016113b4565b610e7a828261083d565b6107935760008281526005602090815260408083206001600160a01b03851684529091529020805460ff19166001179055610eb23390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b610f00828261083d565b156107935760008281526005602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b600081610f6960025490565b610f739190611544565b90507f0000000000000000000000000000000000000000000000000000000000000000811115610fdf5760405163f480e28560e01b8152600481018290527f000000000000000000000000000000000000000000000000000000000000000060248201526044016106a3565b61071483836109bd565b60006106053384845b6001600160a01b0383166110565760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016106a3565b6001600160a01b0382166110b85760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016106a3565b6001600160a01b038316600090815260208190526040902054818110156111305760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016106a3565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611167908490611544565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111b391815260200190565b60405180910390a35b50505050565b606060006111d183600261155c565b6111dc906002611544565b67ffffffffffffffff8111156111f4576111f4611629565b6040519080825280601f01601f19166020018201604052801561121e576020820181803683370190505b509050600360fc1b816000815181106112395761123961163f565b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106112685761126861163f565b60200101906001600160f81b031916908160001a905350600061128c84600261155c565b611297906001611544565b90505b600181111561130f576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106112cb576112cb61163f565b1a60f81b8282815181106112e1576112e161163f565b60200101906001600160f81b031916908160001a90535060049490941c9361130881611655565b905061129a565b5083156106e75760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016106a3565b60006020828403121561137057600080fd5b81356001600160e01b0319811681146106e757600080fd5b60005b838110156113a357818101518382015260200161138b565b838111156111bc5750506000910152565b60208152600082518060208401526113d3816040850160208701611388565b601f01601f19169190910160400192915050565b80356001600160a01b03811681146113fe57600080fd5b919050565b6000806040838503121561141657600080fd5b61141f836113e7565b946020939093013593505050565b60008060006060848603121561144257600080fd5b61144b846113e7565b9250611459602085016113e7565b9150604084013590509250925092565b60006020828403121561147b57600080fd5b5035919050565b6000806040838503121561149557600080fd5b823591506114a5602084016113e7565b90509250929050565b6000602082840312156114c057600080fd5b6106e7826113e7565b600080604083850312156114dc57600080fd5b6114e5836113e7565b91506114a5602084016113e7565b600181811c9082168061150757607f821691505b6020821081141561152857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156115575761155761152e565b500190565b60008160001904831182151516156115765761157661152e565b500290565b60008261159857634e487b7160e01b600052601260045260246000fd5b500490565b6000828210156115af576115af61152e565b500390565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516115ec816017850160208801611388565b7001034b99036b4b9b9b4b733903937b6329607d1b601791840191820152835161161d816028840160208801611388565b01602801949350505050565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6000816116645761166461152e565b50600019019056fea26469706673582212206803b80aeb6d8ef9988f8d3c77752a43dcdba37e8ca57b5e3f4299ac5882e11864736f6c63430008090033faff01ca95586d20085dce0eb9c384cf58df7a188cfe76211db71886c8a2c9cf21d33b64d960084e4ecc472243d172cd20c1b4be33451d9ecb56e1b27cc707ac000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000f424954434f494e2048554e54455253000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044254434800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000033b2e3c9fd0803ce80000000000000000000000000000000000000000000000033b2e3c9fd0803ce80000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c806350a5250311610104578063a217fddf116100a2578063c77c738711610071578063c77c73871461047d578063d547741f146104bc578063dd62ed3e146104cf578063fffe088d1461050857600080fd5b8063a217fddf14610429578063a457c2d714610431578063a9059cbb14610444578063a96af0f41461045757600080fd5b806391d14854116100de57806391d14854146103c057806395d89b41146103d357806396daa968146103db57806399c8d5561461040257600080fd5b806350a525031461034d5780636a5a77ee1461037457806370a082311461039757600080fd5b8063313ce5671161017157806336568abe1161014b57806336568abe14610301578063395093511461031457806340c10f191461032757806342966c681461033a57600080fd5b8063313ce56714610281578063332e5bad146102b5578063355274ea146102db57600080fd5b806318160ddd116101ad57806318160ddd1461022457806323b872dd14610236578063248a9ca3146102495780632f2ff15d1461026c57600080fd5b806301ffc9a7146101d457806306fdde03146101fc578063095ea7b314610211575b600080fd5b6101e76101e236600461135e565b61052f565b60405190151581526020015b60405180910390f35b610204610566565b6040516101f391906113b4565b6101e761021f366004611403565b6105f8565b6002545b6040519081526020016101f3565b6101e761024436600461142d565b610614565b610228610257366004611469565b60009081526005602052604090206001015490565b61027f61027a366004611482565b6106ee565b005b7f00000000000000000000000000000000000000000000000000000000000000125b60405160ff90911681526020016101f3565b7f0000000000000000000000000000000000000000000000000000000000000000610228565b7f0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000610228565b61027f61030f366004611482565b610719565b6101e7610322366004611403565b610797565b61027f610335366004611403565b6107d3565b61027f610348366004611469565b610808565b6102287ffaff01ca95586d20085dce0eb9c384cf58df7a188cfe76211db71886c8a2c9cf81565b6101e76103823660046114ae565b60066020526000908152604090205460ff1681565b6102286103a53660046114ae565b6001600160a01b031660009081526020819052604090205490565b6101e76103ce366004611482565b61083d565b610204610868565b6102287f21d33b64d960084e4ecc472243d172cd20c1b4be33451d9ecb56e1b27cc707ac81565b6102a37f000000000000000000000000000000000000000000000000000000000000000081565b610228600081565b6101e761043f366004611403565b610877565b6101e7610452366004611403565b610910565b7f0000000000000000000000000000000000000000000000000000000000000000610228565b6104a47f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016101f3565b61027f6104ca366004611482565b610997565b6102286104dd3660046114c9565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6104a47f000000000000000000000000000000000000000000000000000000000000000081565b60006001600160e01b03198216637965db0b60e01b148061056057506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060038054610575906114f3565b80601f01602080910402602001604051908101604052809291908181526020018280546105a1906114f3565b80156105ee5780601f106105c3576101008083540402835291602001916105ee565b820191906000526020600020905b8154815290600101906020018083116105d157829003601f168201915b5050505050905090565b6000610605338484610a9c565b50600192915050565b60025490565b6000807f000000000000000000000000000000000000000000000000000000000000000060ff1611801561065857503360009081526006602052604090205460ff16155b156106d95760008061066984610bc0565b91509150600061067a876104dd3390565b9050848110156106ac576040516358c2849760e11b815260048101829052602481018690526044015b60405180910390fd5b6106ba87335b858403610a9c565b6106c48784610c17565b6106cf878784610d65565b93505050506106e7565b6106e4848484610d65565b90505b9392505050565b60008281526005602052604090206001015461070a8133610e0c565b6107148383610e70565b505050565b6001600160a01b03811633146107895760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084016106a3565b6107938282610ef6565b5050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916106059185906107ce908690611544565b610a9c565b7ffaff01ca95586d20085dce0eb9c384cf58df7a188cfe76211db71886c8a2c9cf6107fe8133610e0c565b6107148383610f5d565b7f21d33b64d960084e4ecc472243d172cd20c1b4be33451d9ecb56e1b27cc707ac6108338133610e0c565b6107933383610c17565b60009182526005602090815260408084206001600160a01b0393909316845291905290205460ff1690565b606060048054610575906114f3565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156108f95760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016106a3565b6109063385858403610a9c565b5060019392505050565b6000807f000000000000000000000000000000000000000000000000000000000000000060ff1611801561095457503360009081526006602052604090205460ff16155b156109865760008061096584610bc0565b915091506109733383610c17565b61097d8582610fe9565b92505050610560565b6109908383610fe9565b9050610560565b6000828152600560205260409020600101546109b38133610e0c565b6107148383610ef6565b6001600160a01b038216610a135760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016106a3565b8060026000828254610a259190611544565b90915550506001600160a01b03821660009081526020819052604081208054839290610a52908490611544565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038316610afe5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016106a3565b6001600160a01b038216610b5f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016106a3565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600080806064610bf360ff7f0000000000000000000000000000000000000000000000000000000000000000168661155c565b610bfd919061157b565b90506000610c0b828661159d565b91959194509092505050565b6001600160a01b038216610c775760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016106a3565b6001600160a01b03821660009081526020819052604090205481811015610ceb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016106a3565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610d1a90849061159d565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b6000610d72848484610ff2565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610df75760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016106a3565b610e0185336106b2565b506001949350505050565b610e16828261083d565b61079357610e2e816001600160a01b031660146111c2565b610e398360206111c2565b604051602001610e4a9291906115b4565b60408051601f198184030181529082905262461bcd60e51b82526106a3916004016113b4565b610e7a828261083d565b6107935760008281526005602090815260408083206001600160a01b03851684529091529020805460ff19166001179055610eb23390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b610f00828261083d565b156107935760008281526005602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b600081610f6960025490565b610f739190611544565b90507f0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000811115610fdf5760405163f480e28560e01b8152600481018290527f0000000000000000000000000000000000000000033b2e3c9fd0803ce800000060248201526044016106a3565b61071483836109bd565b60006106053384845b6001600160a01b0383166110565760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016106a3565b6001600160a01b0382166110b85760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016106a3565b6001600160a01b038316600090815260208190526040902054818110156111305760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016106a3565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611167908490611544565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111b391815260200190565b60405180910390a35b50505050565b606060006111d183600261155c565b6111dc906002611544565b67ffffffffffffffff8111156111f4576111f4611629565b6040519080825280601f01601f19166020018201604052801561121e576020820181803683370190505b509050600360fc1b816000815181106112395761123961163f565b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106112685761126861163f565b60200101906001600160f81b031916908160001a905350600061128c84600261155c565b611297906001611544565b90505b600181111561130f576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106112cb576112cb61163f565b1a60f81b8282815181106112e1576112e161163f565b60200101906001600160f81b031916908160001a90535060049490941c9361130881611655565b905061129a565b5083156106e75760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016106a3565b60006020828403121561137057600080fd5b81356001600160e01b0319811681146106e757600080fd5b60005b838110156113a357818101518382015260200161138b565b838111156111bc5750506000910152565b60208152600082518060208401526113d3816040850160208701611388565b601f01601f19169190910160400192915050565b80356001600160a01b03811681146113fe57600080fd5b919050565b6000806040838503121561141657600080fd5b61141f836113e7565b946020939093013593505050565b60008060006060848603121561144257600080fd5b61144b846113e7565b9250611459602085016113e7565b9150604084013590509250925092565b60006020828403121561147b57600080fd5b5035919050565b6000806040838503121561149557600080fd5b823591506114a5602084016113e7565b90509250929050565b6000602082840312156114c057600080fd5b6106e7826113e7565b600080604083850312156114dc57600080fd5b6114e5836113e7565b91506114a5602084016113e7565b600181811c9082168061150757607f821691505b6020821081141561152857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156115575761155761152e565b500190565b60008160001904831182151516156115765761157661152e565b500290565b60008261159857634e487b7160e01b600052601260045260246000fd5b500490565b6000828210156115af576115af61152e565b500390565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516115ec816017850160208801611388565b7001034b99036b4b9b9b4b733903937b6329607d1b601791840191820152835161161d816028840160208801611388565b01602801949350505050565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6000816116645761166461152e565b50600019019056fea26469706673582212206803b80aeb6d8ef9988f8d3c77752a43dcdba37e8ca57b5e3f4299ac5882e11864736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000f424954434f494e2048554e54455253000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044254434800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000033b2e3c9fd0803ce80000000000000000000000000000000000000000000000033b2e3c9fd0803ce80000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): BITCOIN HUNTERS
Arg [1] : symbol_ (string): BTCH
Arg [2] : arguments_ (bytes): 0x00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000033b2e3c9fd0803ce80000000000000000000000000000000000000000000000033b2e3c9fd0803ce80000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
-----Encoded View---------------
18 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [4] : 424954434f494e2048554e544552530000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 4254434800000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [9] : 0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
Arg [10] : 0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [15] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [16] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [17] : 0000000000000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.