ETH Price: $3,430.77 (+2.78%)

Transaction Decoder

Block:
20318081 at Jul-16-2024 09:09:23 AM +UTC
Transaction Fee:
0.000419475 ETH $1.44
Gas Used:
24,675 Gas / 17 Gwei

Account State Difference:

  Address   Before After State Difference Code
(Lido: Execution Layer Rewards Vault)
145.109868188210897993 Eth145.110041635650408968 Eth0.000173447439510975
0xC1B6f265...5b22c7833
0.004602128 Eth
Nonce: 9
0.004182653 Eth
Nonce: 10
0.000419475

Execution Trace

BAToken.transfer( _to=0x90361b88a7EDd1679986242F4cdC4B370cAB87B0, _value=200000000000000000010 ) => ( success=False )
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