@myclique/governance-sdk
Version:
The SDK is provides easy access to the high level interactions to be governance with an Clique DAO.
14 lines (13 loc) • 454 B
TypeScript
import { Signer } from "@ethersproject/abstract-signer";
import { JsonRpcProvider } from "@ethersproject/providers";
import { CChainId } from "../constants";
declare type Web3ProvidersType = {
[key in CChainId]: string | JsonRpcProvider | (string | JsonRpcProvider)[];
};
export declare type Web3ContextParams = {
signer?: Signer;
daoAddress: string;
daoChainId: CChainId;
web3Providers: Web3ProvidersType;
};
export {};