ETH Price: $2,983.08 (-2.05%)

Transaction Decoder

Block:
17065771 at Apr-17-2023 10:00:47 AM +UTC
Transaction Fee:
0.001346218628155927 ETH $4.02
Gas Used:
46,649 Gas / 28.858467023 Gwei

Emitted Events:

80 Nembus.Approval( owner=[Sender] 0x15079e28f20aa573bc786daaf20d8a881504eded, spender=0x7a250d56...659F2488D, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )

Account State Difference:

  Address   Before After State Difference Code
0x15079E28...81504eDEd
0.347089062915727291 Eth
Nonce: 662
0.345742844287571364 Eth
Nonce: 663
0.001346218628155927
(Fee Recipient: 0x37...1FB)
1,726.659851680819360679 Eth1,726.659916056439360679 Eth0.00006437562
0x7c472fb1...6e6cC2300

Execution Trace

Nembus.approve( spender=0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 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