feat(portfolio): add created-tokens command for developer wallet token history

Add GET /v1/user/created_tokens support: portfolio created-tokens CLI command,
OpenApiClient method, SKILL.md docs, cli-usage.md, and Readme examples.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
David Lau
2026-04-14 16:43:25 +08:00
co-authored by Claude Sonnet 4.6
parent 91473cc366
commit db55c77a26
6 changed files with 124 additions and 2 deletions
+4
View File
@@ -308,6 +308,10 @@ export class OpenApiClient {
return this.normalRequest("GET", "/v1/user/smartmoney", query);
}
async getCreatedTokens(chain: string, walletAddress: string, extra: Record<string, string | number> = {}): Promise<unknown> {
return this.normalRequest("GET", "/v1/user/created_tokens", { chain, wallet_address: walletAddress, ...extra });
}
async quoteOrder(
chain: string,
from_address: string,