From e5e959f6d09f8584acf82d5d28986593c536980d Mon Sep 17 00:00:00 2001 From: Noah Gundotra Date: Wed, 1 Feb 2023 00:31:17 -0500 Subject: [PATCH] [explorer] Add Account Compression Program to searchable programs on explorer (#30033) --- 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 276c26ee0c..2e050af4c3 100644 --- a/explorer/src/utils/tx.ts +++ b/explorer/src/utils/tx.ts @@ -37,6 +37,7 @@ export enum PROGRAM_NAMES { // spl ASSOCIATED_TOKEN = "Associated Token Program", + ACCOUNT_COMPRESSION = "Account Compression Program", FEATURE_PROPOSAL = "Feature Proposal Program", LENDING = "Lending Program", MEMO = "Memo Program", @@ -159,6 +160,10 @@ export const PROGRAM_INFO_BY_ID: { [address: string]: ProgramInfo } = { name: PROGRAM_NAMES.ASSOCIATED_TOKEN, deployments: ALL_CLUSTERS, }, + cmtDvXumGCrqC1Age74AVPhSRVXJMd8PJS91L8KbNCK: { + name: PROGRAM_NAMES.ACCOUNT_COMPRESSION, + deployments: [Cluster.Devnet, Cluster.MainnetBeta], + }, Feat1YXHhH6t1juaWF74WLcfv4XoNocjXA6sPWHNgAse: { name: PROGRAM_NAMES.FEATURE_PROPOSAL, deployments: ALL_CLUSTERS,