@kubiklabs/wasmkit
Version:
Wasmkit is a development environment to compile, deploy, test, run cosmwasm contracts on different networks.
19 lines (18 loc) • 411 B
TypeScript
import type { AnyJson } from '../../types';
export interface AbiParam {
name: string;
type: any;
}
export interface AbiMessage {
args: AbiParam[];
docs?: string[];
identifier: string;
isConstructor?: boolean;
returnType?: any;
}
export declare class Abi {
readonly json: AnyJson;
messages: AbiMessage[];
constructor(abiJson: AnyJson);
parseSchema(): Promise<void>;
}