Transaction Hash:
Block:
7019625 at Jan-06-2019 10:31:50 AM +UTC
Transaction Fee:
0.000268551 ETH
$0.71
Gas Used:
59,678 Gas / 4.5 Gwei
Emitted Events:
55 |
KyberNetworkCrystal.Transfer( _from=0xb28b47E0545fA9ee79a01a705c43372aD1c1BD5d, _to=0x440bBd6a888a36DE6e2F6A25f65bc4e16874faa9, _value=8148986212378648463 )
|
56 |
FeeBurner.SendWalletFees( wallet=0x440bBd6a888a36DE6e2F6A25f65bc4e16874faa9, reserve=0x56e37b6b...2848Ae8c0, sender=[Sender] 0xc86aabab79b3903320a91a873c6eba12c176732a )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x35F61DFB...D5B3a738d
Miner
| (firepool) | 236.780359988708422812 Eth | 236.780628539708422812 Eth | 0.000268551 | |
0xc86aaBab...2c176732A |
1.855530703984556503 Eth
Nonce: 1521
|
1.855262152984556503 Eth
Nonce: 1522
| 0.000268551 | ||
0xdd974D5C...6686BD200 | |||||
0xed4f5326...02Cf34B04 |
Execution Trace
FeeBurner.sendFeeToWallet( wallet=0x440bBd6a888a36DE6e2F6A25f65bc4e16874faa9, reserve=0x56e37b6b79d4E895618B8Bb287748702848Ae8c0 )
-
KyberNetworkCrystal.transferFrom( _from=0xb28b47E0545fA9ee79a01a705c43372aD1c1BD5d, _to=0x440bBd6a888a36DE6e2F6A25f65bc4e16874faa9, _value=8148986212378648463 ) => ( True )
sendFeeToWallet[FeeBurner (ln:367)]
transferFrom[FeeBurner (ln:371)]
SendWalletFees[FeeBurner (ln:374)]
File 1 of 2: FeeBurner
File 2 of 2: KyberNetworkCrystal
12345678910111213141516pragma solidity 0.4.18;// File: contracts/FeeBurnerInterface.solinterface FeeBurnerInterface {function handleFees (uint tradeWeiAmount, address reserve, address wallet) public returns(bool);}// File: contracts/ERC20Interface.sol// https://github.com/ethereum/EIPs/issues/20interface ERC20 {function totalSupply() public view returns (uint supply);function balanceOf(address _owner) public view returns (uint balance);function transfer(address _to, uint _value) public returns (bool success);function transferFrom(address _from, address _to, uint _value) public returns (bool success);
File 2 of 2: KyberNetworkCrystal
12345678910111213141516pragma solidity ^0.4.13;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;}