From 3a648aad2b5ff3dd10b9a0832638be2f809e0a26 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kre=C5=A1imir=20Klas?= Date: Sun, 19 Jun 2022 14:47:43 +0200 Subject: [PATCH] [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 --- explorer/src/utils/tx.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/explorer/src/utils/tx.ts b/explorer/src/utils/tx.ts index a0905c5cc..63a5a909f 100644 --- a/explorer/src/utils/tx.ts +++ b/explorer/src/utils/tx.ts @@ -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];