UNPKG

@dynamic-labs/sdk-react-core

Version:

A React SDK for implementing wallet web3 authentication and authorization to your website.

10 lines (9 loc) 290 B
import { FC } from 'react'; type SendBalanceModalProps = { initialRecipientAddress?: string; initialValue?: bigint; onReject: (error: unknown) => void; onSuccess: (transaction: string) => void; }; export declare const SendBalanceModal: FC<SendBalanceModalProps>; export {};