Please Remember...
This is a fictional example and not real documentation. The purpose is to demonstrate my technical writing.
← token lifecycle stages & api mapping | token lifecycle (explanation)
This section is part of the Token Lifecycle in Practice.
Imagine you are working with a UK government bond or a derivatives contract. In the sections that follow, we walk through the token lifecycle and show how each stage maps to a specific API call. Follow the Code Example links for a step-by-step code walkthrough for each API method.
1. Minting
| Section | Details |
|---|---|
| What happens | A new token is created to represent the financial asset. This happens at the point of asset issuance or contract creation. |
| Real-world analogy | Issuing a bond certificate and recording it in a central ledger. Here, you're issuing a digital version on a blockchain. |
| API | POST /api/tokens/mint |
| Code Example | How to mint a token |
Example JSON Payload:
{
"asset_id": "UKGILT2030",
"amount": 100,
"recipient_wallet_address": "0xABC123..."
}
What comes next?
Related Reading
- Post-Trade Automation: Learn about post-trade automation and how it compares with traditional post-trade workflows.
- How-To Guides: Step-by-step examples with code snippets for each major token operation.
- API Reference Guide: Detailed overview of endpoints, request payloads, and response formats.
- Glossary of Key Concepts: Definitions and explanations of common terminology used throughout the docs.