Update relayer.md

fixed a typo
This commit is contained in:
Kunj Dhola 2023-05-21 02:45:44 +01:00 committed by Evan Gray
parent 79bd2bd6ab
commit f4181de990
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ The WormholeRelayer contract does not directly send messages. Rather, the Wormho
This allows you to easily combine basic messaging along with other modules of the Wormhole ecosystem, such as the Token Bridge or NFT modules. It even allows for other Wormhole integrators to easily compose with your application! (See [best practices](./bestPractices.md) for more info.)
We'll discuss more complex useage later. For now let's just cover how to send a "Hello World" message. The basic mechanism to request delivery of your VAAs is to call the `send` function on the IWormholeRelayer interface. Here's its basic usage:
We'll discuss more complex usage later. For now let's just cover how to send a "Hello World" message. The basic mechanism to request delivery of your VAAs is to call the `send` function on the IWormholeRelayer interface. Here's its basic usage:
```solidity
function sendHelloWorldMessage() public payable {