keyring-agent-core 0.2.3 → 0.2.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +4 -4
- package/dist/index.js +44 -44
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3350,17 +3350,17 @@ declare class TrendingTokensTool extends BaseTool {
|
|
|
3350
3350
|
constructor(config?: TrendingTokensToolConfig);
|
|
3351
3351
|
protected run(args: Record<string, unknown>, userContext?: UserContext): Promise<{
|
|
3352
3352
|
error: string;
|
|
3353
|
-
_instructions?: undefined;
|
|
3354
|
-
chain?: undefined;
|
|
3355
|
-
count?: undefined;
|
|
3356
|
-
tokens?: undefined;
|
|
3357
3353
|
} | {
|
|
3354
|
+
actionButtons?: SuggestedAction[] | undefined;
|
|
3358
3355
|
_instructions: string;
|
|
3359
3356
|
chain: string;
|
|
3360
3357
|
count: number;
|
|
3361
3358
|
tokens: TrendingToken[];
|
|
3362
3359
|
error?: undefined;
|
|
3363
3360
|
}>;
|
|
3361
|
+
execute(args: Record<string, unknown>, userContext?: UserContext): Promise<ToolResult>;
|
|
3362
|
+
/** Substitute the {token} placeholder in an LLM-supplied localized template. */
|
|
3363
|
+
private fillTemplate;
|
|
3364
3364
|
}
|
|
3365
3365
|
|
|
3366
3366
|
type TopGainersToolConfig = MoralisServiceConfig;
|