Transaction Hash:
Block:
13044403 at Aug-17-2021 06:48:17 PM +UTC
Transaction Fee:
0.001267057874031768 ETH
$4.37
Gas Used:
23,569 Gas / 53.759509272 Gwei
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x5A0b54D5...D3E029c4c
Miner
| (Spark Pool) | 44.605546838100374429 Eth | 44.605719188629397465 Eth | 0.000172350529023036 | |
0xD4c6AE5b...6B3Aa3e3E |
0.241254 Eth
Nonce: 3
|
0.239986942125968232 Eth
Nonce: 4
| 0.001267057874031768 |
Execution Trace
LFG.CALL( )
1234567891011121314151617181920212223242526pragma solidity ^0.6.12;// SPDX-License-Identifier: Unlicensedinterface IERC20 {function totalSupply() external view returns (uint256);/*** @dev Returns the amount of tokens owned by `account`.*/function balanceOf(address account) external view returns (uint256);/*** @dev Moves `amount` tokens from the caller's account to `recipient`.** Returns a boolean value indicating whether the operation succeeded.** Emits a {Transfer} event.*/function transfer(address recipient, uint256 amount) external returns (bool);/*** @dev Returns the remaining number of tokens that `spender` will be* allowed to spend on behalf of `owner` through {transferFrom}. This is* zero by default.** This value changes when {approve} or {transferFrom} are called.