Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0.001 ETH
Eth Value
$1.98 (@ $1,984.82/ETH)More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 34 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Transfer NFT Fro... | 21459193 | 441 days ago | IN | 0 ETH | 0.00074876 | ||||
| Emergency Withdr... | 21459135 | 441 days ago | IN | 0 ETH | 0.00033662 | ||||
| Transfer NFT Fro... | 21450578 | 442 days ago | IN | 0 ETH | 0.00071621 | ||||
| Transfer NFT Fro... | 21450552 | 442 days ago | IN | 0 ETH | 0.00065529 | ||||
| Return Token To ... | 20154272 | 623 days ago | IN | 0 ETH | 0.00021419 | ||||
| Complete Listing | 19995395 | 645 days ago | IN | 0 ETH | 0.00094079 | ||||
| Complete Listing | 19991226 | 646 days ago | IN | 0 ETH | 0.0027763 | ||||
| Return Token To ... | 19982393 | 647 days ago | IN | 0 ETH | 0.00077671 | ||||
| Complete Listing | 19969940 | 649 days ago | IN | 0 ETH | 0.00320673 | ||||
| Complete Listing | 19969672 | 649 days ago | IN | 0 ETH | 0.00374073 | ||||
| Complete Listing | 19969535 | 649 days ago | IN | 0 ETH | 0.00419741 | ||||
| Complete Listing | 19969524 | 649 days ago | IN | 0 ETH | 0.00371773 | ||||
| Complete Listing | 19969509 | 649 days ago | IN | 0 ETH | 0.00416278 | ||||
| Complete Listing | 19969483 | 649 days ago | IN | 0 ETH | 0.00377908 | ||||
| Place Bid | 19969439 | 649 days ago | IN | 0.2 ETH | 0.00247752 | ||||
| Complete Listing | 19969433 | 649 days ago | IN | 0 ETH | 0.00406179 | ||||
| Place Bid | 19969415 | 649 days ago | IN | 0.175 ETH | 0.00226479 | ||||
| Place Bid | 19969374 | 649 days ago | IN | 0.15 ETH | 0.00242971 | ||||
| Place Bid | 19969341 | 649 days ago | IN | 0.125 ETH | 0.00210808 | ||||
| Place Bid | 19969126 | 649 days ago | IN | 0.15 ETH | 0.00252992 | ||||
| Place Bid | 19969092 | 649 days ago | IN | 0.125 ETH | 0.00254871 | ||||
| Place Bid | 19969062 | 649 days ago | IN | 0.125 ETH | 0.00273228 | ||||
| Place Bid | 19969060 | 649 days ago | IN | 0.1 ETH | 0.0022961 | ||||
| Place Bid | 19969059 | 649 days ago | IN | 0.1 ETH | 0.00204463 | ||||
| Place Bid | 19969050 | 649 days ago | IN | 0.1 ETH | 0.00222198 |
Latest 25 internal transactions (View All)
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Transfer | 21459135 | 441 days ago | 0.015 ETH | ||||
| Transfer | 19995395 | 645 days ago | 0.072 ETH | ||||
| Transfer | 19995395 | 645 days ago | 0.008 ETH | ||||
| Transfer | 19995395 | 645 days ago | 0.02 ETH | ||||
| Transfer | 19991226 | 646 days ago | 0.072 ETH | ||||
| Transfer | 19991226 | 646 days ago | 0.008 ETH | ||||
| Transfer | 19991226 | 646 days ago | 0.02 ETH | ||||
| Transfer | 19969940 | 649 days ago | 0.10696 ETH | ||||
| Transfer | 19969940 | 649 days ago | 0.02674 ETH | ||||
| Transfer | 19969672 | 649 days ago | 0.09 ETH | ||||
| Transfer | 19969672 | 649 days ago | 0.01 ETH | ||||
| Transfer | 19969672 | 649 days ago | 0.025 ETH | ||||
| Transfer | 19969535 | 649 days ago | 0.072 ETH | ||||
| Transfer | 19969535 | 649 days ago | 0.008 ETH | ||||
| Transfer | 19969535 | 649 days ago | 0.02 ETH | ||||
| Transfer | 19969524 | 649 days ago | 0.144 ETH | ||||
| Transfer | 19969524 | 649 days ago | 0.016 ETH | ||||
| Transfer | 19969524 | 649 days ago | 0.04 ETH | ||||
| Transfer | 19969509 | 649 days ago | 0.144 ETH | ||||
| Transfer | 19969509 | 649 days ago | 0.016 ETH | ||||
| Transfer | 19969509 | 649 days ago | 0.04 ETH | ||||
| Transfer | 19969483 | 649 days ago | 0.072 ETH | ||||
| Transfer | 19969483 | 649 days ago | 0.008 ETH | ||||
| Transfer | 19969483 | 649 days ago | 0.02 ETH | ||||
| Transfer | 19969439 | 649 days ago | 0.175 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 0xbccB39CB...E96C19807 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
AccaProxy
Compiler Version
v0.8.24+commit.e11b9ed9
Optimization Enabled:
Yes with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
/**
* @title Proxy // This is the Auction
* @notice Basic proxy that delegates all calls to a fixed implementation contract.
* @dev Implementation address is stored in the slot defined by the Proxy's address
*/
contract AccaProxy {
constructor(address _implementation) {
if(_implementation == address(0))
revert("Invalid implementation address");
assembly {
sstore(address(), _implementation)
}
}
fallback() external payable {
address target;
assembly {
target := sload(address())
calldatacopy(0, 0, calldatasize())
let result := delegatecall(gas(), target, 0, calldatasize(), 0, 0)
returndatacopy(0, 0, returndatasize())
switch result
case 0 {
revert(0, returndatasize())
}
default {
return(0, returndatasize())
}
}
}
}{
"remappings": [
"ds-test/=lib/forge-std/lib/ds-test/src/",
"forge-std/=lib/forge-std/src/",
"solady/=lib/solady/src/",
"@manifoldxyz/libraries-solidity/=lib/royalty-registry-solidity/lib/libraries-solidity/",
"@openzeppelin/contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/contracts/",
"@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/",
"create2-helpers/=lib/royalty-registry-solidity/lib/create2-helpers/",
"create2-scripts/=lib/royalty-registry-solidity/lib/create2-helpers/script/",
"erc4626-tests/=lib/openzeppelin-contracts-upgradeable/lib/erc4626-tests/",
"libraries-solidity/=lib/royalty-registry-solidity/lib/libraries-solidity/contracts/",
"openzeppelin-contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/",
"openzeppelin-contracts/=lib/openzeppelin-contracts/",
"royalty-registry-solidity/=lib/royalty-registry-solidity/",
"solady/=lib/solady/"
],
"optimizer": {
"enabled": true,
"runs": 200
},
"metadata": {
"useLiteralContent": false,
"bytecodeHash": "ipfs",
"appendCBOR": true
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"evmVersion": "paris",
"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":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"}]Contract Creation Code
0x608060405234801561001057600080fd5b5060405161012d38038061012d83398101604081905261002f91610090565b6001600160a01b0381166100895760405162461bcd60e51b815260206004820152601e60248201527f496e76616c696420696d706c656d656e746174696f6e20616464726573730000604482015260640160405180910390fd5b30556100c0565b6000602082840312156100a257600080fd5b81516001600160a01b03811681146100b957600080fd5b9392505050565b605f806100ce6000396000f3fe608060405230543660008037600080366000845af43d6000803e8080156024573d6000f35b3d6000fdfea2646970667358221220074231b713b137c85e1742aac1767486d5e006a5f06460c39cf1282ede7c5b4f64736f6c63430008180033000000000000000000000000577284b92a1ce06ff388bc3fb35258003a5c2062
Deployed Bytecode
0x608060405230543660008037600080366000845af43d6000803e8080156024573d6000f35b3d6000fdfea2646970667358221220074231b713b137c85e1742aac1767486d5e006a5f06460c39cf1282ede7c5b4f64736f6c63430008180033
Loading...
Loading
Loading...
Loading
Net Worth in USD
$1.98
Net Worth in ETH
0.001
Token Allocations
ETH
100.00%
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ETH | 100.00% | $1,984.4 | 0.001 | $1.98 |
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.