Merge branch 'main' into deposit_and_withdraw_with_lulo

This commit is contained in:
aryan
2025-01-18 01:19:10 +05:30
committed by GitHub
155 changed files with 17138 additions and 627 deletions

View File

@@ -8,6 +8,7 @@ export interface Config {
JUPITER_FEE_BPS?: number;
FLASH_PRIVILEGE?: string;
FLEXLEND_API_KEY?: string;
HELIUS_API_KEY?: string;
}
export interface Creator {
@@ -238,3 +239,25 @@ export interface FlashCloseTradeParams {
token: string;
side: "long" | "short";
}
export interface HeliusWebhookResponse {
webhookURL: string;
webhookID: string;
}
export interface HeliusWebhookIdResponse {
wallet: string;
webhookURL: string;
transactionTypes: string[];
accountAddresses: string[];
webhookType: string;
}
export interface PriorityFeeResponse {
jsonrpc: string;
id: string;
method: string;
params: Array<{
transaction: string;
options: { priorityLevel: string };
}>;
}