Transaction Hash:
Block:
22614807 at Jun-02-2025 05:06:35 AM +UTC
Transaction Fee:
0.000069203921837466 ETH
$0.21
Gas Used:
51,882 Gas / 1.333871513 Gwei
Emitted Events:
116 |
ZRXToken.Transfer( _from=[Sender] 0x7f604d597c15b2e2f60dc645844f68b1d781b752, _to=ForwarderV4, _value=6000000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x7f604D59...1D781b752 |
10,619.144227085750776077 Eth
Nonce: 25189
|
10,619.144157881828938611 Eth
Nonce: 25190
| 0.000069203921837466 | ||
0xdadB0d80...24f783711
Miner
| (BuilderNet) | 58.872819420957546142 Eth | 58.872849253107546142 Eth | 0.00002983215 | |
0xE41d2489...F4699F498 |
Execution Trace
ZRXToken.transfer( _to=0xcf7671c2f04F4EC20404913b55A47EA04E52Bc8d, _value=6000000000000000000 ) => ( True )
transfer[Token (ln:34)]
File 1 of 2: ZRXToken
File 2 of 2: ForwarderV4
12345678910111213141516/*Copyright 2017 ZeroEx Intl.Licensed under the Apache License, Version 2.0 (the "License");you may not use this file except in compliance with the License.You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0Unless required by applicable law or agreed to in writing, softwaredistributed under the License is distributed on an "AS IS" BASIS,WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.See the License for the specific language governing permissions andlimitations under the License.
File 2 of 2: ForwarderV4
12345678910111213141516// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC1155/IERC1155.sol)pragma solidity ^0.8.20;import {IERC165} from "../../utils/introspection/IERC165.sol";/*** @dev Required interface of an ERC1155 compliant contract, as defined in the* https://eips.ethereum.org/EIPS/eip-1155[EIP].*/interface IERC1155 is IERC165 {/*** @dev Emitted when `value` amount of tokens of type `id` are transferred from `from` to `to` by `operator`.*/event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);/*** @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all* transfers.