fix : able to send transaction with priority fee

This commit is contained in:
shivaji43
2025-01-10 15:21:28 +05:30
parent 53ee654202
commit be3f158aaa
4 changed files with 193 additions and 271 deletions

View File

@@ -255,3 +255,13 @@ export interface HeliusWebhookIdResponse {
accountAddresses: string[];
webhookType: string;
}
export interface PriorityFeeResponse {
jsonrpc: string;
id: string;
method: string;
params: Array<{
transaction: string;
options: { priorityLevel: string };
}>;
}