Transaction Hash:
Block:
20272444 at Jul-10-2024 12:14:35 AM +UTC
Transaction Fee:
0.00009837249725694 ETH
$0.47
Gas Used:
29,940 Gas / 3.285654551 Gwei
Emitted Events:
22 |
BAToken.Transfer( _from=[Sender] 0xf2e234355d6de0a054cd0cd9a405d719374a4384, _to=0xf3B0073E3a7F747C7A38B36B805247B222C302A3, _value=714910000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x0D8775F6...50d2887EF | |||||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 7.720379358373275395 Eth | 7.720384084701735275 Eth | 0.00000472632845988 | |
0xF2e23435...9374A4384 |
0.004329843258595883 Eth
Nonce: 12
|
0.004231470761338943 Eth
Nonce: 13
| 0.00009837249725694 |
Execution Trace
BAToken.transfer( _to=0xf3B0073E3a7F747C7A38B36B805247B222C302A3, _value=714910000000000000000 ) => ( success=True )
transfer[Token (ln:35)]
1234567891011121314151617181920212223242526pragma solidity ^0.4.10;/* taking ideas from FirstBlood token */contract SafeMath {/* function assert(bool assertion) internal { *//* if (!assertion) { *//* throw; *//* } *//* } // assert no longer needed once solidity is on 0.4.10 */function safeAdd(uint256 x, uint256 y) internal returns(uint256) {uint256 z = x + y;assert((z >= x) && (z >= y));return z;}function safeSubtract(uint256 x, uint256 y) internal returns(uint256) {assert(x >= y);uint256 z = x - y;return z;}function safeMult(uint256 x, uint256 y) internal returns(uint256) {uint256 z = x * y;assert((x == 0)||(z/x == y));