diff --git a/README.md b/README.md index 7c3a03d..7a8137a 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,14 @@ Kamino Lending is an open source software, for a lending protocol smart contract for the Solana blockchain. +## Deployments + +Klend is deployed using the following Program Ids: + +* Mainnet: `KLend2g3cP87fffoy8q1mQqGKjrxjC8boSyAYavgmjD` +* Staging (Mainnet): `SLendK7ySfcEzyaFqy93gDnD3RtrpXJcnRwb6zFHJSh` +* Devnet: `KLend2g3cP87fffoy8q1mQqGKjrxjC8boSyAYavgmjD` + ## License This software and codebase is licensed under the Apache License, Version 2.0 (the "License"); diff --git a/programs/klend/src/utils/consts.rs b/programs/klend/src/utils/consts.rs index 58a8765..a66e848 100644 --- a/programs/klend/src/utils/consts.rs +++ b/programs/klend/src/utils/consts.rs @@ -123,10 +123,11 @@ pub const BESTLEND_ID_MAINNET: Pubkey = pubkey!("bestdGyQeo7mgaSRNgEYdtjhsryNbP8 pub const DIVVY_ID_MAINNET: Pubkey = pubkey!("dvyFwAPniptQNb1ey4eM12L8iLHrzdiDsPPDndd6xAR"); -pub const EXPONENT_INTEGRATION_ID_MAINNET: Pubkey = pubkey!("XPK1ndTK1xrgRg99ifvdPP1exrx8D1mRXTuxBkkroCx"); - -pub const EXPONENT_CORE_ID_MAINNET: Pubkey = pubkey!("ExponentnaRg3CQbW6dqQNZKXp7gtZ9DGMp1cwC4HAS7"); +pub const EXPONENT_INTEGRATION_ID_MAINNET: Pubkey = + pubkey!("XPK1ndTK1xrgRg99ifvdPP1exrx8D1mRXTuxBkkroCx"); +pub const EXPONENT_CORE_ID_MAINNET: Pubkey = + pubkey!("ExponentnaRg3CQbW6dqQNZKXp7gtZ9DGMp1cwC4HAS7"); pub const CPI_WHITELISTED_ACCOUNTS: [CpiWhitelistedAccount; 14] = [ CpiWhitelistedAccount::new(FLEX_LEND_ID_MAINNET_PROD, 1), @@ -142,7 +143,7 @@ pub const CPI_WHITELISTED_ACCOUNTS: [CpiWhitelistedAccount; 14] = [ CpiWhitelistedAccount::new(KAMINO_VAULT_MAINNET, 1), CpiWhitelistedAccount::new(DIVVY_ID_MAINNET, 1), CpiWhitelistedAccount::new(EXPONENT_INTEGRATION_ID_MAINNET, 2), - CpiWhitelistedAccount::new(EXPONENT_CORE_ID_MAINNET, 3) + CpiWhitelistedAccount::new(EXPONENT_CORE_ID_MAINNET, 3), ]; pub struct CpiWhitelistedAccount {