mirror of
https://github.com/d0zingcat/solana-agent-kit.git
synced 2026-05-17 23:26:46 +00:00
101 lines
1.9 KiB
TypeScript
101 lines
1.9 KiB
TypeScript
import { PublicKey } from "@solana/web3.js";
|
|
|
|
export interface Config {
|
|
OPENAI_API_KEY?: string;
|
|
JUPITER_REFERRAL_ACCOUNT?: string;
|
|
JUPITER_FEE_BPS?: number;
|
|
}
|
|
|
|
export interface Creator {
|
|
address: string;
|
|
percentage: number;
|
|
}
|
|
|
|
export interface CollectionOptions {
|
|
name: string;
|
|
uri: string;
|
|
royaltyBasisPoints?: number;
|
|
creators?: Creator[];
|
|
}
|
|
|
|
// Add return type interface
|
|
export interface CollectionDeployment {
|
|
collectionAddress: PublicKey;
|
|
signature: Uint8Array;
|
|
}
|
|
|
|
export interface MintCollectionNFTResponse {
|
|
mint: PublicKey;
|
|
metadata: PublicKey;
|
|
}
|
|
|
|
export interface PumpFunTokenOptions {
|
|
twitter?: string;
|
|
telegram?: string;
|
|
website?: string;
|
|
initialLiquiditySOL?: number;
|
|
slippageBps?: number;
|
|
priorityFee?: number;
|
|
}
|
|
|
|
export interface PumpfunLaunchResponse {
|
|
signature: string;
|
|
mint: string;
|
|
metadataUri?: string;
|
|
error?: string;
|
|
}
|
|
|
|
/**
|
|
* Lulo Account Details response format
|
|
*/
|
|
export interface LuloAccountDetailsResponse {
|
|
totalValue: number;
|
|
interestEarned: number;
|
|
realtimeApy: number;
|
|
settings: {
|
|
owner: string;
|
|
allowedProtocols: string | null;
|
|
homebase: string | null;
|
|
minimumRate: string;
|
|
};
|
|
}
|
|
|
|
export interface JupiterTokenData {
|
|
address: string;
|
|
name: string;
|
|
symbol: string;
|
|
decimals: number;
|
|
tags: string[];
|
|
logoURI: string;
|
|
daily_volume: number;
|
|
freeze_authority: string | null;
|
|
mint_authority: string | null;
|
|
permanent_delegate: string | null;
|
|
extensions: {
|
|
coingeckoId?: string;
|
|
};
|
|
}
|
|
|
|
export interface FetchPriceResponse {
|
|
status: "success" | "error";
|
|
tokenId?: string;
|
|
priceInUSDC?: string;
|
|
message?: string;
|
|
code?: string;
|
|
}
|
|
|
|
export interface PythFetchPriceResponse {
|
|
status: "success" | "error";
|
|
priceFeedID: string;
|
|
price?: string;
|
|
message?: string;
|
|
code?: string;
|
|
}
|
|
|
|
export interface GibworkCreateTaskReponse {
|
|
status: "success" | "error";
|
|
taskId?: string | undefined;
|
|
signature?: string | undefined;
|
|
}
|
|
|