Transaction Hash:
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:
106 |
DSToken.Transfer( src=[Sender] 0x2dca345284d6038ec9dcac702f37d95be7c3fc25, dst=0x663949eEF1b0078AD8Fd90b35FD4396Bd552cDBC, wad=60000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x2dCa3452...be7c3FC25 |
0.013051589 Eth
Nonce: 1
|
0.013014355 Eth
Nonce: 2
| 0.000037234 | ||
0x89d24A6b...a23260359 | |||||
0xEA674fdD...16B898ec8
Miner
| (Ethermine) | 368.301880214828376567 Eth | 368.301917448828376567 Eth | 0.000037234 |
Execution Trace
DSToken.transfer( dst=0x663949eEF1b0078AD8Fd90b35FD4396Bd552cDBC, wad=60000000000000000 ) => ( True )
transfer[ERC20 (ln:264)]
1234567891011121314151617181920212223242526pragma 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);