@q-dev/gdk-sdk
Version:
Typescript Library to interact with GDK Contracts
37 lines (36 loc) • 1.31 kB
TypeScript
import { Signer } from "ethers";
import type { Provider } from "@ethersproject/providers";
import type { IDAOResource, IDAOResourceInterface } from "../IDAOResource";
export declare class IDAOResource__factory {
static readonly abi: readonly [{
readonly inputs: readonly [{
readonly internalType: "address";
readonly name: "member_";
readonly type: "address";
}, {
readonly internalType: "string";
readonly name: "permission_";
readonly type: "string";
}];
readonly name: "checkPermission";
readonly outputs: readonly [{
readonly internalType: "bool";
readonly name: "";
readonly type: "bool";
}];
readonly stateMutability: "view";
readonly type: "function";
}, {
readonly inputs: readonly [];
readonly name: "getResource";
readonly outputs: readonly [{
readonly internalType: "string";
readonly name: "";
readonly type: "string";
}];
readonly stateMutability: "view";
readonly type: "function";
}];
static createInterface(): IDAOResourceInterface;
static connect(address: string, signerOrProvider: Signer | Provider): IDAOResource;
}