File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed
Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -77,6 +77,9 @@ const Schema = {
7777 description :
7878 "The transaction fee taken out of the specified relayer UTXOs" ,
7979 } ) ,
80+ feeRate : Type . Number ( {
81+ description : "The transaction fee rate in satoshis per byte" ,
82+ } ) ,
8083 } ) ,
8184 ) ,
8285 "hyperliquid-vm" : Type . Optional (
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ const Schema = {
5454 } ,
5555 ) ,
5656 ) ,
57- feeRate : Type . String ( {
57+ feeRate : Type . Number ( {
5858 description : "The transaction fee rate in satoshis per byte" ,
5959 } ) ,
6060 } ) ,
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ type AdditionalDataBitcoinVm = {
6161 relayerUtxos ?: { txid : string ; vout : number ; value : string } [ ] ;
6262 transactionFee ?: string ;
6363 // Used by onchain allocator
64- feeRate ?: string ;
64+ feeRate ?: number ;
6565} ;
6666
6767type AdditionalDataHyperliquidVm = {
You can’t perform that action at this time.
0 commit comments