mirror of
https://github.com/chainstacklabs/pumpfun-bonkfun-bot.git
synced 2026-07-28 15:57:43 +00:00
03a4e7bcbc
* feat: mayhem update in idl * feat(examples): update bonding curve scripts * feat(example): update listen_blocksubscribe * feat(examples): update geyser listener * feat(examples): update all new token listeners * feat(examples): add comments, fix printing, formatting * feat(examples): pumpswap buy and sell update with mayhem mode * fix(examples): sell pump amm fee recipient * feat(examples): update decode scripts * feat(examples): update fetch price * feat(examples): buy and sell bonding curve scripts * feat(examples): add mint with mayhem mode enabled * feat(examples): improve listening to wallet txs * feat(examples): migration listener improvements * feat(examples): global vol accumulator is not writable * feat(examples): support token/token2022 programs in buy instructions * feat(examples): token/token2022 for pumpswap buy * feat(examples): token/token2022 supprot for sell instructions * feat(bot): support create_v2 with token2022, mayhem mode, other fixes * fix(bot): support only token2022 in logs and pumportal listeners * feat(bot): token2022 support in cleanup flow * fix(bot): update token program handling and improve price validation in trading logic * feat(bot): enhance token program handling for LetsBonk integration
68 lines
2.1 KiB
Python
68 lines
2.1 KiB
Python
"""
|
|
System addresses and constants for Solana blockchain operations.
|
|
This module contains only system-level addresses that are shared across all platforms.
|
|
Platform-specific addresses are handled by their respective AddressProvider implementations.
|
|
"""
|
|
|
|
from typing import Final
|
|
|
|
from solders.pubkey import Pubkey
|
|
|
|
# Constants
|
|
LAMPORTS_PER_SOL: Final[int] = 1_000_000_000
|
|
TOKEN_DECIMALS: Final[int] = 6
|
|
|
|
# Token account constants
|
|
TOKEN_ACCOUNT_SIZE: Final[int] = 165 # Size of a token account in bytes
|
|
TOKEN_ACCOUNT_RENT_EXEMPT_RESERVE: Final[int] = (
|
|
2_039_280 # Rent-exempt minimum for token accounts
|
|
)
|
|
|
|
# Core system programs
|
|
SYSTEM_PROGRAM: Final[Pubkey] = Pubkey.from_string("11111111111111111111111111111111")
|
|
TOKEN_PROGRAM: Final[Pubkey] = Pubkey.from_string(
|
|
"TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA"
|
|
)
|
|
TOKEN_2022_PROGRAM: Final[Pubkey] = Pubkey.from_string(
|
|
"TokenzQdBNbLqP5VEhdkAS6EPFLC1PHnBqCXEpPxuEb"
|
|
)
|
|
ASSOCIATED_TOKEN_PROGRAM: Final[Pubkey] = Pubkey.from_string(
|
|
"ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL"
|
|
)
|
|
|
|
# System accounts
|
|
RENT: Final[Pubkey] = Pubkey.from_string("SysvarRent111111111111111111111111111111111")
|
|
|
|
# Native SOL token
|
|
SOL_MINT: Final[Pubkey] = Pubkey.from_string(
|
|
"So11111111111111111111111111111111111111112"
|
|
)
|
|
|
|
|
|
class SystemAddresses:
|
|
"""System-level Solana addresses shared across all platforms."""
|
|
|
|
# Reference the module-level constants
|
|
SYSTEM_PROGRAM = SYSTEM_PROGRAM
|
|
TOKEN_PROGRAM = TOKEN_PROGRAM
|
|
TOKEN_2022_PROGRAM = TOKEN_2022_PROGRAM
|
|
ASSOCIATED_TOKEN_PROGRAM = ASSOCIATED_TOKEN_PROGRAM
|
|
RENT = RENT
|
|
SOL_MINT = SOL_MINT
|
|
|
|
@classmethod
|
|
def get_all_system_addresses(cls) -> dict[str, Pubkey]:
|
|
"""Get all system addresses as a dictionary.
|
|
|
|
Returns:
|
|
Dictionary mapping address names to Pubkey objects
|
|
"""
|
|
return {
|
|
"system_program": cls.SYSTEM_PROGRAM,
|
|
"token_program": cls.TOKEN_PROGRAM,
|
|
"token_2022_program": cls.TOKEN_2022_PROGRAM,
|
|
"associated_token_program": cls.ASSOCIATED_TOKEN_PROGRAM,
|
|
"rent": cls.RENT,
|
|
"sol_mint": cls.SOL_MINT,
|
|
}
|