Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Finternet program on devnet #363

Merged
merged 2 commits into from
Aug 26, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions app/utils/programs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,9 @@ export enum PROGRAM_NAMES {
SOLANART_GO = 'Solanart - Global offers',
STEPN_DEX = 'STEPN Dex',
OPENBOOK_DEX = 'OpenBook Dex',
// Finternet
FINTERNET_USER_MANAGER = 'Finternet - User manager',
FINTERNET_TOKEN_MANAGER = 'Finternet - Token manager',
}

const ALL_CLUSTERS = [Cluster.Custom, Cluster.Devnet, Cluster.Testnet, Cluster.MainnetBeta];
Expand Down Expand Up @@ -420,6 +423,14 @@ export const PROGRAM_INFO_BY_ID: { [address: string]: ProgramInfo } = {
deployments: [Cluster.MainnetBeta],
name: PROGRAM_NAMES.WORMHOLE_TOKEN,
},
CmFuqQTLs2nQof5uaktJn1a6k2VdbGmZPfrJufB2Vm3F : {
deployments:[Cluster.Devnet],
name: PROGRAM_NAMES.FINTERNET_USER_MANAGER
},
A5JxZVHgXe7fn5TqJXm6Hj2zKh1ptDapae2YjtXbZJoy : {
deployments:[Cluster.Devnet],
name: PROGRAM_NAMES.FINTERNET_TOKEN_MANAGER
}
};

export const SPECIAL_IDS: { [key: string]: string } = {
Expand Down
Loading