TxProof represents a Merkle proof of the presence of a transaction in the Merkle tree.

interface TxProofAmino {
    data?: string;
    proof?: ProofAmino;
    root_hash?: string;
}

Properties

data?: string
proof?: ProofAmino
root_hash?: string