feat:added webhooks for live notifications

This commit is contained in:
shivaji43
2025-01-09 02:42:02 +05:30
parent e09c6b5d0b
commit 53ee654202
4 changed files with 299 additions and 20 deletions

View File

@@ -238,3 +238,20 @@ export interface FlashCloseTradeParams {
token: string;
side: "long" | "short";
}
export interface PriorityFeeTransaction {
transactionId: string;
fee: number;
}
export interface HeliusWebhookResponse {
webhookURL: string;
webhookID: string;
}
export interface HeliusWebhookIdResponse {
wallet: string;
webhookURL: string;
transactionTypes: string[];
accountAddresses: string[];
webhookType: string;
}