UNPKG

@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.

10 lines (9 loc) 461 B
import { type ReactElement } from 'react'; import { type Chain } from 'viem'; import type { KryptogoKitProviderProps } from '../src/components/KryptogoKitProvider/KryptogoKitProvider'; import type { WalletList } from '../src/wallets/Wallet'; export declare function renderWithProviders(component: ReactElement, options?: { chains?: readonly [Chain, ...Chain[]]; mockWallets?: WalletList; props?: Omit<KryptogoKitProviderProps, 'children'>; }): any;