Variable EventLogConfig

EventLogConfig: {
    create(
        base?: {
            fields?: {
                basicType?: EventLogConfig_BasicFieldType;
                coinType?: {
                    address?: { address?: (...) | (...); chain?: (...) | (...) };
                    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; }[] | undefined;
                };
            }[];
            name?: string;
        },
    ): EventLogConfig;
    decode(input: Uint8Array | Reader, length?: number): EventLogConfig;
    encode(message: EventLogConfig, writer?: Writer): Writer;
    fromJSON(object: any): EventLogConfig;
    fromPartial(
        object: {
            fields?: {
                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; }[] | undefined;
                };
            }[];
            name?: string;
        },
    ): EventLogConfig;
    toJSON(message: EventLogConfig): unknown;
}