ETH Price: $3,609.38 (-3.36%)

Transaction Decoder

Block:
17065719 at Apr-17-2023 09:50:23 AM +UTC
Transaction Fee:
0.001632120814288069 ETH $5.89
Gas Used:
46,361 Gas / 35.204607629 Gwei

Emitted Events:

76 Nembus.Approval( owner=[Sender] 0x6328b5581b8983c67eb56cc7ec1d7ba038f7c3df, spender=0x7a250d56...659F2488D, value=195286748548596200 )

Account State Difference:

  Address   Before After State Difference Code
0x6328B558...038F7c3DF
0.378430157095407663 Eth
Nonce: 1695
0.376798036281119594 Eth
Nonce: 1696
0.001632120814288069
(builder0x69)
3.361324296490547708 Eth3.361690601442320867 Eth0.000366304951773159
0x7c472fb1...6e6cC2300

Execution Trace

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