ETH Price: $3,812.14 (+5.41%)

Transaction Decoder

Block:
22615735 at Jun-02-2025 08:13:23 AM +UTC
Transaction Fee:
0.000176510877683355 ETH $0.67
Gas Used:
46,485 Gas / 3.797157743 Gwei

Emitted Events:

9 BAToken.Approval( _owner=[Sender] 0xd1e34f909aa7cf34a92c7c65c94f452974f7a73f, _spender=0x29728D0e...C2CfC2612, _value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )

Account State Difference:

  Address   Before After State Difference Code
0x0D8775F6...50d2887EF
(Lido: Execution Layer Rewards Vault)
51.560663695820023238 Eth51.560756665820023238 Eth0.00009297
0xD1E34f90...974f7a73F
0.00025690256702799 Eth
Nonce: 2
0.000080391689344635 Eth
Nonce: 3
0.000176510877683355

Execution Trace

BAToken.approve( _spender=0x29728D0efd284D85187362fAA2d4d76C2CfC2612, _value=115792089237316195423570985008687907853269984665640564039457584007913129639935 ) => ( 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