ETH Price: $3,553.25 (+4.10%)

Transaction Decoder

Block:
17065739 at Apr-17-2023 09:54:23 AM +UTC
Transaction Fee:
0.001300709959178249 ETH $4.62
Gas Used:
46,289 Gas / 28.099763641 Gwei

Emitted Events:

200 Nembus.Approval( owner=[Sender] 0x49836f9a9328b32f16db0bf00586a4c7beb9f66f, spender=0x00000000...43aC78BA3, value=6992940048284457 )

Account State Difference:

  Address   Before After State Difference Code
(Lido: Execution Layer Rewards Vault)
226.509226054664395656 Eth226.509230683564395656 Eth0.0000046289
0x49836F9a...7bEb9f66f
0.014906129285025464 Eth
Nonce: 7966
0.013605419325847215 Eth
Nonce: 7967
0.001300709959178249
0x7c472fb1...6e6cC2300

Execution Trace

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