ETH Price: $2,770.26 (+6.31%)
Gas: 1.17 Gwei

Transaction Decoder

Block:
9971286 at Apr-30-2020 02:32:53 AM +UTC
Transaction Fee:
0.00050219 ETH $1.39
Gas Used:
50,219 Gas / 10 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x04abEdA2...c74ddC74C
0xD39709D1...2dC0B425D
0.014282864564725986 Eth
Nonce: 253
0.013780674564725986 Eth
Nonce: 254
0.00050219
(Ethermine)
601.652762745913067837 Eth601.653264935913067837 Eth0.00050219

Execution Trace

IBNEST.transfer( _to=0xbc8dAfeacA658Ae0857C80D8Aa6dE4D487577c63, _value=1060000000000000000000000 ) => ( True )
  • IterableMapping.4c5e1cae( )
  • IterableMapping.4c5e1cae( )
  • IterableMapping.ab517b4f( )
  • IterableMapping.4c5e1cae( )
  • IterableMapping.ab517b4f( )
    File 1 of 2: IBNEST
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    pragma solidity ^0.5.1;
    library IterableMapping {
    struct itmap
    {
    mapping(address => IndexValue) data;
    KeyFlag[] keys;
    uint size;
    }
    struct IndexValue { uint keyIndex; uint value; }
    struct KeyFlag { address key; bool deleted; }
    function insert(itmap storage self, address key, uint value) public returns (bool replaced)
    {
    uint keyIndex = self.data[key].keyIndex;
    self.data[key].value = value;
    if (keyIndex > 0)
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 2 of 2: IterableMapping
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    library IterableMapping {
    struct itmap
    {
    mapping(address => IndexValue) data;
    KeyFlag[] keys;
    uint size;
    }
    struct IndexValue { uint keyIndex; uint value; }
    struct KeyFlag { address key; bool deleted; }
    function insert(itmap storage self, address key, uint value) public returns (bool replaced)
    {
    uint keyIndex = self.data[key].keyIndex;
    self.data[key].value = value;
    if (keyIndex > 0)
    return true;
    else
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX