@web3-onboard/capsule
Version:
Capsule SDK wallet module for connecting to Web3-Onboard. Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardised spec compliant web3 providers for all supported wallets, framework agnostic modern
9 lines (8 loc) • 413 B
TypeScript
import type { WalletInit } from '@web3-onboard/common';
import type { CapsuleInitOptions } from './types';
import { Environment as CapsuleEnvironment, OAuthMethod, Theme } from '@usecapsule/react-sdk';
import "@usecapsule/react-sdk/styles.css";
declare function capsule(options: CapsuleInitOptions): WalletInit;
export default capsule;
export { CapsuleEnvironment as Environment };
export { OAuthMethod, Theme };