Transaction Hash:
Block:
7946714 at Jun-12-2019 10:48:54 PM +UTC
Transaction Fee:
0.000131664 ETH
$0.49
Gas Used:
131,664 Gas / 1 Gwei
Emitted Events:
94 |
OriginToken.Approval( owner=[Sender] 0x343a3c7f789335c9ea60932d34be258f643678d9, spender=V00_Marketplace, value=2000000000000000000 )
|
95 |
OriginToken.Transfer( from=[Sender] 0x343a3c7f789335c9ea60932d34be258f643678d9, to=V00_Marketplace, value=2000000000000000000 )
|
96 |
V00_Marketplace.ListingCreated( party=[Sender] 0x343a3c7f789335c9ea60932d34be258f643678d9, listingID=2844, ipfsHash=8C4D79FD85EB2C2D05995DD3922FB2E6F88B52B1FEBC6D95F3A89459C99AA447 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x343a3C7F...F643678d9 |
0.084090384683029672 Eth
Nonce: 200
|
0.083958720683029672 Eth
Nonce: 201
| 0.000131664 | ||
0x819Bb996...B921510f9 | (Origin: Marketplace v0) | ||||
0x8207c1Ff...c3541Ae26 | |||||
0xEA674fdD...16B898ec8
Miner
| (Ethermine) | 762.447628025673580463 Eth | 762.447759689673580463 Eth | 0.000131664 |
Execution Trace
OriginToken.approveAndCallWithSender( _spender=0x819Bb9964B6eBF52361F1ae42CF4831B921510f9, _value=2000000000000000000, _selector=System.Byte[], _callParams=0x8C4D79FD85EB2C2D05995DD3922FB2E6F88B52B1FEBC6D95F3A89459C99AA4470000000000000000000000000000000000000000000000001BC16D674EC80000000000000000000000000000343A3C7F789335C9EA60932D34BE258F643678D9 ) => ( True )

V00_Marketplace.createListingWithSender( _seller=0x343a3C7F789335C9EA60932D34bE258F643678d9, _ipfsHash=8C4D79FD85EB2C2D05995DD3922FB2E6F88B52B1FEBC6D95F3A89459C99AA447, _deposit=2000000000000000000, _depositManager=0x343a3C7F789335C9EA60932D34bE258F643678d9 ) => ( True )
-
OriginToken.transferFrom( _from=0x343a3C7F789335C9EA60932D34bE258F643678d9, _to=0x819Bb9964B6eBF52361F1ae42CF4831B921510f9, _value=2000000000000000000 ) => ( True )
-
approveAndCallWithSender[OriginToken (ln:621)]
approve[OriginToken (ln:634)]
value[OriginToken (ln:638)]
File 1 of 2: OriginToken
File 2 of 2: V00_Marketplace
12345678910111213141516pragma solidity ^0.4.24;// produced by the Solididy File Flattener (c) David Appleton 2018// contact : dave@akomba.com// released under Apache 2.0 licencecontract ERC20Basic {function totalSupply() public view returns (uint256);function balanceOf(address who) public view returns (uint256);function transfer(address to, uint256 value) public returns (bool);event Transfer(address indexed from, address indexed to, uint256 value);}contract Ownable {address public owner;event OwnershipRenounced(address indexed previousOwner);
File 2 of 2: V00_Marketplace
12345678910111213141516pragma 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);/**