Variable RichValueList

RichValueList: {
    create(
        base?: {
            values?: {
                bigdecimalValue?: {
                    exp?: number;
                    value?: { data?: (...) | (...); negative?: (...) | (...) | (...) };
                };
                bigintValue?: { data?: Uint8Array; negative?: boolean };
                boolValue?: boolean;
                bytesValue?: Uint8Array;
                floatValue?: number;
                int64Value?: bigint;
                intValue?: number;
                listValue?: { values?: { nullValue?: RichValue_NullValue | undefined; intValue?: number | undefined; int64Value?: bigint | undefined; floatValue?: number | undefined; ... 8 more ...; tokenValue?: { ...; } | undefined; }[] | undefined; } | undefined;
                nullValue?: RichValue_NullValue;
                stringValue?: string;
                structValue?: { fields?: { [key: string]: (...) | (...) } };
                timestampValue?: Date;
                tokenValue?: {
                    amount?: { exp?: (...) | (...); value?: (...) | (...) };
                    specifiedAt?: Date;
                    token?: { address?: (...) | (...); symbol?: (...) | (...) };
                };
            }[];
        },
    ): RichValueList;
    decode(input: Uint8Array | Reader, length?: number): RichValueList;
    encode(message: RichValueList, writer?: Writer): Writer;
    fromJSON(object: any): RichValueList;
    fromPartial(
        object: {
            values?: {
                bigdecimalValue?: {
                    exp?: number;
                    value?: { data?: Uint8Array; negative?: boolean };
                };
                bigintValue?: { data?: Uint8Array; negative?: boolean };
                boolValue?: boolean;
                bytesValue?: Uint8Array;
                floatValue?: number;
                int64Value?: bigint;
                intValue?: number;
                listValue?: { values?: { nullValue?: RichValue_NullValue | undefined; intValue?: number | undefined; int64Value?: bigint | undefined; floatValue?: number | undefined; bytesValue?: Uint8Array | undefined; ... 7 more ...; tokenValue?: { ...; } | undefined; }[] | undefined; };
                nullValue?: RichValue_NullValue;
                stringValue?: string;
                structValue?: {
                    fields?: {
                        [key: string]:
                            | undefined
                            | (
                                { nullValue?: RichValue_NullValue | undefined; intValue?: number | undefined; int64Value?: bigint | undefined; floatValue?: number | undefined; bytesValue?: Uint8Array | undefined; ... 7 more ...; tokenValue?: { ...; } | undefined; }
                            );
                    };
                };
                timestampValue?: Date;
                tokenValue?: {
                    amount?: { exp?: number; value?: { data?: ...; negative?: ... } };
                    specifiedAt?: Date;
                    token?: { address?: { address?: ...; chain?: ... }; symbol?: string };
                };
            }[];
        },
    ): RichValueList;
    toJSON(message: RichValueList): unknown;
}
MMNEPVFCICPMFPCPTTAAATR