Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/pages/docs/guide/bridge-bungee.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ description: Bridge tokens to and from Tempo using Bungee. Covers Bungee Link, d

[Bungee](https://www.bungee.exchange/) is a cross-chain routing protocol built by the [SOCKET](https://docs.socket.tech/) team. For Tempo, the recommended integration path is Bungee Deposit: request a quote, execute the returned source-chain transaction, and track the request until Bungee delivers funds on the destination chain.

If you are bringing an existing ERC-20 to Tempo, first decide whether to preserve it as the canonical asset behind a bridge adapter or migrate issuance to native TIP-20. See [Migrate an ERC-20 to TIP-20](/docs/guide/issuance/migrate-erc20-to-tip20).

Tempo's Bungee chain ID is **`4217`**.

## How Bungee Deposit works
Expand Down
2 changes: 2 additions & 0 deletions src/pages/docs/guide/bridge-layerzero.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ There are two flavors of OFT on Tempo:

Both use the same underlying LayerZero endpoint on Tempo.

If you are bringing an existing ERC-20 to Tempo, first decide whether to preserve it as the canonical asset behind a bridge adapter or migrate issuance to native TIP-20. See [Migrate an ERC-20 to TIP-20](/docs/guide/issuance/migrate-erc20-to-tip20).

## USDC.e and native USDC

USDC.e is the bridged representation of USDC on Tempo. It is backed 1:1 by native USDC in Stargate liquidity infrastructure.
Expand Down
2 changes: 2 additions & 0 deletions src/pages/docs/guide/bridge-relay.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ description: Bridge tokens to and from Tempo using Relay. Includes supported tok

[Relay](https://relay.link/) is a cross-chain payments network powered by a solver that fills bridge requests instantly. Users deposit on the source chain and receive funds on the destination chain within seconds - no lock-and-mint or messaging protocol required.

If you are bringing an existing ERC-20 to Tempo, first decide whether to preserve it as the canonical asset behind a bridge adapter or migrate issuance to native TIP-20. See [Migrate an ERC-20 to TIP-20](/docs/guide/issuance/migrate-erc20-to-tip20).

Tempo's Relay chain ID is **`4217`**.

## Contracts on Tempo
Expand Down
7 changes: 7 additions & 0 deletions src/pages/docs/guide/issuance/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,13 @@ Create and manage your own stablecoin on Tempo. Launch the token first, then con
title="Create a Stablecoin"
/>

<Card
description="Map an existing OpenZeppelin ERC-20 to native TIP-20 issuance, bridging, roles, burns, decimals, and compliance policies."
to="/docs/guide/issuance/migrate-erc20-to-tip20"
icon="lucide:arrow-right-left"
title="Migrate an ERC-20 to TIP-20"
/>

<Card
description="Mint new tokens to increase supply and distribute your stablecoin."
to="/docs/guide/issuance/mint-stablecoins"
Expand Down
378 changes: 378 additions & 0 deletions src/pages/docs/guide/issuance/migrate-erc20-to-tip20.mdx

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions src/pages/docs/quickstart/integrate-tempo.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,12 @@ Tempo is EVM-compatible and targets the **Osaka** EVM hard fork. Most Ethereum t
## Bridges and Ecosystem

<Cards>
<Card
icon="lucide:arrow-right-left"
title="Migrate an ERC-20 to TIP-20"
description="Choose native issuance, a bridge adapter, full migration, or an external lifecycle manager for an existing ERC-20."
to="/docs/guide/issuance/migrate-erc20-to-tip20"
/>
<Card
icon="lucide:bridge"
title="LayerZero Bridge"
Expand Down
4 changes: 4 additions & 0 deletions vocs.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -364,6 +364,10 @@ export default defineConfig({
text: 'Create a stablecoin',
link: '/docs/guide/issuance/create-a-stablecoin',
},
{
text: 'Migrate an ERC-20 to TIP-20',
link: '/docs/guide/issuance/migrate-erc20-to-tip20',
},
{
text: 'Mint stablecoins',
link: '/docs/guide/issuance/mint-stablecoins',
Expand Down
Loading