@kryptogo/kryptogokit-sdk-react
Version:
KryptogoKit offers a comprehensive web3 wallet solution with seamless KryptoGO Auth integration and multi-wallet connection support. Designed for users. Built for developers.
13 lines (12 loc) • 396 B
TypeScript
import { type CoinbaseWalletParameters } from 'wagmi/connectors';
import type { Wallet } from '../../Wallet';
export interface CoinbaseWalletOptions {
appName: string;
appIcon?: string;
}
interface CoinbaseWallet {
(params: CoinbaseWalletOptions): Wallet;
preference?: CoinbaseWalletParameters<'4'>['preference'];
}
export declare const coinbaseWallet: CoinbaseWallet;
export {};