ETH Price: $4,757.80 (+1.34%)

Transaction Decoder

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:

Account State Difference:

  Address   Before After State Difference Code
0x0D8775F6...50d2887EF
(Titan Builder)
7.720379358373275395 Eth7.720384084701735275 Eth0.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)]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
pragma 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));
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX