docs(cursor): add uv rules, formatting

This commit is contained in:
smypmsa
2025-07-18 12:03:00 +00:00
parent a5a92fbf4b
commit 536a5dd6a5
28 changed files with 2746 additions and 784 deletions
+4 -1
View File
@@ -14,6 +14,7 @@ logger = get_logger(__name__)
class AccountCleanupManager:
"""Handles safe cleanup of token accounts (ATA) after trading sessions."""
def __init__(
self,
client: SolanaClient,
@@ -60,7 +61,9 @@ class AccountCleanupManager:
instructions = []
if balance > 0 and self.close_with_force_burn:
logger.info(f"Burning {balance} tokens from ATA {ata} (mint: {mint})...")
logger.info(
f"Burning {balance} tokens from ATA {ata} (mint: {mint})..."
)
burn_ix = burn(
BurnParams(
account=ata,