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; } ```