mirror of
https://github.com/chainstacklabs/pumpfun-bonkfun-bot.git
synced 2026-07-27 15:27:44 +00:00
9b4841890c
Refreshes the read-only learning examples (Phase A3) against the post
Feb–Apr 2026 IDL changes:
- CreateEvent now has 15 fields (timestamp, 4×u64 reserves, token_program,
is_mayhem_mode, is_cashback_enabled). Listener parsers were truncating
after `creator`; the v2 ones were also reading is_mayhem_mode at the
wrong offset.
- BondingCurve account is now 83 bytes (added is_cashback_coin).
- PumpSwap Pool account is now 245 bytes (added is_cashback_coin) — the
listen_programsubscribe dataSize filter was matching nothing.
- IDL instruction `createV2` was renamed to `create_v2`; the legacy
`create` instruction added a `creator: pubkey` arg in March 2026.
- decode_from_blockSubscribe.py decoder now handles bool, i64, u32, u16,
u8, and the OptionBool defined type (1-byte wire format).
Files touched (all under learning-examples/):
bonding-curve-progress/get_bonding_curve_status.py — V4 struct (cashback)
bonding-curve-progress/poll_bonding_curve_progress.py
decode_from_blockSubscribe.py
decode_from_getAccountInfo.py
decode_from_getTransaction.py
listen-migrations/compare_migration_listeners.py
listen-migrations/listen_programsubscribe.py
listen-new-tokens/compare_listeners.py
listen-new-tokens/listen_blocksubscribe.py
listen-new-tokens/listen_geyser.py
listen-new-tokens/listen_logsubscribe.py
listen-new-tokens/listen_logsubscribe_abc.py
Verified live against mainnet — listeners decode tokens including
mayhem-mode and cashback-enabled curves correctly.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
181 lines
6.3 KiB
Python
181 lines
6.3 KiB
Python
import base64
|
|
import hashlib
|
|
import json
|
|
import struct
|
|
import sys
|
|
|
|
from solders.transaction import Transaction, VersionedTransaction
|
|
|
|
|
|
def load_idl(file_path):
|
|
with open(file_path) as f:
|
|
return json.load(f)
|
|
|
|
|
|
def load_transaction(file_path):
|
|
with open(file_path) as f:
|
|
data = json.load(f)
|
|
return data
|
|
|
|
|
|
def decode_instruction(ix_data, ix_def):
|
|
"""Decode an instruction's args based on its IDL definition.
|
|
|
|
Supports the primitive scalar types and the `OptionBool` defined type
|
|
(added in the late-Feb 2026 cashback upgrade — `OptionBool` is a struct
|
|
wrapping a single bool, so it serializes as 1 byte on the wire).
|
|
"""
|
|
args = {}
|
|
offset = 8 # Skip 8-byte discriminator
|
|
|
|
for arg in ix_def["args"]:
|
|
t = arg["type"]
|
|
if t == "u64":
|
|
value = struct.unpack_from("<Q", ix_data, offset)[0]
|
|
offset += 8
|
|
elif t == "i64":
|
|
value = struct.unpack_from("<q", ix_data, offset)[0]
|
|
offset += 8
|
|
elif t == "u32":
|
|
value = struct.unpack_from("<I", ix_data, offset)[0]
|
|
offset += 4
|
|
elif t == "u16":
|
|
value = struct.unpack_from("<H", ix_data, offset)[0]
|
|
offset += 2
|
|
elif t == "u8":
|
|
value = ix_data[offset]
|
|
offset += 1
|
|
elif t == "bool":
|
|
value = bool(ix_data[offset])
|
|
offset += 1
|
|
elif t == "pubkey":
|
|
value = ix_data[offset : offset + 32].hex()
|
|
offset += 32
|
|
elif t == "string":
|
|
length = struct.unpack_from("<I", ix_data, offset)[0]
|
|
offset += 4
|
|
value = ix_data[offset : offset + length].decode("utf-8")
|
|
offset += length
|
|
elif isinstance(t, dict) and "defined" in t:
|
|
defined_name = t["defined"]["name"] if isinstance(t["defined"], dict) else t["defined"]
|
|
if defined_name == "OptionBool":
|
|
value = bool(ix_data[offset])
|
|
offset += 1
|
|
else:
|
|
raise ValueError(f"Unsupported defined type: {defined_name}")
|
|
else:
|
|
raise ValueError(f"Unsupported type: {t}")
|
|
|
|
args[arg["name"]] = value
|
|
|
|
return args
|
|
|
|
|
|
def calculate_discriminator(instruction_name):
|
|
sha = hashlib.sha256()
|
|
sha.update(instruction_name.encode("utf-8"))
|
|
discriminator_bytes = sha.digest()[:8]
|
|
discriminator = struct.unpack("<Q", discriminator_bytes)[0]
|
|
return discriminator
|
|
|
|
|
|
def decode_transaction(tx_data, idl):
|
|
decoded_instructions = []
|
|
|
|
# Decode the base64 transaction data
|
|
tx_data_decoded = base64.b64decode(tx_data["transaction"][0])
|
|
|
|
# Check if it's a versioned transaction
|
|
if tx_data.get("version") == 0:
|
|
# Use solders library for versioned transactions
|
|
transaction = VersionedTransaction.from_bytes(tx_data_decoded)
|
|
instructions = transaction.message.instructions
|
|
account_keys = transaction.message.account_keys
|
|
print("Versioned transaction detected")
|
|
else:
|
|
# Use legacy deserialization for older transactions
|
|
transaction = Transaction.from_bytes(tx_data_decoded)
|
|
instructions = transaction.message.instructions
|
|
account_keys = transaction.message.account_keys
|
|
print("Legacy transaction detected")
|
|
|
|
print(f"Number of instructions: {len(instructions)}")
|
|
|
|
for idx, ix in enumerate(instructions):
|
|
program_id = str(account_keys[ix.program_id_index])
|
|
print(f"\nInstruction {idx}:")
|
|
print(f"Program ID: {program_id}")
|
|
|
|
if (
|
|
program_id == "6EF8rrecthR5Dkzon8Nwu78hRvfCKubJ14M5uBEwF6P"
|
|
): # Pump Fun Program
|
|
ix_data = bytes(ix.data)
|
|
discriminator = struct.unpack("<Q", ix_data[:8])[0]
|
|
|
|
print(f"Discriminator: {discriminator:016x}")
|
|
|
|
for idl_ix in idl["instructions"]:
|
|
idl_discriminator = calculate_discriminator(f"global:{idl_ix['name']}")
|
|
print(
|
|
f"Checking against IDL instruction: {idl_ix['name']} with discriminator {idl_discriminator:016x}"
|
|
)
|
|
|
|
if discriminator == idl_discriminator:
|
|
decoded_args = decode_instruction(ix_data, idl_ix)
|
|
accounts = [str(account_keys[acc_idx]) for acc_idx in ix.accounts]
|
|
decoded_instructions.append(
|
|
{
|
|
"name": idl_ix["name"],
|
|
"args": decoded_args,
|
|
"accounts": accounts,
|
|
"program": program_id,
|
|
}
|
|
)
|
|
break
|
|
else:
|
|
decoded_instructions.append(
|
|
{
|
|
"name": "Unknown",
|
|
"data": ix_data.hex(),
|
|
"accounts": [
|
|
str(account_keys[acc_idx]) for acc_idx in ix.accounts
|
|
],
|
|
"program": program_id,
|
|
}
|
|
)
|
|
else:
|
|
instruction_name = "External"
|
|
if program_id == "ComputeBudget111111111111111111111111111111":
|
|
if ix.data[:1] == b"\x03":
|
|
instruction_name = "ComputeBudget: Set compute unit limit"
|
|
elif ix.data[:1] == b"\x02":
|
|
instruction_name = "ComputeBudget: Set compute unit price"
|
|
elif program_id == "ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL":
|
|
instruction_name = "Associated Token Account: Create"
|
|
|
|
decoded_instructions.append(
|
|
{
|
|
"name": instruction_name,
|
|
"programId": program_id,
|
|
"data": bytes(ix.data).hex(),
|
|
"accounts": [str(account_keys[acc_idx]) for acc_idx in ix.accounts],
|
|
}
|
|
)
|
|
|
|
return decoded_instructions
|
|
|
|
|
|
tx_file_path = ""
|
|
|
|
if len(sys.argv) != 2:
|
|
tx_file_path = "learning-examples/blockSubscribe-transactions/raw_create_tx_from_blockSubscribe.json"
|
|
print(f"No path provided, using the path: {tx_file_path}")
|
|
else:
|
|
tx_file_path = sys.argv[1]
|
|
|
|
idl = load_idl("idl/pump_fun_idl.json")
|
|
tx_data = load_transaction(tx_file_path)
|
|
|
|
decoded_instructions = decode_transaction(tx_data, idl)
|
|
print(json.dumps(decoded_instructions, indent=2))
|