Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 79 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 17330188 | 574 days ago | IN | 0 ETH | 0.00240463 | ||||
Transfer | 17330181 | 574 days ago | IN | 0 ETH | 0.00314876 | ||||
Transfer | 17142593 | 600 days ago | IN | 0 ETH | 0.00172928 | ||||
Transfer | 17142312 | 600 days ago | IN | 0 ETH | 0.00214546 | ||||
Transfer | 17142234 | 600 days ago | IN | 0 ETH | 0.00198541 | ||||
Transfer | 17092630 | 607 days ago | IN | 0 ETH | 0.00136123 | ||||
Transfer | 17092622 | 607 days ago | IN | 0 ETH | 0.00201137 | ||||
Transfer | 17092359 | 607 days ago | IN | 0 ETH | 0.00232917 | ||||
Transfer | 17092085 | 607 days ago | IN | 0 ETH | 0.00258034 | ||||
Transfer | 17088696 | 608 days ago | IN | 0 ETH | 0.00721768 | ||||
Transfer | 16980752 | 623 days ago | IN | 0 ETH | 0.00166748 | ||||
Transfer | 16945459 | 628 days ago | IN | 0 ETH | 0.00093266 | ||||
Transfer | 16945448 | 628 days ago | IN | 0 ETH | 0.00122488 | ||||
Transfer | 16837834 | 643 days ago | IN | 0 ETH | 0.00086122 | ||||
Transfer | 16834866 | 644 days ago | IN | 0 ETH | 0.00162141 | ||||
Transfer | 16834859 | 644 days ago | IN | 0 ETH | 0.00242865 | ||||
Transfer | 16834283 | 644 days ago | IN | 0 ETH | 0.00143214 | ||||
Transfer | 16834276 | 644 days ago | IN | 0 ETH | 0.00227869 | ||||
Transfer | 16832919 | 644 days ago | IN | 0 ETH | 0.00112665 | ||||
Transfer | 16832918 | 644 days ago | IN | 0 ETH | 0.00103871 | ||||
Transfer | 16832907 | 644 days ago | IN | 0 ETH | 0.00156712 | ||||
Transfer | 16832846 | 644 days ago | IN | 0 ETH | 0.00075942 | ||||
Transfer | 16832839 | 644 days ago | IN | 0 ETH | 0.00131642 | ||||
Transfer | 16832330 | 644 days ago | IN | 0 ETH | 0.00092873 | ||||
Transfer | 16832324 | 644 days ago | IN | 0 ETH | 0.00081586 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
PML
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "./Utils.sol"; contract PML is Ownable, Mintable, Burnable, ERC20 { ILocker private locker; constructor() ERC20("Prime Meta Token", "PML") { _mint(msg.sender, 10000000000 * 10 ** decimals()); } function setLocker(address _locker) public onlyOwner { locker = ILocker(_locker); } function mint(address account, uint256 amount) public onlyMinter { _mint(account, amount); } function burn(address account, uint256 amount) public onlyBurner { _burn(account, amount); } function _transfer( address sender, address recipient, uint256 amount ) internal virtual override { // check lock before transfer if (address(locker) != address(0)) { if (locker.isLocked(sender, balanceOf(sender) - amount)) revert("Your token has been locked"); } return ERC20._transfer(sender, recipient, amount); } function getLocker() public view returns (address){ return address(locker); } }
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; import "@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol"; abstract contract Ownable { address public owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); constructor() { owner = msg.sender; } modifier onlyOwner() { require(owner == msg.sender, "Ownable: caller is not owner"); _; } function transferOwnership(address _newOwner) public virtual onlyOwner { require( _newOwner != address(0), "Ownable: new owner is the zero address" ); owner = _newOwner; } } abstract contract Lockable { mapping(address => bool) public lockers; constructor() { lockers[msg.sender] = true; } modifier onlyLocker() { require(lockers[msg.sender], "Lockable: caller is not locker"); _; } function setLocker(address newLocker, bool lockable) public virtual onlyLocker { require( newLocker != address(0), "newLocker: new locker is the zero address" ); lockers[newLocker] = lockable; } } abstract contract Mintable { mapping(address => bool) public minters; constructor() { minters[msg.sender] = true; } modifier onlyMinter() { require(minters[msg.sender], "Mintable: caller is not minter"); _; } function setMinter(address newMinter, bool mintable) public virtual onlyMinter { require( newMinter != address(0), "Mintable: new minter is the zero address" ); minters[newMinter] = mintable; } } abstract contract Burnable { mapping(address => bool) public burners; constructor() { burners[msg.sender] = true; } modifier onlyBurner() { require(burners[msg.sender], "Burnable: caller is not burner"); _; } function isBurner(address addr) public view returns(bool) { return burners[addr]; } function setBurner(address newBurner, bool burnable) public virtual onlyBurner { require( newBurner != address(0), "Burnable: new burner is the zero address" ); burners[newBurner] = burnable; } } abstract contract SupportSig is EIP712 { uint256 private MAX_NONCE_DIFFERENCE = 100 * 365 * 24 * 60 * 60; constructor(string memory name, string memory version) EIP712(name,version) {} function validNonce(uint256 nonce, uint256 lastNonce) internal view returns(bool) { return nonce > lastNonce && nonce - lastNonce < MAX_NONCE_DIFFERENCE; } function getChainId() public view returns(uint256) { return block.chainid; } function getSigner(bytes memory typedContents, bytes memory sig) internal view returns (address) { return ECDSA.recover(_hashTypedDataV4(keccak256(typedContents)), sig); } } abstract contract SupportTokenUpdateHistory { struct TokenUpdateHistoryItem { uint256 tokenId; uint256 updatedAt; } uint256 public tokenUpdateHistoryCount; TokenUpdateHistoryItem[] public tokenUpdateHistory; constructor() { TokenUpdateHistoryItem memory dummy; tokenUpdateHistory.push(dummy); } function onTokenUpdated(uint256 tokenId) internal { tokenUpdateHistory.push(TokenUpdateHistoryItem(tokenId, block.timestamp)); tokenUpdateHistoryCount++; } } interface ILocker { function isLocked(address _user, uint256 volume) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.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: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, 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}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, 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}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, 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) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, 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) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * 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: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, 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 Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - 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.1 (utils/cryptography/draft-EIP712.sol) pragma solidity ^0.8.0; import "./ECDSA.sol"; /** * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data. * * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible, * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding * they need in their contracts using a combination of `abi.encode` and `keccak256`. * * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA * ({_hashTypedDataV4}). * * The implementation of the domain separator was designed to be as efficient as possible while still properly updating * the chain id to protect against replay attacks on an eventual fork of the chain. * * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask]. * * _Available since v3.4._ */ abstract contract EIP712 { /* solhint-disable var-name-mixedcase */ // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to // invalidate the cached domain separator if the chain id changes. bytes32 private immutable _CACHED_DOMAIN_SEPARATOR; uint256 private immutable _CACHED_CHAIN_ID; address private immutable _CACHED_THIS; bytes32 private immutable _HASHED_NAME; bytes32 private immutable _HASHED_VERSION; bytes32 private immutable _TYPE_HASH; /* solhint-enable var-name-mixedcase */ /** * @dev Initializes the domain separator and parameter caches. * * The meaning of `name` and `version` is specified in * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]: * * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol. * - `version`: the current major version of the signing domain. * * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart * contract upgrade]. */ constructor(string memory name, string memory version) { bytes32 hashedName = keccak256(bytes(name)); bytes32 hashedVersion = keccak256(bytes(version)); bytes32 typeHash = keccak256( "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)" ); _HASHED_NAME = hashedName; _HASHED_VERSION = hashedVersion; _CACHED_CHAIN_ID = block.chainid; _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion); _CACHED_THIS = address(this); _TYPE_HASH = typeHash; } /** * @dev Returns the domain separator for the current chain. */ function _domainSeparatorV4() internal view returns (bytes32) { if (address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) { return _CACHED_DOMAIN_SEPARATOR; } else { return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION); } } function _buildDomainSeparator( bytes32 typeHash, bytes32 nameHash, bytes32 versionHash ) private view returns (bytes32) { return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this))); } /** * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this * function returns the hash of the fully encoded EIP712 message for this domain. * * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example: * * ```solidity * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode( * keccak256("Mail(address to,string contents)"), * mailTo, * keccak256(bytes(mailContents)) * ))); * address signer = ECDSA.recover(digest, signature); * ``` */ function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) { return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.3) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; import "../Strings.sol"; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. /// @solidity memory-safe-assembly assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @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); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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); /** * @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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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.1 (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); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":[{"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":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"burners","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"getLocker","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"addr","type":"address"}],"name":"isBurner","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":[{"internalType":"address","name":"","type":"address"}],"name":"minters","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newBurner","type":"address"},{"internalType":"bool","name":"burnable","type":"bool"}],"name":"setBurner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_locker","type":"address"}],"name":"setLocker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMinter","type":"address"},{"internalType":"bool","name":"mintable","type":"bool"}],"name":"setMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604080518082018252601081526f283934b6b29026b2ba30902a37b5b2b760811b602080830191825283518085018552600381526214135360ea1b81830152600080546001600160a01b03191633908117825581526001808452868220805460ff1990811683179091556002909452959020805490921690941790558151919291620000a191600691620001e6565b508051620000b7906007906020840190620001e6565b505050620000f333620000cf620000f960201b60201c565b620000dc90600a620002f0565b620000ed906402540be400620003be565b620000fe565b62000433565b601290565b6001600160a01b038216620001595760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600560008282546200016d91906200028c565b90915550506001600160a01b038216600090815260036020526040812080548392906200019c9084906200028c565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620001f490620003e0565b90600052602060002090601f01602090048101928262000218576000855562000263565b82601f106200023357805160ff191683800117855562000263565b8280016001018555821562000263579182015b828111156200026357825182559160200191906001019062000246565b506200027192915062000275565b5090565b5b8082111562000271576000815560010162000276565b60008219821115620002a257620002a26200041d565b500190565b600181815b80851115620002e8578160001904821115620002cc57620002cc6200041d565b80851615620002da57918102915b93841c9390800290620002ac565b509250929050565b60006200030160ff84168362000308565b9392505050565b6000826200031957506001620003b8565b816200032857506000620003b8565b81600181146200034157600281146200034c576200036c565b6001915050620003b8565b60ff8411156200036057620003606200041d565b50506001821b620003b8565b5060208310610133831016604e8410600b841016171562000391575081810a620003b8565b6200039d8383620002a7565b8060001904821115620003b457620003b46200041d565b0290505b92915050565b6000816000190483118215151615620003db57620003db6200041d565b500290565b600181811c90821680620003f557607f821691505b602082108114156200041757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b61122680620004436000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c80635d4e0ced116100b8578063a457c2d71161007c578063a457c2d7146102d1578063a9059cbb146102e4578063cf456ae7146102f7578063dd62ed3e1461030a578063f2fde38b1461031d578063f46eccc41461033057600080fd5b80635d4e0ced1461025557806370a082311461027a5780638da5cb5b146102a357806395d89b41146102b65780639dc29fac146102be57600080fd5b806318160ddd1161010a57806318160ddd146101cf57806323b872dd146101e1578063313ce567146101f4578063395093511461020357806340c10f19146102165780634334614a1461022957600080fd5b806303d41e0e1461014757806306fdde031461017f578063095ea7b3146101945780630d895ee1146101a7578063171060ec146101bc575b600080fd5b61016a610155366004610ffb565b60026020526000908152604090205460ff1681565b60405190151581526020015b60405180910390f35b610187610353565b604051610176919061110a565b61016a6101a23660046110c3565b6103e5565b6101ba6101b536600461108c565b6103fd565b005b6101ba6101ca366004610ffb565b6104f3565b6005545b604051908152602001610176565b61016a6101ef366004611050565b61056f565b60405160128152602001610176565b61016a6102113660046110c3565b610593565b6101ba6102243660046110c3565b6105b5565b61016a610237366004610ffb565b6001600160a01b031660009081526002602052604090205460ff1690565b6008546001600160a01b03165b6040516001600160a01b039091168152602001610176565b6101d3610288366004610ffb565b6001600160a01b031660009081526003602052604090205490565b600054610262906001600160a01b031681565b610187610622565b6101ba6102cc3660046110c3565b610631565b61016a6102df3660046110c3565b61069a565b61016a6102f23660046110c3565b610715565b6101ba61030536600461108c565b610723565b6101d361031836600461101d565b610814565b6101ba61032b366004610ffb565b61083f565b61016a61033e366004610ffb565b60016020526000908152604090205460ff1681565b6060600680546103629061118e565b80601f016020809104026020016040519081016040528092919081815260200182805461038e9061118e565b80156103db5780601f106103b0576101008083540402835291602001916103db565b820191906000526020600020905b8154815290600101906020018083116103be57829003601f168201915b5050505050905090565b6000336103f3818585610920565b5060019392505050565b3360009081526002602052604090205460ff166104615760405162461bcd60e51b815260206004820152601e60248201527f4275726e61626c653a2063616c6c6572206973206e6f74206275726e6572000060448201526064015b60405180910390fd5b6001600160a01b0382166104c85760405162461bcd60e51b815260206004820152602860248201527f4275726e61626c653a206e6577206275726e657220697320746865207a65726f604482015267206164647265737360c01b6064820152608401610458565b6001600160a01b03919091166000908152600260205260409020805460ff1916911515919091179055565b6000546001600160a01b0316331461054d5760405162461bcd60e51b815260206004820152601c60248201527f4f776e61626c653a2063616c6c6572206973206e6f74206f776e6572000000006044820152606401610458565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b60003361057d858285610a44565b610588858585610abe565b506001949350505050565b6000336103f38185856105a68383610814565b6105b0919061115f565b610920565b3360009081526001602052604090205460ff166106145760405162461bcd60e51b815260206004820152601e60248201527f4d696e7461626c653a2063616c6c6572206973206e6f74206d696e74657200006044820152606401610458565b61061e8282610be4565b5050565b6060600780546103629061118e565b3360009081526002602052604090205460ff166106905760405162461bcd60e51b815260206004820152601e60248201527f4275726e61626c653a2063616c6c6572206973206e6f74206275726e657200006044820152606401610458565b61061e8282610cc3565b600033816106a88286610814565b9050838110156107085760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610458565b6105888286868403610920565b6000336103f3818585610abe565b3360009081526001602052604090205460ff166107825760405162461bcd60e51b815260206004820152601e60248201527f4d696e7461626c653a2063616c6c6572206973206e6f74206d696e74657200006044820152606401610458565b6001600160a01b0382166107e95760405162461bcd60e51b815260206004820152602860248201527f4d696e7461626c653a206e6577206d696e74657220697320746865207a65726f604482015267206164647265737360c01b6064820152608401610458565b6001600160a01b03919091166000908152600160205260409020805460ff1916911515919091179055565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b6000546001600160a01b031633146108995760405162461bcd60e51b815260206004820152601c60248201527f4f776e61626c653a2063616c6c6572206973206e6f74206f776e6572000000006044820152606401610458565b6001600160a01b0381166108fe5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610458565b600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166109825760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610458565b6001600160a01b0382166109e35760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610458565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610a508484610814565b90506000198114610ab85781811015610aab5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610458565b610ab88484848403610920565b50505050565b6008546001600160a01b031615610bd4576008546001600160a01b03166399cca36c8483610b01826001600160a01b031660009081526003602052604090205490565b610b0b9190611177565b6040516001600160e01b031960e085901b1681526001600160a01b039092166004830152602482015260440160206040518083038186803b158015610b4f57600080fd5b505afa158015610b63573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b8791906110ed565b15610bd45760405162461bcd60e51b815260206004820152601a60248201527f596f757220746f6b656e20686173206265656e206c6f636b65640000000000006044820152606401610458565b610bdf838383610e11565b505050565b6001600160a01b038216610c3a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610458565b8060056000828254610c4c919061115f565b90915550506001600160a01b03821660009081526003602052604081208054839290610c7990849061115f565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038216610d235760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610458565b6001600160a01b03821660009081526003602052604090205481811015610d975760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610458565b6001600160a01b0383166000908152600360205260408120838303905560058054849290610dc6908490611177565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b6001600160a01b038316610e755760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610458565b6001600160a01b038216610ed75760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610458565b6001600160a01b03831660009081526003602052604090205481811015610f4f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610458565b6001600160a01b03808516600090815260036020526040808220858503905591851681529081208054849290610f8690849061115f565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fd291815260200190565b60405180910390a3610ab8565b80356001600160a01b0381168114610ff657600080fd5b919050565b60006020828403121561100d57600080fd5b61101682610fdf565b9392505050565b6000806040838503121561103057600080fd5b61103983610fdf565b915061104760208401610fdf565b90509250929050565b60008060006060848603121561106557600080fd5b61106e84610fdf565b925061107c60208501610fdf565b9150604084013590509250925092565b6000806040838503121561109f57600080fd5b6110a883610fdf565b915060208301356110b8816111df565b809150509250929050565b600080604083850312156110d657600080fd5b6110df83610fdf565b946020939093013593505050565b6000602082840312156110ff57600080fd5b8151611016816111df565b600060208083528351808285015260005b818110156111375785810183015185820160400152820161111b565b81811115611149576000604083870101525b50601f01601f1916929092016040019392505050565b60008219821115611172576111726111c9565b500190565b600082821015611189576111896111c9565b500390565b600181811c908216806111a257607f821691505b602082108114156111c357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80151581146111ed57600080fd5b5056fea26469706673582212200ddf8249b731c9f264f15bbffe237789651b5de5b5e881977a2ea372a33e48ac64736f6c63430008070033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101425760003560e01c80635d4e0ced116100b8578063a457c2d71161007c578063a457c2d7146102d1578063a9059cbb146102e4578063cf456ae7146102f7578063dd62ed3e1461030a578063f2fde38b1461031d578063f46eccc41461033057600080fd5b80635d4e0ced1461025557806370a082311461027a5780638da5cb5b146102a357806395d89b41146102b65780639dc29fac146102be57600080fd5b806318160ddd1161010a57806318160ddd146101cf57806323b872dd146101e1578063313ce567146101f4578063395093511461020357806340c10f19146102165780634334614a1461022957600080fd5b806303d41e0e1461014757806306fdde031461017f578063095ea7b3146101945780630d895ee1146101a7578063171060ec146101bc575b600080fd5b61016a610155366004610ffb565b60026020526000908152604090205460ff1681565b60405190151581526020015b60405180910390f35b610187610353565b604051610176919061110a565b61016a6101a23660046110c3565b6103e5565b6101ba6101b536600461108c565b6103fd565b005b6101ba6101ca366004610ffb565b6104f3565b6005545b604051908152602001610176565b61016a6101ef366004611050565b61056f565b60405160128152602001610176565b61016a6102113660046110c3565b610593565b6101ba6102243660046110c3565b6105b5565b61016a610237366004610ffb565b6001600160a01b031660009081526002602052604090205460ff1690565b6008546001600160a01b03165b6040516001600160a01b039091168152602001610176565b6101d3610288366004610ffb565b6001600160a01b031660009081526003602052604090205490565b600054610262906001600160a01b031681565b610187610622565b6101ba6102cc3660046110c3565b610631565b61016a6102df3660046110c3565b61069a565b61016a6102f23660046110c3565b610715565b6101ba61030536600461108c565b610723565b6101d361031836600461101d565b610814565b6101ba61032b366004610ffb565b61083f565b61016a61033e366004610ffb565b60016020526000908152604090205460ff1681565b6060600680546103629061118e565b80601f016020809104026020016040519081016040528092919081815260200182805461038e9061118e565b80156103db5780601f106103b0576101008083540402835291602001916103db565b820191906000526020600020905b8154815290600101906020018083116103be57829003601f168201915b5050505050905090565b6000336103f3818585610920565b5060019392505050565b3360009081526002602052604090205460ff166104615760405162461bcd60e51b815260206004820152601e60248201527f4275726e61626c653a2063616c6c6572206973206e6f74206275726e6572000060448201526064015b60405180910390fd5b6001600160a01b0382166104c85760405162461bcd60e51b815260206004820152602860248201527f4275726e61626c653a206e6577206275726e657220697320746865207a65726f604482015267206164647265737360c01b6064820152608401610458565b6001600160a01b03919091166000908152600260205260409020805460ff1916911515919091179055565b6000546001600160a01b0316331461054d5760405162461bcd60e51b815260206004820152601c60248201527f4f776e61626c653a2063616c6c6572206973206e6f74206f776e6572000000006044820152606401610458565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b60003361057d858285610a44565b610588858585610abe565b506001949350505050565b6000336103f38185856105a68383610814565b6105b0919061115f565b610920565b3360009081526001602052604090205460ff166106145760405162461bcd60e51b815260206004820152601e60248201527f4d696e7461626c653a2063616c6c6572206973206e6f74206d696e74657200006044820152606401610458565b61061e8282610be4565b5050565b6060600780546103629061118e565b3360009081526002602052604090205460ff166106905760405162461bcd60e51b815260206004820152601e60248201527f4275726e61626c653a2063616c6c6572206973206e6f74206275726e657200006044820152606401610458565b61061e8282610cc3565b600033816106a88286610814565b9050838110156107085760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610458565b6105888286868403610920565b6000336103f3818585610abe565b3360009081526001602052604090205460ff166107825760405162461bcd60e51b815260206004820152601e60248201527f4d696e7461626c653a2063616c6c6572206973206e6f74206d696e74657200006044820152606401610458565b6001600160a01b0382166107e95760405162461bcd60e51b815260206004820152602860248201527f4d696e7461626c653a206e6577206d696e74657220697320746865207a65726f604482015267206164647265737360c01b6064820152608401610458565b6001600160a01b03919091166000908152600160205260409020805460ff1916911515919091179055565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b6000546001600160a01b031633146108995760405162461bcd60e51b815260206004820152601c60248201527f4f776e61626c653a2063616c6c6572206973206e6f74206f776e6572000000006044820152606401610458565b6001600160a01b0381166108fe5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610458565b600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166109825760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610458565b6001600160a01b0382166109e35760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610458565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610a508484610814565b90506000198114610ab85781811015610aab5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610458565b610ab88484848403610920565b50505050565b6008546001600160a01b031615610bd4576008546001600160a01b03166399cca36c8483610b01826001600160a01b031660009081526003602052604090205490565b610b0b9190611177565b6040516001600160e01b031960e085901b1681526001600160a01b039092166004830152602482015260440160206040518083038186803b158015610b4f57600080fd5b505afa158015610b63573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b8791906110ed565b15610bd45760405162461bcd60e51b815260206004820152601a60248201527f596f757220746f6b656e20686173206265656e206c6f636b65640000000000006044820152606401610458565b610bdf838383610e11565b505050565b6001600160a01b038216610c3a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610458565b8060056000828254610c4c919061115f565b90915550506001600160a01b03821660009081526003602052604081208054839290610c7990849061115f565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038216610d235760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610458565b6001600160a01b03821660009081526003602052604090205481811015610d975760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610458565b6001600160a01b0383166000908152600360205260408120838303905560058054849290610dc6908490611177565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b6001600160a01b038316610e755760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610458565b6001600160a01b038216610ed75760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610458565b6001600160a01b03831660009081526003602052604090205481811015610f4f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610458565b6001600160a01b03808516600090815260036020526040808220858503905591851681529081208054849290610f8690849061115f565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fd291815260200190565b60405180910390a3610ab8565b80356001600160a01b0381168114610ff657600080fd5b919050565b60006020828403121561100d57600080fd5b61101682610fdf565b9392505050565b6000806040838503121561103057600080fd5b61103983610fdf565b915061104760208401610fdf565b90509250929050565b60008060006060848603121561106557600080fd5b61106e84610fdf565b925061107c60208501610fdf565b9150604084013590509250925092565b6000806040838503121561109f57600080fd5b6110a883610fdf565b915060208301356110b8816111df565b809150509250929050565b600080604083850312156110d657600080fd5b6110df83610fdf565b946020939093013593505050565b6000602082840312156110ff57600080fd5b8151611016816111df565b600060208083528351808285015260005b818110156111375785810183015185820160400152820161111b565b81811115611149576000604083870101525b50601f01601f1916929092016040019392505050565b60008219821115611172576111726111c9565b500190565b600082821015611189576111896111c9565b500390565b600181811c908216806111a257607f821691505b602082108114156111c357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80151581146111ed57600080fd5b5056fea26469706673582212200ddf8249b731c9f264f15bbffe237789651b5de5b5e881977a2ea372a33e48ac64736f6c63430008070033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.