@qso-soft/shared
Version:
Shared library for QSO-soft
10 lines (9 loc) • 314 B
TypeScript
import { NumberRange } from '../../types';
export declare const getFeePerGas: (gwei: number) => bigint;
export declare const getFeePerGasOptions: (gweiRange?: NumberRange) => {
maxFeePerGas?: undefined;
maxPriorityFeePerGas?: undefined;
} | {
maxFeePerGas: bigint;
maxPriorityFeePerGas: bigint;
};