Overview
ETH Balance
ETH Value
$149,101.87 (@ $3,554.21/ETH)Token Holdings
Could not find any matches!
- ERC-20 Tokens (11)11.38334055 WETHWrapped Ethe... (WETH)$40,528.45@3,560.3315,000 WLD [ WWW.GET-WLD.ORG ] Visit to claim rewardERC-20: ! (WLD [ ...)10,000 OPTERC-20: OPTOPUS (OPT)70,000 TokenERC-20 TOKEN*[Spam]2,628 TokenERC-20 TOKEN*[Spam]100 TokenERC-20 TOKEN*[Spam]14,500 TokenERC-20 TOKEN*[Spam]14,500 TokenERC-20 TOKEN*[Spam]14,500 TokenERC-20 TOKEN*[Spam]14,500 TokenERC-20 TOKEN*[Spam]24 TokenERC-20 TOKEN*[Spam]NFT Tokens (11)visit me-qr.com/ummLhNju to secure your wallet nowBLOCKAID WARNINGERC-1155ERC-1155 TOKEN*[Suspicious]ERC-1155 TOKEN*[Spam]
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 1 from a total of 1 transactions
Transaction Hash MethodBlockFromToName 19650539 2022-08-18 18:48:06 837 days ago 1660848486 IN 0 ETH$0.00 0.000062813061 0.001 Latest 25 internal transactions (View All)
Advanced mode:Parent Transaction Hash Block From To 128821214 2024-12-03 15:53:25 1 hr ago 1733241205 0.00000025 ETH$0.00 128818676 2024-12-03 14:28:49 2 hrs ago 1733236129 0.000026242499992 ETH$0.09 128818649 2024-12-03 14:27:55 2 hrs ago 1733236075 0.00002994 ETH$0.11 128818625 2024-12-03 14:27:07 2 hrs ago 1733236027 0.000026473 ETH$0.09 128818565 2024-12-03 14:25:07 2 hrs ago 1733235907 0.0000198 ETH$0.07 128818515 2024-12-03 14:23:27 2 hrs ago 1733235807 0.00002963 ETH$0.11 128818408 2024-12-03 14:19:53 2 hrs ago 1733235593 0.000026399499993 ETH$0.09 128818332 2024-12-03 14:17:21 2 hrs ago 1733235441 0.000025420249994 ETH$0.09 128818242 2024-12-03 14:14:21 2 hrs ago 1733235261 0.00002295 ETH$0.08 128818218 2024-12-03 14:13:33 2 hrs ago 1733235213 0.000022299999994 ETH$0.08 128818155 2024-12-03 14:11:27 2 hrs ago 1733235087 0.000021749999961 ETH$0.08 128818124 2024-12-03 14:10:25 2 hrs ago 1733235025 0.000015 ETH$0.05 128818046 2024-12-03 14:07:49 2 hrs ago 1733234869 0.00000051475 ETH$0.00 128817325 2024-12-03 13:43:47 3 hrs ago 1733233427 0.0000058 ETH$0.02 128817263 2024-12-03 13:41:43 3 hrs ago 1733233303 0.00000075 ETH$0.00 128815333 2024-12-03 12:37:23 4 hrs ago 1733229443 0.000000875 ETH$0.00 128815333 2024-12-03 12:37:23 4 hrs ago 1733229443 0.000000875 ETH$0.00 128815333 2024-12-03 12:37:23 4 hrs ago 1733229443 0.000000875 ETH$0.00 128815333 2024-12-03 12:37:23 4 hrs ago 1733229443 0.000000875 ETH$0.00 128815333 2024-12-03 12:37:23 4 hrs ago 1733229443 0.000000875 ETH$0.00 128815333 2024-12-03 12:37:23 4 hrs ago 1733229443 0.000000875 ETH$0.00 128815333 2024-12-03 12:37:23 4 hrs ago 1733229443 0.000000875 ETH$0.00 128815333 2024-12-03 12:37:23 4 hrs ago 1733229443 0.000000875 ETH$0.00 128815333 2024-12-03 12:37:23 4 hrs ago 1733229443 0.000000875 ETH$0.00 128815333 2024-12-03 12:37:23 4 hrs ago 1733229443 0.000000987499999 ETH$0.00 Loading...LoadingContract Name:PayableProxy
Compiler Versionv0.8.14+commit.80d49f37
Optimization Enabled:Yes with 19066 runs
Other Settings:default evmVersionContract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import { PayableProxyInterface } from "../interfaces/PayableProxyInterface.sol"; interface IUpgradeBeacon { /** * @notice An external view function that returns the implementation. * * @return The address of the implementation. */ function implementation() external view returns (address); } /** * @title PayableProxy * @author OpenSea Protocol Team * @notice PayableProxy is a beacon proxy which will immediately return if * called with callvalue. Otherwise, it will delegatecall the beacon * implementation. */ contract PayableProxy is PayableProxyInterface { // Address of the beacon. address private immutable _beacon; constructor(address beacon) payable { // Ensure the origin is an approved deployer. require( (tx.origin == address(0x939C8d89EBC11fA45e576215E2353673AD0bA18A) || tx.origin == address(0xe80a65eB7a3018DedA407e621Ef5fb5B416678CA) || tx.origin == address(0x86D26897267711ea4b173C8C124a0A73612001da) || tx.origin == address(0x3B52ad533687Ce908bA0485ac177C5fb42972962)), "Deployment must originate from an approved deployer." ); // Set the initial beacon. _beacon = beacon; } function initialize(address ownerToSet) external { // Ensure the origin is an approved deployer. require( (tx.origin == address(0x939C8d89EBC11fA45e576215E2353673AD0bA18A) || tx.origin == address(0xe80a65eB7a3018DedA407e621Ef5fb5B416678CA) || tx.origin == address(0x86D26897267711ea4b173C8C124a0A73612001da) || tx.origin == address(0x3B52ad533687Ce908bA0485ac177C5fb42972962)), "Initialize must originate from an approved deployer." ); // Get the implementation address from the provided beacon. address implementation = IUpgradeBeacon(_beacon).implementation(); // Create the initializationCalldata from the provided parameters. bytes memory initializationCalldata = abi.encodeWithSignature( "initialize(address)", ownerToSet ); // Delegatecall into the implementation, supplying initialization // calldata. (bool ok, ) = implementation.delegatecall(initializationCalldata); // Revert and include revert data if delegatecall to implementation // reverts. if (!ok) { assembly { returndatacopy(0, 0, returndatasize()) revert(0, returndatasize()) } } } /** * @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 override { _fallback(); } /** * @dev Internal fallback function that delegates calls to the address * returned by `_implementation()`. Will run if no other function * in the contract matches the call data. */ function _fallback() internal { // Delegate if call value is zero. if (msg.value == 0) { _delegate(_implementation()); } } /** * @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 function returns the address to which the fallback function * should delegate. */ function _implementation() internal view returns (address) { return IUpgradeBeacon(_beacon).implementation(); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; /** * @title PayableProxyInterface * @author OpenSea Protocol Team * @notice PayableProxyInterface contains all external function interfaces * for the payable proxy. */ interface PayableProxyInterface { /** * @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; }
{ "viaIR": true, "optimizer": { "enabled": true, "runs": 19066 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
[{"inputs":[{"internalType":"address","name":"beacon","type":"address"}],"stateMutability":"payable","type":"constructor"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address","name":"ownerToSet","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a0601f61066738819003918201601f19168301916001600160401b038311848410176100765780849260209460405283398101031261007157516001600160a01b0381168103610071576100539061008c565b6040516104e29081610185823960805181818160e501526104320152f35b600080fd5b634e487b7160e01b600052604160045260246000fd5b73939c8d89ebc11fa45e576215e2353673ad0ba18a32148015610167575b801561014a575b801561012d575b156100c257608052565b60405162461bcd60e51b815260206004820152603460248201527f4465706c6f796d656e74206d757374206f726967696e6174652066726f6d206160448201527f6e20617070726f766564206465706c6f7965722e0000000000000000000000006064820152608490fd5b50733b52ad533687ce908ba0485ac177c5fb4297296232146100b8565b507386d26897267711ea4b173c8c124a0a73612001da32146100b1565b5073e80a65eb7a3018deda407e621ef5fb5b416678ca32146100aa56fe60806040526004361015610018575b6100166103e4565b005b6000803560e01c63c4d66de81461002f575061000e565b346102245760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261022457808060043561006c81610227565b73939c8d89ebc11fa45e576215e2353673ad0ba18a32148015610207575b80156101ea575b80156101cd575b6100a19061024a565b604051907f5c60da1b00000000000000000000000000000000000000000000000000000000825260208260048173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000165afa9182156101c0575b8392610190575b506040517fc4d66de8000000000000000000000000000000000000000000000000000000006020820190815273ffffffffffffffffffffffffffffffffffffffff929092166024808301919091528152610171604482610305565b51915af461017d610378565b501561018857604051f35b3d81803e3d90fd5b6101b291925060203d81116101b9575b6101aa8183610305565b810190610353565b9038610116565b503d6101a0565b6101c861036b565b61010f565b5032733b52ad533687ce908ba0485ac177c5fb4297296214610098565b507386d26897267711ea4b173c8c124a0a73612001da3214610091565b5073e80a65eb7a3018deda407e621ef5fb5b416678ca321461008a565b80fd5b73ffffffffffffffffffffffffffffffffffffffff81160361024557565b600080fd5b1561025157565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f496e697469616c697a65206d757374206f726967696e6174652066726f6d206160448201527f6e20617070726f766564206465706c6f7965722e0000000000000000000000006064820152fd5b507f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff82111761034657604052565b61034e6102d5565b604052565b90816020910312610245575161036881610227565b90565b506040513d6000823e3d90fd5b3d156103df573d9067ffffffffffffffff82116103d2575b604051916103c660207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8401160184610305565b82523d6000602084013e565b6103da6102d5565b610390565b606090565b34156103ec57565b6000806040517f5c60da1b00000000000000000000000000000000000000000000000000000000815260208160048173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000165afa90811561049f575b8291610481575b50368280378136915af43d6000803e1561047c573d6000f35b3d6000fd5b610499915060203d81116101b9576101aa8183610305565b83610463565b6104a761036b565b61045c56fea264697066735822122022a6f8a80a3410719e8504e9b42af008259446db5cdbc3acc5d20ff3f8f338a464736f6c634300080e00330000000000000000000000000000000033ca97c0b4df29103dc8da00a967884fDeployed Bytecode
0x60806040526004361015610018575b6100166103e4565b005b6000803560e01c63c4d66de81461002f575061000e565b346102245760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261022457808060043561006c81610227565b73939c8d89ebc11fa45e576215e2353673ad0ba18a32148015610207575b80156101ea575b80156101cd575b6100a19061024a565b604051907f5c60da1b00000000000000000000000000000000000000000000000000000000825260208260048173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000033ca97c0b4df29103dc8da00a967884f165afa9182156101c0575b8392610190575b506040517fc4d66de8000000000000000000000000000000000000000000000000000000006020820190815273ffffffffffffffffffffffffffffffffffffffff929092166024808301919091528152610171604482610305565b51915af461017d610378565b501561018857604051f35b3d81803e3d90fd5b6101b291925060203d81116101b9575b6101aa8183610305565b810190610353565b9038610116565b503d6101a0565b6101c861036b565b61010f565b5032733b52ad533687ce908ba0485ac177c5fb4297296214610098565b507386d26897267711ea4b173c8c124a0a73612001da3214610091565b5073e80a65eb7a3018deda407e621ef5fb5b416678ca321461008a565b80fd5b73ffffffffffffffffffffffffffffffffffffffff81160361024557565b600080fd5b1561025157565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f496e697469616c697a65206d757374206f726967696e6174652066726f6d206160448201527f6e20617070726f766564206465706c6f7965722e0000000000000000000000006064820152fd5b507f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff82111761034657604052565b61034e6102d5565b604052565b90816020910312610245575161036881610227565b90565b506040513d6000823e3d90fd5b3d156103df573d9067ffffffffffffffff82116103d2575b604051916103c660207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8401160184610305565b82523d6000602084013e565b6103da6102d5565b610390565b606090565b34156103ec57565b6000806040517f5c60da1b00000000000000000000000000000000000000000000000000000000815260208160048173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000033ca97c0b4df29103dc8da00a967884f165afa90811561049f575b8291610481575b50368280378136915af43d6000803e1561047c573d6000f35b3d6000fd5b610499915060203d81116101b9576101aa8183610305565b83610463565b6104a761036b565b61045c56fea264697066735822122022a6f8a80a3410719e8504e9b42af008259446db5cdbc3acc5d20ff3f8f338a464736f6c634300080e0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000033ca97c0b4df29103dc8da00a967884f
-----Decoded View---------------
Arg [0] : beacon (address): 0x0000000033cA97C0b4DF29103DC8dA00a967884f
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000033ca97c0b4df29103dc8da00a967884fLoading...LoadingLoading...LoadingABI for the implementation contract at 0x00d13230950000701e9ca8a9506c00df00220085, likely using a custom proxy implementation.Learn more about proxy contracts in our Knowledge Base
Loading...LoadingABI for the implementation contract at 0x00d13230950000701e9ca8a9506c00df00220085, likely using a custom proxy implementation.Learn more about proxy contracts in our Knowledge Base
Loading...LoadingLoading...LoadingLoading...LoadingLoading...LoadingLoading...LoadingMultichain Portfolio | 29 Chains
Chain Token Portfolio % Price Amount Value POL 41.93% $3,554.77 1,774.4581 $6,307,786.98 POL 2.86% $0.686942 626,764.2479 $430,550.86 POL 2.23% $0.998157 335,871.3877 $335,252.38 POL 0.35% $0.735911 72,453.2147 $53,319.12 POL 0.35% $0.997868 52,791.5648 $52,679.01 POL 0.07% $0.998157 10,110.4842 $10,091.85 POL <0.01% $0.004583 5,576.3156 $25.55 POL <0.01% $0.695472 0.5 $0.3477 POL <0.01% $0.002934 42.3658 $0.1243 BASE 17.44% $3,555.3 737.7228 $2,622,829.44 BASE 3.43% $3,560.33 145.009 $516,279.93 BASE <0.01% $0.998309 652.5533 $651.45 ARB 12.60% $3,554.43 533.1095 $1,894,899.28 ARB 1.76% $3,560.65 74.2985 $264,550.84 ARB <0.01% $0.000411 500 $0.2052 ETH 4.43% $3,554.49 187.4346 $666,234.11 ETH 1.85% $0.050304 5,536,190.9054 $278,492.55 ETH 1.38% $3,554.49 58.5827 $208,231.44 ETH 1.14% $12.49 13,771.3773 $172,004.5 ETH 0.60% $1 90,531.8862 $90,531.89 ETH 0.40% $0.732807 81,836.3201 $59,970.23 ETH 0.06% $0.666883 12,896.5375 $8,600.48 ETH 0.05% $1.64 4,685.8156 $7,684.74 ETH 0.04% $1.8 3,413.1474 $6,128.4 ETH <0.01% $23.72 42.0045 $996.35 ETH <0.01% $0.739331 878.7713 $649.7 ETH <0.01% $1 616.2031 $616.82 ETH <0.01% $0.000929 23,000 $21.37 ETH <0.01% $0.004618 1,675 $7.74 ETH <0.01% $14.1 0.0666 $0.9391 BSC 3.53% $647.34 820.4055 $531,080.61 BSC 0.56% $646.68 130.1639 $84,173.85 BSC <0.01% $2.63 1.25 $3.29 BSC <0.01% $0.001015 100 $0.1015 OP Ether (ETH)0.99% $3,554.21 41.9507 $149,101.87 OP 0.27% $3,560.33 11.3833 $40,528.45 AVAX 0.88% $49.91 2,660.8213 $132,802.81 AVAX 0.12% $49.9 349.3317 $17,432.51 BLAST 0.38% $3,554.79 16.0671 $57,115.07 BLAST 0.04% $3,560.33 1.8083 $6,438.28 ARBNOVA 0.21% $3,555.26 8.767 $31,169.04 ARBNOVA 0.02% $3,560.65 0.8763 $3,120.3 [ 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.
Address QR Code
My Address - Private Name Tag or Note
My Name Tag:
Private Name Tags (up to 35 characters) can be used for easy identification of addressesPrivate Note:
A private note (up to 500 characters) can be attached to this address.
Please DO NOT store any passwords or private keys here.Compiler specific version warnings:
The compiled contract might be susceptible to VerbatimInvalidDeduplication (low-severity), FullInlinerNonExpressionSplitArgumentEvaluationOrder (low-severity), MissingSideEffectsOnSelectorAccess (low-severity), StorageWriteRemovalBeforeConditionalTermination (medium/high-severity), AbiReencodingHeadOverflowWithStaticArrayCleanup (medium-severity), DirtyBytesArrayToStorage (low-severity), InlineAssemblyMemorySideEffects (medium-severity) Solidity Compiler Bugs.
Connect a Wallet
Connecting wallet for read function is optional, useful if you want to call certain functions or simply use your wallet's node.Connect a Wallet
Connecting wallet for read function is optional, useful if you want to call certain functions or simply use your wallet's node.Connect a Wallet
Connecting wallet for read function is optional, useful if you want to call certain functions or simply use your wallet's node.Before You Copy
Transaction Private Note
This website uses cookies to improve your experience. By continuing to use this website, you agree to its Terms and Privacy Policy.