Repository URL to install this package:
|
Version:
0.0.4 ▾
|
import { ReactNode } from 'react';
import { Chain } from 'wagmi';
export declare type WalletOptions = {
chains: Chain[];
appName?: string;
shimDisconnect?: boolean;
};
export declare type WalletProps = {
id: string;
name: string;
shortName?: string;
logos: {
default: ReactNode;
transparent?: ReactNode;
connectorButton?: ReactNode;
qrCode?: ReactNode;
appIcon?: ReactNode;
mobile?: ReactNode;
};
logoBackground?: string;
scannable?: boolean;
installed?: boolean;
downloadUrls?: {
[key: string]: string;
};
createConnector: () => any;
};
export declare const getDefaultConnectors: (chains: Chain[], appName: string) => any;