/** * This file was automatically generated by @oraichain/ts-codegen@0.35.9. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run the @oraichain/ts-codegen generate command to regenerate this file. */ import { CosmWasmClient, SigningCosmWasmClient, ExecuteResult } from "@cosmjs/cosmwasm-stargate"; import { Coin, StdFee } from "@cosmjs/amino"; import { Addr, Asset, Config, RewardTokensResponse } from "./RefundBtc.types"; export interface RefundBtcReadOnlyInterface { contractAddress: string; rewardTokens: ({ addr }: { addr: Addr; }) => Promise; config: () => Promise; } export declare class RefundBtcQueryClient implements RefundBtcReadOnlyInterface { client: CosmWasmClient; contractAddress: string; constructor(client: CosmWasmClient, contractAddress: string); rewardTokens: ({ addr }: { addr: Addr; }) => Promise; config: () => Promise; } export interface RefundBtcInterface extends RefundBtcReadOnlyInterface { contractAddress: string; sender: string; claim: (_fee?: number | StdFee | "auto", _memo?: string, _funds?: Coin[]) => Promise; addRewarder: ({ rewarder, rewards }: { rewarder: Addr; rewards: Asset[]; }, _fee?: number | StdFee | "auto", _memo?: string, _funds?: Coin[]) => Promise; } export declare class RefundBtcClient extends RefundBtcQueryClient implements RefundBtcInterface { client: SigningCosmWasmClient; sender: string; contractAddress: string; constructor(client: SigningCosmWasmClient, sender: string, contractAddress: string); claim: (_fee?: number | StdFee | "auto", _memo?: string, _funds?: Coin[]) => Promise; addRewarder: ({ rewarder, rewards }: { rewarder: Addr; rewards: Asset[]; }, _fee?: number | StdFee | "auto", _memo?: string, _funds?: Coin[]) => Promise; }