cdp-wallet-onramp-kit
Version:
Complete toolkit for Coinbase Developer Platform (CDP) Embedded Wallets and Onramp integration with reusable components, utilities, and documentation
19 lines (16 loc) • 752 B
text/typescript
// Provider components
export { CDPProvider } from './CDPProvider';
export { CDPHooksProvider } from './CDPHooksProvider';
// Authentication components
export { WalletAuth } from './WalletAuth';
export { CustomWalletAuth } from './CustomWalletAuth';
// Onramp components
export { OnrampButton } from './OnrampButton';
export { OnrampWidget } from './OnrampWidget';
// Types
export type { CDPConfig, AppConfig, CDPProviderProps } from './CDPProvider';
export type { CDPHooksProviderProps } from './CDPHooksProvider';
export type { WalletAuthProps } from './WalletAuth';
export type { CustomWalletAuthProps } from './CustomWalletAuth';
export type { OnrampButtonProps } from './OnrampButton';
export type { OnrampWidgetProps } from './OnrampWidget';