cic-client
Version:
Typescript libraries for building CIC client applications
10 lines (9 loc) • 383 B
TypeScript
import { FileGetter } from './file';
declare const interfaceCodes: {
ERC20: string;
Registry: string;
Declarator: string;
};
declare function abi(fileGetter: FileGetter, interface_name: string, paths: string[]): Promise<Object>;
declare function bin(fileGetter: FileGetter, interface_name: string, paths: string[]): Promise<string>;
export { abi, bin, interfaceCodes, };