feat: send transaction with proiority fee

This commit is contained in:
shivaji43
2025-01-08 01:31:05 +05:30
parent 2de1a7365d
commit 4a270c4a0d
6 changed files with 171 additions and 26 deletions

View File

@@ -238,25 +238,3 @@ 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 };
}>;
}