iso-filecoin-react provides React hooks and context to easily integrate Filecoin wallet interactions into your React applications. It works seamlessly with the wallet adapters from iso-filecoin-wallets.
Installation
First, you need to install the necessary packages. You’ll typically need iso-filecoin-react, iso-filecoin (as a peer dependency), and at least one wallet adapter from iso-filecoin-wallets. You might also need @tanstack/react-query if you haven’t installed it already, as it’s a peer dependency for hooks.
Wrap your application (or the relevant part of it) with the FilecoinProvider. This component initializes the context and makes the wallet state and hooks available throughout your app.
You need to pass an array of instantiated wallet adapters to the adapters prop.
adapters: (WalletAdapter[], Required) An array of initialized wallet adapter instances (e.g., new WalletAdapterHD()).
network: (Network, Optional) The initial network to use (‘mainnet’ or ‘testnet’). Defaults to 'mainnet'.
rpcs: (Record<Network, RPC>, Optional) An object mapping network names to initialized RPC client instances from iso-filecoin/rpc. If not provided, defaults are used for mainnet and testnet.
reconnectOnMount: (boolean, Optional) If true, tries to automatically connect to the last used wallet adapter stored in local storage upon mounting. Defaults to true.
children: (React.ReactNode, Required) Your application components.
Basic Usage: Accessing Wallet State
Once the provider is set up, you can use the hooks provided by iso-filecoin-react within any child component.
useAdapter
Provides access to the currently selected adapter instance, loading/reconnecting states, errors, and the current network.
adapter: (WalletAdapter | undefined) The currently selected wallet adapter instance, or undefined if none is selected/connected.
loading: (boolean) true while the provider checks adapter support on initial mount.
error: (Error | undefined) The last error encountered related to the adapter or provider state.
network: (Network) The current network (‘mainnet’ or ‘testnet’) set in the provider state.
reconnecting: (boolean) true if the provider is attempting to auto-connect via reconnectOnMount.
useAccount
Provides access to the connected account details (IAccount), the active adapter instance, network/chain information, the derived connection state, and the address string.
account: (IAccount | undefined) The currently connected account object, or undefined if not connected. Contains address (as IAddress object) and type.
address: (string | undefined) The string representation of the connected account’s address, or undefined.
adapter: (WalletAdapter | undefined) The currently selected and connected wallet adapter instance.
chain: (Chain) An object representing the current Filecoin chain based on the provider’s network state (e.g., { id: 314, name: 'Filecoin Mainnet' }).
network: (Network) The current network (‘mainnet’ or ‘testnet’) from the provider state.
state: (ConnectionState) The derived connection status string: 'disconnected', 'connecting', 'connected', or 'reconnecting'.
Other Core Hooks
These hooks provide mutation functions (leveraging @tanstack/react-query), query results, or access context state for performing common wallet actions:
useConnect: Returns the connect mutation function to initiate connection to a selected wallet adapter. Also provides the list of available adapters, the currently selected adapter (if any), and the provider’s initial loading state.
useDisconnect: Returns the disconnect mutation function to disconnect the currently connected wallet adapter.
useChangeNetwork: Returns the changeNetwork mutation function to switch the provider’s and potentially the adapter’s active network (between ‘mainnet’ and ‘testnet’).
useDeriveAccount: Returns the deriveAccount mutation function to derive a new account from the current adapter at a specific index (if supported by the adapter).
useBalance: Returns a TanStack Query query result object ({ data, isLoading, error, ... }) for fetching the FIL balance ({ value: Token, symbol: string } | undefined) of the connected account. Requires RPC client configuration.
useAddresses: Takes an optional address string and returns TanStack Query query result objects for resolving its corresponding ID address (addressId: { data, ... }) and f4/0x address (address0x: { data, ... }) using the configured RPC client.
useEstimateGas: Takes message parameters (to, value, maxFee) and returns a TanStack Query query result object ({ data, ... }) containing the estimated gas cost ({ gas: bigint, total: bigint, symbol: string } | undefined) for sending the message from the currently connected account. Requires RPC client configuration.
useSendMessage: Returns the sendMessage mutation function. Takes a partial message object, prepares it using the RPC client (getting nonce, gas estimation), signs it using the adapter, and pushes it to the network via the RPC client. Returns the message CID ({ '/': string }).
useSign: Returns the sign mutation function. Takes a raw Uint8Array message and requests a signature from the connected adapter using the adapter’s generic sign method. (Note: This is different from useSignMessage which prepares and signs a specific Filecoin message structure).
Playground
Play with all the hooks in this StackBlitz example: