ETH Price: $4,729.12 (+7.89%)

Transaction Decoder

Block:
12790037 at Jul-09-2021 12:42:13 AM +UTC
Transaction Fee:
0.001579572 ETH $7.47
Gas Used:
46,458 Gas / 34 Gwei

Emitted Events:

86 MerchantToken.Approval( tokenOwner=[Sender] 0x49984fed43b14084ef471ce4b5ab5f52e119867f, spender=0xE592427A...C05861564, tokens=115792089237316195423570985008687907853269984665640564039457584007913129639935 )

Account State Difference:

  Address   Before After State Difference Code
0x49984Fed...2E119867f
0.21839019878060321 Eth
Nonce: 88
0.21681062678060321 Eth
Nonce: 89
0.001579572
0xE66b3AA3...69DB3324F
(Ethermine)
2,096.812445054159077306 Eth2,096.814024626159077306 Eth0.001579572

Execution Trace

MerchantToken.approve( spender=0xE592427A0AEce92De3Edee1F18E0157C05861564, tokens=115792089237316195423570985008687907853269984665640564039457584007913129639935 ) => ( success=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
pragma solidity ^0.5.0;
contract ERC20Interface {
function totalSupply() public view returns (uint);
function balanceOf(address tokenOwner) public view returns (uint balance);
function allowance(address tokenOwner, address spender) public view returns (uint remaining);
function transfer(address to, uint tokens) public returns (bool success);
function approve(address spender, uint tokens) public returns (bool success);
function transferFrom(address from, address to, uint tokens) public returns (bool success);
event Transfer(address indexed from, address indexed to, uint tokens);
event Approval(address indexed tokenOwner, address indexed spender, uint tokens);
}
contract SafeMath {
function safeAdd(uint a, uint b) public pure returns (uint c) {
c = a + b;
require(c >= a);
}
function safeSub(uint a, uint b) public pure returns (uint c) {
require(b <= a); c = a - b; } function safeMul(uint a, uint b) public pure returns (uint c) { c = a * b; require(a == 0 || c / a == b); }
            function safeDiv(uint a, uint b) public pure returns (uint c) { require(b > 0);
c = a / b;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX