feat: add validatorSignatures to InterchainTransaction type
Some checks failed
Build and Test / build (20.x) (push) Failing after 48s
Build and Test / build (18.x) (push) Failing after 51s
Build and Test / build (16.x) (push) Failing after 54s

Ordered verifier signatures used to compute validatorBlockhash
(SHA-256 of concatenated UTF-8 bytes of each base64 sig, saved_at ASC).
Enables independent recomputation of the on-chain committed value.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-07-10 13:18:39 -05:00
parent a27a20faee
commit 65f219cc98

View File

@@ -180,6 +180,8 @@ export interface InterchainTransaction {
status: string;
validatorBlocks: string[];
validatorBlockhash: string;
/** Ordered verifier signatures used to compute validatorBlockhash. In saved_at ASC order. */
validatorSignatures: string[];
signature: string;
coveredPrimeChainIds: string[];
}