diff --git a/pages/api/tokentiers.ts b/pages/api/tokentiers.ts index f25eb78d..202a277a 100644 --- a/pages/api/tokentiers.ts +++ b/pages/api/tokentiers.ts @@ -68,7 +68,7 @@ export default async function handler( try { const client = await buildClient() const group = await client.getGroup( - new PublicKey('7SDejCUPsF3g59GgMsmvxw8dJkkJbT3exoH4RZirwnkM'), + new PublicKey('7s3eedfgJmqdsnxu5oqKiUwAU1BqWaX2iYmhCZyye6RY'), ) const banks = Array.from(group.banksMapByTokenIndex.values()) diff --git a/store/mangoStore.ts b/store/mangoStore.ts index bc787207..3020f0de 100644 --- a/store/mangoStore.ts +++ b/store/mangoStore.ts @@ -145,7 +145,7 @@ const initMangoClient = ( new PublicKey('E4v1BBgoso9s64TQvmyownAVJbhbEPGyzA3qn4n46qj9'), //mSol ], multipleConnections: opts.multipleConnections, - idsSource: 'api', + idsSource: 'get-program-accounts', prependedGlobalAdditionalInstructions: opts.prependedGlobalAdditionalInstructions, postSendTxCallback: (txCallbackOptions: TxCallbackOptions) => { diff --git a/test/utils.ts b/test/utils.ts index 3aa3b5ce..174724fd 100644 --- a/test/utils.ts +++ b/test/utils.ts @@ -27,5 +27,5 @@ export const getGroupForClient = async ( } export const MAINNET_MANGO_GROUP = new PublicKey( - '7SDejCUPsF3g59GgMsmvxw8dJkkJbT3exoH4RZirwnkM', + '7s3eedfgJmqdsnxu5oqKiUwAU1BqWaX2iYmhCZyye6RY', ) diff --git a/utils/constants.ts b/utils/constants.ts index 39b2839f..f8268e40 100644 --- a/utils/constants.ts +++ b/utils/constants.ts @@ -234,7 +234,7 @@ export enum TOKEN_REDUCE_ONLY_OPTIONS { export const PRIVATE_MODE_STRING = '****' export const MANGO_MAINNET_GROUP = new PublicKey( - '7SDejCUPsF3g59GgMsmvxw8dJkkJbT3exoH4RZirwnkM', + '7s3eedfgJmqdsnxu5oqKiUwAU1BqWaX2iYmhCZyye6RY', ) export const MAX_PERP_SLIPPAGE = 0.025