ETH Price: $3,753.43 (+0.74%)

Transaction Decoder

Block:
7820291 at May-24-2019 04:42:05 AM +UTC
Transaction Fee:
0.000263327984331984 ETH $0.99
Gas Used:
131,664 Gas / 1.999999881 Gwei

Emitted Events:

83 OriginToken.Approval( owner=[Sender] 0x343a3c7f789335c9ea60932d34be258f643678d9, spender=V00_Marketplace, value=2000000000000000000 )
84 OriginToken.Transfer( from=[Sender] 0x343a3c7f789335c9ea60932d34be258f643678d9, to=V00_Marketplace, value=2000000000000000000 )
85 V00_Marketplace.ListingCreated( party=[Sender] 0x343a3c7f789335c9ea60932d34be258f643678d9, listingID=2794, ipfsHash=EDFE0BF4CA6E3104CD867F8B07293DB657C60D99286C0A95178E408F8F707036 )

Account State Difference:

  Address   Before After State Difference Code
0x343a3C7F...F643678d9
0.103282112567361656 Eth
Nonce: 174
0.103018784583029672 Eth
Nonce: 175
0.000263327984331984
0x819Bb996...B921510f9
(Origin: Marketplace v0)
0x8207c1Ff...c3541Ae26
(Ethermine)
645.620994717707769988 Eth645.621258045692101972 Eth0.000263327984331984

Execution Trace

OriginToken.approveAndCallWithSender( _spender=0x819Bb9964B6eBF52361F1ae42CF4831B921510f9, _value=2000000000000000000, _selector=System.Byte[], _callParams=0xEDFE0BF4CA6E3104CD867F8B07293DB657C60D99286C0A95178E408F8F7070360000000000000000000000000000000000000000000000001BC16D674EC80000000000000000000000000000343A3C7F789335C9EA60932D34BE258F643678D9 ) => ( True )
  • V00_Marketplace.createListingWithSender( _seller=0x343a3C7F789335C9EA60932D34bE258F643678d9, _ipfsHash=EDFE0BF4CA6E3104CD867F8B07293DB657C60D99286C0A95178E408F8F707036, _deposit=2000000000000000000, _depositManager=0x343a3C7F789335C9EA60932D34bE258F643678d9 ) => ( True )
    • OriginToken.transferFrom( _from=0x343a3C7F789335C9EA60932D34bE258F643678d9, _to=0x819Bb9964B6eBF52361F1ae42CF4831B921510f9, _value=2000000000000000000 ) => ( True )
      File 1 of 2: OriginToken
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      pragma solidity ^0.4.24;
      // produced by the Solididy File Flattener (c) David Appleton 2018
      // contact : dave@akomba.com
      // released under Apache 2.0 licence
      contract 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);
      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

      File 2 of 2: V00_Marketplace
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      pragma solidity ^0.4.24;
      // produced by the Solididy File Flattener (c) David Appleton 2018
      // contact : dave@akomba.com
      // released under Apache 2.0 licence
      contract Ownable {
      address public owner;
      event OwnershipRenounced(address indexed previousOwner);
      event OwnershipTransferred(
      address indexed previousOwner,
      address indexed newOwner
      );
      /**
      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX