[explorer] Add STEPN dex program id for name resolution (#26060)

* Add STEPN dex program id for name resolution

Their docs say it's their program https://whitepaper.stepn.com/decentralized-exchange

* fix lint
This commit is contained in:
Krešimir Klas 2022-06-19 14:47:43 +02:00 committed by GitHub
parent 04c61afd3a
commit 3a648aad2b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -95,6 +95,7 @@ export enum PROGRAM_NAMES {
WORMHOLE = "Wormhole",
SOLANART = "Solanart",
SOLANART_GO = "Solanart - Global offers",
STEPN_DEX = "STEPN Dex",
}
const ALL_CLUSTERS = [
@ -383,6 +384,10 @@ export const PROGRAM_INFO_BY_ID: { [address: string]: ProgramInfo } = {
name: PROGRAM_NAMES.SOLANART_GO,
deployments: [Cluster.MainnetBeta],
},
Dooar9JkhdZ7J3LHN3A7YCuoGRUggXhQaG4kijfLGU2j: {
name: PROGRAM_NAMES.STEPN_DEX,
deployments: [Cluster.MainnetBeta],
},
};
export type LoaderName = typeof LOADER_IDS[keyof typeof LOADER_IDS];