From 436048ca2b2d22965d73a28234b9c0cb322231f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bla=C5=BE=20Hrastnik?= Date: Fri, 1 Apr 2022 16:54:54 +0900 Subject: [PATCH] explorer: Add Chainlink programs to known addresses (#24037) --- explorer/src/utils/tx.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/explorer/src/utils/tx.ts b/explorer/src/utils/tx.ts index 7dd361048f..5a543f8d17 100644 --- a/explorer/src/utils/tx.ts +++ b/explorer/src/utils/tx.ts @@ -50,6 +50,8 @@ export enum PROGRAM_NAMES { ACUMEN = "Acumen Program", BONFIDA_POOL = "Bonfida Pool Program", BREAK_SOLANA = "Break Solana Program", + CHAINLINK_ORACLE = "Chainlink OCR2 Oracle Program", + CHAINLINK_STORE = "Chainlink Store Program", MANGO_GOVERNANCE = "Mango Governance Program", MANGO_ICO = "Mango ICO Program", MANGO_1 = "Mango Program v1", @@ -197,6 +199,14 @@ export const PROGRAM_INFO_BY_ID: { [address: string]: ProgramInfo } = { name: PROGRAM_NAMES.BREAK_SOLANA, deployments: LIVE_CLUSTERS, }, + cjg3oHmg9uuPsP8D6g29NWvhySJkdYdAo9D25PRbKXJ: { + name: PROGRAM_NAMES.CHAINLINK_ORACLE, + deployments: [Cluster.Devnet, Cluster.MainnetBeta], + }, + HEvSKofvBgfaexv23kMabbYqxasxU3mQ4ibBMEmJWHny: { + name: PROGRAM_NAMES.CHAINLINK_STORE, + deployments: [Cluster.Devnet, Cluster.MainnetBeta], + }, GqTPL6qRf5aUuqscLh8Rg2HTxPUXfhhAXDptTLhp1t2J: { name: PROGRAM_NAMES.MANGO_GOVERNANCE, deployments: [Cluster.MainnetBeta],