Transaction Hash:
Block:
8027653 at Jun-25-2019 02:20:43 PM +UTC
Transaction Fee:
0.00157804 ETH
$5.88
Gas Used:
78,902 Gas / 20 Gwei
Emitted Events:
64 |
V00_Marketplace.ListingCreated( party=[Sender] 0x343a3c7f789335c9ea60932d34be258f643678d9, listingID=2889, ipfsHash=43C87E2705886651FA2B8F3DCF73299A353BF69ED31FC19FAE5278203B11DAC2 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x343a3C7F...F643678d9 |
0.080551873143029672 Eth
Nonce: 218
|
0.078973833143029672 Eth
Nonce: 219
| 0.00157804 | ||
0x819Bb996...B921510f9 | (Origin: Marketplace v0) | ||||
0xEA674fdD...16B898ec8
Miner
| (Ethermine) | 863.574311773880543857 Eth | 863.575889813880543857 Eth | 0.00157804 |
Execution Trace
V00_Marketplace.createListing( _ipfsHash=43C87E2705886651FA2B8F3DCF73299A353BF69ED31FC19FAE5278203B11DAC2, _deposit=0, _depositManager=0x343a3C7F789335C9EA60932D34bE258F643678d9 )
createListing[V00_Marketplace (ln:128)]
_createListing[V00_Marketplace (ln:131)]
push[V00_Marketplace (ln:160)]
Listing[V00_Marketplace (ln:160)]
transferFrom[V00_Marketplace (ln:167)]
ListingCreated[V00_Marketplace (ln:169)]
1234567891011121314151617181920212223242526pragma solidity ^0.4.24;// produced by the Solididy File Flattener (c) David Appleton 2018// contact : dave@akomba.com// released under Apache 2.0 licencecontract Ownable {address public owner;event OwnershipRenounced(address indexed previousOwner);event OwnershipTransferred(address indexed previousOwner,address indexed newOwner);/*** @dev The Ownable constructor sets the original `owner` of the contract to the sender* account.*/constructor() public {owner = msg.sender;}/*** @dev Throws if called by any account other than the owner.*/