From 6ba946593816ecd205bcccce372f146c9850a87a Mon Sep 17 00:00:00 2001 From: Centaur AI Date: Sat, 2 May 2026 03:09:02 +0000 Subject: [PATCH] feat: add SEO title and description frontmatter to 84 docs pages Amp-Thread-ID: https://ampcode.com/threads/T-019de65e-2ad4-746d-a401-af7d614fff6e Co-authored-by: Amp --- src/pages/guide/issuance/create-a-stablecoin.mdx | 1 + src/pages/guide/issuance/distribute-rewards.mdx | 1 + src/pages/guide/issuance/index.mdx | 1 + src/pages/guide/issuance/manage-stablecoin.mdx | 1 + src/pages/guide/issuance/mint-stablecoins.mdx | 1 + src/pages/guide/issuance/use-for-fees.mdx | 1 + src/pages/guide/node/index.mdx | 1 + src/pages/guide/node/installation.mdx | 1 + src/pages/guide/node/rpc.mdx | 1 + src/pages/guide/node/system-requirements.mdx | 1 + src/pages/guide/node/validator.mdx | 1 + src/pages/guide/payments/accept-a-payment.mdx | 1 + src/pages/guide/payments/index.mdx | 1 + src/pages/guide/payments/pay-fees-in-any-stablecoin.mdx | 1 + src/pages/guide/payments/send-a-payment.mdx | 1 + src/pages/guide/payments/send-parallel-transactions.mdx | 1 + src/pages/guide/payments/sponsor-user-fees.mdx | 1 + src/pages/guide/payments/transfer-memos.mdx | 2 ++ src/pages/guide/stablecoin-dex/executing-swaps.mdx | 1 + src/pages/guide/stablecoin-dex/index.mdx | 1 + src/pages/guide/stablecoin-dex/managing-fee-liquidity.mdx | 1 + src/pages/guide/stablecoin-dex/providing-liquidity.mdx | 1 + src/pages/guide/stablecoin-dex/view-the-orderbook.mdx | 1 + src/pages/guide/tempo-transaction/index.mdx | 1 + src/pages/guide/use-accounts/add-funds.mdx | 1 + src/pages/guide/use-accounts/batch-transactions.mdx | 5 +++++ src/pages/guide/use-accounts/connect-to-wallets.mdx | 1 + src/pages/guide/use-accounts/embed-passkeys.mdx | 1 + src/pages/guide/use-accounts/embed-tempo-wallet.mdx | 1 + src/pages/guide/use-accounts/index.mdx | 1 + src/pages/guide/use-accounts/scheduled-transactions.mdx | 5 +++++ src/pages/guide/use-accounts/webauthn-p256-signatures.mdx | 5 +++++ src/pages/index.mdx | 1 + src/pages/learn/index.mdx | 1 + src/pages/learn/partners.mdx | 1 + src/pages/learn/tempo/fx.mdx | 1 + src/pages/learn/tempo/index.mdx | 1 + src/pages/learn/tempo/machine-payments.mdx | 1 + src/pages/learn/tempo/modern-transactions.mdx | 1 + src/pages/learn/tempo/native-stablecoins.mdx | 1 + src/pages/learn/tempo/performance.mdx | 1 + src/pages/learn/tempo/privacy.mdx | 1 + src/pages/learn/use-cases/agentic-commerce.mdx | 1 + src/pages/learn/use-cases/embedded-finance.mdx | 1 + src/pages/learn/use-cases/global-payouts.mdx | 1 + src/pages/learn/use-cases/microtransactions.mdx | 1 + src/pages/learn/use-cases/remittances.mdx | 1 + src/pages/learn/use-cases/tokenized-deposits.mdx | 1 + src/pages/protocol/blockspace/overview.mdx | 1 + src/pages/protocol/blockspace/payment-lane-specification.mdx | 1 + src/pages/protocol/exchange/exchange-balance.mdx | 1 + src/pages/protocol/exchange/executing-swaps.mdx | 1 + src/pages/protocol/exchange/index.mdx | 1 + src/pages/protocol/exchange/providing-liquidity.mdx | 1 + src/pages/protocol/exchange/quote-tokens.mdx | 1 + src/pages/protocol/exchange/spec.mdx | 1 + src/pages/protocol/fees/fee-amm/index.mdx | 1 + src/pages/protocol/fees/index.mdx | 1 + src/pages/protocol/fees/spec-fee-amm.mdx | 1 + src/pages/protocol/index.mdx | 1 + src/pages/protocol/tip20-rewards/overview.mdx | 1 + src/pages/protocol/tip20-rewards/spec.mdx | 1 + src/pages/protocol/tip20/overview.mdx | 1 + src/pages/protocol/tip20/spec.mdx | 1 + src/pages/protocol/tip403/overview.mdx | 1 + src/pages/protocol/tip403/spec.mdx | 1 + src/pages/protocol/tips/index.mdx | 5 +++++ src/pages/protocol/transactions/AccountKeychain.mdx | 1 + src/pages/protocol/transactions/index.mdx | 1 + src/pages/protocol/transactions/spec-tempo-transaction.mdx | 1 + src/pages/quickstart/connection-details.mdx | 1 + src/pages/quickstart/developer-tools.mdx | 1 + src/pages/quickstart/evm-compatibility.mdx | 1 + src/pages/quickstart/faucet.mdx | 1 + src/pages/quickstart/integrate-tempo.mdx | 1 + src/pages/quickstart/predeployed-contracts.mdx | 1 + src/pages/quickstart/wallet-developers.mdx | 1 + src/pages/sdk/foundry/index.mdx | 1 + src/pages/sdk/go/index.mdx | 1 + src/pages/sdk/index.mdx | 1 + src/pages/sdk/python/index.mdx | 1 + src/pages/sdk/rust/index.mdx | 1 + src/pages/sdk/typescript/index.mdx | 1 + src/pages/sdk/typescript/prool/setup.mdx | 1 + 84 files changed, 101 insertions(+) diff --git a/src/pages/guide/issuance/create-a-stablecoin.mdx b/src/pages/guide/issuance/create-a-stablecoin.mdx index 9721fc9d..aa8a079e 100644 --- a/src/pages/guide/issuance/create-a-stablecoin.mdx +++ b/src/pages/guide/issuance/create-a-stablecoin.mdx @@ -1,4 +1,5 @@ --- +title: "Create a Stablecoin" description: Create your own stablecoin on Tempo using the TIP-20 token standard. Deploy tokens with built-in compliance features and role-based permissions. interactive: true --- diff --git a/src/pages/guide/issuance/distribute-rewards.mdx b/src/pages/guide/issuance/distribute-rewards.mdx index cdebd713..f7cecfaf 100644 --- a/src/pages/guide/issuance/distribute-rewards.mdx +++ b/src/pages/guide/issuance/distribute-rewards.mdx @@ -1,4 +1,5 @@ --- +title: "Distribute Rewards" description: Distribute rewards to token holders using TIP-20's built-in reward mechanism. Allocate tokens proportionally based on holder balances. interactive: true --- diff --git a/src/pages/guide/issuance/index.mdx b/src/pages/guide/issuance/index.mdx index a004831a..dbe80c92 100644 --- a/src/pages/guide/issuance/index.mdx +++ b/src/pages/guide/issuance/index.mdx @@ -1,4 +1,5 @@ --- +title: "Stablecoin Issuance" description: Create and manage your own stablecoin on Tempo. Issue tokens, manage supply, and integrate with Tempo's payment infrastructure. --- diff --git a/src/pages/guide/issuance/manage-stablecoin.mdx b/src/pages/guide/issuance/manage-stablecoin.mdx index a8134a9d..13fd0c1a 100644 --- a/src/pages/guide/issuance/manage-stablecoin.mdx +++ b/src/pages/guide/issuance/manage-stablecoin.mdx @@ -1,4 +1,5 @@ --- +title: "Manage Your Stablecoin" description: Configure stablecoin permissions, supply limits, and compliance policies. Grant roles, set transfer policies, and control pause/unpause functionality. interactive: true --- diff --git a/src/pages/guide/issuance/mint-stablecoins.mdx b/src/pages/guide/issuance/mint-stablecoins.mdx index 3194f696..b15c8907 100644 --- a/src/pages/guide/issuance/mint-stablecoins.mdx +++ b/src/pages/guide/issuance/mint-stablecoins.mdx @@ -1,4 +1,5 @@ --- +title: "Mint Stablecoins" description: Mint new tokens to increase your stablecoin's total supply. Grant the issuer role and create tokens with optional memos for tracking. interactive: true --- diff --git a/src/pages/guide/issuance/use-for-fees.mdx b/src/pages/guide/issuance/use-for-fees.mdx index 780e8b38..356f05ab 100644 --- a/src/pages/guide/issuance/use-for-fees.mdx +++ b/src/pages/guide/issuance/use-for-fees.mdx @@ -1,4 +1,5 @@ --- +title: "Use Your Stablecoin for Fees" description: Enable users to pay transaction fees using your stablecoin. Add fee pool liquidity and integrate with Tempo's flexible fee payment system. interactive: true --- diff --git a/src/pages/guide/node/index.mdx b/src/pages/guide/node/index.mdx index bba72ebf..ee695341 100644 --- a/src/pages/guide/node/index.mdx +++ b/src/pages/guide/node/index.mdx @@ -1,4 +1,5 @@ --- +title: "Tempo Node" description: Run your own Tempo node for direct network access. Set up RPC nodes for API access or validator nodes to participate in consensus. --- diff --git a/src/pages/guide/node/installation.mdx b/src/pages/guide/node/installation.mdx index bbe84e93..351a710c 100644 --- a/src/pages/guide/node/installation.mdx +++ b/src/pages/guide/node/installation.mdx @@ -1,4 +1,5 @@ --- +title: "Node Installation" description: Install Tempo node using pre-built binaries, build from source with Rust, or run with Docker. Get started in minutes with tempoup. --- diff --git a/src/pages/guide/node/rpc.mdx b/src/pages/guide/node/rpc.mdx index 95c6e1c1..368b95f1 100644 --- a/src/pages/guide/node/rpc.mdx +++ b/src/pages/guide/node/rpc.mdx @@ -1,4 +1,5 @@ --- +title: "Running an RPC Node" description: Set up and run a Tempo RPC node for API access. Download snapshots, configure systemd services, and monitor node health and sync status. --- diff --git a/src/pages/guide/node/system-requirements.mdx b/src/pages/guide/node/system-requirements.mdx index 990315c1..9d5d5429 100644 --- a/src/pages/guide/node/system-requirements.mdx +++ b/src/pages/guide/node/system-requirements.mdx @@ -1,4 +1,5 @@ --- +title: "System Requirements" description: Minimum and recommended hardware specs for running Tempo RPC and validator nodes. CPU, RAM, storage, network, and port requirements. --- diff --git a/src/pages/guide/node/validator.mdx b/src/pages/guide/node/validator.mdx index 3a77f38e..b9bdede2 100644 --- a/src/pages/guide/node/validator.mdx +++ b/src/pages/guide/node/validator.mdx @@ -1,4 +1,5 @@ --- +title: "Running a Validator Node" description: Overview of running a Tempo validator node. --- diff --git a/src/pages/guide/payments/accept-a-payment.mdx b/src/pages/guide/payments/accept-a-payment.mdx index c01f4dca..231a007c 100644 --- a/src/pages/guide/payments/accept-a-payment.mdx +++ b/src/pages/guide/payments/accept-a-payment.mdx @@ -1,4 +1,5 @@ --- +title: "Accept a Payment" description: Accept stablecoin payments in your application. Verify transactions, listen for transfer events, and reconcile payments using memos. interactive: true --- diff --git a/src/pages/guide/payments/index.mdx b/src/pages/guide/payments/index.mdx index 635b1203..1f8f8370 100644 --- a/src/pages/guide/payments/index.mdx +++ b/src/pages/guide/payments/index.mdx @@ -1,4 +1,5 @@ --- +title: "Stablecoin Payments" description: Send and receive stablecoin payments on Tempo. Integrate payments with flexible fee options, sponsorship capabilities, and parallel transactions. --- diff --git a/src/pages/guide/payments/pay-fees-in-any-stablecoin.mdx b/src/pages/guide/payments/pay-fees-in-any-stablecoin.mdx index d71a35fb..3d939c6f 100644 --- a/src/pages/guide/payments/pay-fees-in-any-stablecoin.mdx +++ b/src/pages/guide/payments/pay-fees-in-any-stablecoin.mdx @@ -1,4 +1,5 @@ --- +title: "Pay Fees in Any Stablecoin" description: Configure users to pay transaction fees in any supported stablecoin. Eliminate the need for a separate gas token with Tempo's flexible fee system. showOutline: 1 interactive: true diff --git a/src/pages/guide/payments/send-a-payment.mdx b/src/pages/guide/payments/send-a-payment.mdx index b12c9b0f..38799c9f 100644 --- a/src/pages/guide/payments/send-a-payment.mdx +++ b/src/pages/guide/payments/send-a-payment.mdx @@ -1,4 +1,5 @@ --- +title: "Send a Payment" description: Send stablecoin payments between accounts on Tempo. Include optional memos for reconciliation and tracking with TypeScript, Rust, or Solidity. interactive: true --- diff --git a/src/pages/guide/payments/send-parallel-transactions.mdx b/src/pages/guide/payments/send-parallel-transactions.mdx index f40eb12a..c28254ec 100644 --- a/src/pages/guide/payments/send-parallel-transactions.mdx +++ b/src/pages/guide/payments/send-parallel-transactions.mdx @@ -1,4 +1,5 @@ --- +title: "Send Parallel Transactions" description: Submit multiple transactions concurrently using Tempo's expiring nonce system under-the-hood. interactive: true --- diff --git a/src/pages/guide/payments/sponsor-user-fees.mdx b/src/pages/guide/payments/sponsor-user-fees.mdx index 8e809e47..e8ff6979 100644 --- a/src/pages/guide/payments/sponsor-user-fees.mdx +++ b/src/pages/guide/payments/sponsor-user-fees.mdx @@ -1,4 +1,5 @@ --- +title: "Sponsor User Fees" description: Enable gasless transactions by sponsoring fees for your users. Set up a fee payer service and improve UX by removing friction from payment flows. interactive: true --- diff --git a/src/pages/guide/payments/transfer-memos.mdx b/src/pages/guide/payments/transfer-memos.mdx index 312723d9..929347e5 100644 --- a/src/pages/guide/payments/transfer-memos.mdx +++ b/src/pages/guide/payments/transfer-memos.mdx @@ -1,4 +1,6 @@ --- +title: "Attach a Transfer Memo" +description: "Attach 32-byte references to TIP-20 transfers for payment reconciliation using memos for customer IDs and invoices." interactive: true --- diff --git a/src/pages/guide/stablecoin-dex/executing-swaps.mdx b/src/pages/guide/stablecoin-dex/executing-swaps.mdx index 500c3911..b8a1ad89 100644 --- a/src/pages/guide/stablecoin-dex/executing-swaps.mdx +++ b/src/pages/guide/stablecoin-dex/executing-swaps.mdx @@ -1,4 +1,5 @@ --- +title: "Executing Swaps" description: Learn to execute instant stablecoin swaps on Tempo's DEX. Get price quotes, set slippage protection, and batch approvals with swaps. interactive: true --- diff --git a/src/pages/guide/stablecoin-dex/index.mdx b/src/pages/guide/stablecoin-dex/index.mdx index 037330ed..1bf96aa8 100644 --- a/src/pages/guide/stablecoin-dex/index.mdx +++ b/src/pages/guide/stablecoin-dex/index.mdx @@ -1,4 +1,5 @@ --- +title: "Exchange Stablecoins" description: Trade between stablecoins on Tempo's enshrined DEX. Execute swaps, provide liquidity, and query the onchain orderbook for optimal pricing. --- diff --git a/src/pages/guide/stablecoin-dex/managing-fee-liquidity.mdx b/src/pages/guide/stablecoin-dex/managing-fee-liquidity.mdx index 1378ce40..bd512cbd 100644 --- a/src/pages/guide/stablecoin-dex/managing-fee-liquidity.mdx +++ b/src/pages/guide/stablecoin-dex/managing-fee-liquidity.mdx @@ -1,4 +1,5 @@ --- +title: "Managing Fee Liquidity" description: Add and remove liquidity in the Fee AMM to enable stablecoin fee conversions. Monitor pools, check LP balances, and rebalance reserves. interactive: true --- diff --git a/src/pages/guide/stablecoin-dex/providing-liquidity.mdx b/src/pages/guide/stablecoin-dex/providing-liquidity.mdx index 98b5f5ea..d08011d2 100644 --- a/src/pages/guide/stablecoin-dex/providing-liquidity.mdx +++ b/src/pages/guide/stablecoin-dex/providing-liquidity.mdx @@ -1,4 +1,5 @@ --- +title: "Providing Liquidity" description: Place limit and flip orders to provide liquidity on the Stablecoin DEX orderbook. Learn to manage orders and set prices using ticks. interactive: true --- diff --git a/src/pages/guide/stablecoin-dex/view-the-orderbook.mdx b/src/pages/guide/stablecoin-dex/view-the-orderbook.mdx index c151d7b7..8559d0c7 100644 --- a/src/pages/guide/stablecoin-dex/view-the-orderbook.mdx +++ b/src/pages/guide/stablecoin-dex/view-the-orderbook.mdx @@ -1,4 +1,5 @@ --- +title: "View the Orderbook" description: Inspect Tempo's onchain orderbook using SQL queries. View spreads, order depth, individual orders, and recent trade prices with indexed data. --- diff --git a/src/pages/guide/tempo-transaction/index.mdx b/src/pages/guide/tempo-transaction/index.mdx index 383b3ecf..0a73822f 100644 --- a/src/pages/guide/tempo-transaction/index.mdx +++ b/src/pages/guide/tempo-transaction/index.mdx @@ -1,4 +1,5 @@ --- +title: "Use Tempo Transactions" description: Learn how to use Tempo Transactions for configurable fee tokens, fee sponsorship, batch calls, access keys, and concurrent execution. --- diff --git a/src/pages/guide/use-accounts/add-funds.mdx b/src/pages/guide/use-accounts/add-funds.mdx index 2a059596..9f1e8be5 100644 --- a/src/pages/guide/use-accounts/add-funds.mdx +++ b/src/pages/guide/use-accounts/add-funds.mdx @@ -1,4 +1,5 @@ --- +title: "Add Funds" description: Get test stablecoins on Tempo Testnet using the faucet. Request pathUSD, AlphaUSD, BetaUSD, and ThetaUSD tokens for development and testing. mipd: true interactive: true diff --git a/src/pages/guide/use-accounts/batch-transactions.mdx b/src/pages/guide/use-accounts/batch-transactions.mdx index 3d68b797..5243d80a 100644 --- a/src/pages/guide/use-accounts/batch-transactions.mdx +++ b/src/pages/guide/use-accounts/batch-transactions.mdx @@ -1,3 +1,8 @@ +--- +title: "Batch Transactions" +description: "Combine multiple operations into a single atomic Tempo transaction to reduce gas costs and prevent partial failures." +--- + # Batch Transactions One of the most powerful features of the [Tempo Transaction](/protocol/transactions/spec-tempo-transaction) type is batching multiple operations into a single transaction. This allows you to execute several actions atomically (i.e., they all succeed or all fail together). This helps reduce gas costs, prevents partial failures, and creates better user experiences by combining multiple steps into one transaction. diff --git a/src/pages/guide/use-accounts/connect-to-wallets.mdx b/src/pages/guide/use-accounts/connect-to-wallets.mdx index 496bfb78..ad73c5dc 100644 --- a/src/pages/guide/use-accounts/connect-to-wallets.mdx +++ b/src/pages/guide/use-accounts/connect-to-wallets.mdx @@ -1,4 +1,5 @@ --- +title: "Connect to Wallets" description: Connect your application to EVM-compatible wallets like MetaMask on Tempo. Set up Wagmi connectors and add the Tempo network to user wallets. mipd: true interactive: true diff --git a/src/pages/guide/use-accounts/embed-passkeys.mdx b/src/pages/guide/use-accounts/embed-passkeys.mdx index b8fa9ad4..22c29efa 100644 --- a/src/pages/guide/use-accounts/embed-passkeys.mdx +++ b/src/pages/guide/use-accounts/embed-passkeys.mdx @@ -1,4 +1,5 @@ --- +title: "Embed Passkey Accounts" description: Create domain-bound passkey accounts on Tempo using WebAuthn for secure, passwordless authentication with biometrics like Face ID and Touch ID. interactive: true --- diff --git a/src/pages/guide/use-accounts/embed-tempo-wallet.mdx b/src/pages/guide/use-accounts/embed-tempo-wallet.mdx index b3f0cfa2..d84f2cfd 100644 --- a/src/pages/guide/use-accounts/embed-tempo-wallet.mdx +++ b/src/pages/guide/use-accounts/embed-tempo-wallet.mdx @@ -1,4 +1,5 @@ --- +title: "Embed Tempo Wallet" description: Embed the Tempo Wallet dialog into your application for a universal wallet experience with account management, passkeys, and fee sponsorship. interactive: true --- diff --git a/src/pages/guide/use-accounts/index.mdx b/src/pages/guide/use-accounts/index.mdx index bbd749ac..1fcb2d3c 100644 --- a/src/pages/guide/use-accounts/index.mdx +++ b/src/pages/guide/use-accounts/index.mdx @@ -1,4 +1,5 @@ --- +title: "Create and Use Accounts" description: Create and integrate Tempo accounts with the universal Tempo Wallet or domain-bound passkeys. --- diff --git a/src/pages/guide/use-accounts/scheduled-transactions.mdx b/src/pages/guide/use-accounts/scheduled-transactions.mdx index f99a668f..75f5e5c5 100644 --- a/src/pages/guide/use-accounts/scheduled-transactions.mdx +++ b/src/pages/guide/use-accounts/scheduled-transactions.mdx @@ -1,3 +1,8 @@ +--- +title: "Scheduled Transactions" +description: "Execute transactions within specific time windows using validAfter and validBefore timestamps on Tempo transactions." +--- + # Scheduled Transactions Execute transactions only within a specific time window using `validAfter` and `validBefore` timestamps. diff --git a/src/pages/guide/use-accounts/webauthn-p256-signatures.mdx b/src/pages/guide/use-accounts/webauthn-p256-signatures.mdx index 8e5ad22b..f25b09a0 100644 --- a/src/pages/guide/use-accounts/webauthn-p256-signatures.mdx +++ b/src/pages/guide/use-accounts/webauthn-p256-signatures.mdx @@ -1,3 +1,8 @@ +--- +title: "WebAuthn and P256 Signatures" +description: "Sign Tempo transactions with WebAuthn passkeys, P256 keys, or standard secp256k1 wallets for flexible authentication." +--- + # WebAuthn & P256 Signatures Tempo EOA addresses can be derived from multiple signature types. Allowing you to sign transactions with standard Ethereum wallets, hardware security keys, biometric authentication like Face ID and Touch ID, or even using [passkeys](https://passkeys.dev/). diff --git a/src/pages/index.mdx b/src/pages/index.mdx index 4b8658bc..eb8aa05e 100644 --- a/src/pages/index.mdx +++ b/src/pages/index.mdx @@ -1,4 +1,5 @@ --- +title: "Tempo Documentation" description: Explore Tempo's blockchain documentation, integration guides, and protocol specs. Build low-cost, high-throughput payment applications. --- diff --git a/src/pages/learn/index.mdx b/src/pages/learn/index.mdx index 741ff929..719b5985 100644 --- a/src/pages/learn/index.mdx +++ b/src/pages/learn/index.mdx @@ -1,4 +1,5 @@ --- +title: "Learn" description: Explore stablecoin use cases and Tempo's payments-optimized blockchain architecture for remittances, payouts, and embedded finance. --- diff --git a/src/pages/learn/partners.mdx b/src/pages/learn/partners.mdx index ab7886dc..cadb6edd 100644 --- a/src/pages/learn/partners.mdx +++ b/src/pages/learn/partners.mdx @@ -1,4 +1,5 @@ --- +title: "Partners" description: Discover Tempo's ecosystem of stablecoin issuers, wallets, custody providers, compliance tools, and ramps. --- diff --git a/src/pages/learn/tempo/fx.mdx b/src/pages/learn/tempo/fx.mdx index d3af39fd..c217e17b 100644 --- a/src/pages/learn/tempo/fx.mdx +++ b/src/pages/learn/tempo/fx.mdx @@ -1,4 +1,5 @@ --- +title: "Onchain FX" description: Access foreign exchange liquidity directly onchain with regulated non-USD stablecoin issuers and multi-currency fee payments on Tempo. --- diff --git a/src/pages/learn/tempo/index.mdx b/src/pages/learn/tempo/index.mdx index ed464c96..075a42a1 100644 --- a/src/pages/learn/tempo/index.mdx +++ b/src/pages/learn/tempo/index.mdx @@ -1,4 +1,5 @@ --- +title: "Tempo Overview" description: Discover Tempo, the payments-first blockchain with instant settlement, predictably low fees, and native stablecoin support. --- diff --git a/src/pages/learn/tempo/machine-payments.mdx b/src/pages/learn/tempo/machine-payments.mdx index d861c02e..232cc6a9 100644 --- a/src/pages/learn/tempo/machine-payments.mdx +++ b/src/pages/learn/tempo/machine-payments.mdx @@ -1,4 +1,5 @@ --- +title: "Agentic Payments" description: The Machine Payments Protocol (MPP) is an open standard for machine-to-machine payments, co-authored by Stripe and Tempo. --- diff --git a/src/pages/learn/tempo/modern-transactions.mdx b/src/pages/learn/tempo/modern-transactions.mdx index 7a83db45..4a24b215 100644 --- a/src/pages/learn/tempo/modern-transactions.mdx +++ b/src/pages/learn/tempo/modern-transactions.mdx @@ -1,4 +1,5 @@ --- +title: "Modern Transactions" description: Native support for gas sponsorship, batch transactions, scheduled payments, and passkey authentication built into Tempo's protocol. --- diff --git a/src/pages/learn/tempo/native-stablecoins.mdx b/src/pages/learn/tempo/native-stablecoins.mdx index 7c259299..ccc4f97a 100644 --- a/src/pages/learn/tempo/native-stablecoins.mdx +++ b/src/pages/learn/tempo/native-stablecoins.mdx @@ -1,4 +1,5 @@ --- +title: "Native Stablecoins" description: Tempo's stablecoin token standard with payment lanes, stable fees, reconciliation memos, and built-in compliance for regulated issuers. --- diff --git a/src/pages/learn/tempo/performance.mdx b/src/pages/learn/tempo/performance.mdx index 51921242..bd329692 100644 --- a/src/pages/learn/tempo/performance.mdx +++ b/src/pages/learn/tempo/performance.mdx @@ -1,4 +1,5 @@ --- +title: "Performance" description: High throughput and sub-second finality built on Reth SDK and Simplex Consensus for payment applications requiring instant settlement. --- diff --git a/src/pages/learn/tempo/privacy.mdx b/src/pages/learn/tempo/privacy.mdx index d3c62cce..edf7828c 100644 --- a/src/pages/learn/tempo/privacy.mdx +++ b/src/pages/learn/tempo/privacy.mdx @@ -1,4 +1,5 @@ --- +title: "Privacy" description: Explore Tempo's opt-in privacy features enabling private balances and confidential transfers while maintaining issuer compliance. --- diff --git a/src/pages/learn/use-cases/agentic-commerce.mdx b/src/pages/learn/use-cases/agentic-commerce.mdx index 9e9c0653..239859c6 100644 --- a/src/pages/learn/use-cases/agentic-commerce.mdx +++ b/src/pages/learn/use-cases/agentic-commerce.mdx @@ -1,4 +1,5 @@ --- +title: "Agentic Commerce" description: Power autonomous AI agents with programmable stablecoin payments for goods, services, and digital resources in real time. --- diff --git a/src/pages/learn/use-cases/embedded-finance.mdx b/src/pages/learn/use-cases/embedded-finance.mdx index 63157f6c..aad22aa3 100644 --- a/src/pages/learn/use-cases/embedded-finance.mdx +++ b/src/pages/learn/use-cases/embedded-finance.mdx @@ -1,4 +1,5 @@ --- +title: "Embedded Finance" description: Enable platforms and marketplaces to streamline partner payouts, lower payment costs, and launch rewarding loyalty programs. --- diff --git a/src/pages/learn/use-cases/global-payouts.mdx b/src/pages/learn/use-cases/global-payouts.mdx index 35de62b7..12176632 100644 --- a/src/pages/learn/use-cases/global-payouts.mdx +++ b/src/pages/learn/use-cases/global-payouts.mdx @@ -1,4 +1,5 @@ --- +title: "Global Payouts" description: Deliver instant, low-cost payouts to contractors, merchants, and partners worldwide with stablecoins, bypassing slow banking rails. --- diff --git a/src/pages/learn/use-cases/microtransactions.mdx b/src/pages/learn/use-cases/microtransactions.mdx index 16303186..ebf1353c 100644 --- a/src/pages/learn/use-cases/microtransactions.mdx +++ b/src/pages/learn/use-cases/microtransactions.mdx @@ -1,4 +1,5 @@ --- +title: "Microtransactions" description: Enable true pay-per-use pricing with sub-cent payments for APIs, content, IoT services, and machine-to-machine commerce. --- diff --git a/src/pages/learn/use-cases/remittances.mdx b/src/pages/learn/use-cases/remittances.mdx index 7b0b664d..5d7d4c4d 100644 --- a/src/pages/learn/use-cases/remittances.mdx +++ b/src/pages/learn/use-cases/remittances.mdx @@ -1,4 +1,5 @@ --- +title: "Remittances" description: Send cross-border payments faster and cheaper with stablecoins, eliminating correspondent banks and reducing transfer costs. --- diff --git a/src/pages/learn/use-cases/tokenized-deposits.mdx b/src/pages/learn/use-cases/tokenized-deposits.mdx index da53f7fe..99317c5a 100644 --- a/src/pages/learn/use-cases/tokenized-deposits.mdx +++ b/src/pages/learn/use-cases/tokenized-deposits.mdx @@ -1,4 +1,5 @@ --- +title: "Tokenized Deposits" description: Move treasury liquidity instantly across borders with real-time visibility into global cash positions using tokenized deposits. --- diff --git a/src/pages/protocol/blockspace/overview.mdx b/src/pages/protocol/blockspace/overview.mdx index 12c8ecbc..1f2e35ec 100644 --- a/src/pages/protocol/blockspace/overview.mdx +++ b/src/pages/protocol/blockspace/overview.mdx @@ -1,4 +1,5 @@ --- +title: "Blockspace Overview" description: Technical specification for Tempo block structure including header fields, payment lanes, and system transaction ordering. --- diff --git a/src/pages/protocol/blockspace/payment-lane-specification.mdx b/src/pages/protocol/blockspace/payment-lane-specification.mdx index c6340181..3789419a 100644 --- a/src/pages/protocol/blockspace/payment-lane-specification.mdx +++ b/src/pages/protocol/blockspace/payment-lane-specification.mdx @@ -1,4 +1,5 @@ --- +title: "Payment Lane Specification" description: Technical specification for Tempo payment lanes ensuring dedicated blockspace for payment transactions with predictable fees during congestion. --- diff --git a/src/pages/protocol/exchange/exchange-balance.mdx b/src/pages/protocol/exchange/exchange-balance.mdx index 10118b51..6133ad6f 100644 --- a/src/pages/protocol/exchange/exchange-balance.mdx +++ b/src/pages/protocol/exchange/exchange-balance.mdx @@ -1,4 +1,5 @@ --- +title: "DEX Balance" description: Hold token balances directly on the Stablecoin DEX to save gas costs on trades, receive maker proceeds automatically, and trade more efficiently. --- diff --git a/src/pages/protocol/exchange/executing-swaps.mdx b/src/pages/protocol/exchange/executing-swaps.mdx index 2d48fa54..a5e60c96 100644 --- a/src/pages/protocol/exchange/executing-swaps.mdx +++ b/src/pages/protocol/exchange/executing-swaps.mdx @@ -1,4 +1,5 @@ --- +title: "Executing Swaps" description: Learn how to execute swaps and quote prices on Tempo's Stablecoin DEX with exact-in and exact-out swap functions and slippage protection. --- diff --git a/src/pages/protocol/exchange/index.mdx b/src/pages/protocol/exchange/index.mdx index b817eb76..edc36378 100644 --- a/src/pages/protocol/exchange/index.mdx +++ b/src/pages/protocol/exchange/index.mdx @@ -1,4 +1,5 @@ --- +title: "Stablecoin DEX" description: Tempo's enshrined decentralized exchange for trading between stablecoins with optimal pricing, limit orders, and flip orders for liquidity provision. --- diff --git a/src/pages/protocol/exchange/providing-liquidity.mdx b/src/pages/protocol/exchange/providing-liquidity.mdx index 6b95db1a..7ba99239 100644 --- a/src/pages/protocol/exchange/providing-liquidity.mdx +++ b/src/pages/protocol/exchange/providing-liquidity.mdx @@ -1,4 +1,5 @@ --- +title: "Providing Liquidity" description: Provide liquidity on Tempo's DEX using limit orders and flip orders. Earn spreads while facilitating stablecoin trades with price-time priority. --- diff --git a/src/pages/protocol/exchange/quote-tokens.mdx b/src/pages/protocol/exchange/quote-tokens.mdx index 582b1665..e9b73ca0 100644 --- a/src/pages/protocol/exchange/quote-tokens.mdx +++ b/src/pages/protocol/exchange/quote-tokens.mdx @@ -1,4 +1,5 @@ --- +title: "Quote Tokens" description: Quote tokens determine trading pairs on Tempo's DEX. Each TIP-20 specifies a quote token, with pathUSD available as an optional neutral choice. --- diff --git a/src/pages/protocol/exchange/spec.mdx b/src/pages/protocol/exchange/spec.mdx index a940eee2..4647e7ce 100644 --- a/src/pages/protocol/exchange/spec.mdx +++ b/src/pages/protocol/exchange/spec.mdx @@ -1,4 +1,5 @@ --- +title: "Stablecoin DEX Specification" description: Technical specification for Tempo's enshrined DEX with price-time priority orderbook, flip orders, and multi-hop routing for stablecoin trading. --- diff --git a/src/pages/protocol/fees/fee-amm/index.mdx b/src/pages/protocol/fees/fee-amm/index.mdx index 62b25634..e664b63b 100644 --- a/src/pages/protocol/fees/fee-amm/index.mdx +++ b/src/pages/protocol/fees/fee-amm/index.mdx @@ -1,4 +1,5 @@ --- +title: "Fee AMM Overview" description: Understand how the Fee AMM automatically converts transaction fees between stablecoins, enabling users to pay in any supported token. --- diff --git a/src/pages/protocol/fees/index.mdx b/src/pages/protocol/fees/index.mdx index f7d48e28..cd07351d 100644 --- a/src/pages/protocol/fees/index.mdx +++ b/src/pages/protocol/fees/index.mdx @@ -1,4 +1,5 @@ --- +title: "Transaction Fees" description: Pay transaction fees in any USD stablecoin on Tempo. No native token required—fees are paid directly in TIP-20 stablecoins with automatic conversion. --- diff --git a/src/pages/protocol/fees/spec-fee-amm.mdx b/src/pages/protocol/fees/spec-fee-amm.mdx index b74bef4d..220c974b 100644 --- a/src/pages/protocol/fees/spec-fee-amm.mdx +++ b/src/pages/protocol/fees/spec-fee-amm.mdx @@ -1,4 +1,5 @@ --- +title: "Fee AMM Specification" description: Technical specification for the Fee AMM enabling automatic stablecoin conversion for transaction fees with fixed-rate swaps and MEV protection. --- diff --git a/src/pages/protocol/index.mdx b/src/pages/protocol/index.mdx index 286ff5fe..41cff05f 100644 --- a/src/pages/protocol/index.mdx +++ b/src/pages/protocol/index.mdx @@ -1,4 +1,5 @@ --- +title: "Tempo Protocol" description: Technical specifications and reference documentation for the Tempo blockchain protocol, purpose-built for global payments at scale. --- diff --git a/src/pages/protocol/tip20-rewards/overview.mdx b/src/pages/protocol/tip20-rewards/overview.mdx index 8b053305..3ba42d89 100644 --- a/src/pages/protocol/tip20-rewards/overview.mdx +++ b/src/pages/protocol/tip20-rewards/overview.mdx @@ -1,4 +1,5 @@ --- +title: "TIP-20 Rewards" description: Built-in reward distribution mechanism for TIP-20 tokens enabling efficient, opt-in proportional rewards to token holders at scale. --- diff --git a/src/pages/protocol/tip20-rewards/spec.mdx b/src/pages/protocol/tip20-rewards/spec.mdx index 2e37a8c0..ba797fa4 100644 --- a/src/pages/protocol/tip20-rewards/spec.mdx +++ b/src/pages/protocol/tip20-rewards/spec.mdx @@ -1,4 +1,5 @@ --- +title: "TIP-20 Rewards Specification" description: Technical specification for the TIP-20 reward distribution system using reward-per-token accumulator pattern for scalable pro-rata rewards. --- diff --git a/src/pages/protocol/tip20/overview.mdx b/src/pages/protocol/tip20/overview.mdx index f75190be..1f1aad08 100644 --- a/src/pages/protocol/tip20/overview.mdx +++ b/src/pages/protocol/tip20/overview.mdx @@ -1,4 +1,5 @@ --- +title: "TIP-20 Token Standard" description: TIP-20 is Tempo's native token standard for stablecoins with built-in fee payment, payment lanes, transfer memos, and compliance policies. --- diff --git a/src/pages/protocol/tip20/spec.mdx b/src/pages/protocol/tip20/spec.mdx index 9f99de47..6292796e 100644 --- a/src/pages/protocol/tip20/spec.mdx +++ b/src/pages/protocol/tip20/spec.mdx @@ -1,4 +1,5 @@ --- +title: "TIP-20 Specification" description: Technical specification for TIP-20, the optimized token standard extending ERC-20 with memos, rewards distribution, and policy integration. --- diff --git a/src/pages/protocol/tip403/overview.mdx b/src/pages/protocol/tip403/overview.mdx index 28fb50e3..e568bf73 100644 --- a/src/pages/protocol/tip403/overview.mdx +++ b/src/pages/protocol/tip403/overview.mdx @@ -1,4 +1,5 @@ --- +title: "TIP-403 Policy Registry" description: Learn how TIP-403 enables TIP-20 tokens to enforce access control through a shared policy registry with whitelist and blacklist support. --- diff --git a/src/pages/protocol/tip403/spec.mdx b/src/pages/protocol/tip403/spec.mdx index 397dd567..1052e2bf 100644 --- a/src/pages/protocol/tip403/spec.mdx +++ b/src/pages/protocol/tip403/spec.mdx @@ -1,4 +1,5 @@ --- +title: "TIP-403 Specification" description: Technical specification for TIP-403, the policy registry system enabling whitelist and blacklist access control for TIP-20 tokens on Tempo. --- diff --git a/src/pages/protocol/tips/index.mdx b/src/pages/protocol/tips/index.mdx index 882db858..65e0a811 100644 --- a/src/pages/protocol/tips/index.mdx +++ b/src/pages/protocol/tips/index.mdx @@ -1,3 +1,8 @@ +--- +title: "Tempo Improvement Proposals" +description: "Browse Tempo Improvement Proposals (TIPs), the design documents that specify changes to the Tempo protocol." +--- + import { TipsList } from '../../../components/TipsList' # Tempo Improvement Proposals (TIPs) diff --git a/src/pages/protocol/transactions/AccountKeychain.mdx b/src/pages/protocol/transactions/AccountKeychain.mdx index e96e78ee..7b37cbdf 100644 --- a/src/pages/protocol/transactions/AccountKeychain.mdx +++ b/src/pages/protocol/transactions/AccountKeychain.mdx @@ -1,4 +1,5 @@ --- +title: "Account Keychain" description: Technical specification for the Account Keychain precompile managing access keys with expiry timestamps, spending limits, and call-scope restrictions. --- diff --git a/src/pages/protocol/transactions/index.mdx b/src/pages/protocol/transactions/index.mdx index a218f46b..ad7985de 100644 --- a/src/pages/protocol/transactions/index.mdx +++ b/src/pages/protocol/transactions/index.mdx @@ -1,4 +1,5 @@ --- +title: "Tempo Transactions" description: Learn about Tempo Transactions, a new EIP-2718 transaction type with passkey support, fee sponsorship, batching, and concurrent execution. --- diff --git a/src/pages/protocol/transactions/spec-tempo-transaction.mdx b/src/pages/protocol/transactions/spec-tempo-transaction.mdx index 9a7603c7..ffb4647b 100644 --- a/src/pages/protocol/transactions/spec-tempo-transaction.mdx +++ b/src/pages/protocol/transactions/spec-tempo-transaction.mdx @@ -1,4 +1,5 @@ --- +title: "Tempo Transaction Specification" description: Technical specification for the Tempo transaction type (EIP-2718) with WebAuthn signatures, parallelizable nonces, gas sponsorship, and batching. --- diff --git a/src/pages/quickstart/connection-details.mdx b/src/pages/quickstart/connection-details.mdx index 5d77c319..207bdc5a 100644 --- a/src/pages/quickstart/connection-details.mdx +++ b/src/pages/quickstart/connection-details.mdx @@ -1,4 +1,5 @@ --- +title: "Connect to the Network" description: Connect to Tempo using browser wallets, CLI tools, or direct RPC endpoints. Get chain ID, URLs, and configuration details. mipd: true interactive: true diff --git a/src/pages/quickstart/developer-tools.mdx b/src/pages/quickstart/developer-tools.mdx index cf4ddf71..028c02b7 100644 --- a/src/pages/quickstart/developer-tools.mdx +++ b/src/pages/quickstart/developer-tools.mdx @@ -1,4 +1,5 @@ --- +title: "Developer Tools" description: Explore Tempo's developer ecosystem with indexers, embedded wallets, node infrastructure, and analytics partners for building payment apps. --- diff --git a/src/pages/quickstart/evm-compatibility.mdx b/src/pages/quickstart/evm-compatibility.mdx index 84c2dee6..00a1186c 100644 --- a/src/pages/quickstart/evm-compatibility.mdx +++ b/src/pages/quickstart/evm-compatibility.mdx @@ -1,4 +1,5 @@ --- +title: "EVM Differences" description: Learn how Tempo differs from Ethereum. Understand wallet behavior, fee token selection, VM layer changes, and fast finality consensus. --- diff --git a/src/pages/quickstart/faucet.mdx b/src/pages/quickstart/faucet.mdx index dbcf2520..6c0cb744 100644 --- a/src/pages/quickstart/faucet.mdx +++ b/src/pages/quickstart/faucet.mdx @@ -1,4 +1,5 @@ --- +title: "Faucet" description: Get free test stablecoins on Tempo Testnet. Connect your wallet or enter any address to receive pathUSD, AlphaUSD, BetaUSD, and ThetaUSD. mipd: true interactive: true diff --git a/src/pages/quickstart/integrate-tempo.mdx b/src/pages/quickstart/integrate-tempo.mdx index 4cba2811..53fa8fa7 100644 --- a/src/pages/quickstart/integrate-tempo.mdx +++ b/src/pages/quickstart/integrate-tempo.mdx @@ -1,4 +1,5 @@ --- +title: "Integrate Tempo" description: Build on Tempo Testnet. Connect to the network, explore SDKs, and follow guides for accounts, payments, and stablecoin issuance. interactive: true --- diff --git a/src/pages/quickstart/predeployed-contracts.mdx b/src/pages/quickstart/predeployed-contracts.mdx index 15a2e34b..938010d3 100644 --- a/src/pages/quickstart/predeployed-contracts.mdx +++ b/src/pages/quickstart/predeployed-contracts.mdx @@ -1,4 +1,5 @@ --- +title: "Predeployed Contracts" description: Discover Tempo's predeployed system contracts including TIP-20 Factory, Fee Manager, Stablecoin DEX, and standard utilities like Multicall3. --- diff --git a/src/pages/quickstart/wallet-developers.mdx b/src/pages/quickstart/wallet-developers.mdx index c2ddab9d..d23e2efd 100644 --- a/src/pages/quickstart/wallet-developers.mdx +++ b/src/pages/quickstart/wallet-developers.mdx @@ -1,4 +1,5 @@ --- +title: "Wallet Integration Guide" description: Integrate Tempo into your wallet. Handle fee tokens, configure gas display, and deliver enhanced stablecoin payment experiences for users. showOutline: 1 --- diff --git a/src/pages/sdk/foundry/index.mdx b/src/pages/sdk/foundry/index.mdx index 3cfd098e..0608b395 100644 --- a/src/pages/sdk/foundry/index.mdx +++ b/src/pages/sdk/foundry/index.mdx @@ -1,4 +1,5 @@ --- +title: "Foundry SDK" description: Build, test, and deploy smart contracts on Tempo using Foundry. Access Tempo protocol features with forge, cast, anvil, and chisel. --- diff --git a/src/pages/sdk/go/index.mdx b/src/pages/sdk/go/index.mdx index 0d64006a..9f92227a 100644 --- a/src/pages/sdk/go/index.mdx +++ b/src/pages/sdk/go/index.mdx @@ -1,4 +1,5 @@ --- +title: "Go SDK" description: Build blockchain apps with the Tempo Go SDK. Send transactions, batch calls, and handle fee sponsorship with idiomatic Go code. --- diff --git a/src/pages/sdk/index.mdx b/src/pages/sdk/index.mdx index 0bda17cd..e3110c6a 100644 --- a/src/pages/sdk/index.mdx +++ b/src/pages/sdk/index.mdx @@ -1,4 +1,5 @@ --- +title: "SDKs" description: Integrate Tempo into your applications with SDKs for TypeScript, Go, Rust, and Foundry. Build blockchain apps in your preferred language. --- diff --git a/src/pages/sdk/python/index.mdx b/src/pages/sdk/python/index.mdx index e961883c..57aaf3a9 100644 --- a/src/pages/sdk/python/index.mdx +++ b/src/pages/sdk/python/index.mdx @@ -1,4 +1,5 @@ --- +title: "Python SDK" description: Build blockchain apps with the Tempo Python SDK. Send transactions, batch calls, and handle fee sponsorship using web3.py. --- diff --git a/src/pages/sdk/rust/index.mdx b/src/pages/sdk/rust/index.mdx index 689b162e..3e7030b9 100644 --- a/src/pages/sdk/rust/index.mdx +++ b/src/pages/sdk/rust/index.mdx @@ -1,4 +1,5 @@ --- +title: "Rust SDK" description: Build blockchain apps with the Tempo Rust SDK using Alloy. Query chains, send transactions, and manage tokens with type-safe Rust code. --- diff --git a/src/pages/sdk/typescript/index.mdx b/src/pages/sdk/typescript/index.mdx index 9a16325a..5ad1dd27 100644 --- a/src/pages/sdk/typescript/index.mdx +++ b/src/pages/sdk/typescript/index.mdx @@ -1,4 +1,5 @@ --- +title: "TypeScript SDKs" description: Build blockchain apps with Tempo using Viem and Wagmi. Send transactions, manage tokens, and integrate AMM pools with TypeScript. --- diff --git a/src/pages/sdk/typescript/prool/setup.mdx b/src/pages/sdk/typescript/prool/setup.mdx index 38bee552..d1f0f006 100644 --- a/src/pages/sdk/typescript/prool/setup.mdx +++ b/src/pages/sdk/typescript/prool/setup.mdx @@ -1,4 +1,5 @@ --- +title: "Prool Setup" description: Set up infinite pooled Tempo node instances in TypeScript with Prool for testing and local development of blockchain applications. ---