@myclique/governance-sdk
Version:
The SDK is provides easy access to the high level interactions to be governance with an Clique DAO.
11 lines (10 loc) • 400 B
TypeScript
import { IClientCore, IClientRequestCore, IClientWeb3Core } from "./interfaces/core";
import { Context } from "../Context";
/**
* Provides the low level foundation so that subclasses have ready-made access to Web3, server
*/
export declare abstract class ClientCore implements IClientCore {
web3: IClientWeb3Core;
request: IClientRequestCore;
constructor(context: Context);
}