ETH Price: $2,955.12 (-0.20%)
Gas: 0.3 Gwei

Transaction Decoder

Block:
22612878 at Jun-01-2025 10:38:11 PM +UTC
Transaction Fee:
0.00004305097532736 ETH $0.13
Gas Used:
51,840 Gas / 0.830458629 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x0D8775F6...50d2887EF
(quasarbuilder)
4.561474229986296507 Eth4.561481424591365307 Eth0.0000071946050688
0x53c3584F...aF0218cC2
0.513424418827982975 Eth
Nonce: 8804
0.513381367852655615 Eth
Nonce: 8805
0.00004305097532736

Execution Trace

BAToken.transfer( _to=0x0e03f2E848ec373c2f99Fd61d16d8BefD65Fbb10, _value=35000000000000000000 ) => ( 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