ETH Price: $3,167.89 (+6.52%)

Transaction Decoder

Block:
17065739 at Apr-17-2023 09:54:23 AM +UTC
Transaction Fee:
0.001372948499615781 ETH $4.35
Gas Used:
46,541 Gas / 29.499763641 Gwei

Emitted Events:

129 Nembus.Approval( owner=[Sender] 0x67bb89f97919b23f4558a7b14386326918c610ac, spender=0x7a250d56...659F2488D, value=1000000000000000000000000000000000000000000000000000000000000000000000000000 )

Account State Difference:

  Address   Before After State Difference Code
(Lido: Execution Layer Rewards Vault)
226.508358032297356516 Eth226.508427843797356516 Eth0.0000698115
0x67bb89f9...918c610ac
1.759491095471356899 Eth
Nonce: 941
1.758118146971741118 Eth
Nonce: 942
0.001372948499615781
0x7c472fb1...6e6cC2300

Execution Trace

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