ETH Price: $2,635.13 (+3.33%)

Transaction Decoder

Block:
13702096 at Nov-28-2021 11:20:30 AM +UTC
Transaction Fee:
0.003528886137080746 ETH $9.30
Gas Used:
46,241 Gas / 76.315091306 Gwei

Emitted Events:

536 LazyBunnyNFT.ApprovalForAll( owner=[Sender] 0xa673411920bf5ab98717ec7c5aa825340c045e3c, operator=0x734F3dD8...F2B670D9d, approved=True )

Account State Difference:

  Address   Before After State Difference Code
0x8DD92dd1...ADaD8A66D
0xa6734119...40C045e3C
0.032458751589513538 Eth
Nonce: 5
0.028929865452432792 Eth
Nonce: 6
0.003528886137080746
(Ethermine)
1,826.385706930772497364 Eth1,826.385776292272497364 Eth0.0000693615

Execution Trace

LazyBunnyNFT.setApprovalForAll( operator=0x734F3dD80543d98207AbBff7d24Cf71F2B670D9d, approved=True )
setApprovalForAll[ERC721 (ln:416)]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: GPL-3.0
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
pragma solidity ^0.8.0;
interface IERC165 {
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
pragma solidity ^0.8.0;
interface IERC721 is IERC165 {
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
function balanceOf(address owner) external view returns (uint256 balance);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX