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

WalletCard

A component that displays wallet information and basic actions.

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

function WalletSection() {
  return (
    <WalletCard
      className="custom-class" // Optional custom class
      onClose={() => {
        // Handle card close
      }}
    />
  );
}

Props

interface WalletCardProps {
  className?: string;  
  onClose?: () => void; 
}

Features

  • Displays wallet information in a card format

  • Optional close button with callback

  • Customizable styling through className

  • Handles wallet state automatically

PreviousUserProfileNextTokensView

Last updated 27 days ago

Was this helpful?

⚙️