Stellar Plus
  • Welcome
  • Quick Start
  • Welcome
  • Quick Start
  • 🎓Tutorials
    • Issuing your first asset
    • Bulk Payments
    • E2E Certificate of Deposit demo
    • Creating a new contract client
  • 📄Reference
    • Account
      • Base
      • Default Account Handler
      • Freighter Account Handler
    • Asset
      • Classic Asset Handler
      • Stellar Asset Contract Handler
      • Soroban Token Handler
    • Network
    • Contract Clients
      • Certificate of Deposit Client
    • Core
      • Contract Engine
      • Pipelines
        • Build Transaction
        • Classic Signing Requirements
        • Fee Bump
        • Sign Transaction
        • Soroban Auth
        • Simulate Transaction
        • Soroban Get Transaction
        • Submit Transaction
        • Soroban Transaction
        • Classic Transaction
    • Utils
      • Plugins
        • Fee Bump Plugin
        • Channel Accounts Plugin
        • Auto Restore Plugin
        • Profiler Plugin
      • Pipeline
        • Conveyor Belt
        • Multi-belt Pipeline
    • RPC
      • Default RPC Handler
      • Validation Cloud RPC Handler
    • Horizon Handler
Powered by GitBook
On this page

Was this helpful?

Edit on GitHub
  1. Reference
  2. Asset

Classic Asset Handler

PreviousAssetNextStellar Asset Contract Handler

Last updated 1 year ago

Was this helpful?

The ClassicAssetHandler class, inheriting from , it follows the standard to provide a unified experience to access the functionalities for interacting with and managing classic assets on the Stellar network. It offers a comprehensive set of methods for asset transactions, including minting, transferring, and setting trustlines.

Constructor

  • Parameters:

    • code: Asset code (e.g., "XLM").

    • issuerPublicKey: Public key of the asset issuer.

    • network: Network configuration.

    • issuerAccount: (Optional) Account handler for the issuer. Necessary to enable asset management functionalities like minting and approving a trustline.

    • transactionSubmitter: (Optional) Custom submitter initiating and sending transactions to the network.

📄
Token Interface