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

Type declaration

  • create:function
    • Type Parameters

      • I extends {
            chain?: string;
            contractAddress?: string;
            fee?: {
                amount?: {
                    amount?: string;
                    denom?: string;
                };
                recipient?: Uint8Array;
                refundRecipient?: Uint8Array;
            };
            payload?: Uint8Array;
            sender?: Uint8Array;
        } & {
            chain?: string;
            contractAddress?: string;
            fee?: {
                amount?: {
                    amount?: string;
                    denom?: string;
                };
                recipient?: Uint8Array;
                refundRecipient?: Uint8Array;
            } & {
                amount?: {
                    amount?: string;
                    denom?: string;
                } & {
                    amount?: string;
                    denom?: string;
                } & {
                    [K in string | number | symbol]: never
                };
                recipient?: Uint8Array;
                refundRecipient?: Uint8Array;
            } & {
                [K in string | number | symbol]: never
            };
            payload?: Uint8Array;
            sender?: Uint8Array;
        } & {
            [K in string | number | symbol]: never
        }

      Parameters

      • Optional base: I

      Returns CallContractRequest

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

      • I extends {
            chain?: string;
            contractAddress?: string;
            fee?: {
                amount?: {
                    amount?: string;
                    denom?: string;
                };
                recipient?: Uint8Array;
                refundRecipient?: Uint8Array;
            };
            payload?: Uint8Array;
            sender?: Uint8Array;
        } & {
            chain?: string;
            contractAddress?: string;
            fee?: {
                amount?: {
                    amount?: string;
                    denom?: string;
                };
                recipient?: Uint8Array;
                refundRecipient?: Uint8Array;
            } & {
                amount?: {
                    amount?: string;
                    denom?: string;
                } & {
                    amount?: string;
                    denom?: string;
                } & {
                    [K in string | number | symbol]: never
                };
                recipient?: Uint8Array;
                refundRecipient?: Uint8Array;
            } & {
                [K in string | number | symbol]: never
            };
            payload?: Uint8Array;
            sender?: Uint8Array;
        } & {
            [K in string | number | symbol]: never
        }

      Parameters

      • object: I

      Returns CallContractRequest

  • toJSON:function

Generated using TypeDoc