Transaction Hash:
Block:
8028583 at Jun-25-2019 05:47:39 PM +UTC
Transaction Fee:
0.0000252087 ETH
$0.07
Gas Used:
22,917 Gas / 1.1 Gwei
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x5A0b54D5...D3E029c4c
Miner
| (Spark Pool) | 3,145.185373833257597065 Eth | 3,145.185399041957597065 Eth | 0.0000252087 | |
0xAf9365a8...00Aaf5d95 |
0.000730568153224714 Eth
Nonce: 25
|
0.000705359453224714 Eth
Nonce: 26
| 0.0000252087 |
Execution Trace
AgroNest.CALL( )
[AgroNest (ln:178)]
getTokens[AgroNest (ln:179)]
mul[AgroNest (ln:190)]
distr[AgroNest (ln:216)]
add[AgroNest (ln:141)]
add[AgroNest (ln:142)]
Distr[AgroNest (ln:143)]
Transfer[AgroNest (ln:144)]
distr[AgroNest (ln:224)]
add[AgroNest (ln:141)]
add[AgroNest (ln:142)]
Distr[AgroNest (ln:143)]
Transfer[AgroNest (ln:144)]
distr[AgroNest (ln:227)]
add[AgroNest (ln:141)]
add[AgroNest (ln:142)]
Distr[AgroNest (ln:143)]
Transfer[AgroNest (ln:144)]
distr[AgroNest (ln:229)]
add[AgroNest (ln:141)]
add[AgroNest (ln:142)]
Distr[AgroNest (ln:143)]
Transfer[AgroNest (ln:144)]
transfer[AgroNest (ln:241)]
1234567891011121314151617181920212223242526pragma solidity ^0.4.25;/*** @title AgroNest*/library SafeMath {/*** @dev Multiplies two numbers, throws on overflow.*/function mul(uint256 a, uint256 b) internal pure returns (uint256 c) {if (a == 0) {return 0;}c = a * b;assert(c / a == b);return c;}/*** @dev Integer division of two numbers, truncating the quotient.*/function div(uint256 a, uint256 b) internal pure returns (uint256) {// assert(b > 0); // Solidity automatically throws when dividing by 0// uint256 c = a / b;// assert(a == b * c + a % b); // There is no case in which this doesn't hold