AvaCloud API
AvaCloud App
AvaCloud Wallet as a Service
AvaCloud Wallet as a Service
  • AvaCloud Wallet as a Service SDK
  • 🚀Getting Started
    • Quickstart
  • ⚙️USAGE
    • 🪝Hooks
      • useAvaCloudWallet
      • useAuth
      • useSignMessage
      • useSignTransaction
      • useTransferTokens
      • useUserWallets
      • useChainId
    • UI Components
      • LoginButton
      • WalletButton
      • WalletDisplay
      • UserProfile
      • WalletCard
      • TokensView
      • SendView
      • ReceiveView
      • ExportView
    • 🛠️Advanced Usage
Powered by GitBook

© 2025 Ava Labs, Inc.

On this page

Was this helpful?

  1. USAGE
  2. UI Components

ReceiveView

Component for receiving tokens (displays QR code).

import { ReceiveView } from '@avalabs/avacloud-waas-react';

function ReceiveSection() {
  return (
    <ReceiveView
      onBack={() => {
        // Handle back navigation
      }}
    />
  );
}

Props

interface ReceiveViewProps {
  onBack: () => void;  // Required callback for back navigation
}

Features

  • Displays wallet address QR code

  • Required back navigation functionality

  • Address copy functionality

  • Handles wallet state automatically

PreviousSendViewNextExportView

Last updated 27 days ago

Was this helpful?

⚙️