ETH Price: $2,501.26 (-1.84%)

Transaction Decoder

Block:
12594399 at Jun-08-2021 02:21:01 PM +UTC
Transaction Fee:
0.001981605 ETH $4.96
Gas Used:
46,626 Gas / 42.5 Gwei

Emitted Events:

369 ARAID.Approval( owner=[Sender] 0x2068d26b9b9a5ea80e9dcb057cebe8612aeb2bbd, spender=0x7a250d56...659F2488D, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )

Account State Difference:

  Address   Before After State Difference Code
0x2068d26B...12AEb2BbD
0.0094320072 Eth
Nonce: 1
0.0074504022 Eth
Nonce: 2
0.001981605
0x387c291B...a0113caf5
(Ethermine)
1,578.872016495583724501 Eth1,578.873998100583724501 Eth0.001981605

Execution Trace

ARAID.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
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
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 tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX