UNPKG

btc-wallet

Version:

BTC Wallet is a toolkit that enables Bitcoin usage on the NEAR blockchain through the Satoshi protocol.

10 lines (9 loc) 265 B
interface Props { onClose: () => void; fromChain?: any; toChain?: any; status: number; hash: string; } export default function ComfirmBox({ onClose, status, fromChain, toChain, hash }: Props): import("react/jsx-runtime").JSX.Element; export {};