diff --git a/src/marketplace/services/GmClientService.ts b/src/marketplace/services/GmClientService.ts index db292f3..b96be89 100644 --- a/src/marketplace/services/GmClientService.ts +++ b/src/marketplace/services/GmClientService.ts @@ -56,10 +56,7 @@ export class GmClientService { for (const info of currencyInfo) { const { mint, royalty, saVault } = info; - const tokenSupplylInformation = await connection.getTokenSupply( - mint, - 'recent', - ); + const tokenSupplylInformation = await connection.getTokenSupply(mint); const { decimals } = tokenSupplylInformation.value; diff --git a/src/util/scoreHelpers.ts b/src/util/scoreHelpers.ts index 3121545..b548a4a 100644 --- a/src/util/scoreHelpers.ts +++ b/src/util/scoreHelpers.ts @@ -258,10 +258,7 @@ export async function confirmTokenBalance( expectedQuantity: number, confirmClosed?: boolean, ) { - const tokenData = await provider.connection.getAccountInfo( - tokenAccount, - 'recent', - ); + const tokenData = await provider.connection.getAccountInfo(tokenAccount); // Confirm account is closed if (confirmClosed === true) {