ETH Price: $2,514.37 (-9.45%)

Transaction Decoder

Block:
19592494 at Apr-05-2024 10:24:23 PM +UTC
Transaction Fee:
0.000651861148013812 ETH $1.64
Gas Used:
46,292 Gas / 14.081507561 Gwei

Emitted Events:

349 Andy.Approval( owner=[Sender] 0x7d1e77766ee72262b4536cb80f0d271b09b6e6b0, spender=0x00000000...43aC78BA3, value=16193082451782334465101187 )

Account State Difference:

  Address   Before After State Difference Code
3.098729329546947414 Eth3.098729778579347414 Eth0.0000004490324
0x68BbEd6A...5597fc91E
0x7d1E7776...B09b6e6b0
0.003750758205559443 Eth
Nonce: 4
0.003098897057545631 Eth
Nonce: 5
0.000651861148013812

Execution Trace

Andy.approve( spender=0x000000000022D473030F116dDEE9F6B43aC78BA3, amount=16193082451782334465101187 ) => ( 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
/*
* SPDX-License-Identifier: MIT
* https://boysclubandy.com
* https://x.com/andycoinonerc
* https://t.me/TheOnlyAndyLeft
*/
pragma solidity 0.8.19;
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(
uint256 a,
uint256 b
) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX