ETH Price: $2,604.98 (+3.47%)

Transaction Decoder

Block:
8251597 at Jul-30-2019 11:09:54 AM +UTC
Transaction Fee:
0.000037234 ETH $0.10
Gas Used:
37,234 Gas / 1 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x2dCa3452...be7c3FC25
0.013051589 Eth
Nonce: 1
0.013014355 Eth
Nonce: 2
0.000037234
0x89d24A6b...a23260359
(Ethermine)
368.301880214828376567 Eth368.301917448828376567 Eth0.000037234

Execution Trace

DSToken.transfer( dst=0x663949eEF1b0078AD8Fd90b35FD4396Bd552cDBC, wad=60000000000000000 ) => ( True )
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.13;
////// lib/ds-math/src/math.sol
/// math.sol -- mixin for inline numerical wizardry
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
/* pragma solidity ^0.4.13; */
contract DSMath {
function add(uint x, uint y) internal pure returns (uint z) {
require((z = x + y) >= x);
}
function sub(uint x, uint y) internal pure returns (uint z) {
require((z = x - y) <= x);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX