/** * cdp-wagmi-rn — a Coinbase CDP embedded smart-account wallet as a * bare-React-Native wagmi connector. * * The official `@wagmi/connectors` don't work in bare RN (dynamic import, * `window.*` reads, EIP-6963 discovery, Metro ESM interop). This package ships * its own `createConnector` over the CDP capability core that works on * RN New Architecture, plus the Coinbase Smart Wallet ERC-1271 / ERC-6492 * signature wrapping the account needs. * * The connector is configured entirely through `CdpWalletConfig` — it imports * nothing app-specific. See README for host (Metro/polyfill) requirements. */ export type { CdpWalletConfig, CdpSignOpts, CdpSendOpts } from './cdpConfig'; export { cdpWagmiConnector, registerCdpAuthRequester } from './cdpWagmiConnector'; export { createCdpEip1193Provider } from './cdpEip1193'; export { cdpGetAddress, cdpSignMessage, cdpSignTypedData, cdpSendCalls, waitForUserOpTransactionHash, type CdpCall, } from './cdpAccount'; export { getCdpState, setCdpState, subscribeCdpState, waitForCdpAddress, type CdpState, } from './cdpBridge'; export { buildCswReplaySafeTypedData, buildCswReplaySafeTypedDataForHash, wrapCswSignature, wrapErc6492, buildCoinbaseFactoryCalldata, encodeAddressOwner, coinbaseFactoryInterface, CDP_SMART_ACCOUNT_FACTORY, ERC6492_MAGIC, } from './cdpCswWrap'; //# sourceMappingURL=index.d.ts.map