Update get balance for token not handle by privy

This commit is contained in:
2025-08-17 01:32:00 +07:00
parent 0fb8178cea
commit 3464e072d6
2 changed files with 28 additions and 2 deletions

View File

@@ -66,4 +66,21 @@ public static class TokenService
Arbitrum.Address.USDC => Ticker.USDC,
_ => throw new NotImplementedException(),
};
public static List<Ticker> GetEligibleTickersForBalance()
{
return new List<Ticker>
{
Ticker.LINK,
Ticker.UNI,
Ticker.GMX,
Ticker.SOL,
Ticker.SUI,
Ticker.ARB,
Ticker.AAVE,
Ticker.XRP,
Ticker.PENDLE,
Ticker.BNB
};
}
}