ETH Price: $2,961.24 (+0.01%)

Transaction Decoder

Block:
17094021 at Apr-21-2023 09:56:47 AM +UTC
Transaction Fee:
0.001882349648230995 ETH $5.57
Gas Used:
46,649 Gas / 40.351339755 Gwei

Emitted Events:

82 Nembus.Approval( owner=[Sender] 0x445b4083ff86e10aa0beb74314113e45d60a5b14, spender=0x68b34658...D8665Fc45, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )

Account State Difference:

  Address   Before After State Difference Code
0x445b4083...5D60a5b14
0.186550673195116009 Eth
Nonce: 49
0.184668323546885014 Eth
Nonce: 50
0.001882349648230995
0x7c472fb1...6e6cC2300
(MEV Builder: 0xd1...9a1)
0.196774795994679205 Eth0.196872945041495984 Eth0.000098149046816779

Execution Trace

Nembus.approve( spender=0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45, amount=115792089237316195423570985008687907853269984665640564039457584007913129639935 ) => ( 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