You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* move pages, links, images, and snippets to new IA
* Ilariae/settlement ia (#268)
* add settlement to learn section
* add settlement to buil section
* fix links
* liquidity layer code snippets
* solver snippets
* llms
---------
Co-authored-by: Ilaria Enache <ilaria@Host-009.homenet.telecomitalia.it>
* Dawn/connect index makeover (#263)
* adds connect index page to new IA
* tweaks admonition usage on /docs/build/transfers/connect/overview/
* moves timeline into snippet, left aligned
* feedback per review
* llms
* edits per feedback
* improve intro
* edits per feedback
* applies review feedback
* Apply suggestions from code review
Co-authored-by: Erin Shaben <eshaben@icloud.com>
---------
Co-authored-by: Erin Shaben <eshaben@icloud.com>
* Bring token bridge build into new ia (#279)
* adds token bridge build page in the new ai and fixes links
* Update build/transfers/token-bridge.md
Co-authored-by: Lucas Malizia <131050418+0xlukem@users.noreply.github.com>
* Update build/transfers/token-bridge.md
Co-authored-by: Lucas Malizia <131050418+0xlukem@users.noreply.github.com>
---------
Co-authored-by: Ilaria Enache <ilaria@Host-009.homenet.telecomitalia.it>
Co-authored-by: Lucas Malizia <131050418+0xlukem@users.noreply.github.com>
* switch from contract controlled transfers to transfers with messages
* remove old stuff
* llms
---------
Co-authored-by: Ilaria <43253244+ilariae@users.noreply.github.com>
Co-authored-by: Ilaria Enache <ilaria@Host-009.homenet.telecomitalia.it>
Co-authored-by: Dawn Kelly <83190195+dawnkelly09@users.noreply.github.com>
Co-authored-by: Lucas Malizia <131050418+0xlukem@users.noreply.github.com>
Co-authored-by: Martin Hofmann <martin@papermoon.io>
Copy file name to clipboardexpand all lines: build/transfers/token-bridge.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ description: Learn how to integrate Wormhole's Token Bridge for seamless multich
7
7
8
8
## Introduction
9
9
10
-
Wormhole's Token Bridge enables seamless cross-chain token transfers using a lock-and-mint mechanism. The bridge locks tokens on the source chain and mints them as wrapped assets on the destination chain. Additionally, the Token Bridge supports [contract-controlled transfers (transfers with messages)](/docs/learn/infrastructure/vaas/#token-transfer-with-message){target=\_blank}, where arbitrary byte payloads can be attached to the token transfer, enabling more complex chain interactions.
10
+
Wormhole's Token Bridge enables seamless cross-chain token transfers using a lock-and-mint mechanism. The bridge locks tokens on the source chain and mints them as wrapped assets on the destination chain. Additionally, the Token Bridge supports [Token Transfers with Messages](/docs/learn/infrastructure/vaas/#token-transfer-with-message){target=\_blank}, where arbitrary byte payloads can be attached to the token transfer, enabling more complex chain interactions.
11
11
12
12
This page outlines the core contract methods needed to integrate Token Bridge functionality into your smart contracts. To understand the theoretical workings of the Token Bridge, refer to the [Token Bridge](/docs/learn/transfers/token-bridge/){target=\_blank} page in the Learn section.
13
13
@@ -24,7 +24,7 @@ The primary functions of the Token Bridge contracts revolve around:
24
24
25
25
-**Attesting a token** - registering a new token for cross-chain transfers
26
26
-**Transferring tokens** - locking and minting tokens across chains
27
-
-**Transferring tokens with a payload** - including additional data for contract-controlled transfers
27
+
-**Transferring tokens with a payload** - including additional data with transfers
Copy file name to clipboardexpand all lines: learn/transfers/settlement/architecture.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -99,4 +99,4 @@ The protocol provides mechanisms for unlocking the fee once the bridging process
99
99
## Where to Go Next
100
100
101
101
- To learn more about available EVM functions, see the [Build on the Wormhole Liquidity Layer](/docs/build/transfers/settlement/liquidity-layer/){target=\_blank} guide
102
-
- To learn how to integrate settlement routes into your application, see the [Integrate Wormhole Settlement Routes Using the SDK](https://github.com/wormhole-foundation/demo-mayanswift){target=\_blank} tutorial
102
+
- To learn how to integrate settlement routes into your application, see the [Integrate Wormhole Settlement Routes Using the SDK](https://github.com/wormhole-foundation/demo-mayanswift){target=\_blank} tutorial
Copy file name to clipboardexpand all lines: learn/transfers/token-bridge.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ Transferring tokens across blockchain networks is challenging due to the lack of
9
9
10
10
Wormhole’s Token Bridge addresses these challenges by providing a decentralized protocol for seamless cross-chain token transfers through a lock-and-mint mechanism. Using Wormhole’s message-passing protocol, the Token Bridge allows standards-compliant tokens, like ERC-20 on Ethereum or SPL on Solana, to be transferred between different blockchains while preserving their original attributes.
11
11
12
-
Offering a more efficient, scalable, and secure alternative to traditional solutions, the Token Bridge ensures that assets retain their properties across multiple blockchain ecosystems. Additionally, it supports flexible features like [Contract Controlled Transfers](/docs/learn/infrastructure/vaas/#token-transfer-with-message){target=\_blank}, enabling custom interactions by allowing tokens to carry additional data for smart contract integration on the destination chain.
12
+
Offering a more efficient, scalable, and secure alternative to traditional solutions, the Token Bridge ensures that assets retain their properties across multiple blockchain ecosystems. Additionally, it supports flexible features like [Token Transfers with Messages](/docs/learn/infrastructure/vaas/#token-transfer-with-message){target=\_blank}, enabling custom interactions by allowing tokens to carry additional data for smart contract integration on the destination chain.
13
13
14
14
This page introduces the core concepts and functions of Wormhole’s Token Bridge, explaining how it operates, its key features, and how it enables secure and efficient cross-chain token transfers.
15
15
@@ -21,7 +21,7 @@ Before a token can be transferred to a new chain, the token’s metadata must be
21
21
22
22
While the [Core Contract](/docs/learn/infrastructure/core-contracts/){target=\_blank} has no specific receiver by default, transfers sent through the Token Bridge do have a specific receiver chain and address to ensure the tokens are minted to the expected recipient.
23
23
24
-
In addition to standard token transfers, the Token Bridge supports [Contract Controlled Transfers](/docs/learn/infrastructure/vaas/#token-transfer-with-message){target=\_blank}. This functionality allows users to attach additional data to token transfers, enabling more complex interactions with smart contracts on the destination chain. For instance, a token transfer can include a payload that triggers specific actions, such as interacting with a decentralized exchange (DEX) or automated market maker (AMM).
24
+
In addition to standard token transfers, the Token Bridge supports [Token Transfers with Messages](/docs/learn/infrastructure/vaas/#token-transfer-with-message){target=\_blank}. This functionality allows users to attach additional data to token transfers, enabling more complex interactions with smart contracts on the destination chain. For instance, a token transfer can include a payload that triggers specific actions, such as interacting with a decentralized exchange (DEX) or automated market maker (AMM).
Copy file name to clipboardexpand all lines: llms.txt
+4-4
Original file line number
Diff line number
Diff line change
@@ -13992,7 +13992,7 @@ description: Learn how to integrate Wormhole's Token Bridge for seamless multich
13992
13992
13993
13993
## Introduction
13994
13994
13995
-
Wormhole's Token Bridge enables seamless cross-chain token transfers using a lock-and-mint mechanism. The bridge locks tokens on the source chain and mints them as wrapped assets on the destination chain. Additionally, the Token Bridge supports [contract-controlled transfers (transfers with messages)](/docs/learn/infrastructure/vaas/#token-transfer-with-message){target=\_blank}, where arbitrary byte payloads can be attached to the token transfer, enabling more complex chain interactions.
13995
+
Wormhole's Token Bridge enables seamless cross-chain token transfers using a lock-and-mint mechanism. The bridge locks tokens on the source chain and mints them as wrapped assets on the destination chain. Additionally, the Token Bridge supports [Token Transfers with Messages](/docs/learn/infrastructure/vaas/#token-transfer-with-message){target=\_blank}, where arbitrary byte payloads can be attached to the token transfer, enabling more complex chain interactions.
13996
13996
13997
13997
This page outlines the core contract methods needed to integrate Token Bridge functionality into your smart contracts. To understand the theoretical workings of the Token Bridge, refer to the [Token Bridge](/docs/learn/transfers/token-bridge/){target=\_blank} page in the Learn section.
13998
13998
@@ -14009,7 +14009,7 @@ The primary functions of the Token Bridge contracts revolve around:
14009
14009
14010
14010
- **Attesting a token** - registering a new token for cross-chain transfers
14011
14011
- **Transferring tokens** - locking and minting tokens across chains
14012
-
- **Transferring tokens with a payload** - including additional data for contract-controlled transfers
14012
+
- **Transferring tokens with a payload** - including additional data with transfers
14013
14013
14014
14014
### Attest a token
14015
14015
@@ -16904,7 +16904,7 @@ Transferring tokens across blockchain networks is challenging due to the lack of
16904
16904
16905
16905
Wormhole’s Token Bridge addresses these challenges by providing a decentralized protocol for seamless cross-chain token transfers through a lock-and-mint mechanism. Using Wormhole’s message-passing protocol, the Token Bridge allows standards-compliant tokens, like ERC-20 on Ethereum or SPL on Solana, to be transferred between different blockchains while preserving their original attributes.
16906
16906
16907
-
Offering a more efficient, scalable, and secure alternative to traditional solutions, the Token Bridge ensures that assets retain their properties across multiple blockchain ecosystems. Additionally, it supports flexible features like [Contract Controlled Transfers](/docs/learn/infrastructure/vaas/#token-transfer-with-message){target=\_blank}, enabling custom interactions by allowing tokens to carry additional data for smart contract integration on the destination chain.
16907
+
Offering a more efficient, scalable, and secure alternative to traditional solutions, the Token Bridge ensures that assets retain their properties across multiple blockchain ecosystems. Additionally, it supports flexible features like [Token Transfers with Messages](/docs/learn/infrastructure/vaas/#token-transfer-with-message){target=\_blank}, enabling custom interactions by allowing tokens to carry additional data for smart contract integration on the destination chain.
16908
16908
16909
16909
This page introduces the core concepts and functions of Wormhole’s Token Bridge, explaining how it operates, its key features, and how it enables secure and efficient cross-chain token transfers.
16910
16910
@@ -16916,7 +16916,7 @@ Before a token can be transferred to a new chain, the token’s metadata must be
16916
16916
16917
16917
While the [Core Contract](/docs/learn/infrastructure/core-contracts/){target=\_blank} has no specific receiver by default, transfers sent through the Token Bridge do have a specific receiver chain and address to ensure the tokens are minted to the expected recipient.
16918
16918
16919
-
In addition to standard token transfers, the Token Bridge supports [Contract Controlled Transfers](/docs/learn/infrastructure/vaas/#token-transfer-with-message){target=\_blank}. This functionality allows users to attach additional data to token transfers, enabling more complex interactions with smart contracts on the destination chain. For instance, a token transfer can include a payload that triggers specific actions, such as interacting with a decentralized exchange (DEX) or automated market maker (AMM).
16919
+
In addition to standard token transfers, the Token Bridge supports [Token Transfers with Messages](/docs/learn/infrastructure/vaas/#token-transfer-with-message){target=\_blank}. This functionality allows users to attach additional data to token transfers, enabling more complex interactions with smart contracts on the destination chain. For instance, a token transfer can include a payload that triggers specific actions, such as interacting with a decentralized exchange (DEX) or automated market maker (AMM).
0 commit comments