@sentio/sdk
    Preparing search index...

    Variable RichStructList

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

    Type Declaration

    • create: function
      • Parameters

        • Optionalbase: {
              entities?: {
                  fields?: {
                      [key: string]:
                          | undefined
                          | {
                              bigdecimalValue?: (...)
                              | (...);
                              bigintValue?: (...) | (...);
                              boolValue?: (...) | (...) | (...);
                              bytesValue?: (...) | (...);
                              floatValue?: (...) | (...);
                              int64Value?: (...) | (...);
                              intValue?: (...) | (...);
                              listValue?: (...) | (...);
                              nullValue?: (...) | (...);
                              stringValue?: (...) | (...);
                              structValue?: (...) | (...);
                              timestampValue?: (...) | (...);
                              tokenValue?: (...) | (...);
                          };
                  };
              }[];
          }

        Returns RichStructList

    • decode: function
      • Parameters

        • input: Uint8Array<ArrayBufferLike> | Reader
        • Optionallength: number

        Returns RichStructList

    • encode: function
      • Parameters

        Returns Writer

    • fromJSON: function
      • Parameters

        • object: any

        Returns RichStructList

    • fromPartial: function
      • Parameters

        • object: {
              entities?: {
                  fields?: {
                      [key: string]:
                          | undefined
                          | {
                              bigdecimalValue?: { exp?: ...; value?: ... };
                              bigintValue?: { data?: ...; negative?: ... };
                              boolValue?: boolean;
                              bytesValue?: Uint8Array<(...)>;
                              floatValue?: number;
                              int64Value?: bigint;
                              intValue?: number;
                              listValue?: { values?: ... };
                              nullValue?: RichValue_NullValue;
                              stringValue?: string;
                              structValue?: { fields?: { [x: string]: { nullValue?: RichValue_NullValue | undefined; intValue?: number | undefined; int64Value?: bigint | undefined; floatValue?: number | undefined; ... 8 more ...; tokenValue?: { ...; } | undefined; } | undefined; } | undefined; };
                              timestampValue?: Date;
                              tokenValue?: { amount?: ...; specifiedAt?: ...; token?: ... };
                          };
                  };
              }[];
          }

        Returns RichStructList

    • toJSON: function
      • Parameters

        Returns unknown