ETH Price: $3,726.63 (+1.79%)

Transaction Decoder

Block:
22621885 at Jun-03-2025 04:55:59 AM +UTC
Transaction Fee:
0.00002260868355648 ETH $0.08
Gas Used:
51,840 Gas / 0.436124297 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x0D8775F6...50d2887EF
(beaverbuild)
5.97595140550580832 Eth5.97595140623156832 Eth0.00000000072576
0xc2f00ed8...716BEFd78
9.881682556000784245 Eth
Nonce: 10851
9.881659947317227765 Eth
Nonce: 10852
0.00002260868355648

Execution Trace

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