From 767993d2cfa8432bb15a438c30c2fa19c511f777 Mon Sep 17 00:00:00 2001 From: Ilaria Enache Date: Tue, 30 Jul 2024 16:56:07 +0200 Subject: [PATCH 01/54] messaging section setup --- learn/.pages | 1 + learn/infrastructure/relayer.md | 116 -------------------------------- learn/messaging/.pages | 4 ++ learn/messaging/index.md | 4 ++ learn/messaging/overview.md | 6 ++ 5 files changed, 15 insertions(+), 116 deletions(-) delete mode 100644 learn/infrastructure/relayer.md create mode 100644 learn/messaging/.pages create mode 100644 learn/messaging/index.md create mode 100644 learn/messaging/overview.md diff --git a/learn/.pages b/learn/.pages index f2292044a..827680338 100644 --- a/learn/.pages +++ b/learn/.pages @@ -5,3 +5,4 @@ nav: - 'Security': 'security.md' - 'Architecture Overview': 'architecture.md' - infrastructure + - messaging diff --git a/learn/infrastructure/relayer.md b/learn/infrastructure/relayer.md deleted file mode 100644 index a9dfb48c6..000000000 --- a/learn/infrastructure/relayer.md +++ /dev/null @@ -1,116 +0,0 @@ ---- -title: Relayers -description: Discover the role and types of relayers in the Wormhole network, including client-side, specialized, and standard relayers, facilitating secure cross-chain communication. ---- - -# Relayers - -This documentation provides a comprehensive guide to Relayers within the Wormhole network, describing their role, types, and benefits in facilitating cross-chain processes. - -Relayers in the Wormhole context are processes that deliver Verifiable Action Approvals ([VAAs](#){target=\_blank}) to their destination, playing a crucial role in Wormhole's security model. They can't compromise security, only liveness, and act as delivery mechanisms for VAAs without the capacity to tamper with the outcome. - -There are three primary types of relayers discussed: - -- **Client-side Relaying** - a cost-efficient, no-backend-infrastructure approach relying on user-facing front ends. It provides a simple solution, although it can complicate the user experience due to the manual steps involved -- **Specialized Relayers** - backend components that handle parts of the cross-chain process, offering a smoother user experience and allowing off-chain calculations to reduce gas costs. These relayers could operate through direct listening to the Guardian Network (Spy Relaying) or by providing a REST endpoint to accept VAAs to be relayed (REST Relaying) -- **Standard Relayers** - a decentralized relayer network that can deliver arbitrary VAAs, reducing the developer's need to develop, host, or maintain relayers. However, they require all calculations to be done on-chain and might be less gas-efficient - -## Fundamentals - -This section highlights the crucial principles underpinning the operation and handling of relayers within the Wormhole network. - -Relayers are fundamentally untrusted entities within the network. This means that while they don't require your trust, they shouldn't be trusted implicitly. They function as delivery mechanisms, transporting Verifiable Action Approvals (VAAs) from their source to their destination. - -Key characteristics of VAAs include: - -- Public emission from the Guardian Network -- Authentication through signatures from the Guardian Network -- Verifiability by any entity or any Wormhole Core Contract -- As a result of these characteristics, anyone can pick up a VAA and deliver it anywhere, but no one can alter the VAA content without invalidating the signatures - -When designing contracts, it's crucial to only trust information contained within your contract or a VAA. Relying on information from a relayer could expose you to untrusted input attacks. - -Advanced strategies can involve relayers performing untrusted off-chain computation passed into the destination contract. These strategies can optimize gas costs but also create attack vectors if not used correctly. - -In summary, the design of a relayer should ensure that there's a single, deterministic way to process messages in your protocol. In an optimally designed protocol, relayers should have a 'correct' implementation, mirroring "crank turner" processes used elsewhere in blockchain. - -## Client-side Relaying - -Client-side relaying relies on user-facing front ends, such as a webpage or a wallet, to complete the cross-chain process. - -**Key Features** - -- **Cost-Efficiency** - users only pay the transaction fee for the second transaction, eliminating any additional costs -- **No Backend Infrastructure** - the process is completely client-based, eliminating the need for a backend relaying infrastructure - -**Implementation** - -Users themselves carry out the three steps of the cross-chain process: - -1. Perform an action on chain A -2. Retrieve the resulting VAA from the Guardian Network -3. Perform an action on chain B using the VAA - -**Considerations** - -!!! note - Though simple, this type of relaying is generally not recommended if your aim is a highly polished user experience. It can, however, be useful for getting a Minimum Viable Product (MVP) up and running. - -- Users must sign all required transactions with their own wallet -- Users must have funds to pay the transaction fees on every chain involved -- The user experience may be cumbersome due to the manual steps involved - -## Specialized Relayers - -Specialized relayers are purpose-built components within the Wormhole protocol, designed to relay messages for specific applications. They are capable of performing off-chain computations and can be customized to suit a variety of use cases. - -**Key Features** - -- **Optimization** - capable of performing untrusted off-chain computations which can optimize gas costs -- **Customizability** - allows for specific strategies like batching, conditional delivery, multi-chain deliveries, and more -- **Incentive Structure** - developers have the freedom to design an incentive structure suitable for their application -- **Enhanced UX** - the ability to perform steps 2 and 3 of the cross-chain process on behalf of the user can simplify the user experience - -**Implementation** - -!!! note - To make the development of specialized relayers easier, a plugin relayer is available in the [main Wormhole repository](#){target=\_blank}. This sets up the basic infrastructure for relaying, allowing developers to focus on implementing the specific logic for their application. - -There are two main methods of setting up a specialized relayer: - -- **Spy Relaying** - involves listening directly to the Guardian Network via a spy -- **REST Relaying** - provides a REST endpoint to accept a VAA that should be relayed - -**Considerations** - -Remember, despite their name, specialized relayers still need to be considered untrusted. VAAs are public and can be submitted by anyone, so developers should not rely on off-chain relayers to perform any computation considered "trusted." - -- Development work and hosting of relayers are required -- The fee-modeling can become complex, as relayers are responsible for paying target chain fees -- Relayers are responsible for liveness, adding dependency for the cross-chain application - -## Standard Relayers - -Standard relayers are a component of a decentralized network in the Wormhole protocol, facilitating the delivery of Verifiable Action Approvals (VAAs) to recipient contracts compatible with the standard relayer API. - -**Key Features** - -- **Lower Operational Costs** - no need to develop, host, or maintain individual relayers -- **Simplified Integration** - because there is no need to run a relayer, integration is as simple as calling a function and implementing an interface - -**Implementation** - -The standard relayer integration involves two key steps: - -- **Delivery Request** - request delivery from the Wormhole Relay Ecosystem Contract -- **Relay Reception** - implement a [receiveWormholeMessages](#){target=\_blank} function within their contracts. This function is invoked upon successful relay of the VAA - -**Considerations** - -!!! note - Developers should note that the choice of relayers depends their project's specific requirements and constraints. Standard relayers offer simplicity and convenience but limit customization and optimization opportunities compared to specialized relayers. - -- All computations are performed on-chain -- Potentially less gas-efficient compared to specialized relayers -- Optimization features like conditional delivery, batching, off-chain calculations might be restricted -- Support may not be available for all chains \ No newline at end of file diff --git a/learn/messaging/.pages b/learn/messaging/.pages new file mode 100644 index 000000000..1c56fe9f2 --- /dev/null +++ b/learn/messaging/.pages @@ -0,0 +1,4 @@ +title: Messaging +nav: + - index.md + - 'Overview': 'overview.md' \ No newline at end of file diff --git a/learn/messaging/index.md b/learn/messaging/index.md new file mode 100644 index 000000000..61e80317a --- /dev/null +++ b/learn/messaging/index.md @@ -0,0 +1,4 @@ +--- +title: TODO +description: TODO +--- diff --git a/learn/messaging/overview.md b/learn/messaging/overview.md new file mode 100644 index 000000000..2ecbde540 --- /dev/null +++ b/learn/messaging/overview.md @@ -0,0 +1,6 @@ +--- +title: Overview +description: +--- + +# Overview \ No newline at end of file From 8168e0598d49784eb473b7c80d7180db5d7f53bc Mon Sep 17 00:00:00 2001 From: Ilaria Enache Date: Tue, 30 Jul 2024 17:12:44 +0200 Subject: [PATCH 02/54] core contracts page setup --- learn/messaging/.pages | 3 ++- learn/messaging/core-contracts.md | 4 ++++ 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 learn/messaging/core-contracts.md diff --git a/learn/messaging/.pages b/learn/messaging/.pages index 1c56fe9f2..2cfcb348a 100644 --- a/learn/messaging/.pages +++ b/learn/messaging/.pages @@ -1,4 +1,5 @@ title: Messaging nav: - index.md - - 'Overview': 'overview.md' \ No newline at end of file + - 'Overview': 'overview.md' + - 'Core Contracts': 'core-contracts.md' \ No newline at end of file diff --git a/learn/messaging/core-contracts.md b/learn/messaging/core-contracts.md new file mode 100644 index 000000000..79bbc5633 --- /dev/null +++ b/learn/messaging/core-contracts.md @@ -0,0 +1,4 @@ +--- +title: Core Contracts +description: +--- \ No newline at end of file From 1a886f35fa8c23303cab540250a9f130cbd6e391 Mon Sep 17 00:00:00 2001 From: Ilaria Enache Date: Tue, 30 Jul 2024 17:44:28 +0200 Subject: [PATCH 03/54] core contracts and bridges content --- .../messaging/core-contracts/receiving.js | 1 + .../learn/messaging/core-contracts/sending.js | 5 ++ learn/messaging/.pages | 3 +- learn/messaging/core-contracts.md | 88 ++++++++++++++++++- learn/messaging/token-nft-bridge.md | 35 ++++++++ 5 files changed, 130 insertions(+), 2 deletions(-) create mode 100644 .snippets/code/learn/messaging/core-contracts/receiving.js create mode 100644 .snippets/code/learn/messaging/core-contracts/sending.js create mode 100644 learn/messaging/token-nft-bridge.md diff --git a/.snippets/code/learn/messaging/core-contracts/receiving.js b/.snippets/code/learn/messaging/core-contracts/receiving.js new file mode 100644 index 000000000..0f7d4485d --- /dev/null +++ b/.snippets/code/learn/messaging/core-contracts/receiving.js @@ -0,0 +1 @@ +parseAndVerifyVAA(byte[] VAA) \ No newline at end of file diff --git a/.snippets/code/learn/messaging/core-contracts/sending.js b/.snippets/code/learn/messaging/core-contracts/sending.js new file mode 100644 index 000000000..52f179a0f --- /dev/null +++ b/.snippets/code/learn/messaging/core-contracts/sending.js @@ -0,0 +1,5 @@ +publishMessage( + int nonce, + byte[] payload, + int consistencyLevel +) returns int sequenceNumber \ No newline at end of file diff --git a/learn/messaging/.pages b/learn/messaging/.pages index 2cfcb348a..fe7ef8cc4 100644 --- a/learn/messaging/.pages +++ b/learn/messaging/.pages @@ -2,4 +2,5 @@ title: Messaging nav: - index.md - 'Overview': 'overview.md' - - 'Core Contracts': 'core-contracts.md' \ No newline at end of file + - 'Core Contracts': 'core-contracts.md' + - 'Token and NFT Bridge': 'token-nft-bridge.md' \ No newline at end of file diff --git a/learn/messaging/core-contracts.md b/learn/messaging/core-contracts.md index 79bbc5633..1db02b34d 100644 --- a/learn/messaging/core-contracts.md +++ b/learn/messaging/core-contracts.md @@ -1,4 +1,90 @@ --- title: Core Contracts description: ---- \ No newline at end of file +--- + + + + +# Core Contracts + +The Core Contracts are the mechanism by which all Wormhole messages are emitted. All cross chain applications either interact directly with the Core Contract or interact with another contract that does. There is one Core Contract on each blockchain in the ecosystem, and this is the contract which the Guardians are required to observe. The Core Contract is the contract that ultimately emits the messages the [Guardians](#){target=\_blank} pick up as an [Observation](#){target=\_blank}. + +In general, Core Contracts are simple and can be broken down to a sending and receiving side, which we'll define next. + +## Sending + +Currently there are no fees to publish a message (with the exception of publishing on Solana) but this is not guaranteed to always be the case in the future. + +The implementation strategy for publishMessage differs by chain, but the general strategy consists of the Core Contract posting the emitterAddress (the contract which called publishMessage), sequenceNumber, and consistencyLevel into the blockchain logs. Once the desired consistencyLevel has been reached and the message passes all of the Guardians' optional checks, the Guardian Network will produce the requested VAAs. + +The method signature for publishing messages: + +```js +--8<-- 'code/learn/messaging/core-contracts/sending.js' +``` + +#### Parameters + +**payload** + +The content of the emitted message, an arbitrary byte array. It may be capped to a certain maximum length due to the constraints of individual blockchains. + +**consistencyLevel** + +!!! note + Some advanced integrators may want to get messages before finality, which is where the `consistency_level` field offers chain-specific flexibility. + +The `consistency_level` can be considered as a numeric `enum` data type where the value is treated differently for different chains. + +It describes the level of finality to reach before the guardians will observe and attest the emitted event. This is a defense against reorgs and rollbacks since a transaction, once considered `final`, is guaranteed not to have the state changes it caused be rolled back. + +Different chains use different consensus mechanisms, so there are different finality assumptions with each one, see the options for finality in the [Environments](#){target=\_blank} pages. + +**nonce** + +A free integer field that can be used however the developer would like. Note that a different `nonce` will result in a different digest. + +#### Returns + +**sequenceNumber** + +A unique number that increments for every message for a given emitter (and implicitly chain). This combined with the emitter address and emitter chain ID allows the VAA for this message to be queried from the [APIs](#){target=\_blank}. + +## Receiving + +The method signature for receiving messages, encoded as a VAA + +```js +--8<-- 'code/learn/messaging/core-contracts/receiving.js' +``` + +When passed a VAA, this function will either return the payload and associated metadata for the VAA or throw an exception. An exception should only ever throw if the VAA fails signature verification, indicating the VAA is invalid or inauthentic in some form. + +!!! note + A developer should take care to make sure this method is called during the execution of a transaction where a VAA is passed to ensure the signatures are checked and verified. + +## Multicast + +Please notice that there is no destination address or chain in these functions. + +VAAs simply attest that "this contract on this chain said this thing." Therefore, VAAs are multicast by default and will be verified as authentic on any chain they are brought to. + +This multicast-by-default model is integral to the design. Having this multicast capacity makes it easy to synchronize state across the entire ecosystem, because a single blockchain can make its data available to every chain in a single action with low latency. This reduces the complexity of the n^2 problems encountered by routing data to a large number of blockchains. + +This does not mean an application _cannot_ specify a destination address or chain. For example the Token Bridge and Standard Relayer contracts require that some destination details are passed and verified on the destination chain. + +Because the VAA creation is separate from relaying, there is no _additional_ cost to the multicast model when a single chain is being targeted. If the data isn't needed on a certain blockchain, don't relay it there, and it won't cost anything. + diff --git a/learn/messaging/token-nft-bridge.md b/learn/messaging/token-nft-bridge.md new file mode 100644 index 000000000..b314ecc03 --- /dev/null +++ b/learn/messaging/token-nft-bridge.md @@ -0,0 +1,35 @@ +--- +title: Core Contracts +description: +--- + + + +# Token and NFT Bridge + +## Token Bridge + +!!! note + Before a token transfer can be made, the token being transfered must exist as a wrapped asset on the target chain. This is done by [Attesting](#){target=\_blank} the token details on the target chain. + +The Token Bridge contract allows token transfers between blockchains through a lock and mint mechanism, using the [Core Contract](/learn/messaging/core-contracts/){target=\_blank} with a specific [payload](#){target=\_blank} to pass information about the transfer. + +The Token Bridge also supports sending tokens with some additional data in the form of arbitrary byte payload attached to the token transfer. This type of transfer is referred to as a [Contract Controlled Transfer](#){target=\_blank}. + +While the [Core Contract](/learn/messaging/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. + +## NFT Bridge + +The NFT Bridge functions similarly to the Token Bridge but with special rules for what may be transferred and how the wrapped version is created on the destination chain. \ No newline at end of file From b3ffb13e7198adb26ce6e290f3cb157a0aa8c3b3 Mon Sep 17 00:00:00 2001 From: Ilaria Enache Date: Tue, 30 Jul 2024 19:09:28 +0200 Subject: [PATCH 04/54] meta descriptions --- learn/messaging/core-contracts.md | 19 ++----------------- learn/messaging/token-nft-bridge.md | 20 ++++---------------- 2 files changed, 6 insertions(+), 33 deletions(-) diff --git a/learn/messaging/core-contracts.md b/learn/messaging/core-contracts.md index 1db02b34d..6bc0372ed 100644 --- a/learn/messaging/core-contracts.md +++ b/learn/messaging/core-contracts.md @@ -1,26 +1,11 @@ --- title: Core Contracts -description: +description: Discover Wormhole's Core Contracts, enabling cross-chain communication with message sending, receiving, and multicast features for efficient synchronization. --- - - - # Core Contracts -The Core Contracts are the mechanism by which all Wormhole messages are emitted. All cross chain applications either interact directly with the Core Contract or interact with another contract that does. There is one Core Contract on each blockchain in the ecosystem, and this is the contract which the Guardians are required to observe. The Core Contract is the contract that ultimately emits the messages the [Guardians](#){target=\_blank} pick up as an [Observation](#){target=\_blank}. +The Core Contracts are the mechanism by which all Wormhole messages are emitted. All cross-chain applications either interact directly with the Core Contract or interact with another contract that does. There is one Core Contract on each blockchain in the ecosystem, and this is the contract which the Guardians are required to observe. The Core Contract is the contract that ultimately emits the messages the [Guardians](#){target=\_blank} pick up as an [Observation](#){target=\_blank}. In general, Core Contracts are simple and can be broken down to a sending and receiving side, which we'll define next. diff --git a/learn/messaging/token-nft-bridge.md b/learn/messaging/token-nft-bridge.md index b314ecc03..8183beb6a 100644 --- a/learn/messaging/token-nft-bridge.md +++ b/learn/messaging/token-nft-bridge.md @@ -1,21 +1,9 @@ --- -title: Core Contracts -description: ---- +title: Token and NFT Bridge +description: Learn about Wormhole's Token and NFT Bridge for cross-chain transfers using lock and mint mechanisms, ensuring secure and efficient asset movement. - + +--- # Token and NFT Bridge From 41b82a1330961fa66abe26a9ee64948f15671c54 Mon Sep 17 00:00:00 2001 From: Ilaria Enache Date: Thu, 1 Aug 2024 12:53:25 +0200 Subject: [PATCH 05/54] cc grammarly check and overview partial content --- learn/messaging/core-contracts.md | 16 ++++++++-------- learn/messaging/overview.md | 21 ++++++++++++++++++++- 2 files changed, 28 insertions(+), 9 deletions(-) diff --git a/learn/messaging/core-contracts.md b/learn/messaging/core-contracts.md index 6bc0372ed..36d0da50b 100644 --- a/learn/messaging/core-contracts.md +++ b/learn/messaging/core-contracts.md @@ -5,15 +5,15 @@ description: Discover Wormhole's Core Contracts, enabling cross-chain communicat # Core Contracts -The Core Contracts are the mechanism by which all Wormhole messages are emitted. All cross-chain applications either interact directly with the Core Contract or interact with another contract that does. There is one Core Contract on each blockchain in the ecosystem, and this is the contract which the Guardians are required to observe. The Core Contract is the contract that ultimately emits the messages the [Guardians](#){target=\_blank} pick up as an [Observation](#){target=\_blank}. +The Core Contracts are the mechanism by which all Wormhole messages are emitted. All cross-chain applications either interact directly with the Core Contract or interact with another contract that does. There is one Core Contract on each blockchain in the ecosystem, which is the contract which the Guardians are required to observe. The Core Contract is the contract that ultimately emits the messages the [Guardians](/learn/infrastructure/guardians/){target=\_blank} pick up as an [Observation](#){target=\_blank}. -In general, Core Contracts are simple and can be broken down to a sending and receiving side, which we'll define next. +In general, Core Contracts are simple and can be broken down to a sending and receiving side, which will be defined next. ## Sending -Currently there are no fees to publish a message (with the exception of publishing on Solana) but this is not guaranteed to always be the case in the future. +Currently, there are no fees to publish a message (with the exception of publishing on Solana), but this is not guaranteed to always be the case. -The implementation strategy for publishMessage differs by chain, but the general strategy consists of the Core Contract posting the emitterAddress (the contract which called publishMessage), sequenceNumber, and consistencyLevel into the blockchain logs. Once the desired consistencyLevel has been reached and the message passes all of the Guardians' optional checks, the Guardian Network will produce the requested VAAs. +The implementation strategy for `publishMessage` differs by chain. However, the general strategy consists of the Core Contract posting the `emitterAddress` (the contract which called `publishMessage`), `sequenceNumber`, and `consistencyLevel` into the blockchain logs. Once the desired `consistencyLevel` has been reached and the message passes all of the Guardians' optional checks, the Guardian Network will produce the requested VAAs. The method signature for publishing messages: @@ -25,7 +25,7 @@ The method signature for publishing messages: **payload** -The content of the emitted message, an arbitrary byte array. It may be capped to a certain maximum length due to the constraints of individual blockchains. +The content of the emitted message is an arbitrary byte array. Due to the constraints of individual blockchains, it may be capped to a certain maximum length. **consistencyLevel** @@ -34,7 +34,7 @@ The content of the emitted message, an arbitrary byte array. It may be capped to The `consistency_level` can be considered as a numeric `enum` data type where the value is treated differently for different chains. -It describes the level of finality to reach before the guardians will observe and attest the emitted event. This is a defense against reorgs and rollbacks since a transaction, once considered `final`, is guaranteed not to have the state changes it caused be rolled back. +It describes the level of finality to reach before the Guardians will observe and attest the emitted event. This is a defense against reorgs and rollbacks since a transaction, once considered `final`, is guaranteed not to have the state changes it caused be rolled back. Different chains use different consensus mechanisms, so there are different finality assumptions with each one, see the options for finality in the [Environments](#){target=\_blank} pages. @@ -56,7 +56,7 @@ The method signature for receiving messages, encoded as a VAA --8<-- 'code/learn/messaging/core-contracts/receiving.js' ``` -When passed a VAA, this function will either return the payload and associated metadata for the VAA or throw an exception. An exception should only ever throw if the VAA fails signature verification, indicating the VAA is invalid or inauthentic in some form. +When passed a VAA, this function will either return the payload and associated metadata for the VAA or throw an exception. An exception should only ever be thrown if the VAA fails signature verification, indicating that the VAA is invalid or inauthentic in some form. !!! note A developer should take care to make sure this method is called during the execution of a transaction where a VAA is passed to ensure the signatures are checked and verified. @@ -69,7 +69,7 @@ VAAs simply attest that "this contract on this chain said this thing." Therefore This multicast-by-default model is integral to the design. Having this multicast capacity makes it easy to synchronize state across the entire ecosystem, because a single blockchain can make its data available to every chain in a single action with low latency. This reduces the complexity of the n^2 problems encountered by routing data to a large number of blockchains. -This does not mean an application _cannot_ specify a destination address or chain. For example the Token Bridge and Standard Relayer contracts require that some destination details are passed and verified on the destination chain. +This does not mean an application _cannot_ specify a destination address or chain. For example, the Token Bridge and Standard Relayer contracts require that some destination details be passed and verified on the destination chain. Because the VAA creation is separate from relaying, there is no _additional_ cost to the multicast model when a single chain is being targeted. If the data isn't needed on a certain blockchain, don't relay it there, and it won't cost anything. diff --git a/learn/messaging/overview.md b/learn/messaging/overview.md index 2ecbde540..d07db1a4e 100644 --- a/learn/messaging/overview.md +++ b/learn/messaging/overview.md @@ -3,4 +3,23 @@ title: Overview description: --- -# Overview \ No newline at end of file +# Messaging Overview + +The Messaging section covers various aspects and services related to communication protocols and systems within our platform. Each subsection provides detailed information on specific components, contracts, and bridges used for messaging and data transfer. Below is a brief overview of each subsection: + +## Core Contracts + +The Core Contracts form the backbone of Wormhole's cross-chain communication system, allowing for the emission and receipt of messages across different blockchains. Each blockchain in the ecosystem has its own Core Contract, which Guardians observe to ensure the integrity and synchronization of data. These contracts handle message sending, receiving, and multicast, providing a seamless mechanism for inter-chain communication without additional costs. + +## NTT (Non-Transferable Tokens) +_A description will be added here._ + +## Token and NFT Bridge + +The Token and NFT Bridges facilitate cross-chain transfers of both fungible tokens and non-fungible tokens (NFTs). Utilizing a lock and mint mechanism, the bridge ensures secure and efficient asset movement between blockchains. The Token Bridge allows for token transfers with specific receiver details, while the NFT Bridge handles the transfer of unique digital assets with specialized rules for creating wrapped versions on the destination chain. + +## CCTP and Circle Bridge +_A description will be added here._ + +## Gateway +_A description will be added here._ From 309c35d78eea0777201c4e6cd0ab59972e43e557 Mon Sep 17 00:00:00 2001 From: Ilaria Enache Date: Thu, 1 Aug 2024 12:55:07 +0200 Subject: [PATCH 06/54] bridge grammarly check --- learn/messaging/token-nft-bridge.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/learn/messaging/token-nft-bridge.md b/learn/messaging/token-nft-bridge.md index 8183beb6a..c792564dc 100644 --- a/learn/messaging/token-nft-bridge.md +++ b/learn/messaging/token-nft-bridge.md @@ -1,8 +1,6 @@ --- title: Token and NFT Bridge description: Learn about Wormhole's Token and NFT Bridge for cross-chain transfers using lock and mint mechanisms, ensuring secure and efficient asset movement. - - --- # Token and NFT Bridge @@ -10,7 +8,7 @@ description: Learn about Wormhole's Token and NFT Bridge for cross-chain transfe ## Token Bridge !!! note - Before a token transfer can be made, the token being transfered must exist as a wrapped asset on the target chain. This is done by [Attesting](#){target=\_blank} the token details on the target chain. + Before a token transfer can be made, the token being transferred must exist as a wrapped asset on the target chain. This is done by [Attesting](#){target=\_blank} the token details on the target chain. The Token Bridge contract allows token transfers between blockchains through a lock and mint mechanism, using the [Core Contract](/learn/messaging/core-contracts/){target=\_blank} with a specific [payload](#){target=\_blank} to pass information about the transfer. From f1133cce3bb5314866fc0ea7e6439f94ba6445c4 Mon Sep 17 00:00:00 2001 From: Ilaria Enache Date: Thu, 1 Aug 2024 14:23:30 +0200 Subject: [PATCH 07/54] minor fix --- learn/messaging/overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/learn/messaging/overview.md b/learn/messaging/overview.md index d07db1a4e..8b9ed3bab 100644 --- a/learn/messaging/overview.md +++ b/learn/messaging/overview.md @@ -11,7 +11,7 @@ The Messaging section covers various aspects and services related to communicati The Core Contracts form the backbone of Wormhole's cross-chain communication system, allowing for the emission and receipt of messages across different blockchains. Each blockchain in the ecosystem has its own Core Contract, which Guardians observe to ensure the integrity and synchronization of data. These contracts handle message sending, receiving, and multicast, providing a seamless mechanism for inter-chain communication without additional costs. -## NTT (Non-Transferable Tokens) +## NTT (Native Token Transfers) _A description will be added here._ ## Token and NFT Bridge From 0e64abf04355ed7f3da4c4002b705dd13b1f06d7 Mon Sep 17 00:00:00 2001 From: Ilaria Enache Date: Thu, 1 Aug 2024 14:24:08 +0200 Subject: [PATCH 08/54] minor fix --- learn/messaging/overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/learn/messaging/overview.md b/learn/messaging/overview.md index d07db1a4e..8b9ed3bab 100644 --- a/learn/messaging/overview.md +++ b/learn/messaging/overview.md @@ -11,7 +11,7 @@ The Messaging section covers various aspects and services related to communicati The Core Contracts form the backbone of Wormhole's cross-chain communication system, allowing for the emission and receipt of messages across different blockchains. Each blockchain in the ecosystem has its own Core Contract, which Guardians observe to ensure the integrity and synchronization of data. These contracts handle message sending, receiving, and multicast, providing a seamless mechanism for inter-chain communication without additional costs. -## NTT (Non-Transferable Tokens) +## NTT (Native Token Transfers) _A description will be added here._ ## Token and NFT Bridge From ff878ba433fc69ab25d85c9164df3e674fec44f4 Mon Sep 17 00:00:00 2001 From: Ilaria Enache Date: Thu, 1 Aug 2024 16:21:03 +0200 Subject: [PATCH 09/54] overview update --- learn/messaging/overview.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/learn/messaging/overview.md b/learn/messaging/overview.md index 8b9ed3bab..acc34ec2e 100644 --- a/learn/messaging/overview.md +++ b/learn/messaging/overview.md @@ -19,7 +19,8 @@ _A description will be added here._ The Token and NFT Bridges facilitate cross-chain transfers of both fungible tokens and non-fungible tokens (NFTs). Utilizing a lock and mint mechanism, the bridge ensures secure and efficient asset movement between blockchains. The Token Bridge allows for token transfers with specific receiver details, while the NFT Bridge handles the transfer of unique digital assets with specialized rules for creating wrapped versions on the destination chain. ## CCTP and Circle Bridge -_A description will be added here._ + +The CCTP and Circle Bridge support fast and cost-effective native USDC transfers across blockchains using Circle's Cross Chain Transfer Protocol (CCTP). While distinct from Wormhole, this protocol is enhanced by Wormhole's features such as automated relaying, gas payment on the destination chain, and native gas dropoff, making it more user-friendly. The integration can be achieved through the Wormhole Connect Widget or the Connect SDK, providing a seamless experience for developers and users. ## Gateway _A description will be added here._ From 6100604694783d2b5843643889b301ecb8c71baa Mon Sep 17 00:00:00 2001 From: Ilaria Enache Date: Tue, 6 Aug 2024 11:27:49 +0200 Subject: [PATCH 10/54] meta description --- learn/messaging/overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/learn/messaging/overview.md b/learn/messaging/overview.md index acc34ec2e..bd6c25ac2 100644 --- a/learn/messaging/overview.md +++ b/learn/messaging/overview.md @@ -1,6 +1,6 @@ --- title: Overview -description: +description: Discover Wormhole's Messaging features, including cross-chain communication, token and NFT bridges, and the Circle Bridge integration. --- # Messaging Overview From f7e8218836fe29d758b4ef1f711eadb4f6110c64 Mon Sep 17 00:00:00 2001 From: Ilaria <43253244+ilariae@users.noreply.github.com> Date: Tue, 6 Aug 2024 11:32:59 +0200 Subject: [PATCH 11/54] Update learn/messaging/core-contracts.md Co-authored-by: Erin Shaben --- learn/messaging/core-contracts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/learn/messaging/core-contracts.md b/learn/messaging/core-contracts.md index 36d0da50b..68a15e312 100644 --- a/learn/messaging/core-contracts.md +++ b/learn/messaging/core-contracts.md @@ -50,7 +50,7 @@ A unique number that increments for every message for a given emitter (and impli ## Receiving -The method signature for receiving messages, encoded as a VAA +The method signature for receiving messages, encoded as a VAA: ```js --8<-- 'code/learn/messaging/core-contracts/receiving.js' From ec087098bcf8dad13722b5aa933c4490f00bd9a2 Mon Sep 17 00:00:00 2001 From: Ilaria <43253244+ilariae@users.noreply.github.com> Date: Tue, 6 Aug 2024 11:33:06 +0200 Subject: [PATCH 12/54] Update learn/messaging/core-contracts.md Co-authored-by: Erin Shaben --- learn/messaging/core-contracts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/learn/messaging/core-contracts.md b/learn/messaging/core-contracts.md index 68a15e312..023f1b93e 100644 --- a/learn/messaging/core-contracts.md +++ b/learn/messaging/core-contracts.md @@ -13,7 +13,7 @@ In general, Core Contracts are simple and can be broken down to a sending and re Currently, there are no fees to publish a message (with the exception of publishing on Solana), but this is not guaranteed to always be the case. -The implementation strategy for `publishMessage` differs by chain. However, the general strategy consists of the Core Contract posting the `emitterAddress` (the contract which called `publishMessage`), `sequenceNumber`, and `consistencyLevel` into the blockchain logs. Once the desired `consistencyLevel` has been reached and the message passes all of the Guardians' optional checks, the Guardian Network will produce the requested VAAs. +The implementation strategy for `publishMessage` differs by chain. However, the general strategy consists of the Core Contract posting the `emitterAddress` (the contract which called `publishMessage`), `sequenceNumber`, and `consistencyLevel` into the blockchain logs. Once the desired `consistencyLevel` has been reached and the message passes all of the Guardians' optional checks, the Guardian Network will produce the requested Verified Action Approvals [VAAs]. The method signature for publishing messages: From 4148b17d72ddc2e13c8599574cda87e4c0eb253c Mon Sep 17 00:00:00 2001 From: Ilaria <43253244+ilariae@users.noreply.github.com> Date: Tue, 6 Aug 2024 11:33:13 +0200 Subject: [PATCH 13/54] Update learn/messaging/overview.md Co-authored-by: Erin Shaben --- learn/messaging/overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/learn/messaging/overview.md b/learn/messaging/overview.md index bd6c25ac2..e025ff864 100644 --- a/learn/messaging/overview.md +++ b/learn/messaging/overview.md @@ -5,7 +5,7 @@ description: Discover Wormhole's Messaging features, including cross-chain commu # Messaging Overview -The Messaging section covers various aspects and services related to communication protocols and systems within our platform. Each subsection provides detailed information on specific components, contracts, and bridges used for messaging and data transfer. Below is a brief overview of each subsection: +The Messaging section covers various aspects and services related to communication protocols and systems within the Wormhole platform. Each subsection provides detailed information on specific components, contracts, and bridges used for messaging and data transfer. Below is a brief overview of each subsection. ## Core Contracts From 1671845c9ae76db64ccb7859db6f98ed2eafe0e0 Mon Sep 17 00:00:00 2001 From: Ilaria <43253244+ilariae@users.noreply.github.com> Date: Thu, 8 Aug 2024 10:46:16 +0200 Subject: [PATCH 14/54] Update learn/messaging/core-contracts.md Co-authored-by: Dawn Kelly <83190195+dawnkelly09@users.noreply.github.com> --- learn/messaging/core-contracts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/learn/messaging/core-contracts.md b/learn/messaging/core-contracts.md index 023f1b93e..90ee9d8b7 100644 --- a/learn/messaging/core-contracts.md +++ b/learn/messaging/core-contracts.md @@ -5,7 +5,7 @@ description: Discover Wormhole's Core Contracts, enabling cross-chain communicat # Core Contracts -The Core Contracts are the mechanism by which all Wormhole messages are emitted. All cross-chain applications either interact directly with the Core Contract or interact with another contract that does. There is one Core Contract on each blockchain in the ecosystem, which is the contract which the Guardians are required to observe. The Core Contract is the contract that ultimately emits the messages the [Guardians](/learn/infrastructure/guardians/){target=\_blank} pick up as an [Observation](#){target=\_blank}. +The Core Contracts are the mechanism by which all Wormhole messages are emitted. All cross-chain applications either interact directly with the Core Contract or interact with another contract that does. Each blockchain in the ecosystem has one Core Contract. The Guardians are required to observe this group of contracts. The Core Contract is the contract that ultimately emits the messages the [Guardians](/learn/infrastructure/guardians/){target=\_blank} pick up as an [Observation](#){target=\_blank}. In general, Core Contracts are simple and can be broken down to a sending and receiving side, which will be defined next. From b6353a28b2ac7a1d6d600f7fbc2510a6a44922a4 Mon Sep 17 00:00:00 2001 From: Ilaria <43253244+ilariae@users.noreply.github.com> Date: Thu, 8 Aug 2024 10:46:30 +0200 Subject: [PATCH 15/54] Update learn/messaging/core-contracts.md Co-authored-by: Dawn Kelly <83190195+dawnkelly09@users.noreply.github.com> --- learn/messaging/core-contracts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/learn/messaging/core-contracts.md b/learn/messaging/core-contracts.md index 90ee9d8b7..84a5a6c53 100644 --- a/learn/messaging/core-contracts.md +++ b/learn/messaging/core-contracts.md @@ -7,7 +7,7 @@ description: Discover Wormhole's Core Contracts, enabling cross-chain communicat The Core Contracts are the mechanism by which all Wormhole messages are emitted. All cross-chain applications either interact directly with the Core Contract or interact with another contract that does. Each blockchain in the ecosystem has one Core Contract. The Guardians are required to observe this group of contracts. The Core Contract is the contract that ultimately emits the messages the [Guardians](/learn/infrastructure/guardians/){target=\_blank} pick up as an [Observation](#){target=\_blank}. -In general, Core Contracts are simple and can be broken down to a sending and receiving side, which will be defined next. +Core Contracts are generally simple and can be divided into sending and receiving sides, each of which will be defined next. ## Sending From de6319031a1c03f430d12f3482edeb7c7bb690ca Mon Sep 17 00:00:00 2001 From: Ilaria <43253244+ilariae@users.noreply.github.com> Date: Thu, 8 Aug 2024 10:46:38 +0200 Subject: [PATCH 16/54] Update learn/messaging/core-contracts.md Co-authored-by: Dawn Kelly <83190195+dawnkelly09@users.noreply.github.com> --- learn/messaging/core-contracts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/learn/messaging/core-contracts.md b/learn/messaging/core-contracts.md index 84a5a6c53..71a5102e1 100644 --- a/learn/messaging/core-contracts.md +++ b/learn/messaging/core-contracts.md @@ -11,7 +11,7 @@ Core Contracts are generally simple and can be divided into sending and receivin ## Sending -Currently, there are no fees to publish a message (with the exception of publishing on Solana), but this is not guaranteed to always be the case. +There are no fees to publish a message, except when publishing on Solana, but this is subject to change in the future. The implementation strategy for `publishMessage` differs by chain. However, the general strategy consists of the Core Contract posting the `emitterAddress` (the contract which called `publishMessage`), `sequenceNumber`, and `consistencyLevel` into the blockchain logs. Once the desired `consistencyLevel` has been reached and the message passes all of the Guardians' optional checks, the Guardian Network will produce the requested Verified Action Approvals [VAAs]. From 39d3492105c11454996b40ebb322ee61f15a459c Mon Sep 17 00:00:00 2001 From: Ilaria <43253244+ilariae@users.noreply.github.com> Date: Thu, 8 Aug 2024 10:47:03 +0200 Subject: [PATCH 17/54] Update learn/messaging/core-contracts.md Co-authored-by: Dawn Kelly <83190195+dawnkelly09@users.noreply.github.com> --- learn/messaging/core-contracts.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/learn/messaging/core-contracts.md b/learn/messaging/core-contracts.md index 71a5102e1..5d486c2d5 100644 --- a/learn/messaging/core-contracts.md +++ b/learn/messaging/core-contracts.md @@ -13,7 +13,12 @@ Core Contracts are generally simple and can be divided into sending and receivin There are no fees to publish a message, except when publishing on Solana, but this is subject to change in the future. -The implementation strategy for `publishMessage` differs by chain. However, the general strategy consists of the Core Contract posting the `emitterAddress` (the contract which called `publishMessage`), `sequenceNumber`, and `consistencyLevel` into the blockchain logs. Once the desired `consistencyLevel` has been reached and the message passes all of the Guardians' optional checks, the Guardian Network will produce the requested Verified Action Approvals [VAAs]. +The implementation strategy for `publishMessage` differs by chain. However, the general strategy consists of the Core Contract posting the following items to the blockchain logs: +- `emitterAddress` of the contract which made the `publishMessage` call +- `sequenceNumber` +- `consistencyLevel` + +Once the desired `consistencyLevel` has been reached and the message passes all of the Guardians' optional checks, the Guardian Network will produce the requested Verified Action Approvals [VAAs]. The method signature for publishing messages: From 35a3aa65c89e130dd70ef7d0b8d2e9a9fadd5ce1 Mon Sep 17 00:00:00 2001 From: Ilaria <43253244+ilariae@users.noreply.github.com> Date: Thu, 8 Aug 2024 10:47:31 +0200 Subject: [PATCH 18/54] Update learn/messaging/core-contracts.md Co-authored-by: Dawn Kelly <83190195+dawnkelly09@users.noreply.github.com> --- learn/messaging/core-contracts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/learn/messaging/core-contracts.md b/learn/messaging/core-contracts.md index 5d486c2d5..9b3b811cd 100644 --- a/learn/messaging/core-contracts.md +++ b/learn/messaging/core-contracts.md @@ -28,7 +28,7 @@ The method signature for publishing messages: #### Parameters -**payload** +- **payload** - the content of the emitted message is an arbitrary byte array. Due to the constraints of individual blockchains, it may be capped to a certain maximum length The content of the emitted message is an arbitrary byte array. Due to the constraints of individual blockchains, it may be capped to a certain maximum length. From 3dfe2c215a8847b2871f6e117c7bf52567a51009 Mon Sep 17 00:00:00 2001 From: Ilaria <43253244+ilariae@users.noreply.github.com> Date: Thu, 8 Aug 2024 10:47:48 +0200 Subject: [PATCH 19/54] Update learn/messaging/core-contracts.md Co-authored-by: Dawn Kelly <83190195+dawnkelly09@users.noreply.github.com> --- learn/messaging/core-contracts.md | 1 - 1 file changed, 1 deletion(-) diff --git a/learn/messaging/core-contracts.md b/learn/messaging/core-contracts.md index 9b3b811cd..aa160fd98 100644 --- a/learn/messaging/core-contracts.md +++ b/learn/messaging/core-contracts.md @@ -30,7 +30,6 @@ The method signature for publishing messages: - **payload** - the content of the emitted message is an arbitrary byte array. Due to the constraints of individual blockchains, it may be capped to a certain maximum length -The content of the emitted message is an arbitrary byte array. Due to the constraints of individual blockchains, it may be capped to a certain maximum length. **consistencyLevel** From 8695c95898b5346b8b690f7a9c578dd17c3ccdaa Mon Sep 17 00:00:00 2001 From: Ilaria <43253244+ilariae@users.noreply.github.com> Date: Thu, 8 Aug 2024 10:48:12 +0200 Subject: [PATCH 20/54] Update learn/messaging/core-contracts.md Co-authored-by: Dawn Kelly <83190195+dawnkelly09@users.noreply.github.com> --- learn/messaging/core-contracts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/learn/messaging/core-contracts.md b/learn/messaging/core-contracts.md index aa160fd98..fd4af05df 100644 --- a/learn/messaging/core-contracts.md +++ b/learn/messaging/core-contracts.md @@ -31,7 +31,7 @@ The method signature for publishing messages: - **payload** - the content of the emitted message is an arbitrary byte array. Due to the constraints of individual blockchains, it may be capped to a certain maximum length -**consistencyLevel** +- **consistencyLevel** - a numeric enum data type where the value is treated differently for different chains !!! note Some advanced integrators may want to get messages before finality, which is where the `consistency_level` field offers chain-specific flexibility. From 0ca6a67d5c9c800d3193c0f9805a2f1e17f3c495 Mon Sep 17 00:00:00 2001 From: Ilaria <43253244+ilariae@users.noreply.github.com> Date: Thu, 8 Aug 2024 10:48:39 +0200 Subject: [PATCH 21/54] Update learn/messaging/core-contracts.md Co-authored-by: Dawn Kelly <83190195+dawnkelly09@users.noreply.github.com> --- learn/messaging/core-contracts.md | 1 - 1 file changed, 1 deletion(-) diff --git a/learn/messaging/core-contracts.md b/learn/messaging/core-contracts.md index fd4af05df..2024e8910 100644 --- a/learn/messaging/core-contracts.md +++ b/learn/messaging/core-contracts.md @@ -33,7 +33,6 @@ The method signature for publishing messages: - **consistencyLevel** - a numeric enum data type where the value is treated differently for different chains -!!! note Some advanced integrators may want to get messages before finality, which is where the `consistency_level` field offers chain-specific flexibility. The `consistency_level` can be considered as a numeric `enum` data type where the value is treated differently for different chains. From 29369cbc9d0b2b598c057440f57cc21327ea7de1 Mon Sep 17 00:00:00 2001 From: Ilaria <43253244+ilariae@users.noreply.github.com> Date: Thu, 8 Aug 2024 10:49:28 +0200 Subject: [PATCH 22/54] Update learn/messaging/core-contracts.md Co-authored-by: Dawn Kelly <83190195+dawnkelly09@users.noreply.github.com> --- learn/messaging/core-contracts.md | 1 - 1 file changed, 1 deletion(-) diff --git a/learn/messaging/core-contracts.md b/learn/messaging/core-contracts.md index 2024e8910..fbdbfdd73 100644 --- a/learn/messaging/core-contracts.md +++ b/learn/messaging/core-contracts.md @@ -35,7 +35,6 @@ The method signature for publishing messages: Some advanced integrators may want to get messages before finality, which is where the `consistency_level` field offers chain-specific flexibility. -The `consistency_level` can be considered as a numeric `enum` data type where the value is treated differently for different chains. It describes the level of finality to reach before the Guardians will observe and attest the emitted event. This is a defense against reorgs and rollbacks since a transaction, once considered `final`, is guaranteed not to have the state changes it caused be rolled back. From 9e0bd80dcabe4ce49f2c67924fa2dadb9b14e733 Mon Sep 17 00:00:00 2001 From: Ilaria <43253244+ilariae@users.noreply.github.com> Date: Thu, 8 Aug 2024 10:49:40 +0200 Subject: [PATCH 23/54] Update learn/messaging/core-contracts.md Co-authored-by: Dawn Kelly <83190195+dawnkelly09@users.noreply.github.com> --- learn/messaging/core-contracts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/learn/messaging/core-contracts.md b/learn/messaging/core-contracts.md index fbdbfdd73..7ba813bac 100644 --- a/learn/messaging/core-contracts.md +++ b/learn/messaging/core-contracts.md @@ -33,7 +33,7 @@ The method signature for publishing messages: - **consistencyLevel** - a numeric enum data type where the value is treated differently for different chains - Some advanced integrators may want to get messages before finality, which is where the `consistency_level` field offers chain-specific flexibility. +Some advanced integrators may want to get messages before finality. The `consistency_level` field offers chain-specific flexibility. It describes the required level of finality that must be reached before the Guardians will observe and attest to the emitted event. This is a defense against reorgs and rollbacks since a transaction, once considered `final,` is guaranteed not to have the state changes it caused be rolled back. It describes the level of finality to reach before the Guardians will observe and attest the emitted event. This is a defense against reorgs and rollbacks since a transaction, once considered `final`, is guaranteed not to have the state changes it caused be rolled back. From 4ed22c039a5dca6d71158e724edfdacadeaf0f21 Mon Sep 17 00:00:00 2001 From: Ilaria <43253244+ilariae@users.noreply.github.com> Date: Thu, 8 Aug 2024 10:49:50 +0200 Subject: [PATCH 24/54] Update learn/messaging/core-contracts.md Co-authored-by: Dawn Kelly <83190195+dawnkelly09@users.noreply.github.com> --- learn/messaging/core-contracts.md | 1 - 1 file changed, 1 deletion(-) diff --git a/learn/messaging/core-contracts.md b/learn/messaging/core-contracts.md index 7ba813bac..50920592f 100644 --- a/learn/messaging/core-contracts.md +++ b/learn/messaging/core-contracts.md @@ -36,7 +36,6 @@ The method signature for publishing messages: Some advanced integrators may want to get messages before finality. The `consistency_level` field offers chain-specific flexibility. It describes the required level of finality that must be reached before the Guardians will observe and attest to the emitted event. This is a defense against reorgs and rollbacks since a transaction, once considered `final,` is guaranteed not to have the state changes it caused be rolled back. -It describes the level of finality to reach before the Guardians will observe and attest the emitted event. This is a defense against reorgs and rollbacks since a transaction, once considered `final`, is guaranteed not to have the state changes it caused be rolled back. Different chains use different consensus mechanisms, so there are different finality assumptions with each one, see the options for finality in the [Environments](#){target=\_blank} pages. From 29a3240c03103acc70d709aca2271f15a025cc58 Mon Sep 17 00:00:00 2001 From: Ilaria <43253244+ilariae@users.noreply.github.com> Date: Thu, 8 Aug 2024 10:50:02 +0200 Subject: [PATCH 25/54] Update learn/messaging/core-contracts.md Co-authored-by: Dawn Kelly <83190195+dawnkelly09@users.noreply.github.com> --- learn/messaging/core-contracts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/learn/messaging/core-contracts.md b/learn/messaging/core-contracts.md index 50920592f..9643930ee 100644 --- a/learn/messaging/core-contracts.md +++ b/learn/messaging/core-contracts.md @@ -37,7 +37,7 @@ Some advanced integrators may want to get messages before finality. The `consist -Different chains use different consensus mechanisms, so there are different finality assumptions with each one, see the options for finality in the [Environments](#){target=\_blank} pages. +Different chains use different consensus mechanisms, so each one has different finality assumptions. See the options for finality in the [Environments](#){target=\_blank} pages **nonce** From 92c1da19dca8981c2b4a01f9800363e0e200e4d9 Mon Sep 17 00:00:00 2001 From: Ilaria <43253244+ilariae@users.noreply.github.com> Date: Thu, 8 Aug 2024 10:50:15 +0200 Subject: [PATCH 26/54] Update learn/messaging/core-contracts.md Co-authored-by: Dawn Kelly <83190195+dawnkelly09@users.noreply.github.com> --- learn/messaging/core-contracts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/learn/messaging/core-contracts.md b/learn/messaging/core-contracts.md index 9643930ee..b183d8852 100644 --- a/learn/messaging/core-contracts.md +++ b/learn/messaging/core-contracts.md @@ -39,7 +39,7 @@ Some advanced integrators may want to get messages before finality. The `consist Different chains use different consensus mechanisms, so each one has different finality assumptions. See the options for finality in the [Environments](#){target=\_blank} pages -**nonce** +- **nonce** - A free integer field that can be used however you like. Note that changing the `nonce` will result in a different digest A free integer field that can be used however the developer would like. Note that a different `nonce` will result in a different digest. From 0b173e732014a9de98eeb1858ea06b34c198c989 Mon Sep 17 00:00:00 2001 From: Ilaria <43253244+ilariae@users.noreply.github.com> Date: Thu, 8 Aug 2024 10:58:34 +0200 Subject: [PATCH 27/54] Update learn/messaging/core-contracts.md Co-authored-by: Dawn Kelly <83190195+dawnkelly09@users.noreply.github.com> --- learn/messaging/core-contracts.md | 1 - 1 file changed, 1 deletion(-) diff --git a/learn/messaging/core-contracts.md b/learn/messaging/core-contracts.md index b183d8852..355a2fabe 100644 --- a/learn/messaging/core-contracts.md +++ b/learn/messaging/core-contracts.md @@ -41,7 +41,6 @@ Different chains use different consensus mechanisms, so each one has different f - **nonce** - A free integer field that can be used however you like. Note that changing the `nonce` will result in a different digest -A free integer field that can be used however the developer would like. Note that a different `nonce` will result in a different digest. #### Returns From 821eca03f11aed0cffe5da984092c97430a9d91e Mon Sep 17 00:00:00 2001 From: Ilaria <43253244+ilariae@users.noreply.github.com> Date: Thu, 8 Aug 2024 10:58:44 +0200 Subject: [PATCH 28/54] Update learn/messaging/core-contracts.md Co-authored-by: Dawn Kelly <83190195+dawnkelly09@users.noreply.github.com> --- learn/messaging/core-contracts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/learn/messaging/core-contracts.md b/learn/messaging/core-contracts.md index 355a2fabe..bb541fcee 100644 --- a/learn/messaging/core-contracts.md +++ b/learn/messaging/core-contracts.md @@ -44,7 +44,7 @@ Different chains use different consensus mechanisms, so each one has different f #### Returns -**sequenceNumber** +- **sequenceNumber** - a unique number that increments for every message for a given emitter (and implicitly chain). This, combined with the emitter address and emitter chain ID, allows the VAA for this message to be queried from the [APIs](#){target=\_blank} A unique number that increments for every message for a given emitter (and implicitly chain). This combined with the emitter address and emitter chain ID allows the VAA for this message to be queried from the [APIs](#){target=\_blank}. From baa6c0d3f6de6ae6280e7db4d9770dbaa0a727b5 Mon Sep 17 00:00:00 2001 From: Ilaria <43253244+ilariae@users.noreply.github.com> Date: Thu, 8 Aug 2024 10:58:55 +0200 Subject: [PATCH 29/54] Update learn/messaging/core-contracts.md Co-authored-by: Dawn Kelly <83190195+dawnkelly09@users.noreply.github.com> --- learn/messaging/core-contracts.md | 1 - 1 file changed, 1 deletion(-) diff --git a/learn/messaging/core-contracts.md b/learn/messaging/core-contracts.md index bb541fcee..3bf4a1bd1 100644 --- a/learn/messaging/core-contracts.md +++ b/learn/messaging/core-contracts.md @@ -46,7 +46,6 @@ Different chains use different consensus mechanisms, so each one has different f - **sequenceNumber** - a unique number that increments for every message for a given emitter (and implicitly chain). This, combined with the emitter address and emitter chain ID, allows the VAA for this message to be queried from the [APIs](#){target=\_blank} -A unique number that increments for every message for a given emitter (and implicitly chain). This combined with the emitter address and emitter chain ID allows the VAA for this message to be queried from the [APIs](#){target=\_blank}. ## Receiving From c58866424622a60b28acd0f04afb2ca0ab867505 Mon Sep 17 00:00:00 2001 From: Ilaria <43253244+ilariae@users.noreply.github.com> Date: Thu, 8 Aug 2024 10:59:10 +0200 Subject: [PATCH 30/54] Update learn/messaging/core-contracts.md Co-authored-by: Dawn Kelly <83190195+dawnkelly09@users.noreply.github.com> --- learn/messaging/core-contracts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/learn/messaging/core-contracts.md b/learn/messaging/core-contracts.md index 3bf4a1bd1..76bf9992d 100644 --- a/learn/messaging/core-contracts.md +++ b/learn/messaging/core-contracts.md @@ -49,7 +49,7 @@ Different chains use different consensus mechanisms, so each one has different f ## Receiving -The method signature for receiving messages, encoded as a VAA: +Use the following method signature to receive a message encoded as a VAA: ```js --8<-- 'code/learn/messaging/core-contracts/receiving.js' From ec4e848fa6735c36c1295787f0b6647e01aebbc2 Mon Sep 17 00:00:00 2001 From: Ilaria <43253244+ilariae@users.noreply.github.com> Date: Thu, 8 Aug 2024 10:59:20 +0200 Subject: [PATCH 31/54] Update learn/messaging/core-contracts.md Co-authored-by: Dawn Kelly <83190195+dawnkelly09@users.noreply.github.com> --- learn/messaging/core-contracts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/learn/messaging/core-contracts.md b/learn/messaging/core-contracts.md index 76bf9992d..d4c0b5bff 100644 --- a/learn/messaging/core-contracts.md +++ b/learn/messaging/core-contracts.md @@ -55,7 +55,7 @@ Use the following method signature to receive a message encoded as a VAA: --8<-- 'code/learn/messaging/core-contracts/receiving.js' ``` -When passed a VAA, this function will either return the payload and associated metadata for the VAA or throw an exception. An exception should only ever be thrown if the VAA fails signature verification, indicating that the VAA is invalid or inauthentic in some form. +When a VAA is passed to this function, it will either return the payload and associated metadata for the VAA or throw an exception. An exception should only be thrown if the VAA fails signature verification, an indication the VAA is invalid or inauthentic in some form. !!! note A developer should take care to make sure this method is called during the execution of a transaction where a VAA is passed to ensure the signatures are checked and verified. From 407b0bc57fcc684dc2f5b27047e15db21da6af2f Mon Sep 17 00:00:00 2001 From: Ilaria <43253244+ilariae@users.noreply.github.com> Date: Thu, 8 Aug 2024 10:59:39 +0200 Subject: [PATCH 32/54] Update learn/messaging/core-contracts.md Co-authored-by: Dawn Kelly <83190195+dawnkelly09@users.noreply.github.com> --- learn/messaging/core-contracts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/learn/messaging/core-contracts.md b/learn/messaging/core-contracts.md index d4c0b5bff..cbe855ed7 100644 --- a/learn/messaging/core-contracts.md +++ b/learn/messaging/core-contracts.md @@ -58,7 +58,7 @@ Use the following method signature to receive a message encoded as a VAA: When a VAA is passed to this function, it will either return the payload and associated metadata for the VAA or throw an exception. An exception should only be thrown if the VAA fails signature verification, an indication the VAA is invalid or inauthentic in some form. !!! note - A developer should take care to make sure this method is called during the execution of a transaction where a VAA is passed to ensure the signatures are checked and verified. + Take care to make sure this method is called during the execution of a transaction where a VAA is passed to ensure the signatures are checked and verified. ## Multicast From a56c0eb7cd701058fe2155b131481f819e53a49b Mon Sep 17 00:00:00 2001 From: Ilaria <43253244+ilariae@users.noreply.github.com> Date: Thu, 8 Aug 2024 10:59:51 +0200 Subject: [PATCH 33/54] Update learn/messaging/core-contracts.md Co-authored-by: Dawn Kelly <83190195+dawnkelly09@users.noreply.github.com> --- learn/messaging/core-contracts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/learn/messaging/core-contracts.md b/learn/messaging/core-contracts.md index cbe855ed7..85b68715b 100644 --- a/learn/messaging/core-contracts.md +++ b/learn/messaging/core-contracts.md @@ -62,7 +62,7 @@ When a VAA is passed to this function, it will either return the payload and ass ## Multicast -Please notice that there is no destination address or chain in these functions. +Please note that there is no destination address or chain for these functions. VAAs simply attest that "this contract on this chain said this thing." Therefore, VAAs are multicast by default and will be verified as authentic on any chain they are brought to. From 5a883021f8cb91f3ae22e9c9780286465f16888a Mon Sep 17 00:00:00 2001 From: Ilaria <43253244+ilariae@users.noreply.github.com> Date: Thu, 8 Aug 2024 11:00:00 +0200 Subject: [PATCH 34/54] Update learn/messaging/core-contracts.md Co-authored-by: Dawn Kelly <83190195+dawnkelly09@users.noreply.github.com> --- learn/messaging/core-contracts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/learn/messaging/core-contracts.md b/learn/messaging/core-contracts.md index 85b68715b..17229a8c2 100644 --- a/learn/messaging/core-contracts.md +++ b/learn/messaging/core-contracts.md @@ -64,7 +64,7 @@ When a VAA is passed to this function, it will either return the payload and ass Please note that there is no destination address or chain for these functions. -VAAs simply attest that "this contract on this chain said this thing." Therefore, VAAs are multicast by default and will be verified as authentic on any chain they are brought to. +VAAs are a simple attestation that "this contract on this chain said this thing." Therefore, VAAs are multicast by default and will be verified authentic on any chain where they are used. This multicast-by-default model is integral to the design. Having this multicast capacity makes it easy to synchronize state across the entire ecosystem, because a single blockchain can make its data available to every chain in a single action with low latency. This reduces the complexity of the n^2 problems encountered by routing data to a large number of blockchains. From 14583e8afdb555706ede354fef0d59afcd94aa21 Mon Sep 17 00:00:00 2001 From: Ilaria <43253244+ilariae@users.noreply.github.com> Date: Thu, 8 Aug 2024 11:00:08 +0200 Subject: [PATCH 35/54] Update learn/messaging/core-contracts.md Co-authored-by: Dawn Kelly <83190195+dawnkelly09@users.noreply.github.com> --- learn/messaging/core-contracts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/learn/messaging/core-contracts.md b/learn/messaging/core-contracts.md index 17229a8c2..ce955d044 100644 --- a/learn/messaging/core-contracts.md +++ b/learn/messaging/core-contracts.md @@ -66,7 +66,7 @@ Please note that there is no destination address or chain for these functions. VAAs are a simple attestation that "this contract on this chain said this thing." Therefore, VAAs are multicast by default and will be verified authentic on any chain where they are used. -This multicast-by-default model is integral to the design. Having this multicast capacity makes it easy to synchronize state across the entire ecosystem, because a single blockchain can make its data available to every chain in a single action with low latency. This reduces the complexity of the n^2 problems encountered by routing data to a large number of blockchains. +This multicast-by-default model makes it easy to synchronize state across the entire ecosystem because a single blockchain can make its data available to every chain in a single action with low latency. This reduces the complexity of the n^2 problems encountered by routing data to a large number of blockchains. This does not mean an application _cannot_ specify a destination address or chain. For example, the Token Bridge and Standard Relayer contracts require that some destination details be passed and verified on the destination chain. From dce18ffee5605eeb998f9f078c90d74bc36a7af9 Mon Sep 17 00:00:00 2001 From: Ilaria <43253244+ilariae@users.noreply.github.com> Date: Thu, 8 Aug 2024 11:00:14 +0200 Subject: [PATCH 36/54] Update learn/messaging/core-contracts.md Co-authored-by: Dawn Kelly <83190195+dawnkelly09@users.noreply.github.com> --- learn/messaging/core-contracts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/learn/messaging/core-contracts.md b/learn/messaging/core-contracts.md index ce955d044..f03b64f89 100644 --- a/learn/messaging/core-contracts.md +++ b/learn/messaging/core-contracts.md @@ -70,5 +70,5 @@ This multicast-by-default model makes it easy to synchronize state across the en This does not mean an application _cannot_ specify a destination address or chain. For example, the Token Bridge and Standard Relayer contracts require that some destination details be passed and verified on the destination chain. -Because the VAA creation is separate from relaying, there is no _additional_ cost to the multicast model when a single chain is being targeted. If the data isn't needed on a certain blockchain, don't relay it there, and it won't cost anything. +Because the VAA creation is separate from relaying, the multicast model does not incur an additional cost when a single chain is targeted. If the data isn't needed on a certain blockchain, don't relay it there, and it won't cost anything. From d2832a9e7a15df485fb1c7b3bd0d70ff765fe162 Mon Sep 17 00:00:00 2001 From: Ilaria <43253244+ilariae@users.noreply.github.com> Date: Thu, 8 Aug 2024 11:00:20 +0200 Subject: [PATCH 37/54] Update learn/messaging/overview.md Co-authored-by: Dawn Kelly <83190195+dawnkelly09@users.noreply.github.com> --- learn/messaging/overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/learn/messaging/overview.md b/learn/messaging/overview.md index e025ff864..991fd9ac9 100644 --- a/learn/messaging/overview.md +++ b/learn/messaging/overview.md @@ -5,7 +5,7 @@ description: Discover Wormhole's Messaging features, including cross-chain commu # Messaging Overview -The Messaging section covers various aspects and services related to communication protocols and systems within the Wormhole platform. Each subsection provides detailed information on specific components, contracts, and bridges used for messaging and data transfer. Below is a brief overview of each subsection. +The Messaging section covers various aspects and services related to communication protocols and systems within the Wormhole platform. Each subsection provides detailed information on components, contracts, and bridges for messaging and data transfer. Topics covered include: ## Core Contracts From 73e8cbaff12a9a1df6c5925092e311ca5706fd41 Mon Sep 17 00:00:00 2001 From: Ilaria <43253244+ilariae@users.noreply.github.com> Date: Fri, 9 Aug 2024 10:40:07 +0200 Subject: [PATCH 38/54] Update learn/messaging/core-contracts.md Co-authored-by: Erin Shaben --- learn/messaging/core-contracts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/learn/messaging/core-contracts.md b/learn/messaging/core-contracts.md index f03b64f89..81d935a5e 100644 --- a/learn/messaging/core-contracts.md +++ b/learn/messaging/core-contracts.md @@ -5,7 +5,7 @@ description: Discover Wormhole's Core Contracts, enabling cross-chain communicat # Core Contracts -The Core Contracts are the mechanism by which all Wormhole messages are emitted. All cross-chain applications either interact directly with the Core Contract or interact with another contract that does. Each blockchain in the ecosystem has one Core Contract. The Guardians are required to observe this group of contracts. The Core Contract is the contract that ultimately emits the messages the [Guardians](/learn/infrastructure/guardians/){target=\_blank} pick up as an [Observation](#){target=\_blank}. +The Core Contracts are the mechanism by which all Wormhole messages are emitted. All cross-chain applications either interact directly with the Core Contract or interact with another contract that does. Each blockchain in the ecosystem has a single Core Contract, which the Guardians are required to monitor. These Core Contracts emit the messages that the [Guardians](https://github.com/learn/infrastructure/guardians/){target=_blank} pick up as [Observations](https://github.com/wormhole-foundation/wormhole-docs/pull/8/files#){target=_blank}. Core Contracts are generally simple and can be divided into sending and receiving sides, each of which will be defined next. From a6ae99378ed85b08d67efe810b53831feb6e96d4 Mon Sep 17 00:00:00 2001 From: Ilaria <43253244+ilariae@users.noreply.github.com> Date: Fri, 9 Aug 2024 10:40:19 +0200 Subject: [PATCH 39/54] Update learn/messaging/core-contracts.md Co-authored-by: Erin Shaben --- learn/messaging/core-contracts.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/learn/messaging/core-contracts.md b/learn/messaging/core-contracts.md index 81d935a5e..0c1d4b3a6 100644 --- a/learn/messaging/core-contracts.md +++ b/learn/messaging/core-contracts.md @@ -11,8 +11,6 @@ Core Contracts are generally simple and can be divided into sending and receivin ## Sending -There are no fees to publish a message, except when publishing on Solana, but this is subject to change in the future. - The implementation strategy for `publishMessage` differs by chain. However, the general strategy consists of the Core Contract posting the following items to the blockchain logs: - `emitterAddress` of the contract which made the `publishMessage` call - `sequenceNumber` From 6d1429496363f7e68f39b7d197e47585792ade0d Mon Sep 17 00:00:00 2001 From: Ilaria <43253244+ilariae@users.noreply.github.com> Date: Fri, 9 Aug 2024 10:40:26 +0200 Subject: [PATCH 40/54] Update learn/messaging/core-contracts.md Co-authored-by: Erin Shaben --- learn/messaging/core-contracts.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/learn/messaging/core-contracts.md b/learn/messaging/core-contracts.md index 0c1d4b3a6..e850f0173 100644 --- a/learn/messaging/core-contracts.md +++ b/learn/messaging/core-contracts.md @@ -24,6 +24,8 @@ The method signature for publishing messages: --8<-- 'code/learn/messaging/core-contracts/sending.js' ``` +There are no fees to publish a message, except when publishing on Solana, but this is subject to change in the future. + #### Parameters - **payload** - the content of the emitted message is an arbitrary byte array. Due to the constraints of individual blockchains, it may be capped to a certain maximum length From 477a7f8301ebe3a98064cd4250fec2622f7444d9 Mon Sep 17 00:00:00 2001 From: Ilaria <43253244+ilariae@users.noreply.github.com> Date: Fri, 9 Aug 2024 10:41:05 +0200 Subject: [PATCH 41/54] Update learn/messaging/core-contracts.md Co-authored-by: Erin Shaben --- learn/messaging/core-contracts.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/learn/messaging/core-contracts.md b/learn/messaging/core-contracts.md index e850f0173..b769633b6 100644 --- a/learn/messaging/core-contracts.md +++ b/learn/messaging/core-contracts.md @@ -28,8 +28,7 @@ There are no fees to publish a message, except when publishing on Solana, but th #### Parameters -- **payload** - the content of the emitted message is an arbitrary byte array. Due to the constraints of individual blockchains, it may be capped to a certain maximum length - +- `payload` ++"byte[]"++ - the content of the emitted message is an arbitrary byte array. Due to the constraints of individual blockchains, it may be capped to a certain maximum length - **consistencyLevel** - a numeric enum data type where the value is treated differently for different chains From e78b093d5f5b2083776201fec06c82a572593175 Mon Sep 17 00:00:00 2001 From: Ilaria <43253244+ilariae@users.noreply.github.com> Date: Fri, 9 Aug 2024 10:43:48 +0200 Subject: [PATCH 42/54] Update learn/messaging/core-contracts.md Co-authored-by: Erin Shaben --- learn/messaging/core-contracts.md | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/learn/messaging/core-contracts.md b/learn/messaging/core-contracts.md index b769633b6..4c70fa683 100644 --- a/learn/messaging/core-contracts.md +++ b/learn/messaging/core-contracts.md @@ -30,13 +30,7 @@ There are no fees to publish a message, except when publishing on Solana, but th - `payload` ++"byte[]"++ - the content of the emitted message is an arbitrary byte array. Due to the constraints of individual blockchains, it may be capped to a certain maximum length -- **consistencyLevel** - a numeric enum data type where the value is treated differently for different chains - -Some advanced integrators may want to get messages before finality. The `consistency_level` field offers chain-specific flexibility. It describes the required level of finality that must be reached before the Guardians will observe and attest to the emitted event. This is a defense against reorgs and rollbacks since a transaction, once considered `final,` is guaranteed not to have the state changes it caused be rolled back. - - - -Different chains use different consensus mechanisms, so each one has different finality assumptions. See the options for finality in the [Environments](#){target=\_blank} pages +- `consistencyLevel` ++"int"++ - a numeric value that defines the required level of finality that must be reached before the Guardians will observe and attest to emitted events. This is a defense against reorgs and rollbacks since a transaction, once considered "final," is guaranteed not to have the state changes it caused rolled back. Since different chains use different consensus mechanisms, each one has different finality assumptions, so this value is treated differently on a chain-by-chain basis. See the options for finality for each chain in the [Environments](#){target=\_blank} pages - **nonce** - A free integer field that can be used however you like. Note that changing the `nonce` will result in a different digest From 5bee745f5d334cb0157c6f746f4aeed4324479b7 Mon Sep 17 00:00:00 2001 From: Ilaria <43253244+ilariae@users.noreply.github.com> Date: Fri, 9 Aug 2024 10:44:04 +0200 Subject: [PATCH 43/54] Update learn/messaging/core-contracts.md Co-authored-by: Erin Shaben --- learn/messaging/core-contracts.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/learn/messaging/core-contracts.md b/learn/messaging/core-contracts.md index 4c70fa683..df7800782 100644 --- a/learn/messaging/core-contracts.md +++ b/learn/messaging/core-contracts.md @@ -32,8 +32,7 @@ There are no fees to publish a message, except when publishing on Solana, but th - `consistencyLevel` ++"int"++ - a numeric value that defines the required level of finality that must be reached before the Guardians will observe and attest to emitted events. This is a defense against reorgs and rollbacks since a transaction, once considered "final," is guaranteed not to have the state changes it caused rolled back. Since different chains use different consensus mechanisms, each one has different finality assumptions, so this value is treated differently on a chain-by-chain basis. See the options for finality for each chain in the [Environments](#){target=\_blank} pages -- **nonce** - A free integer field that can be used however you like. Note that changing the `nonce` will result in a different digest - +- `nonce` ++"int"++ - a free integer field that can be used however you like. Note that changing the `nonce` will result in a different digest #### Returns From 93cb0bbf3e4b3711e51a51873efcc5316fc27c87 Mon Sep 17 00:00:00 2001 From: Ilaria <43253244+ilariae@users.noreply.github.com> Date: Fri, 9 Aug 2024 10:44:37 +0200 Subject: [PATCH 44/54] Update learn/messaging/core-contracts.md Co-authored-by: Erin Shaben --- learn/messaging/core-contracts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/learn/messaging/core-contracts.md b/learn/messaging/core-contracts.md index df7800782..044967b8e 100644 --- a/learn/messaging/core-contracts.md +++ b/learn/messaging/core-contracts.md @@ -36,7 +36,7 @@ There are no fees to publish a message, except when publishing on Solana, but th #### Returns -- **sequenceNumber** - a unique number that increments for every message for a given emitter (and implicitly chain). This, combined with the emitter address and emitter chain ID, allows the VAA for this message to be queried from the [APIs](#){target=\_blank} +- `sequenceNumber` ++"int"++ - a unique number that increments for every message for a given emitter (and implicitly chain). This, combined with the emitter address and emitter chain ID, allows the VAA for this message to be queried from the [APIs](#){target=\_blank} ## Receiving From 77b97c8b4fa95391742b1eb2cb1f03862de1383b Mon Sep 17 00:00:00 2001 From: Ilaria <43253244+ilariae@users.noreply.github.com> Date: Fri, 9 Aug 2024 10:45:07 +0200 Subject: [PATCH 45/54] Update learn/messaging/core-contracts.md Co-authored-by: Erin Shaben --- learn/messaging/core-contracts.md | 1 - 1 file changed, 1 deletion(-) diff --git a/learn/messaging/core-contracts.md b/learn/messaging/core-contracts.md index 044967b8e..d96bf514e 100644 --- a/learn/messaging/core-contracts.md +++ b/learn/messaging/core-contracts.md @@ -38,7 +38,6 @@ There are no fees to publish a message, except when publishing on Solana, but th - `sequenceNumber` ++"int"++ - a unique number that increments for every message for a given emitter (and implicitly chain). This, combined with the emitter address and emitter chain ID, allows the VAA for this message to be queried from the [APIs](#){target=\_blank} - ## Receiving Use the following method signature to receive a message encoded as a VAA: From 6527e8e2cd231938561860b6459de5ba48633cd6 Mon Sep 17 00:00:00 2001 From: Ilaria <43253244+ilariae@users.noreply.github.com> Date: Fri, 9 Aug 2024 10:46:15 +0200 Subject: [PATCH 46/54] Update learn/messaging/core-contracts.md Co-authored-by: Erin Shaben --- learn/messaging/core-contracts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/learn/messaging/core-contracts.md b/learn/messaging/core-contracts.md index d96bf514e..1bb29a862 100644 --- a/learn/messaging/core-contracts.md +++ b/learn/messaging/core-contracts.md @@ -40,7 +40,7 @@ There are no fees to publish a message, except when publishing on Solana, but th ## Receiving -Use the following method signature to receive a message encoded as a VAA: +The method signature for receiving a message encoded as a VAA: ```js --8<-- 'code/learn/messaging/core-contracts/receiving.js' From c662c9370974c90ccb19b4465f1ae358e92b9e94 Mon Sep 17 00:00:00 2001 From: Ilaria <43253244+ilariae@users.noreply.github.com> Date: Fri, 9 Aug 2024 10:47:15 +0200 Subject: [PATCH 47/54] Update learn/messaging/core-contracts.md Co-authored-by: Erin Shaben --- learn/messaging/core-contracts.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/learn/messaging/core-contracts.md b/learn/messaging/core-contracts.md index 1bb29a862..033e03e9f 100644 --- a/learn/messaging/core-contracts.md +++ b/learn/messaging/core-contracts.md @@ -53,11 +53,9 @@ When a VAA is passed to this function, it will either return the payload and ass ## Multicast -Please note that there is no destination address or chain for these functions. +Multicast refers to simultaneously broadcasting a single message or transaction across different blockchains. This means that there is no destination address or chain for the sending and receiving functions. This is possible because VAAs simply attest that "this contract on this chain said this thing." Therefore, VAAs are multicast by default and will be verified as authentic on any chain where they are used. -VAAs are a simple attestation that "this contract on this chain said this thing." Therefore, VAAs are multicast by default and will be verified authentic on any chain where they are used. - -This multicast-by-default model makes it easy to synchronize state across the entire ecosystem because a single blockchain can make its data available to every chain in a single action with low latency. This reduces the complexity of the n^2 problems encountered by routing data to a large number of blockchains. +This multicast-by-default model makes it easy to synchronize the state across the entire ecosystem because a single blockchain can make its data available to every chain in a single action with low latency. This reduces the complexity of the n^2 problems encountered by routing data to a large number of blockchains. This does not mean an application _cannot_ specify a destination address or chain. For example, the Token Bridge and Standard Relayer contracts require that some destination details be passed and verified on the destination chain. From d9b6bfc846dc138fdb2cd019a031aaa317e59ef9 Mon Sep 17 00:00:00 2001 From: Ilaria <43253244+ilariae@users.noreply.github.com> Date: Fri, 9 Aug 2024 10:47:31 +0200 Subject: [PATCH 48/54] Update learn/messaging/overview.md Co-authored-by: Erin Shaben --- learn/messaging/overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/learn/messaging/overview.md b/learn/messaging/overview.md index 991fd9ac9..5eb8b3a03 100644 --- a/learn/messaging/overview.md +++ b/learn/messaging/overview.md @@ -5,7 +5,7 @@ description: Discover Wormhole's Messaging features, including cross-chain commu # Messaging Overview -The Messaging section covers various aspects and services related to communication protocols and systems within the Wormhole platform. Each subsection provides detailed information on components, contracts, and bridges for messaging and data transfer. Topics covered include: +This section covers various aspects and services related to communication protocols and systems within the Wormhole platform. Each subsection provides detailed information on components, contracts, and bridges for messaging and data transfer. ## Core Contracts From 0e8b55f6154c3cac1e1c87bc821004a9a2485d5c Mon Sep 17 00:00:00 2001 From: Ilaria <43253244+ilariae@users.noreply.github.com> Date: Fri, 9 Aug 2024 10:47:42 +0200 Subject: [PATCH 49/54] Update learn/messaging/overview.md Co-authored-by: Erin Shaben --- learn/messaging/overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/learn/messaging/overview.md b/learn/messaging/overview.md index 5eb8b3a03..635fe9ee4 100644 --- a/learn/messaging/overview.md +++ b/learn/messaging/overview.md @@ -9,7 +9,7 @@ This section covers various aspects and services related to communication protoc ## Core Contracts -The Core Contracts form the backbone of Wormhole's cross-chain communication system, allowing for the emission and receipt of messages across different blockchains. Each blockchain in the ecosystem has its own Core Contract, which Guardians observe to ensure the integrity and synchronization of data. These contracts handle message sending, receiving, and multicast, providing a seamless mechanism for inter-chain communication without additional costs. +The Core Contracts form the backbone of Wormhole's cross-chain communication system, allowing for the emission and receipt of messages across different blockchains. Each blockchain in the ecosystem has its own Core Contract, which Guardians observe to ensure the integrity and synchronization of data. These contracts handle message sending, receiving, and multicasting, providing a seamless mechanism for inter-chain communication without additional costs. ## NTT (Native Token Transfers) _A description will be added here._ From b9cf7e3701e9da987ac470f25053f1d44aad6bbf Mon Sep 17 00:00:00 2001 From: Ilaria Enache Date: Fri, 9 Aug 2024 13:45:32 +0200 Subject: [PATCH 50/54] feedback fixes --- learn/messaging/core-contracts.md | 22 ++++++++++++++++++---- learn/messaging/overview.md | 4 ++-- 2 files changed, 20 insertions(+), 6 deletions(-) diff --git a/learn/messaging/core-contracts.md b/learn/messaging/core-contracts.md index 033e03e9f..ca171b1ae 100644 --- a/learn/messaging/core-contracts.md +++ b/learn/messaging/core-contracts.md @@ -16,7 +16,7 @@ The implementation strategy for `publishMessage` differs by chain. However, the - `sequenceNumber` - `consistencyLevel` -Once the desired `consistencyLevel` has been reached and the message passes all of the Guardians' optional checks, the Guardian Network will produce the requested Verified Action Approvals [VAAs]. +Once the desired `consistencyLevel` has been reached and the message passes all of the Guardians' optional checks, the Guardian Network will produce the requested Verified Action Approvals (VAAs). The method signature for publishing messages: @@ -26,7 +26,7 @@ The method signature for publishing messages: There are no fees to publish a message, except when publishing on Solana, but this is subject to change in the future. -#### Parameters +### Parameters - `payload` ++"byte[]"++ - the content of the emitted message is an arbitrary byte array. Due to the constraints of individual blockchains, it may be capped to a certain maximum length @@ -34,7 +34,7 @@ There are no fees to publish a message, except when publishing on Solana, but th - `nonce` ++"int"++ - a free integer field that can be used however you like. Note that changing the `nonce` will result in a different digest -#### Returns +### Returns - `sequenceNumber` ++"int"++ - a unique number that increments for every message for a given emitter (and implicitly chain). This, combined with the emitter address and emitter chain ID, allows the VAA for this message to be queried from the [APIs](#){target=\_blank} @@ -46,7 +46,21 @@ The method signature for receiving a message encoded as a VAA: --8<-- 'code/learn/messaging/core-contracts/receiving.js' ``` -When a VAA is passed to this function, it will either return the payload and associated metadata for the VAA or throw an exception. An exception should only be thrown if the VAA fails signature verification, an indication the VAA is invalid or inauthentic in some form. +The general approach involves the Core Contract on a target Chain parsing and verifying the components of a VAA, which include the original `emitterAddress`, `sequenceNumber`, and `consistencyLevel` among other fields. + +The process of receiving and verifying a VAA ensures that the message was properly attested by the Guardian Network, maintaining the integrity and authenticity of the data transmitted between chains. + +### Parameters + +- `VAA` ++"byte[]"++ - the encoded message as a Verified Action Approval, which is a byte array that contains all necessary information for verification and processing + +### Returns + +- `payload` ++"byte[]"++ - the original payload of the message, as extracted from the VAA, which can then be further processed or acted upon according to the logic of the contract + +### Error Handling + +When a VAA is passed to the `parseAndVerifyVAA` function, it will either return the payload and associated metadata for the VAA or throw an exception. An exception should only be thrown if the VAA fails signature verification, an indication the VAA is invalid or inauthentic in some form. !!! note Take care to make sure this method is called during the execution of a transaction where a VAA is passed to ensure the signatures are checked and verified. diff --git a/learn/messaging/overview.md b/learn/messaging/overview.md index 635fe9ee4..b75efa852 100644 --- a/learn/messaging/overview.md +++ b/learn/messaging/overview.md @@ -18,9 +18,9 @@ _A description will be added here._ The Token and NFT Bridges facilitate cross-chain transfers of both fungible tokens and non-fungible tokens (NFTs). Utilizing a lock and mint mechanism, the bridge ensures secure and efficient asset movement between blockchains. The Token Bridge allows for token transfers with specific receiver details, while the NFT Bridge handles the transfer of unique digital assets with specialized rules for creating wrapped versions on the destination chain. -## CCTP and Circle Bridge +## Circle's CCTP Bridge -The CCTP and Circle Bridge support fast and cost-effective native USDC transfers across blockchains using Circle's Cross Chain Transfer Protocol (CCTP). While distinct from Wormhole, this protocol is enhanced by Wormhole's features such as automated relaying, gas payment on the destination chain, and native gas dropoff, making it more user-friendly. The integration can be achieved through the Wormhole Connect Widget or the Connect SDK, providing a seamless experience for developers and users. +The Circle's CCTP Bridge supports fast and cost-effective native USDC transfers across blockchains using Circle's Cross Chain Transfer Protocol (CCTP). While distinct from Wormhole, this protocol is enhanced by Wormhole's features such as automated relaying, gas payment on the destination chain, and native gas dropoff, making it more user-friendly. The integration can be achieved through the Wormhole Connect Widget or the Connect SDK, providing a seamless experience for developers and users. ## Gateway _A description will be added here._ From fbd0bdac79af1bfee11558adc6c9e77837875a01 Mon Sep 17 00:00:00 2001 From: Ilaria Enache Date: Fri, 9 Aug 2024 14:10:03 +0200 Subject: [PATCH 51/54] renaming token bridge page --- learn/messaging/.pages | 2 +- learn/messaging/token-nft-bridge.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/learn/messaging/.pages b/learn/messaging/.pages index fe7ef8cc4..b5f3641ee 100644 --- a/learn/messaging/.pages +++ b/learn/messaging/.pages @@ -3,4 +3,4 @@ nav: - index.md - 'Overview': 'overview.md' - 'Core Contracts': 'core-contracts.md' - - 'Token and NFT Bridge': 'token-nft-bridge.md' \ No newline at end of file + - 'Token Bridge': 'token-nft-bridge.md' \ No newline at end of file diff --git a/learn/messaging/token-nft-bridge.md b/learn/messaging/token-nft-bridge.md index c792564dc..ad67a8b61 100644 --- a/learn/messaging/token-nft-bridge.md +++ b/learn/messaging/token-nft-bridge.md @@ -1,5 +1,5 @@ --- -title: Token and NFT Bridge +title: Token Bridge description: Learn about Wormhole's Token and NFT Bridge for cross-chain transfers using lock and mint mechanisms, ensuring secure and efficient asset movement. --- From 340d79fcecd10ebe06a222dd6a0062e78801f610 Mon Sep 17 00:00:00 2001 From: Ilaria Enache Date: Fri, 9 Aug 2024 15:21:05 +0200 Subject: [PATCH 52/54] pulled complete overview from messaging branch --- learn/messaging/overview.md | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/learn/messaging/overview.md b/learn/messaging/overview.md index b75efa852..0418cfd7a 100644 --- a/learn/messaging/overview.md +++ b/learn/messaging/overview.md @@ -5,22 +5,25 @@ description: Discover Wormhole's Messaging features, including cross-chain commu # Messaging Overview -This section covers various aspects and services related to communication protocols and systems within the Wormhole platform. Each subsection provides detailed information on components, contracts, and bridges for messaging and data transfer. +The Messaging section covers various aspects and services related to communication protocols and systems within our platform. Each subsection provides detailed information on specific components, contracts, and bridges for messaging and data transfer. Below is a brief overview of each subsection: ## Core Contracts -The Core Contracts form the backbone of Wormhole's cross-chain communication system, allowing for the emission and receipt of messages across different blockchains. Each blockchain in the ecosystem has its own Core Contract, which Guardians observe to ensure the integrity and synchronization of data. These contracts handle message sending, receiving, and multicasting, providing a seamless mechanism for inter-chain communication without additional costs. +The [Core Contracts](/learn/messaging/core-contracts/){target=\_blank} form the backbone of Wormhole's cross-chain communication system, allowing for the emission and receipt of messages across different blockchains. Each blockchain in the ecosystem has its own Core Contract, which Guardians observe to ensure the integrity and synchronization of data. These contracts handle message sending, receiving, and multicast, providing a seamless mechanism for inter-chain communication without additional costs. -## NTT (Native Token Transfers) -_A description will be added here._ +## Native Token Transfers -## Token and NFT Bridge +Wormhole's [Native Token Transfers](/learn/messaging/ntt/ntt-overview/){target=\_blank} (NTT) offer an open-source and flexible framework for cross-chain token transfers, providing full control over token behavior on each blockchain. This system supports two operation modes: locking mode for preserving the original token supply on a single chain and burning mode for distributing multichain tokens across various chains. Key features include integrator flexibility, advanced rate limiting, no need for liquidity pools, and custom attestation options. This ensures a consistent user experience, robust security, and easy integration for complex multichain deployments. -The Token and NFT Bridges facilitate cross-chain transfers of both fungible tokens and non-fungible tokens (NFTs). Utilizing a lock and mint mechanism, the bridge ensures secure and efficient asset movement between blockchains. The Token Bridge allows for token transfers with specific receiver details, while the NFT Bridge handles the transfer of unique digital assets with specialized rules for creating wrapped versions on the destination chain. +## Token Bridge + +The [Token and NFT Bridges](/learn/messaging/token-nft-bridge/){target=\_blank} facilitate cross-chain transfers of fungible and non-fungible tokens (NFTs). Utilizing a lock and mint mechanism, the bridge ensures secure and efficient asset movement between blockchains. The Token Bridge allows for token transfers with specific receiver details, while the NFT Bridge handles the transfer of unique digital assets with specialized rules for creating wrapped versions on the destination chain. ## Circle's CCTP Bridge -The Circle's CCTP Bridge supports fast and cost-effective native USDC transfers across blockchains using Circle's Cross Chain Transfer Protocol (CCTP). While distinct from Wormhole, this protocol is enhanced by Wormhole's features such as automated relaying, gas payment on the destination chain, and native gas dropoff, making it more user-friendly. The integration can be achieved through the Wormhole Connect Widget or the Connect SDK, providing a seamless experience for developers and users. +The [CCTP Bridge](/learn/messaging/cctp/){target=\_blank} supports fast and cost-effective native USDC transfers across blockchains using Circle's Cross Chain Transfer Protocol (CCTP). While distinct from Wormhole, this protocol is enhanced by Wormhole's features, such as automated relaying, gas payment on the destination chain, and native gas dropoff, making it more user-friendly. The integration can be achieved through the Wormhole Connect Widget or the Connect SDK, providing a seamless experience for developers and users. ## Gateway -_A description will be added here._ + +Wormhole [Gateway](/learn/messaging/gateway/){target=\_blank} is a Cosmos-SDK chain designed to bridge non-native assets into the Cosmos ecosystem, offering unified liquidity across Cosmos chains. By utilizing IBC (Inter-Blockchain Communication), Wormhole Gateway prevents liquidity fragmentation and ensures that foreign assets bridged via Wormhole have unified liquidity across the Cosmos ecosystem. In addition to facilitating asset transfers, Wormhole Gateway includes features like the IBC Shim Contract, Token Factory Module, and IBC Composability Middleware, allowing seamless integration with other Cosmos chains and external blockchains. This setup supports various transfer models, including external-to-cosmos, Cosmos-to-external, and inter-cosmos transfers, ensuring flexibility and security in multichain asset movement. + From ea527edc0b985d776a1185b0cdae59c0794369f4 Mon Sep 17 00:00:00 2001 From: Ilaria <43253244+ilariae@users.noreply.github.com> Date: Mon, 12 Aug 2024 17:10:26 +0200 Subject: [PATCH 53/54] Update learn/messaging/core-contracts.md Co-authored-by: Erin Shaben --- learn/messaging/core-contracts.md | 1 + 1 file changed, 1 insertion(+) diff --git a/learn/messaging/core-contracts.md b/learn/messaging/core-contracts.md index ca171b1ae..76ba48e70 100644 --- a/learn/messaging/core-contracts.md +++ b/learn/messaging/core-contracts.md @@ -12,6 +12,7 @@ Core Contracts are generally simple and can be divided into sending and receivin ## Sending The implementation strategy for `publishMessage` differs by chain. However, the general strategy consists of the Core Contract posting the following items to the blockchain logs: + - `emitterAddress` of the contract which made the `publishMessage` call - `sequenceNumber` - `consistencyLevel` From 638b30450d1d95ba7e5f8dd8b0bda92ed0595088 Mon Sep 17 00:00:00 2001 From: Ilaria Enache Date: Mon, 12 Aug 2024 17:12:07 +0200 Subject: [PATCH 54/54] link fixes --- learn/messaging/core-contracts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/learn/messaging/core-contracts.md b/learn/messaging/core-contracts.md index 76ba48e70..9a840b543 100644 --- a/learn/messaging/core-contracts.md +++ b/learn/messaging/core-contracts.md @@ -5,7 +5,7 @@ description: Discover Wormhole's Core Contracts, enabling cross-chain communicat # Core Contracts -The Core Contracts are the mechanism by which all Wormhole messages are emitted. All cross-chain applications either interact directly with the Core Contract or interact with another contract that does. Each blockchain in the ecosystem has a single Core Contract, which the Guardians are required to monitor. These Core Contracts emit the messages that the [Guardians](https://github.com/learn/infrastructure/guardians/){target=_blank} pick up as [Observations](https://github.com/wormhole-foundation/wormhole-docs/pull/8/files#){target=_blank}. +The Core Contracts are the mechanism by which all Wormhole messages are emitted. All cross-chain applications either interact directly with the Core Contract or interact with another contract that does. Each blockchain in the ecosystem has a single Core Contract, which the Guardians are required to monitor. These Core Contracts emit the messages that the [Guardians](/learn/infrastructure/guardians/){target=_blank} pick up as [Observations](#){target=_blank}. Core Contracts are generally simple and can be divided into sending and receiving sides, each of which will be defined next.