@dynamic-labs/sdk-react-core
Version:
A React SDK for implementing wallet web3 authentication and authorization to your website.
14 lines (13 loc) • 343 B
TypeScript
import { FC } from 'react';
import { Chain } from '@dynamic-labs/wallet-connector-core';
export type ChainWithIcon = {
icon?: string;
name: string | undefined;
symbol: Chain | undefined;
};
interface ChainIconProps {
chain: ChainWithIcon;
chainName: string;
}
export declare const ChainIcon: FC<ChainIconProps>;
export {};