Variable masterchainBlockSignaturesConst

masterchainBlockSignatures: ZodObject<{
    @type: ZodLiteral<"blocks.blockSignatures">;
    id: ZodObject<{
        @type: ZodLiteral<"ton.blockIdExt">;
        file_hash: ZodString;
        root_hash: ZodString;
        seqno: ZodNumber;
        shard: ZodString;
        workchain: ZodNumber;
    }, "strip", ZodTypeAny, {
        @type: "ton.blockIdExt";
        file_hash: string;
        root_hash: string;
        seqno: number;
        shard: string;
        workchain: number;
    }, {
        @type: "ton.blockIdExt";
        file_hash: string;
        root_hash: string;
        seqno: number;
        shard: string;
        workchain: number;
    }>;
    signatures: ZodArray<ZodObject<{
        @type: ZodLiteral<"blocks.signature">;
        node_id_short: ZodString;
        signature: ZodString;
    }, "strip", ZodTypeAny, {
        @type: "blocks.signature";
        node_id_short: string;
        signature: string;
    }, {
        @type: "blocks.signature";
        node_id_short: string;
        signature: string;
    }>, "many">;
}, "strip", ZodTypeAny, {
    @type: "blocks.blockSignatures";
    id: { "@type": "ton.blockIdExt"; workchain: number; shard: string; seqno: number; root_hash: string; file_hash: string; };
    signatures: ({ "@type": "blocks.signature"; node_id_short: string; signature: string; })[];
}, {
    @type: "blocks.blockSignatures";
    id: { "@type": "ton.blockIdExt"; workchain: number; shard: string; seqno: number; root_hash: string; file_hash: string; };
    signatures: ({ "@type": "blocks.signature"; node_id_short: string; signature: string; })[];
}> = ...

Type declaration

  • @type: ZodLiteral<"blocks.blockSignatures">
  • id: ZodObject<{
        @type: ZodLiteral<"ton.blockIdExt">;
        file_hash: ZodString;
        root_hash: ZodString;
        seqno: ZodNumber;
        shard: ZodString;
        workchain: ZodNumber;
    }, "strip", ZodTypeAny, {
        @type: "ton.blockIdExt";
        file_hash: string;
        root_hash: string;
        seqno: number;
        shard: string;
        workchain: number;
    }, {
        @type: "ton.blockIdExt";
        file_hash: string;
        root_hash: string;
        seqno: number;
        shard: string;
        workchain: number;
    }>
  • signatures: ZodArray<ZodObject<{
        @type: ZodLiteral<"blocks.signature">;
        node_id_short: ZodString;
        signature: ZodString;
    }, "strip", ZodTypeAny, {
        @type: "blocks.signature";
        node_id_short: string;
        signature: string;
    }, {
        @type: "blocks.signature";
        node_id_short: string;
        signature: string;
    }>, "many">

Type declaration

  • @type: "blocks.blockSignatures"
  • id: { "@type": "ton.blockIdExt"; workchain: number; shard: string; seqno: number; root_hash: string; file_hash: string; }
  • signatures: ({ "@type": "blocks.signature"; node_id_short: string; signature: string; })[]

Type declaration

  • @type: "blocks.blockSignatures"
  • id: { "@type": "ton.blockIdExt"; workchain: number; shard: string; seqno: number; root_hash: string; file_hash: string; }
  • signatures: ({ "@type": "blocks.signature"; node_id_short: string; signature: string; })[]

Generated using TypeDoc