Testing/Ledger Token Tap v1 Service
Skip The Details?​
- 👉 Jump to Package Types
- 👉 Jump to Service Methods
Overview​
The Token Tap Service provides utilities for token minting and management in a testing environment. This service is designed to facilitate testing of ledger operations by allowing you to mint test tokens, manage token taps, and initialize the token taps.
Key Capabilities​
- Initialize Token Taps: Set up token taps for supported blockchains
- List Available Tokens: Discover which tokens are available for minting through the tap service
- Mint Test Tokens: Create and distribute test tokens to specified addresses with support for multiple blockchain networks
Quick Start​
- Initialize the Token Tap Service using
InitialiseTokenTapsto initialise the taps - List Available Tokens with
ListTokenTapsto see which tokens you can mint - Mint Tokens using
MintTokenwith your desired amount, recipient address, and optional blockchain-specific parameters
Common Workflows​
Setting Up a Test Environment​
1. Call InitialiseTokenTaps to initialize the taps
2. Call ListTokenTaps to discover available test tokens
3. Call MintToken multiple times to distribute test tokens to various test accounts
Minting Tokens for Different Networks​
The MintToken method supports both Stellar and Solana networks through the options parameter:
- Stellar: Use
StellarMintOptionsto include transaction memos and other Stellar-specific metadata - Solana: Use
SolanaMintOptionsto specify token program versions (Legacy or 2022)
Authentication & Authorization​
This service is publicly accessible (no specific role requirements) and is intended for use in testing environments only. Always use this service on test networks or isolated test environments, never against production systems.