Transaction Hash:
Block:
7296562 at Mar-03-2019 12:25:56 PM +UTC
Transaction Fee:
0.000259665 ETH
$0.72
Gas Used:
37,095 Gas / 7 Gwei
Emitted Events:
24 |
NAWRAS.Transfer( _from=[Sender] 0xff769076f946ae0015ae6009615f2e833710d4f4, _to=0xe1A512E0Ff92f8c6D30Cb8646F1031EC6EF70AED, _value=100000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x45f2f436...26F6993dC | |||||
0x829BD824...93333A830
Miner
| (F2Pool Old) | 7,481.199398016392629602 Eth | 7,481.199657681392629602 Eth | 0.000259665 | |
0xFf769076...33710D4f4 |
0.000729294 Eth
Nonce: 34
|
0.000469629 Eth
Nonce: 35
| 0.000259665 |
Execution Trace
NAWRAS.transfer( _to=0xe1A512E0Ff92f8c6D30Cb8646F1031EC6EF70AED, _amount=100000000000000 ) => ( success=True )
transfer[NAWRAS (ln:244)]
sub[NAWRAS (ln:249)]
add[NAWRAS (ln:250)]
Transfer[NAWRAS (ln:251)]
1234567891011121314151617181920212223242526pragma solidity ^0.4.25;// ----------------------------------------------library SafeMath {/*** 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;}/*** 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 holdreturn a / b;}/*** Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend).*/