Variable EventLogConfig_Field

EventLogConfig_Field: {
    create(
        base?: {
            basicType?: EventLogConfig_BasicFieldType;
            coinType?: {
                address?: { address?: string; chain?: string };
                symbol?: string;
            };
            name?: string;
            structType?: {
                fields?: (
                    { name?: string | undefined; basicType?: EventLogConfig_BasicFieldType | undefined; coinType?: { symbol?: string | undefined; address?: { address?: string | undefined; chain?: string | undefined; } | undefined; } | undefined; structType?: { ...; } | undefined; }
                )[];
            };
        },
    ): EventLogConfig_Field;
    decode(input: Uint8Array | Reader, length?: number): EventLogConfig_Field;
    encode(message: EventLogConfig_Field, writer?: Writer): Writer;
    fromJSON(object: any): EventLogConfig_Field;
    fromPartial(
        object: {
            basicType?: EventLogConfig_BasicFieldType;
            coinType?: {
                address?: { address?: string; chain?: string };
                symbol?: string;
            };
            name?: string;
            structType?: {
                fields?: (
                    { name?: string | undefined; basicType?: EventLogConfig_BasicFieldType | undefined; coinType?: { symbol?: string | undefined; address?: { address?: string | undefined; chain?: string | undefined; } | undefined; } | undefined; structType?: { ...; } | undefined; }
                )[];
            };
        },
    ): EventLogConfig_Field;
    toJSON(message: EventLogConfig_Field): unknown;
}