ETH Price: $3,217.08 (+0.63%)

YORU (YORU)

Overview

TokenID

192

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
TWProxy

Compiler Version
v0.8.17-1.0.1

ZkSolc Version
v1.3.9

Optimization Enabled:
Yes with Mode 3

Other Settings:
default evmVersion, Apache-2.0 license
File 1 of 4 : TWProxy.sol
// SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.11;

/// @author thirdweb

//   $$\     $$\       $$\                 $$\                         $$\
//   $$ |    $$ |      \__|                $$ |                        $$ |
// $$$$$$\   $$$$$$$\  $$\  $$$$$$\   $$$$$$$ |$$\  $$\  $$\  $$$$$$\  $$$$$$$\
// \_$$  _|  $$  __$$\ $$ |$$  __$$\ $$  __$$ |$$ | $$ | $$ |$$  __$$\ $$  __$$\
//   $$ |    $$ |  $$ |$$ |$$ |  \__|$$ /  $$ |$$ | $$ | $$ |$$$$$$$$ |$$ |  $$ |
//   $$ |$$\ $$ |  $$ |$$ |$$ |      $$ |  $$ |$$ | $$ | $$ |$$   ____|$$ |  $$ |
//   \$$$$  |$$ |  $$ |$$ |$$ |      \$$$$$$$ |\$$$$$\$$$$  |\$$$$$$$\ $$$$$$$  |
//    \____/ \__|  \__|\__|\__|       \_______| \_____\____/  \_______|\_______/

import "@openzeppelin/contracts/proxy/Proxy.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/StorageSlot.sol";

contract TWProxy is Proxy {
    /**
     * @dev Storage slot with the address of the current implementation.
     * This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1, and is
     * validated in the constructor.
     */
    bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;

    constructor(address _logic, bytes memory _data) payable {
        assert(_IMPLEMENTATION_SLOT == bytes32(uint256(keccak256("eip1967.proxy.implementation")) - 1));
        StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = _logic;
        if (_data.length > 0) {
            // slither-disable-next-line unused-return
            Address.functionDelegateCall(_logic, _data);
        }
    }

    /**
     * @dev Returns the current implementation address.
     */
    function _implementation() internal view override returns (address impl) {
        return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
    }
}

File 2 of 4 : Proxy.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (proxy/Proxy.sol)

pragma solidity ^0.8.0;

/**
 * @dev This abstract contract provides a fallback function that delegates all calls to another contract using the EVM
 * instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to
 * be specified by overriding the virtual {_implementation} function.
 *
 * Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a
 * different contract through the {_delegate} function.
 *
 * The success and return data of the delegated call will be returned back to the caller of the proxy.
 */
abstract contract Proxy {
    /**
     * @dev Delegates the current call to `implementation`.
     *
     * This function does not return to its internal call site, it will return directly to the external caller.
     */
    function _delegate(address implementation) internal virtual {
        assembly {
            // Copy msg.data. We take full control of memory in this inline assembly
            // block because it will not return to Solidity code. We overwrite the
            // Solidity scratch pad at memory position 0.
            calldatacopy(0, 0, calldatasize())

            // Call the implementation.
            // out and outsize are 0 because we don't know the size yet.
            let result := delegatecall(gas(), implementation, 0, calldatasize(), 0, 0)

            // Copy the returned data.
            returndatacopy(0, 0, returndatasize())

            switch result
            // delegatecall returns 0 on error.
            case 0 {
                revert(0, returndatasize())
            }
            default {
                return(0, returndatasize())
            }
        }
    }

    /**
     * @dev This is a virtual function that should be overridden so it returns the address to which the fallback function
     * and {_fallback} should delegate.
     */
    function _implementation() internal view virtual returns (address);

    /**
     * @dev Delegates the current call to the address returned by `_implementation()`.
     *
     * This function does not return to its internal call site, it will return directly to the external caller.
     */
    function _fallback() internal virtual {
        _beforeFallback();
        _delegate(_implementation());
    }

    /**
     * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if no other
     * function in the contract matches the call data.
     */
    fallback() external payable virtual {
        _fallback();
    }

    /**
     * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if call data
     * is empty.
     */
    receive() external payable virtual {
        _fallback();
    }

    /**
     * @dev Hook that is called before falling back to the implementation. Can happen as part of a manual `_fallback`
     * call, or as part of the Solidity `fallback` or `receive` functions.
     *
     * If overridden should call `super._beforeFallback()`.
     */
    function _beforeFallback() internal virtual {}
}

