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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
//! Program IDs and seed constants for the `pump` and `pump_amm` programs.
//!
//! Standard SPL / Metaplex / wSOL pubkeys are re-bound from the upstream
//! crates via `anchor_spl` so we never duplicate the byte literals. The
//! pump-specific values that no upstream crate exports (the `pump_fees` and
//! `mayhem` program IDs, the reward-token mint, the lookup tables, and the
//! seed strings) are sourced directly from the IDLs in `idls/pump.json` and
//! `idls/pump_amm.json`.
use ;
pub const SPL_TOKEN_PROGRAM_ID: Pubkey = ID;
pub const SPL_TOKEN_2022_PROGRAM_ID: Pubkey = ID;
pub const SPL_ATA_PROGRAM_ID: Pubkey = ID;
pub const MPL_TOKEN_METADATA_PROGRAM_ID: Pubkey = ID;
/// Wrapped-SOL mint, used as the default quote mint.
pub const NATIVE_MINT: Pubkey = ID;
/// Pump's reward-token mint.
pub const PUMP_TOKEN_MINT: Pubkey = pubkey!;
pub const FEE_PROGRAM_ID: Pubkey = pubkey!;
pub const MAYHEM_PROGRAM_ID: Pubkey = pubkey!;
/// Address lookup table for pump trades.
pub const MAINNET_ALT: Pubkey = pubkey!;
pub const DEVNET_ALT: Pubkey = pubkey!;