/** * 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 { SigningCosmWasmClient, ExecuteResult } from "@cosmjs/cosmwasm-stargate"; import { StdFee } from "@cosmjs/amino"; import { Coin } from "./BaseMinter.types"; export interface BaseMinterInterface { contractAddress: string; sender: string; mint: ({ tokenUri }: { tokenUri: string; }, fee?: number | StdFee | "auto", memo?: string, _funds?: Coin[]) => Promise; updateStartTradingTime: (fee?: number | StdFee | "auto", memo?: string, _funds?: Coin[]) => Promise; } export declare class BaseMinterClient implements BaseMinterInterface { client: SigningCosmWasmClient; sender: string; contractAddress: string; constructor(client: SigningCosmWasmClient, sender: string, contractAddress: string); mint: ({ tokenUri }: { tokenUri: string; }, fee?: number | StdFee | "auto", memo?: string, _funds?: Coin[]) => Promise; updateStartTradingTime: (fee?: number | StdFee | "auto", memo?: string, _funds?: Coin[]) => Promise; }