UNPKG

@azuro-org/toolkit

Version:

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

12 lines (11 loc) 363 B
import { type ChainId } from '../../config'; import { type CreateCashoutResponse } from './createCashout'; export type GetCashoutResponse = { txHash: string; } & CreateCashoutResponse; type Props = { chainId: ChainId; orderId: string; }; export declare const getCashout: ({ chainId, orderId }: Props) => Promise<GetCashoutResponse | null>; export {};