More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 393 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Cash | 23027010 | 236 days ago | IN | 0 ETH | 0.00014896 | ||||
| Cash | 23027008 | 236 days ago | IN | 0 ETH | 0.00014962 | ||||
| Cash | 23026979 | 236 days ago | IN | 0 ETH | 0.00007893 | ||||
| Cash | 21135067 | 500 days ago | IN | 0 ETH | 0.00128421 | ||||
| Cash | 20456610 | 595 days ago | IN | 0 ETH | 0.00189628 | ||||
| Cash | 19661873 | 706 days ago | IN | 0 ETH | 0.00089076 | ||||
| Cash | 19015817 | 797 days ago | IN | 0 ETH | 0.00110245 | ||||
| Transfer | 19015808 | 797 days ago | IN | 0 ETH | 0.00102082 | ||||
| Transfer | 19015744 | 797 days ago | IN | 0 ETH | 0.00167902 | ||||
| Cash | 19013682 | 797 days ago | IN | 0 ETH | 0.00130707 | ||||
| Cash | 18678889 | 844 days ago | IN | 0 ETH | 0.00154567 | ||||
| Cash | 18029159 | 935 days ago | IN | 0 ETH | 0.00107933 | ||||
| Cash | 17906469 | 952 days ago | IN | 0 ETH | 0.00072987 | ||||
| Transfer | 17906465 | 952 days ago | IN | 0 ETH | 0.00108229 | ||||
| Cash | 17903166 | 952 days ago | IN | 0 ETH | 0.00052258 | ||||
| Cash | 17878311 | 956 days ago | IN | 0 ETH | 0.00165479 | ||||
| Cash | 16570603 | 1140 days ago | IN | 0 ETH | 0.00120241 | ||||
| Cash | 16429566 | 1160 days ago | IN | 0 ETH | 0.00130698 | ||||
| Cash | 15870411 | 1238 days ago | IN | 0 ETH | 0.00138831 | ||||
| Cash | 15721271 | 1259 days ago | IN | 0 ETH | 0.00158537 | ||||
| Cash | 15655920 | 1268 days ago | IN | 0 ETH | 0.00033742 | ||||
| Cash | 15478167 | 1294 days ago | IN | 0 ETH | 0.00072865 | ||||
| Cash | 15462226 | 1297 days ago | IN | 0 ETH | 0.00085333 | ||||
| Cash | 15450633 | 1298 days ago | IN | 0 ETH | 0.00074773 | ||||
| Cash | 15328449 | 1318 days ago | IN | 0 ETH | 0.00045063 |
Latest 25 internal transactions (View All)
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Deposit | 23027010 | 236 days ago | 0.48500296 ETH | ||||
| Deposit | 23027008 | 236 days ago | 0.91804132 ETH | ||||
| Deposit | 23026995 | 236 days ago | 0.91804132 ETH | ||||
| Deposit | 23026982 | 236 days ago | 0.91804132 ETH | ||||
| Deposit | 23026981 | 236 days ago | 0.48500296 ETH | ||||
| Transfer | 23026979 | 236 days ago | 1.78411803 ETH | ||||
| Deposit | 22688254 | 283 days ago | 0.57161063 ETH | ||||
| Deposit | 22688250 | 283 days ago | 0.57161063 ETH | ||||
| Deposit | 22688241 | 283 days ago | 0.57161063 ETH | ||||
| Deposit | 22688230 | 283 days ago | 0.57161063 ETH | ||||
| Transfer | 21135067 | 500 days ago | 0.1039292 ETH | ||||
| Transfer | 20456610 | 595 days ago | 0.0519646 ETH | ||||
| Transfer | 19661873 | 706 days ago | 0.69286137 ETH | ||||
| Transfer | 19015817 | 797 days ago | 0.2773106 ETH | ||||
| Transfer | 19013682 | 797 days ago | 0.29446608 ETH | ||||
| Transfer | 18678889 | 844 days ago | 0.69286137 ETH | ||||
| Transfer | 18029159 | 935 days ago | 0.1039292 ETH | ||||
| Transfer | 17906469 | 952 days ago | 0.66514691 ETH | ||||
| Transfer | 17903166 | 952 days ago | 0.1039292 ETH | ||||
| Transfer | 17878311 | 956 days ago | 0.1039292 ETH | ||||
| Transfer | 16570603 | 1140 days ago | 0.06928613 ETH | ||||
| Transfer | 16429566 | 1160 days ago | 0.06928613 ETH | ||||
| Transfer | 15870411 | 1238 days ago | 0.06928613 ETH | ||||
| Transfer | 15721271 | 1259 days ago | 0.13857227 ETH | ||||
| Transfer | 15655920 | 1268 days ago | 0.0779469 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x85b37C6b...4dC2ADecA The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
InitializedProxy
Compiler Version
v0.8.5+commit.a4f2e591
Optimization Enabled:
Yes with 1000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @title InitializedProxy
* @author Anna Carroll
*/
contract InitializedProxy {
// address of logic contract
address public immutable logic;
// ======== Constructor =========
constructor(
address _logic,
bytes memory _initializationCalldata
) {
logic = _logic;
// Delegatecall into the logic contract, supplying initialization calldata
(bool _ok, bytes memory returnData) =
_logic.delegatecall(_initializationCalldata);
// Revert if delegatecall to implementation reverts
require(_ok, string(returnData));
}
// ======== Fallback =========
fallback() external payable {
address _impl = logic;
assembly {
let ptr := mload(0x40)
calldatacopy(ptr, 0, calldatasize())
let result := delegatecall(gas(), _impl, ptr, calldatasize(), 0, 0)
let size := returndatasize()
returndatacopy(ptr, 0, size)
switch result
case 0 {
revert(ptr, size)
}
default {
return(ptr, size)
}
}
}
// ======== Receive =========
receive() external payable {} // solhint-disable-line no-empty-blocks
}{
"optimizer": {
"enabled": true,
"runs": 1000
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"abi"
]
}
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_logic","type":"address"},{"internalType":"bytes","name":"_initializationCalldata","type":"bytes"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"logic","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
0x60a060405234801561001057600080fd5b5060405161035738038061035783398101604081905261002f916100d7565b6001600160601b0319606083901b1660805260405160009081906001600160a01b0385169061005f9085906101a5565b600060405180830381855af49150503d806000811461009a576040519150601f19603f3d011682016040523d82523d6000602084013e61009f565b606091505b50915091508181906100cd5760405162461bcd60e51b81526004016100c491906101c1565b60405180910390fd5b505050505061023a565b600080604083850312156100ea57600080fd5b82516001600160a01b038116811461010157600080fd5b60208401519092506001600160401b038082111561011e57600080fd5b818501915085601f83011261013257600080fd5b81518181111561014457610144610224565b604051601f8201601f19908116603f0116810190838211818310171561016c5761016c610224565b8160405282815288602084870101111561018557600080fd5b6101968360208301602088016101f4565b80955050505050509250929050565b600082516101b78184602087016101f4565b9190910192915050565b60208152600082518060208401526101e08160408501602087016101f4565b601f01601f19169190910160400192915050565b60005b8381101561020f5781810151838201526020016101f7565b8381111561021e576000848401525b50505050565b634e487b7160e01b600052604160045260246000fd5b60805160601c60fc61025b60003960008181602a0152607b015260fc6000f3fe608060405260043610601f5760003560e01c8063d7dfa0dd14606b576025565b36602557005b6040517f00000000000000000000000000000000000000000000000000000000000000009036600082376000803683855af43d806000843e8180156067578184f35b8184fd5b348015607657600080fd5b50609d7f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390f3fea264697066735822122013174273c18ed4bea127cbc0952900378004a1870c433d85adc8dafba30dae5764736f6c634300080500330000000000000000000000007b0fce54574d9746414d11367f54c9ab94e53dca00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000184626fb2f0000000000000000000000000e7b66314a01bb753d78fa0ae11579cc392ebbe18000000000000000000000000bc4ca0eda7647a8ab7c2061c2e118a18a936f13d00000000000000000000000000000000000000000000000000000000000014d500000000000000000000000000000000000000000000d3c21bcecceda100000000000000000000000000000000000000000000000000000ad78ebc5ac6200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000001650616e646120417065202d2042415943202335333333000000000000000000000000000000000000000000000000000000000000000000000000000000000004504150450000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405260043610601f5760003560e01c8063d7dfa0dd14606b576025565b36602557005b6040517f0000000000000000000000007b0fce54574d9746414d11367f54c9ab94e53dca9036600082376000803683855af43d806000843e8180156067578184f35b8184fd5b348015607657600080fd5b50609d7f0000000000000000000000007b0fce54574d9746414d11367f54c9ab94e53dca81565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390f3fea264697066735822122013174273c18ed4bea127cbc0952900378004a1870c433d85adc8dafba30dae5764736f6c63430008050033
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.