-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdevnet_consts.ts
40 lines (31 loc) · 1.25 KB
/
devnet_consts.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
import { PublicKey } from "@solana/web3.js";
import { homedir } from "os";
import { loadKeypair } from "../../tests/utils/keys";
export const DEPLOYER_AUTHORITY_PATH = "/.config/solana/deployer.json";
export const DEPLOYER_AUTHORITY_KEYPAIR = loadKeypair(
homedir() + DEPLOYER_AUTHORITY_PATH,
);
export const GOVERNANCE_AUTHORITY_PATH = "/.config/solana/governanceAuthority.json";
export const GOVERNANCE_AUTHORITY_KEYPAIR = loadKeypair(
homedir() + GOVERNANCE_AUTHORITY_PATH,
);
export const VESTING_ADMIN_PATH = "/.config/solana/vestingAdmin.json";
export const VESTING_ADMIN_KEYPAIR = loadKeypair(
homedir() + VESTING_ADMIN_PATH,
);
export const USER_AUTHORITY_PATH = "/.config/solana/user.json";
export const USER_AUTHORITY_KEYPAIR = loadKeypair(
homedir() + USER_AUTHORITY_PATH,
);
export const USER2_AUTHORITY_PATH = "/.config/solana/user2.json";
export const USER2_AUTHORITY_KEYPAIR = loadKeypair(
homedir() + USER2_AUTHORITY_PATH,
);
export const WORMHOLE_TOKEN = new PublicKey(
"Exne2kdeGToBnC2WVSdt1gLy6fjnNftbPtsCPx8AuL7V",
);
export const RPC_NODE = "https://api.devnet.solana.com";
export const AIRLOCK_PDA_ADDRESS = new PublicKey(
"2ejzW2eFPedskg1KcrjcFs9g1JorRVcMes1TBPpGbhdy",
);
export const VOTE_WEIGHT_WINDOW_LENGTHS = 10 * 60; // 10 minutes