From a7b4b96da7ad9c6d1a894c68e13e39b7f33d0696 Mon Sep 17 00:00:00 2001 From: boulderuphillroller Date: Sun, 5 Nov 2023 19:42:00 +0100 Subject: [PATCH] docs: fix typos --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 34ea35d..a283139 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # The Changes User applications on LayerZero are required to whitelist remote contracts as trusted message senders, the trustedRemotes. -In ULN (Ultra-light Node) V2, the trusted remote has been changed to the full path, which concatinates the ***remote*** and the ***local*** contract address using abi.encodePacked(). +In ULN (Ultra-light Node) V2, the trusted remote has been changed to the full path, which concatenates the ***remote*** and the ***local*** contract address using abi.encodePacked(). For example, - 0x1234... on chain ID 101 (20 bytes / 42 characters in hex (e.g. 0x1234567890123456789012345678901234567890)) @@ -54,7 +54,7 @@ Very carefully fill out `constants/setTrustedRemoteConfig.json` with the name of `let remoteChainId = BigNumber.from(remoteId);` -- A ***bytes*** path, which concatinates the ***remote*** and the ***local*** contract address using abi.encodePacked(). +- A ***bytes*** path, which concatenates the ***remote*** and the ***local*** contract address using abi.encodePacked(). `let trustedRemote = hre.ethers.utils.solidityPack(['address','address'],[REMOTE_ADDRESS, LOCAL_ADDRESS])`