@q-dev/gdk-sdk
Version:
Typescript Library to interact with GDK Contracts
10 lines (9 loc) • 565 B
TypeScript
import { providers, Signer } from "ethers";
import { SystemContractInstance } from "../SystemContractInstance";
import { DAOParameterStorage } from "../../ethers-contracts";
import { ParameterStructOutput } from "../../ethers-contracts/MasterDAOFactory";
export declare class DAOParameterStorageInstance extends SystemContractInstance<DAOParameterStorage> {
constructor(signer: Signer | providers.Provider, address: string);
getDAOParameter(parameterName: string): Promise<ParameterStructOutput>;
getDAOParameters(): Promise<ParameterStructOutput[]>;
}