ETH Price: $3,556.27 (-1.36%)

Transaction Decoder

Block:
6182560 at Aug-20-2018 05:20:05 PM +UTC
Transaction Fee:
0.00018278925 ETH $0.65
Gas Used:
164,675 Gas / 1.11 Gwei

Account State Difference:

  Address   Before After State Difference Code
0x4Eba4F0d...0fE0Ccf47
0.002353576 Eth
Nonce: 14
0.00217078675 Eth
Nonce: 15
0.00018278925
(Spark Pool)
4,460.589844609012500441 Eth4,460.590027398262500441 Eth0.00018278925
0x8f7DAB9F...f3404B3b9
0 Eth
Nonce: 0
0 Eth
Nonce: 1
From: 0 To: 71284713027992425358523476537655111651235963442181897529374296857256584379254786042087333003300699520044914747181775088047423722349380544945064816754322608777856591228315291351877651450295427891227549269173340779346483714393190226694678917285782644586730811479458740973593238265974429112855024453546594448302630056271162442400704804561732830758736274496980470316824864545603874975845855576148149931093262381023090556717285580877392538499258309364067599684260012872670022448883349496998176037941073924640890230493520666579032888844910239000091642764547873114057767272051543944185282427571120482128494509157432654704258045596897281730240379622995977811038891688136324494808515309115819317837212143760911011971138463993440767130456506017257041851603238566356782074018828408571988638067186546972772879319526195993869080487210966459644204537437067219134125304389280506472724953318875891233896498515890993748805556413662151572101916018287507269803932611276998656146592662797984395980312189158362990077593255391947644403753

Execution Trace

SafeMathLibExt.60606040( )
// Created using Token Wizard https://github.com/poanetwork/token-wizard by POA Network 
/**
 * This smart contract code is Copyright 2017 TokenMarket Ltd. For more information see https://tokenmarket.net
 *
 * Licensed under the Apache License, version 2.0: https://github.com/TokenMarketNet/ico/blob/master/LICENSE.txt
 */

pragma solidity ^0.4.6;

/**
 * Safe unsigned safe math.
 *
 * https://blog.aragon.one/library-driven-development-in-solidity-2bebcaf88736#.750gwtwli
 *
 * Originally from https://raw.githubusercontent.com/AragonOne/zeppelin-solidity/master/contracts/SafeMathLib.sol
 *
 * Maintained here until merged to mainline zeppelin-solidity.
 *
 */
library SafeMathLibExt {

  function times(uint a, uint b) returns (uint) {
    uint c = a * b;
    assert(a == 0 || c / a == b);
    return c;
  }

  function divides(uint a, uint b) returns (uint) {
    assert(b > 0);
    uint c = a / b;
    assert(a == b * c + a % b);
    return c;
  }

  function minus(uint a, uint b) returns (uint) {
    assert(b <= a);
    return a - b;
  }

  function plus(uint a, uint b) returns (uint) {
    uint c = a + b;
    assert(c>=a);
    return c;
  }

}