Transaction Hash:
Block:
22641225 at Jun-05-2025 09:55:23 PM +UTC
Transaction Fee:
0.0002121842315432 ETH
$0.59
Gas Used:
46,790 Gas / 4.53482008 Gwei
Emitted Events:
462 |
MerchantToken.Transfer( from=[Sender] 0xf3fb2e150ebb12736ea38f12eddc7078ebc83e77, to=0x7a56b0c4eD979f6BD5C668437D504f7Dc98CC9A9, tokens=6252105276705546151081 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 7.400964008518381067 Eth | 7.400966348018381067 Eth | 0.0000023395 | |
0xE66b3AA3...69DB3324F | |||||
0xf3fB2e15...8ebC83E77 |
0.173635612034332843 Eth
Nonce: 305
|
0.173423427802789643 Eth
Nonce: 306
| 0.0002121842315432 |
Execution Trace
MerchantToken.transfer( to=0x7a56b0c4eD979f6BD5C668437D504f7Dc98CC9A9, tokens=6252105276705546151081 ) => ( success=True )
transfer[MerchantToken (ln:71)]
safeSub[MerchantToken (ln:72)]
safeAdd[MerchantToken (ln:73)]
Transfer[MerchantToken (ln:74)]
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; } } contract MerchantToken is ERC20Interface, SafeMath { string constant public name = "Merchant Token"; string constant public symbol = "MTO"; uint8 constant public decimals = 18; uint256 constant public _totalSupply = 100000000000000000000000000; mapping(address => uint) public balances; mapping(address => mapping(address => uint)) public allowed; constructor() public { balances[msg.sender] = _totalSupply; emit Transfer(address(0), msg.sender, _totalSupply); } function totalSupply() public view returns (uint) { return _totalSupply - balances[address(0)]; } function balanceOf(address tokenOwner) public view returns (uint balance) { return balances[tokenOwner]; } function allowance(address tokenOwner, address spender) public view returns (uint remaining) { return allowed[tokenOwner][spender]; } function approve(address spender, uint tokens) public returns (bool success) { allowed[msg.sender][spender] = tokens; emit Approval(msg.sender, spender, tokens); return true; } function increaseApproval(address spender, uint tokens) public returns (bool success) { allowed[msg.sender][spender] = safeAdd(allowed[msg.sender][spender], tokens); return true; } function decreaseApproval(address spender, uint tokens) public returns (bool success) { allowed[msg.sender][spender] = safeSub(allowed[msg.sender][spender], tokens); return true; } function transfer(address to, uint tokens) public returns (bool success) { balances[msg.sender] = safeSub(balances[msg.sender], tokens); balances[to] = safeAdd(balances[to], tokens); emit Transfer(msg.sender, to, tokens); return true; } function transferFrom(address from, address to, uint tokens) public returns (bool success) { balances[from] = safeSub(balances[from], tokens); allowed[from][msg.sender] = safeSub(allowed[from][msg.sender], tokens); balances[to] = safeAdd(balances[to], tokens); emit Transfer(from, to, tokens); return true; } }