decent-sdk
Version:
SDK for the Decent API
9 lines (8 loc) • 377 B
TypeScript
import { SupportedChainId } from '../../core/types/Chains';
import { QueryReturn } from '../types';
/**
* React hook to fetch the list of supported chains from the API.
*
* @returns {QueryReturn<SupportedChainId[]>} Object with { data: SupportedChainId[], loading: boolean, error: Error | null }
*/
export declare const useApiChains: () => QueryReturn<SupportedChainId[]>;