ETH Price: $3,741.07 (+0.04%)

Transaction Decoder

Block:
22645662 at Jun-06-2025 12:51:23 PM +UTC
Transaction Fee:
0.000084168096696783 ETH $0.31
Gas Used:
29,689 Gas / 2.834992647 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x32353A6C...9A2489A20
0x559DDE18...f1FAB1064
0.000147930489482555 Eth
Nonce: 108
0.000063762392785772 Eth
Nonce: 109
0.000084168096696783
(BuilderNet)
95.150003498535813916 Eth95.150033187535813916 Eth0.000029689

Execution Trace

AdventureGold.transfer( recipient=0xA9D1e08C7793af67e9d92fe308d5697FB81d3E43, amount=58500790000000000000000 ) => ( True )
transfer[ERC20 (ln:315)]
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: UNLICENSED
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
/**
* @dev Contract module which provides a basic access control mechanism, where
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX