Enclave API Documentation
  • Welcome
  • Getting Started
    • Integrations
  • SDK
  • Integrating with Privy
  • Models
    • Passkey Models
    • Transaction Models
    • User Model
    • Smart Balance
  • API Reference
    • Health Check
    • User Details
    • Smart Balance
    • Smart Account Creation
    • Smart Account Transactions
    • Passkey Account Creation
    • Passkey Account Authentication
    • Passkey Account Transactions
    • Session Key
  • COMING SOON
    • SDKs
    • Network Support
    • Protocol Integration
    • Mobile Integration
    • Custom Integration
Powered by GitBook
On this page
  • Payment Quote Types
  • PaymasterClaimQuoteRequestBody
  • ComputeSolutionRequestBody
  1. Models

Smart Balance

Smart balance models and request type for smart balance apis

Payment Quote Types

enum PaymasterClaimQuoteType {
  AMOUNT_IN = "AMOUNT_IN",
  AMOUNT_OUT = "AMOUNT_OUT"
}

PaymasterClaimQuoteRequestBody

interface PaymentClaimQuoteRequestBody {
    amount: number | string;
    outputNetwork: number;
    type: PaymasterClaimQuoteType;
    walletAddress: string;
    limit: number | string;
}

ComputeSolutionRequestBody

interface PaymentClaimQuoteRequestBody {
    amount: number | string;
    outputNetwork: number;
    type: PaymasterClaimQuoteType;
    walletAddress: string;
    limit: number | string;
}

PreviousUser ModelNextHealth Check

Last updated 5 months ago