ETH Price: $3,428.53 (+2.72%)

Transaction Decoder

Block:
12761838 at Jul-04-2021 03:28:23 PM +UTC
Transaction Fee:
0.000511038 ETH $1.75
Gas Used:
46,458 Gas / 11 Gwei

Emitted Events:

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

Account State Difference:

  Address   Before After State Difference Code
0x0B2B0c49...3A1216eA5
0.089951192509708835 Eth
Nonce: 2
0.089440154509708835 Eth
Nonce: 3
0.000511038
0xE66b3AA3...69DB3324F
(Ethermine)
2,188.522032165046953538 Eth2,188.522543203046953538 Eth0.000511038

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