Transaction Hash:
Block:
7441524 at Mar-26-2019 02:12:18 AM +UTC
Transaction Fee:
0.000046768 ETH
$0.14
Gas Used:
23,384 Gas / 2 Gwei
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x253925D6...cF111EFaC |
0.000391301334446046 Eth
Nonce: 8
|
0.000344533334446046 Eth
Nonce: 9
| 0.000046768 | ||
0x5A0b54D5...D3E029c4c
Miner
| (Spark Pool) | 9,337.803314610811039156 Eth | 9,337.803361378811039156 Eth | 0.000046768 |
Execution Trace
Rebellious.transfer( _to=0x81E3B230A231d41f5aF2F3EC6FFcDFC6c5C8B01b, _value=3392443537717301701779 )
transfer[Rebellious (ln:167)]
mint[Rebellious (ln:168)]
getProofOfStakeReward[Rebellious (ln:218)]
add[Rebellious (ln:221)]
add[Rebellious (ln:222)]
push[Rebellious (ln:224)]
transferInStruct[Rebellious (ln:224)]
Mint[Rebellious (ln:226)]
sub[Rebellious (ln:169)]
add[Rebellious (ln:170)]
Transfer[Rebellious (ln:171)]
push[Rebellious (ln:174)]
transferInStruct[Rebellious (ln:174)]
push[Rebellious (ln:175)]
transferInStruct[Rebellious (ln:175)]
1234567891011121314151617181920212223242526pragma solidity ^0.4.16;/*** @title SafeMath* @dev Math operations with safety checks that throw on error*/library SafeMath {function mul(uint256 a, uint256 b) internal constant returns (uint256) {uint256 c = a * b;assert(a == 0 || c / a == b);return c;}function div(uint256 a, uint256 b) internal constant returns (uint256) {// assert(b > 0); // Solidity automatically throws when dividing by 0uint256 c = a / b;// assert(a == b * c + a % b); // There is no case in which this doesn't holdreturn c;}function sub(uint256 a, uint256 b) internal constant returns (uint256) {assert(b <= a);return a - b;}