Variable blockTransactionsConst

blockTransactions: ZodObject<{
    @type: ZodLiteral<"blocks.transactions">;
    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;
    }>;
    incomplete: ZodBoolean;
    req_count: ZodNumber;
    transactions: ZodArray<ZodObject<{
        @type: ZodLiteral<"blocks.shortTxId">;
        account: ZodString;
        hash: ZodString;
        lt: ZodString;
        mode: ZodNumber;
    }, "strip", ZodTypeAny, {
        @type: "blocks.shortTxId";
        account: string;
        hash: string;
        lt: string;
        mode: number;
    }, {
        @type: "blocks.shortTxId";
        account: string;
        hash: string;
        lt: string;
        mode: number;
    }>, "many">;
}, "strip", ZodTypeAny, {
    @type: "blocks.transactions";
    id: { "@type": "ton.blockIdExt"; workchain: number; shard: string; seqno: number; root_hash: string; file_hash: string; };
    incomplete: boolean;
    req_count: number;
    transactions: ({ "@type": "blocks.shortTxId"; lt: string; hash: string; mode: number; account: string; })[];
}, {
    @type: "blocks.transactions";
    id: { "@type": "ton.blockIdExt"; workchain: number; shard: string; seqno: number; root_hash: string; file_hash: string; };
    incomplete: boolean;
    req_count: number;
    transactions: ({ "@type": "blocks.shortTxId"; lt: string; hash: string; mode: number; account: string; })[];
}> = ...

Type declaration

  • @type: ZodLiteral<"blocks.transactions">
  • 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;
    }>
  • incomplete: ZodBoolean
  • req_count: ZodNumber
  • transactions: ZodArray<ZodObject<{
        @type: ZodLiteral<"blocks.shortTxId">;
        account: ZodString;
        hash: ZodString;
        lt: ZodString;
        mode: ZodNumber;
    }, "strip", ZodTypeAny, {
        @type: "blocks.shortTxId";
        account: string;
        hash: string;
        lt: string;
        mode: number;
    }, {
        @type: "blocks.shortTxId";
        account: string;
        hash: string;
        lt: string;
        mode: number;
    }>, "many">

Type declaration

  • @type: "blocks.transactions"
  • id: { "@type": "ton.blockIdExt"; workchain: number; shard: string; seqno: number; root_hash: string; file_hash: string; }
  • incomplete: boolean
  • req_count: number
  • transactions: ({ "@type": "blocks.shortTxId"; lt: string; hash: string; mode: number; account: string; })[]

Type declaration

  • @type: "blocks.transactions"
  • id: { "@type": "ton.blockIdExt"; workchain: number; shard: string; seqno: number; root_hash: string; file_hash: string; }
  • incomplete: boolean
  • req_count: number
  • transactions: ({ "@type": "blocks.shortTxId"; lt: string; hash: string; mode: number; account: string; })[]

Generated using TypeDoc