Transaction Hash:
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 | ||
---|---|---|---|---|---|
0x4Eba4F0d...0fE0Ccf47 |
0.002353576 Eth
Nonce: 14
|
0.00217078675 Eth
Nonce: 15
| 0.00018278925 | ||
0x5A0b54D5...D3E029c4c
Miner
| (Spark Pool) | 4,460.589844609012500441 Eth | 4,460.590027398262500441 Eth | 0.00018278925 | |
0x8f7DAB9F...f3404B3b9 |
0 Eth
Nonce: 0
|
0 Eth
Nonce: 1
|
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; } }