File 3 of 4 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 4 of 4 : StorageSlot.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/StorageSlot.sol)

pragma solidity ^0.8.0;

/**
 * @dev Library for reading and writing primitive types to specific storage slots.
 *
 * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.
 * This library helps with reading and writing to such slots without the need for inline assembly.
 *
 * The functions in this library return Slot structs that contain a `value` member that can be used to read or write.
 *
 * Example usage to set ERC1967 implementation slot:
 * ```
 * contract ERC1967 {
 *     bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
 *
 *     function _getImplementation() internal view returns (address) {
 *         return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
 *     }
 *
 *     function _setImplementation(address newImplementation) internal {
 *         require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract");
 *         StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
 *     }
 * }
 * ```
 *
 * _Available since v4.1 for `address`, `bool`, `bytes32`, and `uint256`._
 */
library StorageSlot {
    struct AddressSlot {
        address value;
    }

    struct BooleanSlot {
        bool value;
    }

    struct Bytes32Slot {
        bytes32 value;
    }

    struct Uint256Slot {
        uint256 value;
    }

    /**
     * @dev Returns an `AddressSlot` with member `value` located at `slot`.
     */
    function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `BooleanSlot` with member `value` located at `slot`.
     */
    function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Bytes32Slot` with member `value` located at `slot`.
     */
    function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Uint256Slot` with member `value` located at `slot`.
     */
    function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_logic","type":"address"},{"internalType":"bytes","name":"_data","type":"bytes"}],"stateMutability":"payable","type":"constructor"},{"stateMutability":"payable","type":"fallback"},{"stateMutability":"payable","type":"receive"}]

d76fad23fb5adc44b97ece35a3c97756762a9780d8ce2c7a87d348a4e4c886f315743ced010000939c0f641c18abe55b3a876a26f1720e4903c3f12e25b8b6214942db90000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000027d6addf1a00b01ed33681996ff5f03303b69f3400000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000244e1591634000000000000000000000000d4009bbf73039eb4997c53de197282c8baabecf60000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000220000000000000000000000000d4009bbf73039eb4997c53de197282c8baabecf6000000000000000000000000d4009bbf73039eb4997c53de197282c8baabecf600000000000000000000000000000000000000000000000000000000000001f40000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d4009bbf73039eb4997c53de197282c8baabecf60000000000000000000000000000000000000000000000000000000000000004594f5255000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004594f5255000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000037697066733a2f2f516d54796f505577327a54363868706d59417562787a753478483635334e46455667596172537042786d6f4248732f30000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x00040000000000020006000000000002000000000301001900000060033002700000007e04300197000300000041035500020000000103550000007e0030019d000100000000001f0000008001000039000000400010043f00000000010000310000000102200190000000410000c13d0000008402000041000000000202041a0000008202200197000000000310004c0000004d0000c13d0000000001000414000000040320008c0000006a0000613d0000007e0300004100000000040000310000007e0540009c00000000040380190000007e0510009c0000000001038019000000c0011002100000006003400210000000000113019f01f201ed0000040f0003000000010355000000000301001900000060043002700000001f0340018f0001007e0040019d0000007e044001970000000504400272000000300000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000645004b000000290000413d000000000530004c0000003e0000613d00000003033002100000000504400210000000000504043300000000053501cf000000000535022f000000000141034f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f00000000001404350000000101200190000001060000c13d000001090000013d0000009f02100039000000200900008a000000000292016f0000007f03200041000000800330009c000000860000213d000000900100004100000000001004350000004101000039000000040010043f0000009101000041000001f40001043000000002030003670000001f0410018f0000000501100272000000590000613d00000000050000190000000506500210000000000763034f000000000707043b00000000007604350000000105500039000000000615004b000000520000413d000000000540004c000000670000613d00000003044002100000000501100210000000000501043300000000054501cf000000000545022f000000000313034f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f00000000003104350000000001000414000000040320008c000000dc0000c13d000000030100036700000001020000310000001f0320018f0000000502200272000000770000613d00000000040000190000000505400210000000000651034f000000000606043b00000000006504350000000104400039000000000524004b000000700000413d000000000430004c000001060000613d00000003033002100000000502200210000000000402043300000000043401cf000000000434022f000000000121034f000000000101043b0000010003300089000000000131022f00000000013101cf000000000141019f0000000000120435000001060000013d000000400020043f0000001f0210018f00000002030003670000000504100272000000940000613d00000000050000190000000506500210000000000763034f000000000707043b000000800660003900000000007604350000000105500039000000000645004b0000008c0000413d000000000520004c000000a30000613d0000000504400210000000000343034f00000003022002100000008004400039000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f000000000024043500000081020000410000003f0310008c000000000300001900000000030220190000008104100197000000000540004c0000000002008019000000810440009c000000000203c019000000000220004c000000da0000613d000000800a00043d0000008202a001970000008203a0009c000000da0000213d000000a00300043d000000830430009c000000da0000213d00000080041000390000009f013000390000008105000041000000000641004b0000000006000019000000000605801900000081074001970000008101100197000000000871004b0000000005008019000000000171013f000000810110009c00000000010600190000000001056019000000000110004c000000da0000c13d00000080013000390000000001010433000000830510009c000000470000213d0000003f05100039000000000595016f000000400800043d0000000005580019000000000685004b00000000060000190000000106004039000000830750009c000000470000213d0000000106600190000000470000c13d000000400050043f0000000007180436000000a0033000390000000005310019000000000445004b0000010f0000a13d0000000001000019000001f4000104300000007e0300004100000000040000310000007e0540009c00000000040380190000007e0510009c0000000001038019000000c0011002100000006003400210000000000113019f01f201ed0000040f0003000000010355000000000301001900000060043002700000001f0340018f0001007e0040019d0000007e044001970000000504400272000000f60000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000645004b000000ef0000413d000000000530004c000001040000613d00000003033002100000000504400210000000000504043300000000053501cf000000000535022f000000000141034f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f00000000001404350000000101200190000001090000613d000000600100003900000001011001ff000001f30001042e0000007e0100004100000001020000310000007e0320009c00000000010240190000006001100210000001f400010430000000000410004c000001190000613d000000000400001900000000057400190000000006340019000000000606043300000000006504350000002004400039000000000514004b000001120000413d000000000117001900000000000104350000008401000041000000000301041a0000008503300197000000000223019f000000000021041b0000000001080433000000000110004c000001280000c13d0000002001000039000001000010044300000120000004430000008f01000041000001f30001042e000000400300043d000000860130009c000000470000213d0000006001300039000000400010043f0000004001300039000000870200004100000000002104350000002701000039000200000003001d00000000021304360000008801000041000100000002001d0000000000120435000000890100004100000000001004390000000400a004430000007e0100004100000000020004140000007e0320009c0000000001024019000000c0011002100000008a011001c70000800202000039000600000009001d00050000000a001d000400000008001d000300000007001d01f201e80000040f00000003070000290000000404000029000000050600002900000006050000290000000102200190000000da0000613d000000000101043b000000000110004c000001630000c13d000000400100043d00000064021000390000008c03000041000000000032043500000044021000390000008d0300004100000000003204350000002402100039000000260300003900000000003204350000008b0200004100000000002104350000000402100039000000200300003900000000003204350000007e020000410000007e0310009c000000000102801900000040011002100000008e011001c7000001f4000104300000000001000414000000040260008c000001690000c13d000000010200003900000001030000310000017f0000013d0000007e020000410000007e0370009c00000000030200190000000003074019000000400330021000000000040404330000007e0540009c00000000040280190000006004400210000000000334019f0000007e0410009c0000000001028019000000c001100210000000000113019f000000000206001901f201ed0000040f0000000605000029000000010220018f000300000001035500000060011002700001007e0010019d0000007e031001970000006001000039000000000430004c000001a50000c13d000000000220004c000001230000c13d0000000021010434000000000310004c000001d20000c13d000000400400043d000500000004001d0000008b01000041000000000014043500000004014000390000002002000039000000000021043500000002010000290000000003010433000400000003001d000000240140003900000000003104350000004402400039000000010100002901f201db0000040f00000004010000290000001f011000390000000602000029000000000121016f00000044011000390000007e020000410000007e0310009c000000000102801900000005040000290000007e0340009c000000000204401900000040022002100000006001100210000000000121019f000001f400010430000000830130009c000000470000213d0000003f01300039000000000451016f000000400100043d0000000004410019000000000514004b00000000050000190000000105004039000000830640009c000000470000213d0000000105500190000000470000c13d000000400040043f0000000003310436000000030400036700000001060000310000001f0560018f0000000506600272000001c20000613d000000000700001900000005087002100000000009830019000000000884034f000000000808043b00000000008904350000000107700039000000000867004b000001ba0000413d000000000750004c000001820000613d0000000506600210000000000464034f00000000036300190000000305500210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f0000000000430435000001820000013d0000007e030000410000007e0420009c00000000020380190000007e0410009c000000000103801900000060011002100000004002200210000000000121019f000001f400010430000000000430004c000001e50000613d000000000400001900000000052400190000000006140019000000000606043300000000006504350000002004400039000000000534004b000001de0000413d00000000012300190000000000010435000000000001042d000001eb002104230000000102000039000000000001042d0000000002000019000000000001042d000001f0002104250000000102000039000000000001042d0000000002000019000000000001042d000001f200000432000001f30001042e000001f40001043000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffffffffffff000000000000007f8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffff360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbcffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff9f206661696c656400000000000000000000000000000000000000000000000000416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c1806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b83020000020000000000000000000000000000002400000000000000000000000008c379a0000000000000000000000000000000000000000000000000000000006e74726163740000000000000000000000000000000000000000000000000000416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f000000000000000000000000000000000000008400000000000000000000000000000002000000000000000000000000000000400000010000000000000000004e487b710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000000000000000000000004eac19f774d2aa18cb028e3f83aa2c1f0c443d0b4b93f1861958946a249100cb

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000027d6addf1a00b01ed33681996ff5f03303b69f3400000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000244e1591634000000000000000000000000d4009bbf73039eb4997c53de197282c8baabecf60000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000220000000000000000000000000d4009bbf73039eb4997c53de197282c8baabecf6000000000000000000000000d4009bbf73039eb4997c53de197282c8baabecf600000000000000000000000000000000000000000000000000000000000001f40000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d4009bbf73039eb4997c53de197282c8baabecf60000000000000000000000000000000000000000000000000000000000000004594f5255000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004594f5255000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000037697066733a2f2f516d54796f505577327a54363868706d59417562787a753478483635334e46455667596172537042786d6f4248732f30000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _logic (address): 0x27d6AdDf1a00B01eD33681996Ff5f03303B69f34
Arg [1] : _data (bytes): 0xe1591634000000000000000000000000d4009bbf73039eb4997c53de197282c8baabecf60000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000220000000000000000000000000d4009bbf73039eb4997c53de197282c8baabecf6000000000000000000000000d4009bbf73039eb4997c53de197282c8baabecf600000000000000000000000000000000000000000000000000000000000001f40000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d4009bbf73039eb4997c53de197282c8baabecf60000000000000000000000000000000000000000000000000000000000000004594f5255000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004594f5255000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000037697066733a2f2f516d54796f505577327a54363868706d59417562787a753478483635334e46455667596172537042786d6f4248732f300000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Encoded View---------------
22 Constructor Arguments found :
Arg [0] : 00000000000000000000000027d6addf1a00b01ed33681996ff5f03303b69f34
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000244
Arg [3] : e1591634000000000000000000000000d4009bbf73039eb4997c53de197282c8
Arg [4] : baabecf600000000000000000000000000000000000000000000000000000000
Arg [5] : 0000014000000000000000000000000000000000000000000000000000000000
Arg [6] : 0000018000000000000000000000000000000000000000000000000000000000
Arg [7] : 000001c000000000000000000000000000000000000000000000000000000000
Arg [8] : 00000220000000000000000000000000d4009bbf73039eb4997c53de197282c8
Arg [9] : baabecf6000000000000000000000000d4009bbf73039eb4997c53de197282c8
Arg [10] : baabecf600000000000000000000000000000000000000000000000000000000
Arg [11] : 000001f400000000000000000000000000000000000000000000000000000000
Arg [12] : 00000000000000000000000000000000d4009bbf73039eb4997c53de197282c8
Arg [13] : baabecf600000000000000000000000000000000000000000000000000000000
Arg [14] : 00000004594f5255000000000000000000000000000000000000000000000000
Arg [15] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [16] : 00000004594f5255000000000000000000000000000000000000000000000000
Arg [17] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [18] : 00000037697066733a2f2f516d54796f505577327a54363868706d5941756278
Arg [19] : 7a753478483635334e46455667596172537042786d6f4248732f300000000000
Arg [20] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [21] : 0000000000000000000000000000000000000000000000000000000000000000


[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.