@jsmjsmxyz/web3-react-bitkeep
Version:
Add BitKeep wallet support into web3-react package
43 lines (42 loc) • 1.92 kB
TypeScript
import detectEthereumProvider from '@akkafinance/bitkeep-detect-provider';
import type { Actions, AddEthereumChainParameter, Provider, WatchAssetParameters } from '@web3-react/types';
import { Connector } from '@web3-react/types';
type BitKeepProvider = Provider & {
isBitKeep?: boolean;
isConnected?: () => boolean;
providers?: BitKeepProvider[];
};
export declare class NoBitKeepError extends Error {
constructor();
}
/**
* @param options - Options to pass to `./detect-provider`
* @param onError - Handler to report errors thrown from eventListeners.
*/
export interface BitKeepConstructorArgs {
actions: Actions;
options?: Parameters<typeof detectEthereumProvider>[0];
onError?: (error: Error) => void;
}
export declare class BitKeep extends Connector {
/** {@inheritdoc Connector.provider} */
provider?: BitKeepProvider;
private readonly options?;
private eagerConnection?;
constructor({ actions, options, onError }: BitKeepConstructorArgs);
private isomorphicInitialize;
/** {@inheritdoc Connector.connectEagerly} */
connectEagerly(): Promise<void>;
/**
* Initiates a connection.
*
* @param desiredChainIdOrChainParameters - If defined, indicates the desired chain to connect to. If the user is
* already connected to this chain, no additional steps will be taken. Otherwise, the user will be prompted to switch
* to the chain, if one of two conditions is met: either they already have it added in their extension, or the
* argument is of type AddEthereumChainParameter, in which case the user will be prompted to add the chain with the
* specified parameters first, before being prompted to switch.
*/
activate(desiredChainIdOrChainParameters?: number | AddEthereumChainParameter): Promise<void>;
watchAsset({ address, symbol, decimals, image }: WatchAssetParameters): Promise<true>;
}
export {};