ETH Price: $3,661.36 (-4.75%)

Transaction Decoder

Block:
22637620 at Jun-05-2025 09:48:23 AM +UTC
Transaction Fee:
0.0000364575 ETH $0.13
Gas Used:
24,305 Gas / 1.5 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x7c472fb1...6e6cC2300
(beaverbuild)
13.414113055027553241 Eth13.414113924234289371 Eth0.00000086920673613
0xCd6B3E11...8975965F6
0.000352993020935821 Eth
Nonce: 170
0.000316535520935821 Eth
Nonce: 171
0.0000364575

Execution Trace

Nembus.approve( spender=0x000000000022D473030F116dDEE9F6B43aC78BA3, amount=0 ) => ( True )
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.4;
abstract contract Context {
function _msgSender() internal view virtual returns (address payable) {
return payable(msg.sender);
}
function _msgData() internal view virtual returns (bytes memory) {
this;
return msg.data;
}
}
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(address recipient, uint256 amount) external returns (bool);
function allowance(address owner, address spender) external view returns (uint256);
function approve(address spender, uint256 amount) external returns (bool);
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
event Transfer(address indexed from, address indexed to, uint256 value);
event Approval(address indexed owner, address indexed spender, uint256 value);
}
library SafeMath {
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX