mirror of
https://github.com/GMGNAI/gmgn-skills.git
synced 2026-08-22 20:48:05 +00:00
81 lines
3.2 KiB
TypeScript
81 lines
3.2 KiB
TypeScript
import { Command } from "commander";
|
|||
|
|
import { OpenApiClient } from "../client/OpenApiClient.js";
|
||
|
|
import { getConfig } from "../config.js";
|
||
|
|
import { exitOnError, printResult } from "../output.js";
|
||
|
|
import { validateAddress, validateChain } from "../validate.js";
|
||
|
|
|
||
|
|
export function registerTokenCommands(program: Command): void {
|
||
|
|
const token = program.command("token").description("Token information commands");
|
||
|
|
|
||
|
|
token
|
||
|
|
.command("info")
|
||
|
|
.description("Get token basic information and realtime price")
|
||
|
|
.requiredOption("--chain <chain>", "Chain: sol / bsc / base")
|
||
|
|
.requiredOption("--address <address>", "Token contract address")
|
||
|
|
.option("--raw", "Output raw JSON")
|
||
|
|
.action(async (opts) => {
|
||
|
|
validateChain(opts.chain);
|
||
|
|
validateAddress(opts.address, opts.chain, "--address");
|
||
|
|
const client = new OpenApiClient(getConfig());
|
||
|
|
const data = await client.getTokenInfo(opts.chain, opts.address).catch(exitOnError);
|
||
|
|
printResult(data, opts.raw);
|
||
|
|
});
|
||
|
|
|
||
|
|
token
|
||
|
|
.command("security")
|
||
|
|
.description("Get token security metrics")
|
||
|
|
.requiredOption("--chain <chain>", "Chain: sol / bsc / base")
|
||
|
|
.requiredOption("--address <address>", "Token contract address")
|
||
|
|
.option("--raw", "Output raw JSON")
|
||
|
|
.action(async (opts) => {
|
||
|
|
validateChain(opts.chain);
|
||
|
|
validateAddress(opts.address, opts.chain, "--address");
|
||
|
|
const client = new OpenApiClient(getConfig());
|
||
|
|
const data = await client.getTokenSecurity(opts.chain, opts.address).catch(exitOnError);
|
||
|
|
printResult(data, opts.raw);
|
||
|
|
});
|
||
|
|
|
||
|
|
token
|
||
|
|
.command("pool")
|
||
|
|
.description("Get token liquidity pool information")
|
||
|
|
.requiredOption("--chain <chain>", "Chain: sol / bsc / base")
|
||
|
|
.requiredOption("--address <address>", "Token contract address")
|
||
|
|
.option("--raw", "Output raw JSON")
|
||
|
|
.action(async (opts) => {
|
||
|
|
validateChain(opts.chain);
|
||
|
|
validateAddress(opts.address, opts.chain, "--address");
|
||
|
|
const client = new OpenApiClient(getConfig());
|
||
|
|
const data = await client.getTokenPoolInfo(opts.chain, opts.address).catch(exitOnError);
|
||
|
|
printResult(data, opts.raw);
|
||
|
|
});
|
||
|
|
|
||
|
|
token
|
||
|
|
.command("holders")
|
||
|
|
.description("Get top token holders")
|
||
|
|
.requiredOption("--chain <chain>", "Chain: sol / bsc / base")
|
||
|
|
.requiredOption("--address <address>", "Token contract address")
|
||
|
|
.option("--raw", "Output raw JSON")
|
||
|
|
.action(async (opts) => {
|
||
|
|
validateChain(opts.chain);
|
||
|
|
validateAddress(opts.address, opts.chain, "--address");
|
||
|
|
const client = new OpenApiClient(getConfig());
|
||
|
|
const data = await client.getTokenTopHolders(opts.chain, opts.address).catch(exitOnError);
|
||
|
|
printResult(data, opts.raw);
|
||
|
|
});
|
||
|
|
|
||
|
|
token
|
||
|
|
.command("traders")
|
||
|
|
.description("Get top token traders")
|
||
|
|
.requiredOption("--chain <chain>", "Chain: sol / bsc / base")
|
||
|
|
.requiredOption("--address <address>", "Token contract address")
|
||
|
|
.option("--raw", "Output raw JSON")
|
||
|
|
.action(async (opts) => {
|
||
|
|
validateChain(opts.chain);
|
||
|
|
validateAddress(opts.address, opts.chain, "--address");
|
||
|
|
const client = new OpenApiClient(getConfig());
|
||
|
|
const data = await client.getTokenTopTraders(opts.chain, opts.address).catch(exitOnError);
|
||
|
|
printResult(data, opts.raw);
|
||
|
|
});
|
||
|
|
}
|
||
|
|
|