From 625052bdaafc6e55d37d4a3f725c0a03cb681fb8 Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Thu, 22 Sep 2022 13:31:13 -0500 Subject: [PATCH] finality line edits --- src/reference/overview.md | 1 + src/technical/evm/coreLayer.md | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/reference/overview.md b/src/reference/overview.md index 04d19aa..83ea2e2 100644 --- a/src/reference/overview.md +++ b/src/reference/overview.md @@ -7,3 +7,4 @@ Here is a collection of other resources and reference sources which you're likel - [Github](./github.md) - [Contract Addresses & Environment Information](./contracts.md) - [RPC Info](./rpcnodes.md) +- [Block Finality Suggestions](./finality.md) diff --git a/src/technical/evm/coreLayer.md b/src/technical/evm/coreLayer.md index de3e734..246cab4 100644 --- a/src/technical/evm/coreLayer.md +++ b/src/technical/evm/coreLayer.md @@ -34,7 +34,7 @@ To emit a VAA, always use `publishMessage` which takes in the following argument - How Batch VAAs are generated based on a message's `nonce` is described below. 2. `Consistency` (uint8): the number of blocks that Guardians will wait before signing a message - Each blockchain has different finality periods. In general, higher consistencies mean more security against blockchain reorgs. - - [Here]() are the consistency levels by blockchain that are used by the xAsset layer to have a high level of guarantee against reorgs. + - [Here](../../reference/finality.md) are the consistency levels by blockchain that are used by the xAsset layer to have a high level of guarantee against reorgs. 3. `Payload` (bytes[]): raw bytes to emit - It is up to the emitting contract to properly define this arbitrary set of bytes.