Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.reown.com/llms.txt

Use this file to discover all available pages before exploring further.

AppKit seamlessly incorporates Coinbase Pay, enabling users to sign in to their Coinbase accounts and utilize fiat payment methods for purchasing cryptocurrencies.
On-Ramp is supported in the latest version of AppKit. If you are using an older version, make sure you upgrade.

Integration

The On-Ramp feature is enabled by default, so no additional configuration is required. If you prefer to disable it, set the onramp flag to false in the configuration of the createAppKit function.
On-Ramp is now available on Solana. The configuration for On-Ramp on both EVM and Solana is the same. Please refer to the code snippet below.
const modal = createAppKit({
  adapters: [wagmiAdapter],
  projectId,
  networks: [mainnet, arbitrum],
  metadata: metadata,
  features: {
    onramp: false // Optional - true by default
  }
})

On-Ramp API

You can programmatically open the On-Ramp modal.
const { open } = useAppKit()

open({ view: 'OnRampProviders' })