chore: husky docs

This commit is contained in:
Arihant Bansal
2025-01-05 15:45:44 +05:30
parent a8ea9b4821
commit 9cb3477831
29 changed files with 60 additions and 58 deletions

View File

@@ -37,7 +37,9 @@ const pythFetchPriceAction: Action = {
}),
handler: async (_agent: SolanaAgentKit, input: Record<string, any>) => {
try {
const priceFeedId = await fetchPythPriceFeedID(input.tokenSymbol);
const priceFeedId = await fetchPythPriceFeedID(
input.tokenSymbol as string,
);
const priceStr = await fetchPythPrice(priceFeedId);