ETH Price: $2,822.05 (+4.52%)

Transaction Decoder

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 Code
(Spark Pool)
3,145.185373833257597065 Eth3,145.185399041957597065 Eth0.0000252087
0xAf9365a8...00Aaf5d95
0.000730568153224714 Eth
Nonce: 25
0.000705359453224714 Eth
Nonce: 26
0.0000252087

Execution Trace

AgroNest.CALL( )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
pragma 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
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX