diff --git a/src/pages/guide/issuance/index.mdx b/src/pages/guide/issuance/index.mdx index a004831a..11e3f706 100644 --- a/src/pages/guide/issuance/index.mdx +++ b/src/pages/guide/issuance/index.mdx @@ -8,6 +8,9 @@ import { Cards, Card } from 'vocs' Create and manage your own stablecoin on Tempo. Learn how to issue tokens, manage supply, and integrate with Tempo's payment infrastructure. +Start with token creation, then add operational controls for minting, fees, +rewards, and transfer policies as your deployment moves toward production. + diff --git a/src/pages/protocol/fees/index.mdx b/src/pages/protocol/fees/index.mdx index f7d48e28..cca2bff5 100644 --- a/src/pages/protocol/fees/index.mdx +++ b/src/pages/protocol/fees/index.mdx @@ -12,6 +12,9 @@ For a stablecoin to be accepted, it must be USD-denominated, issued as a native Tempo uses a fixed base fee (rather than a variable base fee as in EIP-1559), set so that a TIP-20 transfer costs less than $0.001. All fees accrue to the validator who proposes the block. +Applications can abstract this away from users by selecting a supported fee +token or sponsoring fees through the account and transaction flows. + ## Learn More diff --git a/src/pages/protocol/tip20-rewards/overview.mdx b/src/pages/protocol/tip20-rewards/overview.mdx index 8b053305..3e5d9374 100644 --- a/src/pages/protocol/tip20-rewards/overview.mdx +++ b/src/pages/protocol/tip20-rewards/overview.mdx @@ -17,6 +17,9 @@ Traditional reward mechanisms require tokens to be staked in separate contracts, - **Efficient at Scale**: Constant-time updates regardless of the number of token holders - **Policy Compliant**: All reward transfers respect TIP-403 transfer policies +Issuers can use this for stablecoin programs that need native, auditable reward +distribution without moving balances into a separate staking contract. + ## Links diff --git a/src/pages/sdk/index.mdx b/src/pages/sdk/index.mdx index 0bda17cd..2dfae3c4 100644 --- a/src/pages/sdk/index.mdx +++ b/src/pages/sdk/index.mdx @@ -8,6 +8,9 @@ import { Cards, Card } from 'vocs' Tempo is building clients in multiple languages to make integration as easy as possible. +Choose the SDK that matches your application stack, then use the protocol and +guide sections for transaction, account, and token behavior. +