UNPKG

@coinmeca/wallet-provider

Version:

This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-app`](https://nextjs.org/docs/app/api-reference/cli/create-next-app).

15 lines 614 B
import React from "react"; import { Chain } from "@coinmeca/wallet-sdk/types"; import { CoinmecaWalletAdapter, CoinmecaWalletAdapterConfig } from "@coinmeca/wallet-sdk/adapter"; interface CoinmecaWalletAdapterContextProps { adapter: CoinmecaWalletAdapter | undefined; address: string | undefined; chain: Chain | undefined; } export declare const useCoinmecaWallet: () => CoinmecaWalletAdapterContextProps; export declare const CoinmecaWalletAdapterContextProvider: React.FC<{ config?: CoinmecaWalletAdapterConfig; children?: React.ReactNode; }>; export {}; //# sourceMappingURL=adapter.d.ts.map