Latest 25 from a total of 25 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Withdraw | 41773569 | 31 days ago | IN | 0 ETH | 0.00003187 | ||||
| Flash Action | 41771850 | 31 days ago | IN | 0 ETH | 0.00002756 | ||||
| Flash Action | 41771837 | 31 days ago | IN | 0 ETH | 0.00000848 | ||||
| Flash Action | 41771822 | 31 days ago | IN | 0 ETH | 0.00001846 | ||||
| Flash Action | 41771758 | 31 days ago | IN | 0 ETH | 0.00002208 | ||||
| Flash Action | 41769725 | 31 days ago | IN | 0 ETH | 0.00011383 | ||||
| Set Asset Manage... | 41422426 | 39 days ago | IN | 0 ETH | 0.00000057 | ||||
| Set Asset Manage... | 41387023 | 40 days ago | IN | 0 ETH | 0.0000001 | ||||
| Set Asset Manage... | 41387013 | 40 days ago | IN | 0 ETH | 0.00000215 | ||||
| Flash Action | 41386970 | 40 days ago | IN | 0 ETH | 0.00000921 | ||||
| Flash Action | 41386940 | 40 days ago | IN | 0 ETH | 0.00000232 | ||||
| Flash Action | 41300550 | 42 days ago | IN | 0 ETH | 0.00003723 | ||||
| Flash Action | 41291788 | 42 days ago | IN | 0 ETH | 0.00004307 | ||||
| Flash Action | 41291771 | 42 days ago | IN | 0 ETH | 0.00006648 | ||||
| Flash Action | 41291753 | 42 days ago | IN | 0 ETH | 0.00003628 | ||||
| Flash Action | 41037579 | 48 days ago | IN | 0 ETH | 0.00000859 | ||||
| Flash Action | 41037563 | 48 days ago | IN | 0 ETH | 0.00000721 | ||||
| Flash Action | 41037539 | 48 days ago | IN | 0 ETH | 0.00000607 | ||||
| Flash Action | 41037518 | 48 days ago | IN | 0 ETH | 0.00000725 | ||||
| Flash Action | 41037503 | 48 days ago | IN | 0 ETH | 0.00000372 | ||||
| Flash Action | 39310606 | 88 days ago | IN | 0 ETH | 0.0000041 | ||||
| Flash Action | 39274532 | 88 days ago | IN | 0 ETH | 0.00000288 | ||||
| Withdraw | 39274465 | 88 days ago | IN | 0 ETH | 0.00000048 | ||||
| Withdraw | 38739048 | 101 days ago | IN | 0 ETH | 0.00000057 | ||||
| Withdraw | 38408872 | 109 days ago | IN | 0 ETH | 0.00000323 |
Latest 1 internal transaction
| Parent Transaction Hash | Block | From | To | |||
|---|---|---|---|---|---|---|
| 30107791 | 301 days ago | Contract Creation | 0 ETH |
Cross-Chain Transactions
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x9C0B5E99...7Dd4855CB The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
Proxy
Compiler Version
v0.8.22+commit.4fc1097e
Optimization Enabled:
Yes with 200 runs
Other Settings:
shanghai EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity 0.8.22;
/**
* @title Proxy
* @author Pragma Labs
* @dev Implementation based on ERC1967: Proxy Storage Slots.
* See https://eips.ethereum.org/EIPS/eip-1967.
*/
contract Proxy {
/* //////////////////////////////////////////////////////////////
CONSTANTS
////////////////////////////////////////////////////////////// */
// Storage slot with the address of the current implementation.
// This is the hardcoded keccak-256 hash of: "eip1967.proxy.implementation" subtracted by 1.
bytes32 internal constant IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
/* //////////////////////////////////////////////////////////////
STORAGE
////////////////////////////////////////////////////////////// */
// Storage slot for the Account logic, a struct to avoid storage conflict when dealing with upgradeable contracts.
struct AddressSlot {
address value;
}
/* //////////////////////////////////////////////////////////////
EVENTS
////////////////////////////////////////////////////////////// */
event Upgraded(address indexed implementation);
/* //////////////////////////////////////////////////////////////
CONSTRUCTOR
////////////////////////////////////////////////////////////// */
/**
* @param implementation The contract address of the Account logic.
*/
constructor(address implementation) payable {
_getAddressSlot(IMPLEMENTATION_SLOT).value = implementation;
emit Upgraded(implementation);
}
/**
* @dev Fallback function that delegates calls to the implementation address.
* Will run if call data is empty.
*/
receive() external payable virtual {
_delegate(_getAddressSlot(IMPLEMENTATION_SLOT).value);
}
/**
* @dev Fallback function that delegates calls to the implementation address.
* Will run if no other function in the contract matches the call data.
*/
fallback() external payable virtual {
_delegate(_getAddressSlot(IMPLEMENTATION_SLOT).value);
}
/*///////////////////////////////////////////////////////////////
IMPLEMENTATION LOGIC
///////////////////////////////////////////////////////////////*/
/**
* @notice Returns the "AddressSlot" with member "value" located at "slot".
* @param slot The slot where the address of the Logic contract is stored.
* @return r The address stored in slot.
*/
function _getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {
assembly {
r.slot := slot
}
}
/*///////////////////////////////////////////////////////////////
DELEGATION LOGIC
///////////////////////////////////////////////////////////////*/
/**
* @param implementation The contract address of the logic.
* @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()) }
}
}
}{
"remappings": [
"@uniswap/v3-core/contracts/=lib/v3-core/contracts/",
"@openzeppelin/=lib/openzeppelin-contracts/",
"ds-test/=lib/forge-std/lib/ds-test/src/",
"forge-std/=lib/forge-std/src/",
"openzeppelin-contracts/=lib/openzeppelin-contracts/contracts/",
"solmate/=lib/solmate/src/",
"v3-core/=lib/v3-core/",
"v3-periphery/=lib/v3-periphery/contracts/"
],
"optimizer": {
"enabled": true,
"runs": 200
},
"metadata": {
"useLiteralContent": false,
"bytecodeHash": "ipfs",
"appendCBOR": true
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"evmVersion": "shanghai",
"viaIR": false,
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"implementation","type":"address"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"stateMutability":"payable","type":"fallback"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
0x608060405260405161017c38038061017c8339810160408190526100229161008d565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0383169081179091556040517fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a2506100ba565b5f6020828403121561009d575f80fd5b81516001600160a01b03811681146100b3575f80fd5b9392505050565b60b6806100c65f395ff3fe608060405236603c57603a7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5b546001600160a01b03166063565b005b603a7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc602c565b365f80375f80365f845af43d5f803e808015607c573d5ff35b3d5ffdfea2646970667358221220eeb8a2fa918a2057b66e1d3fa3930647dc7a4e56c99898cd9e280beec9d9ba9f64736f6c63430008160033000000000000000000000000bea2b6d45acaf62385877d835970a0788719cae1
Deployed Bytecode
0x608060405236603c57603a7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5b546001600160a01b03166063565b005b603a7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc602c565b365f80375f80365f845af43d5f803e808015607c573d5ff35b3d5ffdfea2646970667358221220eeb8a2fa918a2057b66e1d3fa3930647dc7a4e56c99898cd9e280beec9d9ba9f64736f6c63430008160033
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
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.