From 5bb87de3d114bfacef6e58bc9b4bba60da2b2561 Mon Sep 17 00:00:00 2001 From: omahs <73983677+omahs@users.noreply.github.com> Date: Thu, 20 Oct 2022 10:01:22 +0200 Subject: [PATCH] Fix: typos Fix: typos --- apps/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/README.md b/apps/README.md index 094316d..d8dd58e 100644 --- a/apps/README.md +++ b/apps/README.md @@ -14,7 +14,7 @@ public fun register_ua(account: &signer): UaCapability ``` The `UA` type is an identifier of your application. You can use any type as `UA`, e.g. `0x1::MyApp::MyApp` as UA. -Note: only one UA is allowed per address. That means there won't two `UA` types share the same address. +Note: only one UA is allowed per address. That means there won't be two `UA` types sharing the same address. When calling `register_ua()`, you will get a `UaCapability` as return. It is the resources for authenticating any LayerZero functions, such as sending messages and setting configurations. @@ -87,7 +87,7 @@ public fun lz_receive_types(src_chain_id: u64, src_address: vector, payload: ### Blocking Mode -Layerzero is by default BLOCKING, which means if the message payload fails in the lz_receive function, +LayerZero is by default BLOCKING, which means if the message payload fails in the lz_receive function, your UA will be blocked and cannot receive next messages from that path until the failed message is received successfully. For that case, you may have to drop the message or store it and retry later. We provide [LzApp Modules](#LzApp-Modules) to help you handle it. @@ -133,4 +133,4 @@ It is very simple to use it by initializing it by calling `fun init(account: ## Examples: - [OmniCounter](counter/sources/counter.move) -- [TokenBridge](bridge/sources/bridge.move) \ No newline at end of file +- [TokenBridge](bridge/sources/bridge.move)