/** * 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 { Coin } from "@cosmjs/amino"; import { MsgExecuteContractEncodeObject } from "@cosmjs/cosmwasm-stargate"; export interface FairBurnMessage { contractAddress: string; sender: string; fairBurn: ({ recipient }: { recipient?: string; }, _funds?: Coin[]) => MsgExecuteContractEncodeObject; } export declare class FairBurnMessageComposer implements FairBurnMessage { sender: string; contractAddress: string; constructor(sender: string, contractAddress: string); fairBurn: ({ recipient }: { recipient?: string | undefined; }, _funds?: Coin[]) => MsgExecuteContractEncodeObject; }