UNPKG

@azuro-org/sdk

Version:

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

14 lines (13 loc) 502 B
import { type Address } from 'viem'; import { type ChainId, type WaveId } from '@azuro-org/toolkit'; type Props = { account: Address; waveId?: WaveId; chainId?: ChainId; }; export declare const useWaveActivation: ({ account, waveId, chainId }: Props) => { activate: import("@tanstack/react-query").UseMutateFunction<void, Error, void, unknown>; activateAsync: import("@tanstack/react-query").UseMutateAsyncFunction<void, Error, void, unknown>; isPending: boolean; }; export {};