Type alias InclusionProof

InclusionProof: {
    block_hash: string;
    encoded_payload: string;
    header_proof?: {
        trieNodes: string;
    };
    payload_proof: {
        trieNodes: string;
    };
}

Type for creating the inclusion proof for a given SFX in substrate

Type declaration

  • block_hash: string
  • encoded_payload: string
  • Optional header_proof?: {
        trieNodes: string;
    }
    • trieNodes: string
  • payload_proof: {
        trieNodes: string;
    }
    • trieNodes: string

Generated using TypeDoc