UNPKG

@azuro-org/toolkit

Version:

This framework-agnostic package provides essential utilities for building applications on the Azuro Protocol.

15 lines (14 loc) 410 B
import { type ChainId } from '../config'; export type BetFeeResponse = { gasLimit: number; gasPrice: number; betTokenRate: number; gasPriceInBetToken: number; slippage: number; gasAmount: number; relayerFeeAmount: string; beautyRelayerFeeAmount: string; symbol: string; decimals: number; }; export declare const getBetFee: (chainId: ChainId) => Promise<BetFeeResponse>;