ETH Price: $4,627.56 (+7.21%)
Gas: 0.68 Gwei

Transaction Decoder

Block:
13595214 at Nov-11-2021 01:35:02 PM +UTC
Transaction Fee:
0.005797828498560738 ETH $26.83
Gas Used:
46,626 Gas / 124.347542113 Gwei

Emitted Events:

232 LFG.Approval( owner=[Sender] 0x677e2c62afda432948c1cfebc2211b865ffc3540, spender=0x7a250d56...659F2488D, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )

Account State Difference:

  Address   Before After State Difference Code
0x677e2c62...65FFC3540
0.051033530180744272 Eth
Nonce: 513
0.045235701682183534 Eth
Nonce: 514
0.005797828498560738
0xDb7A1a85...79e5cA587
(Ethermine)
2,316.455882968638709452 Eth2,316.455952907638709452 Eth0.000069939

Execution Trace

LFG.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
pragma solidity ^0.6.12;
// SPDX-License-Identifier: Unlicensed
interface IERC20 {
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX