Transaction Hash:
Block:
8113204 at Jul-08-2019 10:06:15 PM +UTC
Transaction Fee:
0.0000826455 ETH
$0.31
Gas Used:
78,710 Gas / 1.05 Gwei
Emitted Events:
84 |
V00_Marketplace.ListingCreated( party=[Sender] 0x343a3c7f789335c9ea60932d34be258f643678d9, listingID=2948, ipfsHash=2A1A4127A4B8DD8CF277B81C008310D6702D009E8EF9E10035019A2763F2D298 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x343a3C7F...F643678d9 |
0.031279560165576316 Eth
Nonce: 250
|
0.031196914665576316 Eth
Nonce: 251
| 0.0000826455 | ||
0x819Bb996...B921510f9 | (Origin: Marketplace v0) | ||||
0xEA674fdD...16B898ec8
Miner
| (Ethermine) | 735.676960508490875654 Eth | 735.677043153990875654 Eth | 0.0000826455 |
Execution Trace
V00_Marketplace.createListing( _ipfsHash=2A1A4127A4B8DD8CF277B81C008310D6702D009E8EF9E10035019A2763F2D298, _deposit=0, _depositManager=0x37eD7DDbf2Bb63Fb771fF7b4085d471d8130f11F )
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.*/