From 8e934e96527c6259973ae1179493963482138303 Mon Sep 17 00:00:00 2001 From: fadeev Date: Tue, 17 Dec 2024 00:08:37 +0000 Subject: [PATCH] "docs: update module and OpenAPI specs from zeta-chain/node" --- public/data/openapi.swagger.yaml | 2 ++ src/pages/architecture/modules/crosschain/messages.md | 6 ++++++ 2 files changed, 8 insertions(+) diff --git a/public/data/openapi.swagger.yaml b/public/data/openapi.swagger.yaml index 7113d00a..7077c714 100644 --- a/public/data/openapi.swagger.yaml +++ b/public/data/openapi.swagger.yaml @@ -57603,6 +57603,8 @@ definitions: type: string tx_signer: type: string + proven: + type: boolean cryptoPubKeySet: type: object properties: diff --git a/src/pages/architecture/modules/crosschain/messages.md b/src/pages/architecture/modules/crosschain/messages.md index 1a2a8629..3182bec0 100644 --- a/src/pages/architecture/modules/crosschain/messages.md +++ b/src/pages/architecture/modules/crosschain/messages.md @@ -12,6 +12,9 @@ message MsgAddOutboundTracker { int64 chain_id = 2; uint64 nonce = 3; string tx_hash = 4; + pkg.proofs.Proof proof = 5; + string block_hash = 6; + int64 tx_index = 7; } ``` @@ -25,6 +28,9 @@ message MsgAddInboundTracker { int64 chain_id = 2; string tx_hash = 3; pkg.coin.CoinType coin_type = 4; + pkg.proofs.Proof proof = 5; + string block_hash = 6; + int64 tx_index = 7; } ```