You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Search for popular fungible token contract information on the NEAR blockchain, with a grep-like search.
582
-
Use this tool to search for popular fungible token contract information. This tool works by 'grepping'
583
-
through a list of contract information JSON objects. Useful for getting contract information about popular
584
-
tokens like USDC native, USDT, WNEAR, and more.`,
583
+
Search for fungible token contract information on the NEAR blockchain, with a grep-like search.
584
+
Use this tool to search for fungible token contract information. This tool works by 'grepping'
585
+
through a list of contract information JSON objects. Be careful with this tool, it can return a lot of results.
586
+
If used too much, it could overwhelm the API and cause issues.`,
585
587
{
586
-
searchPattern: z
588
+
searchTerm: z
587
589
.string()
588
590
.describe(
589
-
'The grep search pattern to use for filtering popular fungible token contract information.',
591
+
'The search term to use for finding fungible token contract information.',
592
+
),
593
+
maxNumberOfResults: z
594
+
.number()
595
+
.default(3)
596
+
.describe(
597
+
'The maximum number of results to return. This is a limit to the number of results returned by the API. Keep this number low to avoid overwhelming the API.',
0 commit comments