ETH Price: $1,833.80 (-2.37%)

Transaction Decoder

Block:
10291512 at Jun-18-2020 07:12:23 PM +UTC
Transaction Fee:
0.0032845955 ETH $6.02
Gas Used:
123,947 Gas / 26.5 Gwei

Emitted Events:

193 Reserve.0xb5fbd96000000000000000000000000000000000000000000000000000000000( 0xb5fbd96000000000000000000000000000000000000000000000000000000000, 0x000000000000000000000000681d2475bd0cdaa134dc5179d95f9ed4b354a28b, 0x0000000000000000000000000000000000000000000000000000000000000040, 0x0000000000000000000000000000000000000000000000000000000000000080, 0000000000000000000000000000000000000000000000000000000000000000, 0000000000000000000000000000000000000000000000000000004000000000, 000000000000000000000000000000000000000000000000000000c4b5fbd960, 0000000000000000000000000000000000000000000000000000000000000040, 0000000000000000000000000000000000000000000000000000000000000080, 0000000000000000000000000000000000000000000000000000000000000001, c512c464693711c6c25216718ce5fec9ec99d895e8f619faf9d8ed3dab29ed80, 0000000000000000000000000000000000000000000000000000000000000001, 0000000000000000000000000000000000000000000000000000000000000005 )
194 Reserve.0xb5fbd96000000000000000000000000000000000000000000000000000000000( 0xb5fbd96000000000000000000000000000000000000000000000000000000000, 0x000000000000000000000000681d2475bd0cdaa134dc5179d95f9ed4b354a28b, 0x0000000000000000000000000000000000000000000000000000000000000040, 0x0000000000000000000000000000000000000000000000000000000000000080, 0000000000000000000000000000000000000000000000000000000000000000, 0000000000000000000000000000000000000000000000000000004000000000, 000000000000000000000000000000000000000000000000000000c4b5fbd960, 0000000000000000000000000000000000000000000000000000000000000040, 0000000000000000000000000000000000000000000000000000000000000080, 0000000000000000000000000000000000000000000000000000000000000001, c512c464693711c6c25216718ce5fec9ec99d895e8f619faf9d8ed3dab29ed80, 0000000000000000000000000000000000000000000000000000000000000001, 0000000000000000000000000000000000000000000000000000000000000005 )
195 Reserve.LogOrderCumulativeUpdated( orderHash=C512C464693711C6C25216718CE5FEC9EC99D895E8F619FAF9D8ED3DAB29ED80, updatedTill=1592352000, value=126339984 )

Account State Difference:

  Address   Before After State Difference Code
0x64d14595...45c7c5B7e
(Nuo Network: Reserve)
0x681D2475...4B354a28b
6.523784174223950762 Eth
Nonce: 61896
6.520499578723950762 Eth
Nonce: 61897
0.0032845955
(Ethermine)
1,565.656535668386953207 Eth1,565.659820263886953207 Eth0.0032845955

Execution Trace

Reserve.updateOrderCumulativeValueBatch( )
  • Config.isAdminValid( _admin=0x681D2475Bd0cDAA134Dc5179D95f9ed4B354a28b ) => ( True )
  • Config.isAdminValid( _admin=0x681D2475Bd0cDAA134Dc5179D95f9ed4B354a28b ) => ( True )
  • DateTime.getYear( timestamp=1592507543 ) => ( 2020 )
  • DateTime.getMonth( timestamp=1592507543 ) => ( 6 )
  • DateTime.getDay( timestamp=1592507543 ) => ( 18 )
  • DateTime.toTimestamp( year=2020, month=6, day=18 ) => ( timestamp=1592438400 )
    updateOrderCumulativeValueBatch[Reserve (ln:1513)]
    File 1 of 3: Reserve
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    pragma solidity 0.4.24;
    contract Utils {
    modifier addressValid(address _address) {
    require(_address != address(0), "Utils::_ INVALID_ADDRESS");
    _;
    }
    }
    contract DSAuthority {
    function canCall(address src, address dst, bytes4 sig) public view returns (bool);
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 2 of 3: Config
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    pragma solidity 0.4.24;
    contract DSNote {
    event LogNote(
    bytes4 indexed sig,
    address indexed guy,
    bytes32 indexed foo,
    bytes32 indexed bar,
    uint wad,
    bytes fax
    ) anonymous;
    modifier note {
    bytes32 foo;
    bytes32 bar;
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 3 of 3: DateTime
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    // The MIT License (MIT)
    // Copyright (c) 2015 Piper Merriam
    // Permission is hereby granted, free of charge, to any person obtaining a copy
    // of this software and associated documentation files (the "Software"), to deal
    // in the Software without restriction, including without limitation the rights
    // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    // copies of the Software, and to permit persons to whom the Software is
    // furnished to do so, subject to the following conditions:
    // The above copyright notice and this permission notice shall be included in all
    // copies or substantial portions of the Software.
    // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX