Transaction Hash:
Block:
7820251 at May-24-2019 04:32:49 AM +UTC
Transaction Fee:
0.000474451479559824 ETH
$1.43
Gas Used:
131,664 Gas / 3.603501941 Gwei
Emitted Events:
40 |
OriginToken.Approval( owner=[Sender] 0x343a3c7f789335c9ea60932d34be258f643678d9, spender=V00_Marketplace, value=2000000000000000000 )
|
41 |
OriginToken.Transfer( from=[Sender] 0x343a3c7f789335c9ea60932d34be258f643678d9, to=V00_Marketplace, value=2000000000000000000 )
|
42 |
V00_Marketplace.ListingCreated( party=[Sender] 0x343a3c7f789335c9ea60932d34be258f643678d9, listingID=2793, ipfsHash=5804F0D588F7D4BCA881086480E0F2B103D2EEB53F5F5160F663BD4E135458FC )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x343a3C7F...F643678d9 |
0.10375656404692148 Eth
Nonce: 173
|
0.103282112567361656 Eth
Nonce: 174
| 0.000474451479559824 | ||
0x5A0b54D5...D3E029c4c
Miner
| (Spark Pool) | 5,030.726568934825506149 Eth | 5,030.727043386305065973 Eth | 0.000474451479559824 | |
0x819Bb996...B921510f9 | (Origin: Marketplace v0) | ||||
0x8207c1Ff...c3541Ae26 |
Execution Trace
OriginToken.approveAndCallWithSender( _spender=0x819Bb9964B6eBF52361F1ae42CF4831B921510f9, _value=2000000000000000000, _selector=System.Byte[], _callParams=0x5804F0D588F7D4BCA881086480E0F2B103D2EEB53F5F5160F663BD4E135458FC0000000000000000000000000000000000000000000000001BC16D674EC80000000000000000000000000000343A3C7F789335C9EA60932D34BE258F643678D9 ) => ( True )

V00_Marketplace.createListingWithSender( _seller=0x343a3C7F789335C9EA60932D34bE258F643678d9, _ipfsHash=5804F0D588F7D4BCA881086480E0F2B103D2EEB53F5F5160F663BD4E135458FC, _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);/**