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];