toncenter-js
    Preparing search index...

    Variable transactionsConst

    transactions: ZodArray<
        ZodObject<
            {
                "@type": ZodLiteral<"raw.transaction">;
                address: ZodObject<
                    { "@type": ZodLiteral<"accountAddress">; account_address: ZodString },
                    $strip,
                >;
                data: ZodString;
                fee: ZodUnion<readonly [ZodNumber, ZodString]>;
                in_msg: ZodObject<
                    {
                        "@type": ZodLiteral<"raw.message">;
                        body_hash: ZodString;
                        created_lt: ZodString;
                        destination: ZodString;
                        fwd_fee: ZodUnion<readonly [ZodNumber, ZodString]>;
                        ihr_fee: ZodUnion<readonly [ZodNumber, ZodString]>;
                        message: ZodOptional<ZodString>;
                        msg_data: ZodUnion<
                            readonly [
                                ZodObject<
                                    {
                                        "@type": ZodLiteral<"msg.dataRaw">;
                                        body: ZodString;
                                        init_state: ZodString;
                                    },
                                    $strip,
                                >,
                                ZodObject<
                                    { "@type": ZodLiteral<"msg.dataText">; text: ZodString },
                                    $strip,
                                >,
                                ZodObject<
                                    { "@type": ZodLiteral<"msg.dataDecryptedText">; text: ZodString },
                                    $strip,
                                >,
                                ZodObject<
                                    { "@type": ZodLiteral<"msg.dataEncryptedText">; text: ZodString },
                                    $strip,
                                >,
                            ],
                        >;
                        source: ZodString;
                        value: ZodString;
                    },
                    $strip,
                >;
                other_fee: ZodUnion<readonly [ZodNumber, ZodString]>;
                out_msgs: ZodArray<
                    ZodObject<
                        {
                            "@type": ZodLiteral<"raw.message">;
                            body_hash: ZodString;
                            created_lt: ZodString;
                            destination: ZodString;
                            fwd_fee: ZodUnion<readonly [ZodNumber, ZodString]>;
                            ihr_fee: ZodUnion<readonly [ZodNumber, ZodString]>;
                            message: ZodOptional<ZodString>;
                            msg_data: ZodUnion<
                                readonly [
                                    ZodObject<
                                        {
                                            "@type": ZodLiteral<(...)>;
                                            body: ZodString;
                                            init_state: ZodString;
                                        },
                                        $strip,
                                    >,
                                    ZodObject<{ "@type": ZodLiteral<(...)>; text: ZodString }, $strip>,
                                    ZodObject<{ "@type": ZodLiteral<(...)>; text: ZodString }, $strip>,
                                    ZodObject<{ "@type": ZodLiteral<(...)>; text: ZodString }, $strip>,
                                ],
                            >;
                            source: ZodString;
                            value: ZodString;
                        },
                        $strip,
                    >,
                >;
                storage_fee: ZodUnion<readonly [ZodNumber, ZodString]>;
                transaction_id: ZodObject<
                    {
                        "@type": ZodLiteral<"internal.transactionId">;
                        hash: ZodString;
                        lt: ZodString;
                    },
                    $strip,
                >;
                utime: ZodNumber;
            },
            $strip,
        >,
    > = ...