Source Code
Overview
ETH Balance
0 ETH
More Info
ContractCreator
TokenTracker
Multichain Info
N/A
Latest 7 from a total of 7 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 6262248 | 9 days ago | IN | 0 ETH | 0.00000303 | ||||
Approve | 6254850 | 10 days ago | IN | 0 ETH | 0.00000301 | ||||
Approve | 6189990 | 10 days ago | IN | 0 ETH | 0.00000915 | ||||
Approve | 6189823 | 10 days ago | IN | 0 ETH | 0.00000792 | ||||
Approve | 6187968 | 11 days ago | IN | 0 ETH | 0.00000372 | ||||
Approve | 6187904 | 11 days ago | IN | 0 ETH | 0.00000588 | ||||
Transfer | 6186033 | 11 days ago | IN | 0 ETH | 0.00000464 |
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
6262263 | 9 days ago | 0 ETH | ||||
6262263 | 9 days ago | 0 ETH | ||||
6262263 | 9 days ago | 0 ETH | ||||
6262263 | 9 days ago | 0 ETH | ||||
6262263 | 9 days ago | 0 ETH | ||||
6262263 | 9 days ago | 0 ETH | ||||
6262263 | 9 days ago | 0 ETH | ||||
6262263 | 9 days ago | 0 ETH | ||||
6262263 | 9 days ago | 0 ETH | ||||
6262248 | 9 days ago | 0 ETH | ||||
6262248 | 9 days ago | 0 ETH | ||||
6262248 | 9 days ago | 0 ETH | ||||
6262248 | 9 days ago | 0 ETH | ||||
6254857 | 10 days ago | 0 ETH | ||||
6254857 | 10 days ago | 0 ETH | ||||
6254857 | 10 days ago | 0 ETH | ||||
6254857 | 10 days ago | 0 ETH | ||||
6254857 | 10 days ago | 0 ETH | ||||
6254857 | 10 days ago | 0 ETH | ||||
6254857 | 10 days ago | 0 ETH | ||||
6254857 | 10 days ago | 0 ETH | ||||
6254857 | 10 days ago | 0 ETH | ||||
6254850 | 10 days ago | 0 ETH | ||||
6254850 | 10 days ago | 0 ETH | ||||
6254850 | 10 days ago | 0 ETH |
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Source Code Verified (Exact Match)
Contract Name:
USDToken
Compiler Version
v0.8.28+commit.7893614a
ZkSolc Version
v1.5.11
Optimization Enabled:
Yes with Mode 3
Other Settings:
cancun EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // Compatible with OpenZeppelin Contracts ^5.0.0 pragma solidity ^0.8.20; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Pausable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; // v0.8.24+commit.e11b9ed9 contract USDToken is ERC20, ERC20Pausable, Ownable { constructor(address initialOwner) ERC20("USD Token", "USDT") Ownable(initialOwner) { _mint(msg.sender, 100000000 * 10 ** decimals()); } function pause() public onlyOwner { _pause(); } function unpause() public onlyOwner { _unpause(); } function _revertWithMessage(bytes memory returnData) internal pure { if (returnData.length < 68) { // Next 5 lines from https://ethereum.stackexchange.com/a/83577 // If the returnData length is less than 68, the revert reason is unknown. revert("Delegate call failed"); } // Extract the revert reason from returnData assembly { returnData := add(returnData, 0x04) // Skip the function selector } revert(abi.decode(returnData, (string))); } function multicall(bytes[] calldata data) external returns (bytes[] memory results) { results = new bytes[](data.length); for (uint256 i=0; i < data.length; i++) { (bool success, bytes memory result) = address(this).delegatecall(data[i]); if (!success) { _revertWithMessage(result); } results[i] = result; } } // The following functions are overrides required by Solidity. function _update(address from, address to, uint256 value) internal override(ERC20, ERC20Pausable) { super._update(from, to, value); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "./IERC20.sol"; import {IERC20Metadata} from "./extensions/IERC20Metadata.sol"; import {Context} from "../../utils/Context.sol"; import {IERC20Errors} from "../../interfaces/draft-IERC6093.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}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * 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 ERC-20 * applications. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * 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 returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual 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 default value returned by this function, unless * it's 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 returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual 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 `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` 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 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); return true; } /** * @dev See {IERC20-transferFrom}. * * Skips emitting an {Approval} event indicating an allowance update. This is not * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve]. * * 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 `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` 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. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` 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. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * * ```solidity * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/ERC20Pausable.sol) pragma solidity ^0.8.20; import {ERC20} from "../ERC20.sol"; import {Pausable} from "../../../utils/Pausable.sol"; /** * @dev ERC-20 token with pausable token transfers, minting and burning. * * Useful for scenarios such as preventing trades until the end of an evaluation * period, or having an emergency switch for freezing all token transfers in the * event of a large bug. * * IMPORTANT: This contract does not include public pause and unpause functions. In * addition to inheriting this contract, you must define both functions, invoking the * {Pausable-_pause} and {Pausable-_unpause} internal functions, with appropriate * access control, e.g. using {AccessControl} or {Ownable}. Not doing so will * make the contract pause mechanism of the contract unreachable, and thus unusable. */ abstract contract ERC20Pausable is ERC20, Pausable { /** * @dev See {ERC20-_update}. * * Requirements: * * - the contract must not be paused. */ function _update(address from, address to, uint256 value) internal virtual override whenNotPaused { super._update(from, to, value); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {Context} from "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * The initial owner is set to the address provided by the deployer. This can * later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC-20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC-721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC-1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/Pausable.sol) pragma solidity ^0.8.20; import {Context} from "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { bool private _paused; /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); /** * @dev The operation failed because the contract is paused. */ error EnforcedPause(); /** * @dev The operation failed because the contract is not paused. */ error ExpectedPause(); /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { if (paused()) { revert EnforcedPause(); } } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { if (!paused()) { revert ExpectedPause(); } } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC-20 standard as defined in the ERC. */ 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 value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` 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 value) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; import {IERC20} from "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC-20 standard. */ 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); }
{ "evmVersion": "cancun", "optimizer": { "enabled": true, "mode": "3" }, "outputSelection": { "*": { "*": [ "abi" ] } }, "detectMissingLibraries": false, "forceEVMLA": false, "enableEraVMExtensions": true, "libraries": {} }
[{"inputs":[{"internalType":"address","name":"initialOwner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[],"name":"EnforcedPause","type":"error"},{"inputs":[],"name":"ExpectedPause","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","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":"value","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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes[]","name":"data","type":"bytes[]"}],"name":"multicall","outputs":[{"internalType":"bytes[]","name":"results","type":"bytes[]"}],"stateMutability":"nonpayable","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":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","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":"value","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":"value","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"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
9c4d535b0000000000000000000000000000000000000000000000000000000000000000010001c56ffb0eec9985471580c7f0dc34836cb73bbcaa6eca37eae87331892a00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000020000000000000000000000000b7402fc5a466b240ae3058111809e07a82157546
Deployed Bytecode
0x0002000000000002000500000000000200010000000103550000006003100270000001780030019d0000008004000039000000400040043f00000178033001970000000100200190000000290000c13d000000040030008c0000004b0000413d000000000201043b000000e002200270000001910020009c0000004d0000213d0000019d0020009c0000006e0000213d000001a30020009c000000dd0000213d000001a60020009c000001720000613d000001a70020009c0000004b0000c13d000000440030008c0000004b0000413d0000000002000416000000000002004b0000004b0000c13d0000000402100370000000000202043b000500000002001d0000017b0020009c0000004b0000213d0000002401100370000000000301043b0000000002000411000000000002004b000002420000c13d000001be010000410000042a0000013d0000000002000416000000000002004b0000004b0000c13d0000001f0230003900000179022001970000008002200039000000400020043f0000001f0530018f0000017a063001980000008002600039000000390000613d000000000701034f000000007807043c0000000004840436000000000024004b000000350000c13d000000000005004b000000460000613d000000000161034f0000000304500210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000200030008c0000004b0000413d000000800700043d0000017b0070009c000000840000a13d0000000001000019000005df00010430000001920020009c0000009f0000213d000001980020009c000001180000213d0000019b0020009c0000018a0000613d0000019c0020009c0000004b0000c13d0000000001000416000000000001004b0000004b0000c13d0000000502000039000000000302041a00000008013002700000017b041001970000000001000411000000000014004b000002000000c13d000000ff00300190000002460000c13d000001bf0330019700000001033001bf000000000032041b000000800010043f0000000001000414000001780010009c0000017801008041000000c001100210000001b7011001c70000800d020000390000000103000039000001b804000041000002550000013d0000019e0020009c0000013c0000213d000001a10020009c000001a00000613d000001a20020009c0000004b0000c13d0000000001000416000000000001004b0000004b0000c13d0000000502000039000000000302041a00000008013002700000017b041001970000000001000411000000000014004b000002000000c13d000000ff003001900000024a0000c13d000001ba01000041000000000010043f000001b601000041000005df00010430000000400a00043d0000017c00a0009c000000990000213d0000004001a00039000000400010043f000000090100003900000000011a04360000017d020000410000000000210435000000400600043d0000017c0060009c000000990000213d0000004002600039000000400020043f000000040500003900000000085604360000017e020000410000000000280435000000000b0a04330000017f00b0009c000001f00000a13d0000018e01000041000000000010043f0000004101000039000000040010043f0000018f01000041000005df00010430000001930020009c0000014e0000213d000001960020009c000001a70000613d000001970020009c0000004b0000c13d000000240030008c0000004b0000413d0000000002000416000000000002004b0000004b0000c13d0000000402100370000000000202043b000300000002001d0000017f0020009c0000004b0000213d00000003020000290000002302200039000000000032004b0000004b0000813d00000003020000290000000402200039000000000121034f000000000101043b000200000001001d0000017f0010009c0000004b0000213d0000000301000029000000240a100039000000020100002900000005021002100000000001a20019000000000031004b0000004b0000213d0000003f01200039000001ac01100197000001ad0010009c000000990000213d0000008001100039000000400010043f0000000203000029000000800030043f000000000003004b0000030d0000c13d00000020020000390000000003210436000000800200043d0000000000230435000000400310003900000005042002100000000007340019000000000002004b000003ad0000c13d0000000002170049000001780020009c00000178020080410000006002200210000001780010009c00000178010080410000004001100210000000000112019f000005de0001042e000001a40020009c000001b60000613d000001a50020009c0000004b0000c13d000000640030008c0000004b0000413d0000000002000416000000000002004b0000004b0000c13d0000000402100370000000000202043b000500000002001d0000017b0020009c0000004b0000213d0000002402100370000000000202043b000400000002001d0000017b0020009c0000004b0000213d0000004401100370000000000101043b000300000001001d0000000501000029000000000010043f0000000101000039000000200010043f0000000001000414000001780010009c0000017801008041000000c0011002100000018a011001c7000080100200003905dd05d30000040f00000001002001900000004b0000613d0000000002000411000000000101043b0000017b02200197000200000002001d000000000020043f000000200010043f0000000001000414000001780010009c0000017801008041000000c0011002100000018a011001c7000080100200003905dd05d30000040f00000001002001900000004b0000613d000000000101043b000000000101041a000001c00010009c000003a20000c13d00000005010000290000000402000029000000030300002905dd05590000040f000002a80000013d000001990020009c000001be0000613d0000019a0020009c0000004b0000c13d0000000001000416000000000001004b0000004b0000c13d0000000403000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000001fa0000c13d000000800010043f000000000005004b000001840000613d000000000030043f000000020020008c0000000002000019000002670000413d00000184030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b000001340000413d000002670000013d0000019f0020009c000001c80000613d000001a00020009c0000004b0000c13d000000240030008c0000004b0000413d0000000002000416000000000002004b0000004b0000c13d0000000401100370000000000101043b0000017b0010009c0000004b0000213d000000000010043f000000200000043f000000400100003905dd05bd0000040f000001ba0000013d000001940020009c000001d30000613d000001950020009c0000004b0000c13d000000240030008c0000004b0000413d0000000002000416000000000002004b0000004b0000c13d0000000401100370000000000601043b0000017b0060009c0000004b0000213d0000000501000039000000000201041a00000008032002700000017b033001970000000005000411000000000053004b000002050000c13d000000000006004b000004290000613d000001a90220019700000008036002100000018503300197000000000232019f000000000021041b0000000001000414000001780010009c0000017801008041000000c00110021000000187011001c70000800d0200003900000003030000390000018804000041000002550000013d0000000001000416000000000001004b0000004b0000c13d0000000303000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000001fa0000c13d000000800010043f000000000005004b0000025a0000c13d000001bf01200197000000a00010043f000000000004004b00000020020000390000000002006039000002670000013d0000000001000416000000000001004b0000004b0000c13d0000000501000039000000000201041a00000008032002700000017b033001970000000005000411000000000053004b000002050000c13d000001a902200197000000000021041b0000000001000414000001780010009c0000017801008041000000c00110021000000187011001c70000800d02000039000000030300003900000188040000410000000006000019000002550000013d0000000001000416000000000001004b0000004b0000c13d0000001201000039000000800010043f000001b401000041000005de0001042e000000440030008c0000004b0000413d0000000002000416000000000002004b0000004b0000c13d0000000402100370000000000202043b0000017b0020009c0000004b0000213d0000002401100370000000000301043b000000000100041105dd05590000040f0000000101000039000001e90000013d0000000001000416000000000001004b0000004b0000c13d0000000201000039000000000101041a000000800010043f000001b401000041000005de0001042e0000000001000416000000000001004b0000004b0000c13d0000000501000039000000000101041a00000008011002700000017b01100197000000800010043f000001b401000041000005de0001042e0000000001000416000000000001004b0000004b0000c13d0000000501000039000000000101041a000000ff001001900000000001000039000000010100c039000000800010043f000001b401000041000005de0001042e000000440030008c0000004b0000413d0000000002000416000000000002004b0000004b0000c13d0000000402100370000000000202043b0000017b0020009c0000004b0000213d0000002401100370000000000101043b000500000001001d0000017b0010009c0000004b0000213d000000000020043f0000000101000039000000200010043f000000400100003905dd05bd0000040f000000050200002905dd05490000040f000000000101041a000000400200043d0000000000120435000001780020009c00000178020080410000004001200210000001ab011001c7000005de0001042e0000000309000039000000000209041a000000010320019000000001022002700000007f0220618f0000001f0020008c00000000040000390000000104002039000000000043004b0000020a0000613d0000018e01000041000000000010043f0000002201000039000000040010043f0000018f01000041000005df00010430000001a802000041000000000020043f000000040010043f0000018f01000041000005df00010430000001a801000041000000000010043f000000040050043f0000018f01000041000005df00010430000000200020008c0000021b0000413d000000000090043f0000001f03b000390000000503300270000001800330009a0000002000b0008c00000181030040410000001f022000390000000502200270000001800220009a000000000023004b0000021b0000813d000000000003041b0000000103300039000000000023004b000002170000413d0000001f00b0008c000002370000a13d00010000000b001d00020000000a001d000300000008001d000400000006001d000000000090043f0000000001000414000001780010009c0000017801008041000000c00110021000000182011001c70000801002000039000500000007001d05dd05d30000040f000000050700002900000001002001900000004b0000613d000000010b000029000001c102b00198000000000101043b000000020a000029000002b00000c13d0000002003000039000000040600002900000003080000290000000309000039000002bf0000013d00000000000b004b00000000020000190000023b0000613d00000000020104330000000301b00210000001c00110027f000001c001100167000000000112016f0000000102b00210000000000121019f000002cc0000013d000000050000006b000002780000c13d000001bd010000410000042a0000013d000001b501000041000000000010043f000001b601000041000005df00010430000001bf03300197000000000032041b000000800010043f0000000001000414000001780010009c0000017801008041000000c001100210000001b7011001c70000800d020000390000000103000039000001b90400004105dd05ce0000040f00000001002001900000004b0000613d0000000001000019000005de0001042e000000000030043f000000020020008c0000000002000019000002670000413d00000181030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b000002600000413d0000002002200039000000800100003905dd05370000040f000000400100043d000500000001001d000000800200003905dd05020000040f00000005020000290000000001210049000001780010009c00000178010080410000006001100210000001780020009c00000178020080410000004002200210000000000121019f000005de0001042e000400000003001d000000000020043f0000000101000039000000200010043f0000000001000414000001780010009c0000017801008041000000c0011002100000018a011001c7000080100200003905dd05d30000040f00000001002001900000004b0000613d000000000101043b0000000502000029000000000020043f000000200010043f0000000001000414000001780010009c0000017801008041000000c0011002100000018a011001c7000080100200003905dd05d30000040f00000001002001900000004b0000613d000000000101043b0000000402000029000000000021041b000000400100043d0000000000210435000001780010009c000001780100804100000040011002100000000002000414000001780020009c0000017802008041000000c002200210000000000112019f00000182011001c70000800d020000390000000303000039000001bc040000410000000005000411000000050600002905dd05ce0000040f00000001002001900000004b0000613d000000400100043d00000001020000390000000000210435000001780010009c00000178010080410000004001100210000001ab011001c7000005de0001042e000000010320008a00000005033002700000000004310019000000200300003900000001044000390000000406000029000000030800002900000003090000390000000005a300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b000002b80000c13d0000000000b2004b000002c90000813d0000000302b00210000000f80220018f000001c00220027f000001c0022001670000000003a300190000000003030433000000000223016f000000000021041b0000000101b0021000000001011001bf0000000405000039000000000019041b00000000040604330000017f0040009c000000990000213d000000000205041a000000010020019000000001012002700000007f0110618f0000001f0010008c00000000030000390000000103002039000000000232013f0000000100200190000001fa0000c13d000000200010008c000002eb0000413d000000000050043f0000001f024000390000000502200270000001830220009a000000200040008c00000184020040410000001f011000390000000501100270000001830110009a000000000012004b000002eb0000813d000000000002041b0000000102200039000000000012004b000002e70000413d0000001f0040008c000003020000a13d000300000004001d000400000006001d000000000050043f0000000001000414000001780010009c0000017801008041000000c00110021000000182011001c70000801002000039000500000007001d05dd05d30000040f000000050700002900000001002001900000004b0000613d0000000308000029000001c102800198000000000101043b00000004060000290000040d0000c13d0000002003000039000004190000013d000000000004004b0000000001000019000003060000613d00000000010804330000000302400210000001c00220027f000001c002200167000000000121016f0000000102400210000000000121019f000004260000013d00000060040000390000000001000019000000a00310003900000000004304350000002001100039000000000021004b0000030f0000413d000000000900001900010000000a001d000000050b9002100000000001ab00190000000101100367000000000101043b0000000002000031000000030320006a000000430330008a000001ae04300197000001ae05100197000000000645013f000000000045004b0000000004000019000001ae04004041000000000031004b0000000003000019000001ae03008041000001ae0060009c000000000403c019000000000004004b0000004b0000c13d0000000003a100190000000101300367000000000101043b0000017f0010009c0000004b0000213d00000000041200490000002002300039000001ae03400197000001ae05200197000000000635013f000000000035004b0000000003000019000001ae03004041000000000042004b0000000004000019000001ae04002041000001ae0060009c000000000304c019000000000003004b0000004b0000c13d000001c1041001980000000105200367000000400200043d0000000003420019000003490000613d000000000605034f0000000007020019000000006806043c0000000007870436000000000037004b000003450000c13d00050000000b001d000400000009001d0000001f06100190000003580000613d000000000445034f0000000305600210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f000000000043043500000000031200190000000000030435000001780010009c00000178010080410000006001100210000001780020009c00000178020080410000004002200210000000000112019f0000000002000414000001780020009c0000017802008041000000c002200210000000000112019f000000000200041005dd05d80000040f000000600310027000000178043001980000006003000039000000010a000029000000050b000029000003920000613d0000001f0340003900000179033001970000003f03300039000001af05300197000000400300043d0000000005530019000000000035004b000000000600003900000001060040390000017f0050009c000000990000213d0000000100600190000000990000c13d000000400050043f00000000074304360000017a064001980000000005670019000003850000613d000000000801034f000000008908043c0000000007970436000000000057004b000003810000c13d0000001f04400190000003920000613d000000000161034f0000000304400210000000000605043300000000064601cf000000000646022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000161019f000000000015043500000001002001900000000409000029000004810000613d000000800100043d000000000091004b000004510000a13d000000a001b000390000000000310435000000800100043d000000000091004b000004510000a13d0000000109900039000000020090006c000003160000413d000000400100043d000000cb0000013d000000030210006c000003ea0000813d000001bb02000041000000000020043f0000000002000411000000040020043f000000240010043f0000000301000029000000440010043f000001b301000041000005df0001043000000080040000390000000006000019000003c20000013d000000030aa00210000000000b0c0433000000000bab01cf000000000bab022f0000000009090433000001000aa000890000000009a9022f0000000009a901cf0000000009b9019f00000000009c04350000001f09800039000001c1099001970000000008780019000000000008043500000000077900190000000106600039000000000026004b000000d40000813d0000000008170049000000400880008a00000000038304360000002004400039000000000804043300000000980804340000000007870436000001c10b8001970000001f0a80018f000000000079004b000003dd0000813d00000000000b004b000003d90000613d000000000da90019000000000ca70019000000200cc0008a000000200dd0008a000000000ebc0019000000000fbd0019000000000f0f04330000000000fe0435000000200bb0008c000003d30000c13d00000000000a004b000003ba0000613d000000000c070019000003b00000013d000000000cb7001900000000000b004b000003e60000613d000000000d090019000000000e07001900000000df0d0434000000000efe04360000000000ce004b000003e20000c13d00000000000a004b000003ba0000613d0000000009b90019000003b00000013d000100000002001d000000050000006b000000270000613d000000020000006b000002440000613d0000000501000029000000000010043f0000000101000039000000200010043f0000000001000414000001780010009c0000017801008041000000c0011002100000018a011001c7000080100200003905dd05d30000040f00000001002001900000004b0000613d000000000101043b0000000202000029000000000020043f000000200010043f0000000001000414000001780010009c0000017801008041000000c0011002100000018a011001c7000080100200003905dd05d30000040f00000001002001900000004b0000613d000000000101043b0000000102000029000000000021041b000001130000013d000000010320008a000000050330027000000000043100190000002003000039000000010440003900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b000004120000c13d000000000082004b000004230000813d0000000302800210000000f80220018f000001c00220027f000001c00220016700000000036300190000000003030433000000000223016f000000000021041b000000010180021000000001011001bf00000004050000390000017b06700198000000000015041b0000042e0000c13d000001aa01000041000000000010043f000000040000043f0000018f01000041000005df00010430000000080170021000000185011001970000000502000039000000000302041a0000018604300197000000000114019f000000000012041b000000080130027000000000020004140000017b05100197000001780020009c0000017802008041000000c00120021000000187011001c70000800d020000390000000303000039000001880400004105dd05ce0000040f00000001002001900000004b0000613d0000000001000411000000000001004b000004470000c13d00000190010000410000042a0000013d0000000201000039000000000201041a000001890220009c000004570000413d0000018e01000041000000000010043f0000001101000039000000040010043f0000018f01000041000005df000104300000018e01000041000000000010043f0000003201000039000000040010043f0000018f01000041000005df00010430000000000021041b0000000001000411000000000010043f000000200000043f0000000001000414000001780010009c0000017801008041000000c0011002100000018a011001c7000080100200003905dd05d30000040f00000001002001900000004b0000613d000000000101043b000000000201041a000001890220009a000000000021041b0000018b01000041000000400200043d0000000000120435000001780020009c000001780200804100000040012002100000000002000414000001780020009c0000017802008041000000c002200210000000000112019f00000182011001c70000800d0200003900000003030000390000018c040000410000000005000019000000000600041105dd05ce0000040f00000001002001900000004b0000613d0000002001000039000001000010044300000120000004430000018d01000041000005de0001042e0000000001030433000000430010008c000004950000213d000000400100043d0000004402100039000001b2030000410000000000320435000000240210003900000014030000390000000000320435000001b1020000410000000000210435000000040210003900000020030000390000000000320435000001780010009c00000178010080410000004001100210000001b3011001c7000005df0001043000000004013000390000000001010433000001b00010009c0000004b0000213d000000200010008c0000004b0000413d000000240230003900000000040204330000017f0040009c0000004b0000213d000000000521001900000000043400190000004301400039000000000051004b0000000002000019000001ae02008041000001ae01100197000001ae03500197000000000631013f000000000031004b0000000001000019000001ae01004041000001ae0060009c000000000102c019000000000001004b0000004b0000c13d000000240140003900000000010104330000017f0010009c000000990000213d0000001f02100039000001c1022001970000003f02200039000001c103200197000000400200043d0000000003320019000000000023004b000000000600003900000001060040390000017f0030009c000000990000213d0000000100600190000000990000c13d000000400030043f000000000312043600000044044000390000000006410019000000000056004b0000004b0000213d000001c1061001970000001f0510018f000000000034004b000004da0000813d000000000006004b000004d60000613d00000000085400190000000007530019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c000004d00000c13d000000000005004b000004f00000613d0000000007030019000004e60000013d0000000007630019000000000006004b000004e30000613d00000000080400190000000009030019000000008a0804340000000009a90436000000000079004b000004df0000c13d000000000005004b000004f00000613d00000000046400190000000305500210000000000607043300000000065601cf000000000656022f00000000040404330000010005500089000000000454022f00000000045401cf000000000464019f000000000047043500000000011300190000000000010435000001b101000041000000400300043d000500000003001d0000000000130435000000040130003905dd05020000040f00000005020000290000000001210049000001780010009c00000178010080410000006001100210000001780020009c00000178020080410000004002200210000000000121019f000005df000104300000002003000039000000000331043600000000420204340000000000230435000001c1062001970000001f0520018f0000004001100039000000000014004b0000051b0000813d000000000006004b000005170000613d00000000085400190000000007510019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c000005110000c13d000000000005004b000005310000613d0000000007010019000005270000013d0000000007610019000000000006004b000005240000613d00000000080400190000000009010019000000008a0804340000000009a90436000000000079004b000005200000c13d000000000005004b000005310000613d00000000046400190000000305500210000000000607043300000000065601cf000000000656022f00000000040404330000010005500089000000000454022f00000000045401cf000000000464019f0000000000470435000000000412001900000000000404350000001f02200039000001c1022001970000000001120019000000000001042d0000001f02200039000001c1022001970000000001120019000000000021004b000000000200003900000001020040390000017f0010009c000005430000213d0000000100200190000005430000c13d000000400010043f000000000001042d0000018e01000041000000000010043f0000004101000039000000040010043f0000018f01000041000005df000104300000017b02200197000000000020043f000000200010043f0000000001000414000001780010009c0000017801008041000000c0011002100000018a011001c7000080100200003905dd05d30000040f0000000100200190000005570000613d000000000101043b000000000001042d0000000001000019000005df000104300004000000000002000400000003001d0000017b03100198000005a90000613d0002017b0020019c000005ab0000613d0000000501000039000000000101041a000000ff00100190000005b00000c13d000300000003001d000000000030043f000000200000043f0000000001000414000001780010009c0000017801008041000000c0011002100000018a011001c7000080100200003905dd05d30000040f0000000100200190000005a70000613d000000000101043b000000000101041a0001000400100074000005b40000413d0000000301000029000000000010043f000000200000043f0000000001000414000001780010009c0000017801008041000000c0011002100000018a011001c7000080100200003905dd05d30000040f0000000100200190000005a70000613d000000000101043b0000000102000029000000000021041b0000000201000029000000000010043f000000200000043f0000000001000414000001780010009c0000017801008041000000c0011002100000018a011001c7000080100200003905dd05d30000040f0000000100200190000005a70000613d000000000101043b000000000201041a00000004030000290000000002320019000000000021041b000000400100043d0000000000310435000001780010009c000001780100804100000040011002100000000002000414000001780020009c0000017802008041000000c002200210000000000112019f00000182011001c70000800d0200003900000003030000390000018c040000410000000305000029000000020600002905dd05ce0000040f0000000100200190000005a70000613d000000000001042d0000000001000019000005df00010430000001c301000041000005ac0000013d0000019001000041000000000010043f000000040000043f0000018f01000041000005df00010430000001b501000041000000000010043f000001b601000041000005df00010430000001c202000041000000000020043f0000000302000029000000040020043f000000240010043f0000000401000029000000440010043f000001b301000041000005df00010430000001780010009c000001780100804100000060011002100000000002000414000001780020009c0000017802008041000000c002200210000000000112019f00000187011001c7000080100200003905dd05d30000040f0000000100200190000005cc0000613d000000000101043b000000000001042d0000000001000019000005df00010430000005d1002104210000000102000039000000000001042d0000000002000019000000000001042d000005d6002104230000000102000039000000000001042d0000000002000019000000000001042d000005db002104250000000102000039000000000001042d0000000002000019000000000001042d000005dd00000432000005de0001042e000005df0001043000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffbf55534420546f6b656e00000000000000000000000000000000000000000000005553445400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff3da8a5f161a6c3ff06a60736d0ed24d7963cc6a5c4fafd2fa1dae9bb908e07a5c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b020000000000000000000000000000000000002000000000000000000000000075ca53043ea007e5c65182cbb028f60d7179ff4b55739a3949b401801c942e658a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b0000000000000000000000ffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffff00000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0ffffffffffffffffffffffffffffffffffffffffffad482d2337f32d1c000000020000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000000052b7d2dcc80cd2e4000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef00000002000000000000000000000000000000400000010000000000000000004e487b71000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000ec442f050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000715018a500000000000000000000000000000000000000000000000000000000a9059cba00000000000000000000000000000000000000000000000000000000dd62ed3d00000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000ac9650d8000000000000000000000000000000000000000000000000000000008da5cb5a000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000095d89b4100000000000000000000000000000000000000000000000000000000715018a6000000000000000000000000000000000000000000000000000000008456cb5900000000000000000000000000000000000000000000000000000000313ce566000000000000000000000000000000000000000000000000000000005c975aba000000000000000000000000000000000000000000000000000000005c975abb0000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000313ce567000000000000000000000000000000000000000000000000000000003f4ba83a0000000000000000000000000000000000000000000000000000000018160ddc0000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000023b872dd0000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000095ea7b3118cdaa700000000000000000000000000000000000000000000000000000000ffffffffffffffffffffff0000000000000000000000000000000000000000ff1e4fbdf70000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0000000000000000000000000000000000000000000000000ffffffffffffff7f800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003ffffffe07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff08c379a00000000000000000000000000000000000000000000000000000000044656c65676174652063616c6c206661696c656400000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000020000000800000000000000000d93c0665000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000020000000000000000000000000000000000002000000080000000000000000062e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2585db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa8dfc202b00000000000000000000000000000000000000000000000000000000fb8f41b2000000000000000000000000000000000000000000000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92594280d6200000000000000000000000000000000000000000000000000000000e602df0500000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0e450d38c0000000000000000000000000000000000000000000000000000000096c6fd1e000000000000000000000000000000000000000000000000000000004e1da50db592b79fe76912fd18decd2b0b5118606e26b201b1ae83826a1aeeeb
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000b7402fc5a466b240ae3058111809e07a82157546
-----Decoded View---------------
Arg [0] : initialOwner (address): 0xB7402fc5a466b240aE3058111809e07a82157546
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000b7402fc5a466b240ae3058111809e07a82157546
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ 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.