All files / src/api/feerate fetchers.ts

100% Statements 5/5
100% Branches 0/0
100% Functions 1/1
100% Lines 5/5

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18        10x               10x 1x 1x 1x    
import { FeeRate } from '@stacks/stacks-blockchain-api-types';
import { BaseListParams } from '../types';
import { FetchFeeRateParams } from './types';
 
import { fetchJsonPost, generateUrl, feeRateEndpoint } from '../utils';
 
/**
 * Fetch fee rate information.
 *
 * @see https://docs.micro-stacks.dev/modules/core/api/fee-rate#fetchfeerate
 */
 
export async function fetchFeeRate({ url, transaction }: BaseListParams & { transaction: string }) {
  const path = generateUrl(feeRateEndpoint(url), {});
  const body: FetchFeeRateParams = { transaction: transaction };
  return fetchJsonPost<FeeRate>(path, { body });
}