Transaction Hash:
Block:
9590504 at Mar-02-2020 08:16:53 AM +UTC
Transaction Fee:
0.0002592876 ETH
$0.90
Gas Used:
117,858 Gas / 2.2 Gwei
Emitted Events:
118 |
Thing.Transfer( from=[Sender] 0xd1898665a01a91ac10bd2c6cb1899336df34ac33, to=0xDE0ADA1a...35052e12C, tokenId=5 )
|
119 |
Thing.BatchTransfered( metaId=f8FJxeAxdfm2fWkHtJA9, recipients=[0xDE0ADA1a303517C3320E180601d14F135052e12C], ids=[5] )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4B65046c...7FF50559E | |||||
0xD1898665...6df34AC33 |
0.224872965872451446 Eth
Nonce: 207
|
0.224613678272451446 Eth
Nonce: 208
| 0.0002592876 | ||
0xEA674fdD...16B898ec8
Miner
| (Ethermine) | 1,246.005535701602857066 Eth | 1,246.005794989202857066 Eth | 0.0002592876 |
Execution Trace
Thing.batchTransfer( giver=0xD1898665a01A91AC10bD2C6cb1899336df34AC33, recipients=[0xDE0ADA1a303517C3320E180601d14F135052e12C], values=[5] )
batchTransfer[Thing (ln:1532)]
transferFrom[Thing (ln:1535)]
BatchTransfered[Thing (ln:1538)]
1234567891011121314151617181920212223242526// File: openzeppelin-solidity/contracts/GSN/Context.solpragma solidity ^0.5.0;/** @dev Provides information about the current execution context, including the* sender of the transaction and its data. While these are generally available* via msg.sender and msg.data, they should not be accessed in such a direct* manner, since when dealing with GSN meta-transactions the account sending and* paying for execution may not be the actual sender (as far as an application* is concerned).** This contract is only required for intermediate, library-like contracts.*/contract Context {// Empty internal constructor, to prevent people from mistakenly deploying// an instance of this contract, which should be used via inheritance.constructor () internal { }// solhint-disable-previous-line no-empty-blocksfunction _msgSender() internal view returns (address payable) {return msg.sender;}function _msgData() internal view returns (bytes memory) {this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691