Proof: {
    create<I>(base?): Proof;
    decode(input, length?): Proof;
    encode(message, writer?): Writer;
    fromJSON(object): Proof;
    fromPartial<I>(object): Proof;
    toJSON(message): unknown;
}

Type declaration

  • create:function
    • Type Parameters

      • I extends {
            addresses?: string[];
            signatures?: string[];
            threshold?: string;
            weights?: string[];
        } & {
            addresses?: string[] & string[] & {
                [K in string | symbol]: never
            };
            signatures?: string[] & string[] & {
                [K in string | symbol]: never
            };
            threshold?: string;
            weights?: string[] & string[] & {
                [K in string | symbol]: never
            };
        } & {
            [K in string | number | symbol]: never
        }

      Parameters

      • Optional base: I

      Returns Proof

  • decode:function
  • encode:function
  • fromJSON:function
  • fromPartial:function
    • Type Parameters

      • I extends {
            addresses?: string[];
            signatures?: string[];
            threshold?: string;
            weights?: string[];
        } & {
            addresses?: string[] & string[] & {
                [K in string | symbol]: never
            };
            signatures?: string[] & string[] & {
                [K in string | symbol]: never
            };
            threshold?: string;
            weights?: string[] & string[] & {
                [K in string | symbol]: never
            };
        } & {
            [K in string | number | symbol]: never
        }

      Parameters

      • object: I

      Returns Proof

  • toJSON:function

Generated using TypeDoc