Source Code
Showing the last 25 transactions (View Advanced Filter)
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Transfer | 24645439 | 2 days ago | IN | 100 ETH | 0.00000426 | ||||
| Transfer | 24581725 | 11 days ago | IN | 21.04621722 ETH | 0.00032107 | ||||
| Transfer | 24474945 | 26 days ago | IN | 2.9915 ETH | 0.00006491 | ||||
| Transfer | 24422890 | 33 days ago | IN | 5.3996598 ETH | 0.00003408 | ||||
| Transfer | 24252849 | 57 days ago | IN | 3.63987185 ETH | 0.00000112 | ||||
| Transfer | 24075297 | 82 days ago | IN | 10.46295921 ETH | 0.00032095 | ||||
| Transfer | 24036361 | 87 days ago | IN | 1 ETH | 0.00001686 | ||||
| Transfer | 23899623 | 107 days ago | IN | 10.73932912 ETH | 0.00032173 | ||||
| Transfer | 23812212 | 119 days ago | IN | 17.50770899 ETH | 0.00003191 | ||||
| Transfer | 23787382 | 122 days ago | IN | 1.28677204 ETH | 0.00006632 | ||||
| Transfer | 23773227 | 124 days ago | IN | 20 ETH | 0.0000055 | ||||
| Transfer | 23717585 | 132 days ago | IN | 17.36757585 ETH | 0.00004613 | ||||
| Transfer | 23684444 | 137 days ago | IN | 1.401305 ETH | 0.00007471 | ||||
| Transfer | 23646900 | 142 days ago | IN | 1 ETH | 0.00000315 | ||||
| Transfer | 23633940 | 144 days ago | IN | 8 ETH | 0.00003692 | ||||
| Transfer | 23596042 | 149 days ago | IN | 10.27469217 ETH | 0.00011711 | ||||
| Transfer | 23505334 | 162 days ago | IN | 4.59987185 ETH | 0.00001251 | ||||
| Transfer | 23492930 | 164 days ago | IN | 4.91987184 ETH | 0.00001017 | ||||
| Transfer | 23197464 | 205 days ago | IN | 10 ETH | 0.00027851 | ||||
| Transfer | 23094335 | 219 days ago | IN | 9.70649535 ETH | 0.00003903 | ||||
| Transfer | 23055760 | 225 days ago | IN | 17.4516974 ETH | 0.00004157 | ||||
| Transfer | 23004905 | 232 days ago | IN | 18.83539874 ETH | 0.00004008 | ||||
| Transfer | 22917358 | 244 days ago | IN | 3.05 ETH | 0.00023389 | ||||
| Transfer | 22792865 | 261 days ago | IN | 1.64398313 ETH | 0.00002471 | ||||
| Transfer | 22755700 | 267 days ago | IN | 1.73404115 ETH | 0.00013335 |
Showing the last 25 internal transactions (View Advanced Filter)
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Transfer | 24645439 | 2 days ago | 100 ETH | ||||
| Transfer | 24581725 | 11 days ago | 21.04621722 ETH | ||||
| Transfer | 24474945 | 26 days ago | 2.9915 ETH | ||||
| Transfer | 24422890 | 33 days ago | 5.3996598 ETH | ||||
| Transfer | 24252849 | 57 days ago | 3.63987185 ETH | ||||
| Transfer | 24075297 | 82 days ago | 10.46295921 ETH | ||||
| Transfer | 24036361 | 87 days ago | 1 ETH | ||||
| Transfer | 24011513 | 91 days ago | 5.37982939 ETH | ||||
| Transfer | 24011513 | 91 days ago | 5.37982939 ETH | ||||
| Transfer | 23899623 | 107 days ago | 10.73932912 ETH | ||||
| Transfer | 23812212 | 119 days ago | 17.50770899 ETH | ||||
| Transfer | 23787382 | 122 days ago | 1.28677204 ETH | ||||
| Transfer | 23773227 | 124 days ago | 20 ETH | ||||
| Transfer | 23717585 | 132 days ago | 17.36757585 ETH | ||||
| Transfer | 23684444 | 137 days ago | 1.401305 ETH | ||||
| Transfer | 23646900 | 142 days ago | 1 ETH | ||||
| Transfer | 23633940 | 144 days ago | 8 ETH | ||||
| Transfer | 23596042 | 149 days ago | 10.27469217 ETH | ||||
| Transfer | 23505334 | 162 days ago | 4.59987185 ETH | ||||
| Transfer | 23492930 | 164 days ago | 4.91987184 ETH | ||||
| Transfer | 23197464 | 205 days ago | 10 ETH | ||||
| Transfer | 23094335 | 219 days ago | 9.70649535 ETH | ||||
| Transfer | 23055760 | 225 days ago | 17.4516974 ETH | ||||
| Transfer | 23004905 | 232 days ago | 18.83539874 ETH | ||||
| Transfer | 22917358 | 244 days ago | 3.05 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 0x8770c4e5...413038178 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
Deposit
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "IERC20Lite.sol";
/**
* @title Deposit contract
* @notice Creates a contract with a known address and withdraws tokens from it.
* After deployment, the Vault will call fetch() to withdraw tokens.
* @dev Any change in this contract, including comments, will affect the final
* bytecode and therefore will affect the create2 derived addresses.
* Do NOT modify unless the consequences of doing so are fully understood.
*/
contract Deposit {
address payable private immutable vault;
/**
* @notice Upon deployment it fetches the tokens (native or ERC20) to the Vault.
* @param token The address of the token to fetch
*/
constructor(address token) {
vault = payable(msg.sender);
// Slightly cheaper to use msg.sender instead of Vault.
if (token == 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE) {
// solhint-disable-next-line avoid-low-level-calls
(bool success, ) = msg.sender.call{value: address(this).balance}("");
require(success);
} else {
// IERC20Lite.transfer doesn't have a return bool to avoid reverts on non-standard ERC20s
IERC20Lite(token).transfer(msg.sender, IERC20Lite(token).balanceOf(address(this)));
}
}
/**
* @notice Allows the Vault to fetch ERC20 tokens from this contract.
* @param token The address of the token to fetch
*/
function fetch(address token) external {
require(msg.sender == vault);
// IERC20Lite.transfer doesn't have a return bool to avoid reverts on non-standard ERC20s
IERC20Lite(token).transfer(msg.sender, IERC20Lite(token).balanceOf(address(this)));
}
/// @notice Receives native tokens, emits an event and sends them to the Vault. Note that this
// requires the sender to forward some more gas than for a simple transfer.
receive() external payable {
// solhint-disable-next-line avoid-low-level-calls
(bool success, ) = vault.call{value: address(this).balance}("");
require(success);
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @title ERC20 Lite Interface
* @notice The interface for functions ERC20Lite implements. This is intended to
* be used only in the Deposit contract.
* @dev Any change in this contract, including comments, will affect the final
* bytecode and therefore will affect the create2 derived addresses.
* Do NOT modify unless the consequences of doing so are fully understood.
*/
interface IERC20Lite {
/// @dev Removed the return bool to avoid reverts on non-standard ERC20s.
function transfer(address, uint256) external;
function balanceOf(address) external view returns (uint256);
}{
"evmVersion": "paris",
"optimizer": {
"enabled": true,
"runs": 800
},
"libraries": {
"Deposit.sol": {}
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"token","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"fetch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
0x60a060405234801561001057600080fd5b5060405161045a38038061045a83398101604081905261002f91610189565b336080526001600160a01b03811673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee036100b257604051600090339047908381818185875af1925050503d8060008114610099576040519150601f19603f3d011682016040523d82523d6000602084013e61009e565b606091505b50509050806100ac57600080fd5b50610183565b6040516370a0823160e01b81523060048201526001600160a01b0382169063a9059cbb90339083906370a0823190602401602060405180830381865afa158015610100573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061012491906101b9565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561016a57600080fd5b505af115801561017e573d6000803e3d6000fd5b505050505b506101d2565b60006020828403121561019b57600080fd5b81516001600160a01b03811681146101b257600080fd5b9392505050565b6000602082840312156101cb57600080fd5b5051919050565b6080516102686101f260003960008181602b015260d401526102686000f3fe6080604052600436106100225760003560e01c8063f109a0be146100ae57600080fd5b366100a95760007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03164760405160006040518083038185875af1925050503d8060008114610094576040519150601f19603f3d011682016040523d82523d6000602084013e610099565b606091505b50509050806100a757600080fd5b005b600080fd5b3480156100ba57600080fd5b506100a76100c93660046101e9565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146100fe57600080fd5b6040516370a0823160e01b81523060048201526001600160a01b0382169063a9059cbb90339083906370a0823190602401602060405180830381865afa15801561014c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101709190610219565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b1580156101ce57600080fd5b505af11580156101e2573d6000803e3d6000fd5b5050505050565b6000602082840312156101fb57600080fd5b81356001600160a01b038116811461021257600080fd5b9392505050565b60006020828403121561022b57600080fd5b505191905056fea26469706673582212207a3063a75755b8b3364bcf7137526722a9ac4adcc81866e63e0a9dfb44df3a3e64736f6c63430008140033000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48
Deployed Bytecode
0x6080604052600436106100225760003560e01c8063f109a0be146100ae57600080fd5b366100a95760007f000000000000000000000000f5e10380213880111522dd0efd3dbb45b9f62bcc6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610094576040519150601f19603f3d011682016040523d82523d6000602084013e610099565b606091505b50509050806100a757600080fd5b005b600080fd5b3480156100ba57600080fd5b506100a76100c93660046101e9565b336001600160a01b037f000000000000000000000000f5e10380213880111522dd0efd3dbb45b9f62bcc16146100fe57600080fd5b6040516370a0823160e01b81523060048201526001600160a01b0382169063a9059cbb90339083906370a0823190602401602060405180830381865afa15801561014c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101709190610219565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b1580156101ce57600080fd5b505af11580156101e2573d6000803e3d6000fd5b5050505050565b6000602082840312156101fb57600080fd5b81356001600160a01b038116811461021257600080fd5b9392505050565b60006020828403121561022b57600080fd5b505191905056fea26469706673582212207a3063a75755b8b3364bcf7137526722a9ac4adcc81866e63e0a9dfb44df3a3e64736f6c63430008140033
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.