UNPKG

@starknet-react/core

Version:

Starknet React is a collection of React hooks for Starknet.

7 lines (5 loc) 222 B
import type { Chain } from "@starknet-react/chains"; import type { ProviderInterface } from "starknet"; export type ChainProviderFactory< T extends ProviderInterface = ProviderInterface, > = (chain: Chain) => T | null;