-
Notifications
You must be signed in to change notification settings - Fork 14
/
config.ts
50 lines (30 loc) · 1.08 KB
/
config.ts
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
import {
Connection,
Keypair,
PublicKey,
} from "@solana/web3.js";
import bs58 from "bs58";
// PRIV KEY OF DEPLOYER
export const wallet = Keypair.fromSecretKey(
bs58.decode(
"",
),
);
// PRIV KEY OF FEEPAYER
export const payer = Keypair.fromSecretKey(
bs58.decode(
"",
),
);
// ENTER YOUR RPC
export const rpc =
"";
/* DONT TOUCH ANYTHING BELOW THIS */
export const connection = new Connection(rpc, "confirmed");
export const PUMP_PROGRAM = new PublicKey("6EF8rrecthR5Dkzon8Nwu78hRvfCKubJ14M5uBEwF6P");
export const RayLiqPoolv4 = new PublicKey('675kPX9MHTjS2zt1qfr1NYHuzeLXfQM9H24wFSUt1Mp8');
export const global = new PublicKey("4wTV1YmiEkRvAtNtsSGPtUrqRYQMe5SKy2uB4Jjaxnjf");
export const mintAuthority = new PublicKey("TSLvdd1pWpHVjahSpsvCXUbgwsL3JAcvokwaKt1eokM");
export const MPL_TOKEN_METADATA_PROGRAM_ID = new PublicKey("metaqbxxUerdq28cj1RbAWkYQm3ybzjb6a8bt518x1s");
export const eventAuthority = new PublicKey("Ce6TQqeHC9p8KetsN6JsjHK7UTZk7nasjjnr7XxXp9F1");
export const feeRecipient = new PublicKey("CebN5WGQ4jvEPvsVU4EoHEpgzq1VV7AbicfhtW4xC9iM");