Update serum program labels (#20155)

This commit is contained in:
Justin Starry 2021-09-24 00:48:41 -04:00 committed by GitHub
parent 355d45ca46
commit f8827e2f08
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 3 deletions

View File

@ -71,9 +71,10 @@ export enum PROGRAM_NAMES {
RAYDIUM_STAKING = "Raydium Staking Program",
SABER_ROUTER = "Saber Router Program",
SABER_SWAP = "Saber Stable Swap Program",
SERUM_1 = "Serum Program v1",
SERUM_2 = "Serum Program v2",
SERUM_3 = "Serum Program v3",
SERUM_1 = "Serum Dex Program v1",
SERUM_2 = "Serum Dex Program v2",
SERUM_3 = "Serum Dex Program v3",
SERUM_SWAP = "Serum Swap Program",
SOLEND = "Solend Program",
SOLIDO = "Lido for Solana Program",
STEP_SWAP = "Step Finance Swap Program",
@ -148,6 +149,7 @@ export const PROGRAM_DEPLOYMENTS = {
[PROGRAM_NAMES.SERUM_1]: MAINNET_ONLY,
[PROGRAM_NAMES.SERUM_2]: MAINNET_ONLY,
[PROGRAM_NAMES.SERUM_3]: MAINNET_ONLY,
[PROGRAM_NAMES.SERUM_SWAP]: MAINNET_ONLY,
[PROGRAM_NAMES.SOLEND]: MAINNET_ONLY,
[PROGRAM_NAMES.SOLIDO]: MAINNET_ONLY,
[PROGRAM_NAMES.STEP_SWAP]: MAINNET_ONLY,
@ -206,6 +208,7 @@ export const PROGRAM_NAME_BY_ID = {
BJ3jrUzddfuSrZHXSCxMUUQsjKEyLmuuyZebkcaFp2fg: PROGRAM_NAMES.SERUM_1,
EUqojwWA2rd19FZrzeBncJsm38Jm1hEhE3zsmX3bRc2o: PROGRAM_NAMES.SERUM_2,
"9xQeWvG816bUx9EPjHmaT23yvVM2ZWbrrpZb9PusVFin": PROGRAM_NAMES.SERUM_3,
"22Y43yTVxuUkoRKdm9thyRhQ3SdgQS7c7kB6UNCiaczD": PROGRAM_NAMES.SERUM_SWAP,
So1endDq2YkqhipRh3WViPa8hdiSpxWy6z3Z6tMCpAo: PROGRAM_NAMES.SOLEND,
CrX7kMhLC3cSsXJdT7JDgqrRVWGnUpX3gfEfxxU2NVLi: PROGRAM_NAMES.SOLIDO,
SSwpMgqNDsyV7mAgN9ady4bDVu5ySjmmXejXvy2vLt1: PROGRAM_NAMES.STEP_SWAP,