Overview
ETH Balance
0 ETH
ETH Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Latest 1 internal transaction
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
6941883 | 4 days ago | Contract Creation | 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 Name:
Frostic
Compiler Version
v0.8.22+commit.4fc1097e
ZkSolc Version
v1.5.12
Optimization Enabled:
Yes with Mode 3
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.22; import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import {ERC20Burnable} from "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol"; contract Frostic is ERC20, ERC20Burnable { constructor(address recipient) ERC20("Frostic", "FROST") { _mint(recipient, 1000000000 * 10 ** decimals()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.3.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}. * * Both 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.0.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.20; import {ERC20} from "../ERC20.sol"; import {Context} from "../../../utils/Context.sol"; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys a `value` amount of tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 value) public virtual { _burn(_msgSender(), value); } /** * @dev Destroys a `value` amount of tokens from `account`, deducting from * the caller's allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `value`. */ function burnFrom(address account, uint256 value) public virtual { _spendAllowance(account, _msgSender(), value); _burn(account, value); } }
// 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.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.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": "paris", "optimizer": { "enabled": true, "mode": "3" }, "outputSelection": { "*": { "*": [ "abi" ] } }, "detectMissingLibraries": false, "forceEVMLA": false, "enableEraVMExtensions": false, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"recipient","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"},{"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":"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":"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":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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"}]
Contract Creation Code
9c4d535b00000000000000000000000000000000000000000000000000000000000000000100013d9a50101148fc58df9c5196e468f3e86e8148dcbaf146274b915f2b0d00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000020000000000000000000000000d93d306d76885b66b174660e7b037b623fadfdd7
Deployed Bytecode
0x000700000000000200000060031002700000010c0330019700000001002001900000002a0000c13d0000008002000039000000400020043f000000040030008c0000004d0000413d000000000201043b000000e0022002700000011d0020009c0000004f0000a13d0000011e0020009c0000005e0000213d000001220020009c000000f40000613d000001230020009c000000ff0000613d000001240020009c0000004d0000c13d000000440030008c0000004d0000413d0000000002000416000000000002004b0000004d0000c13d0000000402100370000000000402043b0000010f0040009c0000004d0000213d0000002401100370000000000301043b000600000003001d00000000020004110000000001040019000700000004001d042b02dc0000040f00000007010000290000000602000029042b03b10000040f00000000010000190000042c0001042e0000000002000416000000000002004b0000004d0000c13d0000001f023000390000010d022001970000008002200039000000400020043f0000001f0430018f0000010e0530019800000080025000390000003b0000613d0000008006000039000000000701034f000000007807043c0000000006860436000000000026004b000000370000c13d000000000004004b000000480000613d000000000151034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000200030008c0000004d0000413d000000800600043d0000010f0060009c0000007e0000a13d00000000010000190000042d00010430000001250020009c000000e00000a13d000001260020009c0000010e0000613d000001270020009c000001160000613d000001280020009c0000004d0000c13d0000000001000416000000000001004b0000004d0000c13d0000001201000039000000800010043f0000012b010000410000042c0001042e0000011f0020009c0000012f0000613d000001200020009c0000014f0000613d000001210020009c0000004d0000c13d000000440030008c0000004d0000413d0000000002000416000000000002004b0000004d0000c13d0000000402100370000000000202043b0000010f0020009c0000004d0000213d0000002401100370000000000101043b0000010f0010009c0000004d0000213d000000000020043f000700000001001d0000000101000039000000200010043f00000040020000390000000001000019042b040c0000040f0000000702000029000000000020043f000000200010043f000000000100001900000040020000390000010c0000013d000000400300043d000001100030009c000002100000213d0000004001300039000000400010043f0000000701000039000000000513043600000111010000410000000000150435000000400700043d000001100070009c000002100000213d0000004001700039000000400010043f00000005010000390000000008170436000001120100004100000000001804350000000004030433000001130040009c000002100000213d0000000309000039000000000109041a0000000102100190000000010a1002700000007f0aa0618f0000001f00a0008c00000000010000390000000101002039000000000012004b000001730000c13d0000002000a0008c000700000006001d000500000007001d000600000008001d000000c70000413d00010000000a001d000200000005001d000400000004001d000300000003001d000000000090043f00000000010004140000010c0010009c0000010c01008041000000c00110021000000114011001c70000801002000039042b04260000040f000000070600002900000001002001900000004d0000613d00000004040000290000001f024000390000000502200270000000200040008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b00000005070000290000000608000029000000030900003900000003030000290000000205000029000000c70000813d000000000002041b0000000102200039000000000012004b000000c30000413d0000001f0040008c0000018e0000a13d000400000004001d000300000003001d000000000090043f00000000010004140000010c0010009c0000010c01008041000000c00110021000000114011001c70000801002000039042b04260000040f000000070600002900000001002001900000004d0000613d000000040b0000290000013402b00198000000000101043b000001f00000c13d0000002003000039000000050700002900000006080000290000000309000039000000030a000029000002000000013d000001290020009c000001640000613d0000012a0020009c0000004d0000c13d000000440030008c0000004d0000413d0000000002000416000000000002004b0000004d0000c13d0000000402100370000000000302043b0000010f0030009c0000004d0000213d0000002401100370000000000201043b0000000001000411000000000001004b000001820000c13d0000013201000041000001850000013d000000240030008c0000004d0000413d0000000002000416000000000002004b0000004d0000c13d0000000401100370000000000201043b0000000001000411042b03b10000040f00000000010000190000042c0001042e000000240030008c0000004d0000413d0000000002000416000000000002004b0000004d0000c13d0000000401100370000000000101043b0000010f0010009c0000004d0000213d000000000010043f000000200000043f00000040020000390000000001000019042b040c0000040f000001120000013d0000000001000416000000000001004b0000004d0000c13d0000000201000039000000000101041a000000800010043f0000012b010000410000042c0001042e000000640030008c0000004d0000413d0000000002000416000000000002004b0000004d0000c13d0000000402100370000000000402043b0000010f0040009c0000004d0000213d0000002402100370000000000202043b0000010f0020009c0000004d0000213d0000004401100370000000000301043b000600000003001d000700000002001d00000000020004110000000001040019000500000004001d042b02dc0000040f0000000501000029000000070200002900000006030000290000015b0000013d0000000001000416000000000001004b0000004d0000c13d0000000403000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000001730000c13d000000800010043f000000000005004b0000017c0000613d000000000030043f000000020020008c0000018c0000413d0000012d0200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b000001460000413d000001dc0000013d000000440030008c0000004d0000413d0000000002000416000000000002004b0000004d0000c13d0000000402100370000000000202043b0000010f0020009c0000004d0000213d0000002401100370000000000301043b0000000001000411042b03460000040f0000000101000039000000400200043d00000000001204350000010c0020009c0000010c0200804100000040012002100000012c011001c70000042c0001042e0000000001000416000000000001004b0000004d0000c13d0000000303000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000001790000613d0000011a01000041000000000010043f0000002201000039000000040010043f0000011b010000410000042d00010430000000800010043f000000000005004b000001890000c13d0000013501200197000000a00010043f000000000004004b000000c001000039000000a001006039000001dd0000013d000000000003004b000001990000c13d0000013001000041000000800010043f000000840000043f00000131010000410000042d00010430000000000030043f000000020020008c000001d20000813d0000002001000039000001e10000013d000000000004004b0000000001000019000001920000613d00000000010504330000000302400210000001360220027f0000013602200167000000000121016f0000000102400210000000000121019f0000020c0000013d000600000002001d000000000010043f0000000101000039000000200010043f00000000010004140000010c0010009c0000010c01008041000000c00110021000000116011001c70000801002000039000700000003001d042b04260000040f000000070300002900000001002001900000004d0000613d000000000101043b000000000030043f000000200010043f00000000010004140000010c0010009c0000010c01008041000000c00110021000000116011001c70000801002000039042b04260000040f000000070600002900000001002001900000004d0000613d000000000101043b0000000602000029000000000021041b000000400100043d00000000002104350000010c0010009c0000010c01008041000000400110021000000000020004140000010c0020009c0000010c02008041000000c002200210000000000112019f00000114011001c70000800d0200003900000003030000390000012f040000410000000005000411042b04210000040f00000001002001900000004d0000613d000000400100043d000000010200003900000000002104350000010c0010009c0000010c0100804100000040011002100000012c011001c70000042c0001042e000001330200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b000001d40000413d000000c001300039000000610110008a00000134011001970000012e0010009c000002100000213d0000008001100039000700000001001d000000400010043f0000008002000039042b02bf0000040f000000070200002900000000012100490000010c0010009c0000010c0100804100000060011002100000010c0020009c0000010c020080410000004002200210000000000121019f0000042c0001042e000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000050700002900000006080000290000000309000039000000030a0000290000000005a300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b000001f90000c13d0000000000b2004b0000020a0000813d0000000302b00210000000f80220018f000001360220027f00000136022001670000000003a300190000000003030433000000000223016f000000000021041b0000000101b0021000000001011001bf000000000019041b0000000005070433000001130050009c000002160000a13d0000011a01000041000000000010043f0000004101000039000000040010043f0000011b010000410000042d000104300000000404000039000000000104041a000000010010019000000001031002700000007f0330618f0000001f0030008c00000000020000390000000102002039000000000121013f0000000100100190000001730000c13d000000200030008c000002430000413d000300000003001d000400000005001d000000000040043f00000000010004140000010c0010009c0000010c01008041000000c00110021000000114011001c70000801002000039042b04260000040f000000070600002900000001002001900000004d0000613d00000004050000290000001f025000390000000502200270000000200050008c0000000002004019000000000301043b00000003010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b00000006080000290000000404000039000002430000813d000000000002041b0000000102200039000000000012004b0000023f0000413d0000001f0050008c000002570000a13d000400000005001d000000000040043f00000000010004140000010c0010009c0000010c01008041000000c00110021000000114011001c70000801002000039042b04260000040f00000001002001900000004d0000613d000000200200008a0000000402200180000000000101043b000002620000c13d000000200300003900000005060000290000026f0000013d000000000005004b00000000010000190000025b0000613d00000000010804330000000302500210000001360220027f0000013602200167000000000121016f0000000102500210000000000121019f0000027e0000013d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000050600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b000002680000c13d0000000405000029000000000052004b0000027a0000813d0000000302500210000000f80220018f000001360220027f000001360220016700000000036300190000000003030433000000000223016f000000000021041b000000010150021000000001011001bf000000070600002900000004040000390000010f03600198000000000014041b0000028b0000c13d000000400100043d0000011c020000410000000000210435000000040210003900000000000204350000010c0010009c0000010c0100804100000040011002100000011b011001c70000042d000104300000000201000039000000000201041a000001150220009c000002950000413d0000011a01000041000000000010043f0000001101000039000000040010043f0000011b010000410000042d00010430000000000021041b000700000003001d000000000030043f000000200000043f00000000010004140000010c0010009c0000010c01008041000000c00110021000000116011001c70000801002000039042b04260000040f00000001002001900000004d0000613d000000000101043b000000000201041a000001150220009a000000000021041b0000011701000041000000400200043d00000000001204350000010c0020009c0000010c02008041000000400120021000000000020004140000010c0020009c0000010c02008041000000c002200210000000000121019f00000114011001c70000800d020000390000000303000039000001180400004100000000050000190000000706000029042b04210000040f00000001002001900000004d0000613d00000020010000390000010000100443000001200000044300000119010000410000042c0001042e00000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b000002ce0000613d000000000400001900000000054100190000000006430019000000000606043300000000006504350000002004400039000000000024004b000002c70000413d000000000321001900000000000304350000001f0220003900000134022001970000000001210019000000000001042d00000040051000390000000000450435000000200410003900000000003404350000010f0220019700000000002104350000006001100039000000000001042d0004000000000002000200000003001d000400000002001d0000010f01100197000100000001001d000000000010043f0000000101000039000000200010043f00000000010004140000010c0010009c0000010c01008041000000c00110021000000116011001c70000801002000039042b04260000040f0000000100200190000003270000613d000000000101043b00000004020000290000010f02200197000300000002001d000000000020043f000000200010043f00000000010004140000010c0010009c0000010c01008041000000c00110021000000116011001c70000801002000039042b04260000040f0000000100200190000003270000613d0000000402000029000000000101043b000000000301041a000001360030009c000003260000613d0000000204000029000000000543004b000003290000413d0000000101000029000000000001004b000003390000613d000400000005001d000000030000006b0000033c0000613d000000000010043f0000000101000039000000200010043f00000000010004140000010c0010009c0000010c01008041000000c00110021000000116011001c70000801002000039042b04260000040f0000000100200190000003270000613d000000000101043b0000000302000029000000000020043f000000200010043f00000000010004140000010c0010009c0000010c01008041000000c00110021000000116011001c70000801002000039042b04260000040f0000000100200190000003270000613d000000000101043b0000000402000029000000000021041b000000000001042d00000000010000190000042d00010430000000400500043d000300000005001d000001370100004100000000001504350000000401500039042b02d40000040f000000030200002900000000012100490000010c0010009c0000010c0100804100000060011002100000010c0020009c0000010c020080410000004002200210000000000121019f0000042d00010430000000400100043d00000132020000410000033e0000013d000000400100043d00000130020000410000000000210435000000040210003900000000000204350000010c0010009c0000010c0100804100000040011002100000011b011001c70000042d000104300005000000000002000500000003001d0000010f03100198000003920000613d000100000001001d0003010f0020019c000003950000613d000400000003001d000000000030043f000000200000043f00000000010004140000010c0010009c0000010c01008041000000c00110021000000116011001c70000801002000039042b04260000040f0000000100200190000003900000613d000000000101043b000000000301041a00020005003000740000039f0000413d0000000401000029000000000010043f000000200000043f00000000010004140000010c0010009c0000010c01008041000000c00110021000000116011001c70000801002000039042b04260000040f0000000100200190000003900000613d000000000101043b0000000202000029000000000021041b0000000301000029000000000010043f00000000010004140000010c0010009c0000010c01008041000000c00110021000000116011001c70000801002000039042b04260000040f0000000100200190000003900000613d000000000101043b000000000201041a00000005030000290000000002320019000000000021041b000000400100043d00000000003104350000010c0010009c0000010c01008041000000400110021000000000020004140000010c0020009c0000010c02008041000000c002200210000000000112019f00000114011001c70000800d020000390000000303000039000001180400004100000004050000290000000306000029042b04210000040f0000000100200190000003900000613d000000000001042d00000000010000190000042d00010430000000400100043d0000013902000041000003970000013d000000400100043d0000011c020000410000000000210435000000040210003900000000000204350000010c0010009c0000010c0100804100000040011002100000011b011001c70000042d00010430000000400200043d000400000002001d00000138010000410000000000120435000000040120003900000001020000290000000504000029042b02d40000040f000000040200002900000000012100490000010c0010009c0000010c0100804100000060011002100000010c0020009c0000010c020080410000004002200210000000000121019f0000042d000104300004000000000002000400000002001d000100000001001d0000010f03100198000003f00000613d000000000030043f000000200000043f00000000010004140000010c0010009c0000010c01008041000000c00110021000000116011001c70000801002000039000300000003001d042b04260000040f0000000100200190000003ee0000613d0000000302000029000000000101043b000000000301041a0002000400300074000003fa0000413d000000000020043f000000200000043f00000000010004140000010c0010009c0000010c01008041000000c00110021000000116011001c70000801002000039042b04260000040f0000000100200190000003ee0000613d000000000101043b0000000202000029000000000021041b0000000201000039000000000201041a00000004030000290000000002320049000000000021041b000000400100043d00000000003104350000010c0010009c0000010c01008041000000400110021000000000020004140000010c0020009c0000010c02008041000000c002200210000000000112019f00000114011001c70000800d020000390000000303000039000001180400004100000003050000290000000006000019042b04210000040f0000000100200190000003ee0000613d000000000001042d00000000010000190000042d00010430000000400100043d00000139020000410000000000210435000000040210003900000000000204350000010c0010009c0000010c0100804100000040011002100000011b011001c70000042d00010430000000400200043d000300000002001d00000138010000410000000000120435000000040120003900000001020000290000000404000029042b02d40000040f000000030200002900000000012100490000010c0010009c0000010c0100804100000060011002100000010c0020009c0000010c020080410000004002200210000000000121019f0000042d000104300000010c0010009c0000010c0100804100000040011002100000010c0020009c0000010c020080410000006002200210000000000112019f00000000020004140000010c0020009c0000010c02008041000000c002200210000000000112019f0000013a011001c70000801002000039042b04260000040f00000001002001900000041f0000613d000000000101043b000000000001042d00000000010000190000042d0001043000000424002104210000000102000039000000000001042d0000000002000019000000000001042d00000429002104230000000102000039000000000001042d0000000002000019000000000001042d0000042b000004320000042c0001042e0000042d000104300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffbf46726f737469630000000000000000000000000000000000000000000000000046524f5354000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0200000000000000000000000000000000000020000000000000000000000000fffffffffffffffffffffffffffffffffffffffffcc4d1c3602f7fc31800000002000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000033b2e3c9fd0803ce8000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef00000002000000000000000000000000000000400000010000000000000000004e487b71000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000ec442f05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000042966c670000000000000000000000000000000000000000000000000000000095d89b400000000000000000000000000000000000000000000000000000000095d89b4100000000000000000000000000000000000000000000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000dd62ed3e0000000000000000000000000000000000000000000000000000000042966c680000000000000000000000000000000000000000000000000000000070a082310000000000000000000000000000000000000000000000000000000079cc67900000000000000000000000000000000000000000000000000000000018160ddc0000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000313ce5670000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000095ea7b3000000000000000000000000000000000000002000000080000000000000000000000000000000000000000000000000000000200000000000000000000000008a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b000000000000000000000000000000000000000000000000ffffffffffffff7f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92594280d62000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000800000000000000000e602df0500000000000000000000000000000000000000000000000000000000c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85bffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb8f41b200000000000000000000000000000000000000000000000000000000e450d38c0000000000000000000000000000000000000000000000000000000096c6fd1e00000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005572d3164863872a22c8daa0e042ba2fc353ee965d2da60199b2b61f69082922
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000d93d306d76885b66b174660e7b037b623fadfdd7
-----Decoded View---------------
Arg [0] : recipient (address): 0xd93D306d76885b66b174660e7B037b623FAdFdD7
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000d93d306d76885b66b174660e7b037b623fadfdd7
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
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.