UNPKG

@dynamic-labs/sdk-react-core

Version:

A React SDK for implementing wallet web3 authentication and authorization to your website.

9 lines (8 loc) 401 B
/// <reference types="react" /> import { ExchangeKeyEnum } from '@dynamic-labs/sdk-api-core'; export type ExchangeListProps = { onSelectExchange: (exchange: ExchangeKeyEnum) => void; showDefaultFooter?: boolean; scrollContainerClassName?: string; }; export declare const ExchangeList: ({ onSelectExchange, showDefaultFooter, scrollContainerClassName, }: ExchangeListProps) => JSX.Element;