@azuro-org/toolkit
Version:
This framework-agnostic package provides essential utilities for building applications on the Azuro Protocol.
11 lines (10 loc) • 312 B
TypeScript
import { type Address } from 'viem';
import { type ChainId } from '../../config';
import { type WaveId } from '../../global';
type Props = {
account: Address;
waveId?: WaveId;
chainId?: ChainId;
};
export declare const activateWave: ({ account, waveId, chainId }: Props) => Promise<void>;
export {};