/** * This file was automatically generated by @cosmwasm/ts-codegen@0.30.1. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run the @cosmwasm/ts-codegen generate command to regenerate this file. */ import { CosmWasmClient, SigningCosmWasmClient, ExecuteResult } from "@cosmjs/cosmwasm-stargate"; import { Coin, StdFee } from "@cosmjs/amino"; import { Config } from "./FairBurn.types"; export interface FairBurnReadOnlyInterface { contractAddress: string; config: () => Promise; } export declare class FairBurnQueryClient implements FairBurnReadOnlyInterface { client: CosmWasmClient; contractAddress: string; constructor(client: CosmWasmClient, contractAddress: string); config: () => Promise; } export interface FairBurnInterface extends FairBurnReadOnlyInterface { contractAddress: string; sender: string; fairBurn: ({ recipient }: { recipient?: string; }, fee?: number | StdFee | "auto", memo?: string, _funds?: Coin[]) => Promise; } export declare class FairBurnClient extends FairBurnQueryClient implements FairBurnInterface { client: SigningCosmWasmClient; sender: string; contractAddress: string; constructor(client: SigningCosmWasmClient, sender: string, contractAddress: string); fairBurn: ({ recipient }: { recipient?: string | undefined; }, fee?: number | StdFee | "auto", memo?: string, _funds?: Coin[]) => Promise; }