Overview
ETH Balance
0 ETH
ETH Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 1,471 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 6514070 | 43 hrs ago | IN | 0 ETH | 0.00000478 | ||||
Transfer From | 6511113 | 44 hrs ago | IN | 0 ETH | 0.00000679 | ||||
Transfer From | 6505813 | 45 hrs ago | IN | 0 ETH | 0.00000813 | ||||
Transfer From | 5801047 | 10 days ago | IN | 0 ETH | 0.00000699 | ||||
Set Approval For... | 5065008 | 19 days ago | IN | 0 ETH | 0.00000646 | ||||
Set Approval For... | 4033991 | 31 days ago | IN | 0 ETH | 0.00000601 | ||||
Set Approval For... | 3959686 | 32 days ago | IN | 0 ETH | 0.00000583 | ||||
Set Approval For... | 3932998 | 32 days ago | IN | 0 ETH | 0.00000767 | ||||
Set Approval For... | 3892118 | 33 days ago | IN | 0 ETH | 0.00000523 | ||||
Set Approval For... | 3860831 | 33 days ago | IN | 0 ETH | 0.00000425 | ||||
Set Approval For... | 3768019 | 34 days ago | IN | 0 ETH | 0.00000664 | ||||
Set Approval For... | 3581094 | 36 days ago | IN | 0 ETH | 0.00000576 | ||||
Set Approval For... | 3511096 | 37 days ago | IN | 0 ETH | 0.00000514 | ||||
Set Approval For... | 3427205 | 38 days ago | IN | 0 ETH | 0.00000539 | ||||
Set Approval For... | 3272651 | 40 days ago | IN | 0 ETH | 0.00000506 | ||||
Set Approval For... | 3271750 | 40 days ago | IN | 0 ETH | 0.00000421 | ||||
Set Approval For... | 3187873 | 41 days ago | IN | 0 ETH | 0.00000436 | ||||
Set Approval For... | 3184839 | 41 days ago | IN | 0 ETH | 0.00000653 | ||||
Set Approval For... | 3135710 | 42 days ago | IN | 0 ETH | 0.00000575 | ||||
Set Approval For... | 3106552 | 42 days ago | IN | 0 ETH | 0.00000521 | ||||
Safe Transfer Fr... | 3041318 | 43 days ago | IN | 0 ETH | 0.00000478 | ||||
Safe Transfer Fr... | 3041311 | 43 days ago | IN | 0 ETH | 0.00000477 | ||||
Safe Transfer Fr... | 3041304 | 43 days ago | IN | 0 ETH | 0.00000477 | ||||
Safe Transfer Fr... | 3041252 | 43 days ago | IN | 0 ETH | 0.00000477 | ||||
Safe Transfer Fr... | 3041246 | 43 days ago | IN | 0 ETH | 0.00000656 |
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
1096370 | 66 days ago | 0.8457 ETH | ||||
992243 | 67 days ago | 0.0001 ETH | ||||
992243 | 67 days ago | 0.0001 ETH | ||||
992243 | 67 days ago | 0.0031 ETH | ||||
992243 | 67 days ago | 0.0031 ETH | ||||
991914 | 67 days ago | 0.0001 ETH | ||||
991914 | 67 days ago | 0.0001 ETH | ||||
991914 | 67 days ago | 0.0031 ETH | ||||
991914 | 67 days ago | 0.0031 ETH | ||||
990886 | 67 days ago | 0.0001 ETH | ||||
990886 | 67 days ago | 0.0001 ETH | ||||
990886 | 67 days ago | 0.0031 ETH | ||||
990886 | 67 days ago | 0.0031 ETH | ||||
990699 | 67 days ago | 0.0003 ETH | ||||
990699 | 67 days ago | 0.0003 ETH | ||||
990699 | 67 days ago | 0.0093 ETH | ||||
990699 | 67 days ago | 0.0093 ETH | ||||
989061 | 67 days ago | 0.0001 ETH | ||||
989061 | 67 days ago | 0.0001 ETH | ||||
989061 | 67 days ago | 0.0031 ETH | ||||
989061 | 67 days ago | 0.0031 ETH | ||||
988803 | 67 days ago | 0.0003 ETH | ||||
988803 | 67 days ago | 0.0003 ETH | ||||
988803 | 67 days ago | 0.0093 ETH | ||||
988803 | 67 days ago | 0.0093 ETH |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
Proxy
Compiler Version
v0.8.25+commit.b61c2a91
ZkSolc Version
v1.5.7
Optimization Enabled:
Yes with Mode 3
Other Settings:
cancun EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title Minimal Proxy Contract * @dev Enhanced proxy implementation compatible with EIP-1967 */ contract Proxy { // EIP-1967 storage slots bytes32 private constant IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; constructor(address _impl) { require(_impl != address(0), "Invalid implementation"); assembly { sstore(IMPLEMENTATION_SLOT, _impl) } } /** * @dev Receive function to accept ETH */ receive() external payable { _fallback(); } /** * @dev Fallback function for all other calls */ fallback() external payable { _fallback(); } /** * @dev Returns the current implementation address */ function _implementation() internal view returns (address impl) { assembly { impl := sload(IMPLEMENTATION_SLOT) } } /** * @dev Core delegation function */ function _fallback() internal { address _impl = _implementation(); require(_impl != address(0), "Implementation not set"); assembly { // The pointer to the free memory slot let ptr := mload(0x40) // Copy function signature and arguments from calldata calldatacopy(ptr, 0, calldatasize()) // Delegate call to the implementation contract let result := delegatecall(gas(), _impl, ptr, calldatasize(), 0, 0) // Get the size of the last return data let size := returndatasize() // Copy the return data returndatacopy(ptr, 0, size) switch result case 0 { revert(ptr, size) } default { return(ptr, size) } } } }
{ "viaIR": true, "codegen": "yul", "remappings": [ "solady/=lib/solady/", "solemate/=/lib/solemate/src/", "@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/", "@openzeppelin/contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/contracts/", "forge-std/=lib/forge-std/src/", "erc721a/contracts/=lib/ERC721A/contracts/", "erc721a-upgradeable/contracts/=lib/ERC721A-Upgradeable/contracts/", "@limitbreak/creator-token-standards/src/=lib/creator-token-standards/src/", "@limitbreak/permit-c/=lib/creator-token-standards/lib/PermitC/src/", "@opensea/tstorish/=lib/creator-token-standards/lib/tstorish/src/", "@openzeppelin/=lib/creator-token-standards/lib/openzeppelin-contracts/", "@rari-capital/solmate/=lib/creator-token-standards/lib/PermitC/lib/solmate/", "ERC721A-Upgradeable/=lib/ERC721A-Upgradeable/contracts/", "ERC721A/=lib/creator-token-standards/lib/ERC721A/contracts/", "PermitC/=lib/creator-token-standards/lib/PermitC/", "creator-token-standards/=lib/creator-token-standards/", "ds-test/=lib/solmate/lib/ds-test/src/", "erc4626-tests/=lib/creator-token-standards/lib/PermitC/lib/openzeppelin-contracts/lib/erc4626-tests/", "erc721a/=lib/creator-token-standards/lib/ERC721A/", "forge-gas-metering/=lib/creator-token-standards/lib/PermitC/lib/forge-gas-metering/", "murky/=lib/creator-token-standards/lib/murky/", "openzeppelin-contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/", "openzeppelin-contracts/=lib/openzeppelin-contracts/", "openzeppelin/=lib/creator-token-standards/lib/PermitC/lib/openzeppelin-contracts/contracts/", "solmate/=lib/solmate/src/", "tstorish/=lib/creator-token-standards/lib/tstorish/src/" ], "evmVersion": "cancun", "outputSelection": { "*": { "*": [ "abi", "metadata" ], "": [ "ast" ] } }, "optimizer": { "enabled": true, "mode": "3", "fallback_to_optimizing_for_size": false, "disable_system_request_memoization": true }, "metadata": {}, "libraries": {}, "detectMissingLibraries": false, "enableEraVMExtensions": false, "forceEVMLA": false }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_impl","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
b9fdf9e700000000000000000000000000000000000000000000000000000000000002c00000000000000000000000000000000000000000000000000000000000000300000000000000000000000000b18cd49772bf0610d0eb9c9cb88c6b2fe4f9c8ab000000000000000000000000000000000000000000000000000000000000053500000000000000000000000000000000000000000000000000000000000001f4000000000000000000000000b18cd49772bf0610d0eb9c9cb88c6b2fe4f9c8ab000000000000000000000000b18cd49772bf0610d0eb9c9cb88c6b2fe4f9c8ab0000000000000000000000000000000000000000000000000014f604cc2cc00000000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000067a22b70000000000000000000000000000000000000000000000000001fffffffffffff00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000340000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000360000000000000000000000000000000000000000000000000000000000000038000000000000000000000000000000000000000000000000000000000000003a00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000042000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000c526962626974737472616374000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000065249424249540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e697066733a2f2f516d64535a6a4765567961415870686238427a37784e597a6f3475755365577668416337516a554e38765a4573562f6d65746164617461000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d54344771775573745a57504b656e46555458354e77476177436f486762574d7147776b597534764d764a696200000000000000000000000000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x00010000000000020000006003100270000000390430019700000001002001900000001e0000c13d000000000341034f0000008002000039000000400020043f0000003d02000041000000000202041a0000003c05200197000000000004004b000000430000c13d000000000005004b000000450000613d0000000001000414000000040020008c000000820000c13d000000000100003100000045041001980000001f0510018f0000008002400039000000740000613d0000008006000039000000000703034f000000007807043c0000000006860436000000000026004b000000190000c13d000000740000013d0000000002000416000000000002004b000000410000c13d0000001f024000390000003a022001970000008002200039000000400020043f0000001f0340018f0000003b0540019800000080025000390000002f0000613d0000008006000039000000000701034f000000007807043c0000000006860436000000000026004b0000002b0000c13d000000000003004b0000003c0000613d000000000151034f0000000303300210000000000502043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f0000000000120435000000200040008c000000410000413d000000800100043d0000003c0010009c000000940000a13d0000000001000019000000e000010430000000000005004b0000004f0000c13d0000004001000041000000800010043f0000002001000039000000840010043f0000001601000039000000a40010043f0000004301000041000000c40010043f0000004401000041000000e0000104300000001f0640018f0000003b074001980000008005700039000000590000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000000550000c13d000000000006004b000000660000613d000000000171034f0000000306600210000000000705043300000000076701cf000000000767022f000000000101043b0000010006600089000000000161022f00000000016101cf000000000171019f00000000001504350000000001000414000000040020008c000000a70000c13d000000000100003100000045041001980000001f0510018f0000008002400039000000740000613d0000008006000039000000000703034f000000007807043c0000000006860436000000000026004b000000700000c13d000000000005004b000000ca0000613d000000000343034f0000000304500210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000320435000000ca0000013d000000390010009c0000003901008041000000c00110021000000042011001c700de00d90000040f00000060031002700000001f0530018f000000390030019d0000003b063001980000008004600039000000ba0000613d0000008007000039000000000801034f000000008908043c0000000007970436000000000047004b0000008f0000c13d000000ba0000013d000000000001004b000000d20000c13d000000400100043d00000044021000390000003f03000041000000000032043500000024021000390000001603000039000000000032043500000040020000410000000000210435000000040210003900000020030000390000000000320435000000390010009c0000003901008041000000400110021000000041011001c7000000e0000104300000006003400210000000390010009c0000003901008041000000c001100210000000000131019f00000042011001c700de00d90000040f000000800900003900000060031002700000001f0530018f000000390030019d0000003b063001980000008004600039000000ba0000613d000000000701034f000000007807043c0000000009890436000000000049004b000000b60000c13d000000000005004b000000c70000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000039013001970000000100200190000000cf0000613d000000390010009c0000003901008041000000600110021000000042011001c7000000df0001042e000000600110021000000042011001c7000000e0000104300000003d02000041000000000012041b0000002001000039000001000010044300000120000004430000003e01000041000000df0001042e000000dc002104250000000102000039000000000001042d0000000002000019000000000001042d000000de00000432000000df0001042e000000e00001043000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffff360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc0000000200000000000000000000000000000040000001000000000000000000496e76616c696420696d706c656d656e746174696f6e0000000000000000000008c379a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000000000000800000000000000000496d706c656d656e746174696f6e206e6f7420736574000000000000000000000000000000000000000000000000000000000064000000800000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01bc6239d9a38638d3e74aaca4010d7e5f44f5d9fa877760855f0b31861e44342
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000b18cd49772bf0610d0eb9c9cb88c6b2fe4f9c8ab
-----Decoded View---------------
Arg [0] : _impl (address): 0xB18CD49772bf0610d0eB9c9cB88c6b2fe4f9C8Ab
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000b18cd49772bf0610d0eb9c9cb88c6b2fe4f9c8ab
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.