Variable BTCTransactionFilter_Filters

BTCTransactionFilter_Filters: {
    create(
        base?: {
            filters?: {
                conditions?: {
                    [key: string]:
                        | undefined
                        | {
                            contains?: (...)
                            | (...);
                            eq?: (...) | (...);
                            gt?: (...) | (...);
                            gte?: (...) | (...);
                            hasAll?: (...) | (...);
                            hasAny?: (...) | (...);
                            in?: (...) | (...);
                            lengthEq?: (...) | (...);
                            lengthGt?: (...) | (...);
                            lengthLt?: (...) | (...);
                            lt?: (...) | (...);
                            lte?: (...) | (...);
                            ne?: (...) | (...);
                            notContains?: (...) | (...);
                            prefix?: (...) | (...);
                        };
                };
            }[];
        },
    ): BTCTransactionFilter_Filters;
    decode(
        input: Uint8Array | Reader,
        length?: number,
    ): BTCTransactionFilter_Filters;
    encode(message: BTCTransactionFilter_Filters, writer?: Writer): Writer;
    fromJSON(object: any): BTCTransactionFilter_Filters;
    fromPartial(
        object: {
            filters?: {
                conditions?: {
                    [key: string]:
                        | undefined
                        | {
                            contains?: string;
                            eq?: {
                                bigdecimalValue?: ...;
                                bigintValue?: ...;
                                boolValue?: ...;
                                bytesValue?: ...;
                                floatValue?: ...;
                                intValue?: ...;
                                listValue?: ...;
                                nullValue?: ...;
                                stringValue?: ...;
                                structValue?: ...;
                                timestampValue?: ...;
                                tokenValue?: ...;
                            };
                            gt?: {
                                bigdecimalValue?: ...;
                                bigintValue?: ...;
                                boolValue?: ...;
                                bytesValue?: ...;
                                floatValue?: ...;
                                intValue?: ...;
                                listValue?: ...;
                                nullValue?: ...;
                                stringValue?: ...;
                                structValue?: ...;
                                timestampValue?: ...;
                                tokenValue?: ...;
                            };
                            gte?: {
                                bigdecimalValue?: ...;
                                bigintValue?: ...;
                                boolValue?: ...;
                                bytesValue?: ...;
                                floatValue?: ...;
                                intValue?: ...;
                                listValue?: ...;
                                nullValue?: ...;
                                stringValue?: ...;
                                structValue?: ...;
                                timestampValue?: ...;
                                tokenValue?: ...;
                            };
                            hasAll?: { values?: ... };
                            hasAny?: { values?: ... };
                            in?: { values?: ... };
                            lengthEq?: number;
                            lengthGt?: number;
                            lengthLt?: number;
                            lt?: {
                                bigdecimalValue?: ...;
                                bigintValue?: ...;
                                boolValue?: ...;
                                bytesValue?: ...;
                                floatValue?: ...;
                                intValue?: ...;
                                listValue?: ...;
                                nullValue?: ...;
                                stringValue?: ...;
                                structValue?: ...;
                                timestampValue?: ...;
                                tokenValue?: ...;
                            };
                            lte?: {
                                bigdecimalValue?: ...;
                                bigintValue?: ...;
                                boolValue?: ...;
                                bytesValue?: ...;
                                floatValue?: ...;
                                intValue?: ...;
                                listValue?: ...;
                                nullValue?: ...;
                                stringValue?: ...;
                                structValue?: ...;
                                timestampValue?: ...;
                                tokenValue?: ...;
                            };
                            ne?: {
                                bigdecimalValue?: ...;
                                bigintValue?: ...;
                                boolValue?: ...;
                                bytesValue?: ...;
                                floatValue?: ...;
                                intValue?: ...;
                                listValue?: ...;
                                nullValue?: ...;
                                stringValue?: ...;
                                structValue?: ...;
                                timestampValue?: ...;
                                tokenValue?: ...;
                            };
                            notContains?: string;
                            prefix?: string;
                        };
                };
            }[];
        },
    ): BTCTransactionFilter_Filters;
    toJSON(message: BTCTransactionFilter_Filters): unknown;
}