UNPKG

@azuro-org/sdk

Version:

One-stop solution for building betting dApps on the Azuro Protocol.

12 lines (11 loc) 431 B
import { type UseBalanceParameters, type UseBalanceReturnType } from 'wagmi'; import { type ChainId } from '@azuro-org/toolkit'; export type UseNativeBalanceProps = { chainId?: ChainId; query?: UseBalanceParameters['query']; }; export type UseNativeBalance = (props?: UseNativeBalanceProps) => UseBalanceReturnType<{ rawBalance: BigInt; balance: string; }>; export declare const useNativeBalance: UseNativeBalance;