UNPKG

@msquared/etherbase-client

Version:

React hooks for interacting with Etherbase smart contracts

11 lines (10 loc) 338 B
import React from "react"; import type { ReactNode } from "react"; import type { EtherbaseConfig } from "./config"; export declare function EtherbaseProvider({ config, children, }: { config: EtherbaseConfig; children: ReactNode; }): React.JSX.Element; export declare function useEtherbaseContext(): { initialized: boolean; };