Transaction Hash:
Block:
24509752 at Feb-22-2026 03:35:11 AM +UTC
Transaction Fee:
0.000001358200556295 ETH
$0.002686
Gas Used:
30,637 Gas / 0.044332035 Gwei
Account State Difference:
| Address | Before | After | State Difference | ||
|---|---|---|---|---|---|
| 0x2a37D63E...109Cc2762 | (Gas.Zip: Contract Deposit v1) | 0.100683000230134408 Eth | 0 Eth | 0.100683000230134408 | |
| 0x391E7C67...d25b5A604 | (Gas.Zip: Direct Deposit v2) |
0.002536971545863834 Eth
Nonce: 130973
|
0.103218613575441947 Eth
Nonce: 130974
| 0.100681642029578113 | |
|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 15.023111974693827656 Eth | 15.023112358012942336 Eth | 0.00000038331911468 |
Execution Trace
GasZipV2.withdraw( token=0x0000000000000000000000000000000000000000 )
- ETH 0.100683000230134408
Gas.Zip: Direct Deposit v2.CALL( )
withdraw[GasZipV2 (ln:18)]
call[GasZipV2 (ln:21)]transfer[GasZipV2 (ln:23)]balanceOf[GasZipV2 (ln:23)]
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.17;
contract GasZipV2 {
event Deposit(address from, uint256 chains, uint256 amount, bytes32 to);
address public owner;
constructor(address _owner) {
owner = _owner;
}
function deposit(uint256 chains, bytes32 to) payable external {
require(msg.value != 0, "No Value");
emit Deposit(msg.sender, chains, msg.value, to);
}
function deposit(uint256 chains, address to) payable external {
require(msg.value != 0, "No Value");
emit Deposit(msg.sender, chains, msg.value, bytes32(bytes20(uint160(to))));
}
function withdraw(address token) external {
require(msg.sender == owner);
if (token == address(0)) {
owner.call{value: address(this).balance}("");
} else {
IERC20(token).transfer(owner, IERC20(token).balanceOf(address(this)));
}
}
function newOwner(address _owner) external {
require(msg.sender == owner);
owner = _owner;
}
}
interface IERC20 {
function balanceOf(address) external view returns (uint256);
function transfer(address, uint256) external returns (bool);
}