Hopers.io smart contract interface.
yarn add @hopersio/contractsAll contracts are scoped under the contracts object:
import { contracts } from "@hopersio/contracts"
const { CW20Base, HopersStaking, HopersSwapHopers, HopersSwapOthers } = contractsThen each contract will have clients, for example for HopersStaking:
const { HopersStakingClient, HopersStakingMessageComposer, HopersStakingQueryClient } =
	HopersStakingconst queryClient = new HopersStakingQueryClient(wasmClient, contractAddress)const client = new HopersStaking(signingWasmClient, sender, contractAddress)
await client.stake(msg)🛠 Built by Digital Kitchen, based on Cosmology ⚛️ goodness!
Using CosmWasm TS Codegen:
- @cosmwasm/ts-codegen for generated CosmWasm contract Typescript classes