ETH Price: $4,269.96 (+1.21%)

Transaction Decoder

Block:
10907621 at Sep-21-2020 07:05:32 PM +UTC
Transaction Fee:
0.0037723 ETH $16.11
Gas Used:
44,380 Gas / 85 Gwei

Emitted Events:

299 yfALPHA.Approval( owner=[Sender] 0x9374176ba0e0e56d1f244b2f4ba32a794bf06e0e, spender=0x7a250d56...659F2488D, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )

Account State Difference:

  Address   Before After State Difference Code
0x9374176B...94BF06e0e
1.571057996884326505 Eth
Nonce: 8
1.567285696884326505 Eth
Nonce: 9
0.0037723
0xe51fDC2c...B62F67d0B
(Ethermine)
1,940.015679835170887214 Eth1,940.019452135170887214 Eth0.0037723

Execution Trace

yfALPHA.approve( spender=0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, value=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.0;
library SafeMath {
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return sub(a, b, "SafeMath: subtraction overflow");
}
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b <= a, errorMessage);
uint256 c = a - b;
return c;
}
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX