ETH Price: $2,518.30 (+0.38%)
Gas: 1.08 Gwei

Transaction Decoder

Block:
12175595 at Apr-04-2021 09:26:56 PM +UTC
Transaction Fee:
0.002016 ETH $5.08
Gas Used:
21,000 Gas / 96 Gwei

Account State Difference:

  Address   Before After State Difference Code
(Ethermine)
857.031763842305125362 Eth857.033779842305125362 Eth0.002016
0xFFc59298...9030F41Ae
0.352719374236052156 Eth
Nonce: 6
0.350703374236052156 Eth
Nonce: 7
0.002016

Execution Trace

ETH 0.350703374236052156 MerchantToken.CALL( )
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