ETH Price: $3,527.63 (+3.09%)

Transaction Decoder

Block:
22622004 at Jun-03-2025 05:19:47 AM +UTC
Transaction Fee:
0.00002082591006843 ETH $0.07
Gas Used:
46,185 Gas / 0.450923678 Gwei

Emitted Events:

661 BAToken.Approval( _owner=[Sender] 0xeca829269a173e329d26e36171e7caaedca6b417, _spender=0x2C6Df0fD...c991f770f, _value=937000000000000000000 )

Account State Difference:

  Address   Before After State Difference Code
0x0D8775F6...50d2887EF
(beaverbuild)
6.050736387931854176 Eth6.050736388255149176 Eth0.000000000323295
0xEca82926...EDca6b417
0.01234222090306 Eth
Nonce: 2
0.01232139499299157 Eth
Nonce: 3
0.00002082591006843

Execution Trace

BAToken.approve( _spender=0x2C6Df0fDbCE9D2Ded2B52A117126F2Dc991f770f, _value=937000000000000000000 ) => ( success=True )
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