@q-dev/gdk-sdk
Version:
Typescript Library to interact with GDK Contracts
44 lines (43 loc) • 1.55 kB
TypeScript
import { Signer } from "ethers";
import type { Provider } from "@ethersproject/providers";
import type { IDAOMetadata, IDAOMetadataInterface } from "../IDAOMetadata";
export declare class IDAOMetadata__factory {
static readonly abi: readonly [{
readonly anonymous: false;
readonly inputs: readonly [{
readonly indexed: false;
readonly internalType: "address";
readonly name: "daoAddress";
readonly type: "address";
}, {
readonly indexed: false;
readonly internalType: "string";
readonly name: "daoURI";
readonly type: "string";
}];
readonly name: "DAOURIUpdate";
readonly type: "event";
}, {
readonly inputs: readonly [];
readonly name: "daoURI";
readonly outputs: readonly [{
readonly internalType: "string";
readonly name: "_daoURI";
readonly type: "string";
}];
readonly stateMutability: "view";
readonly type: "function";
}, {
readonly inputs: readonly [{
readonly internalType: "string";
readonly name: "daoURI_";
readonly type: "string";
}];
readonly name: "setDAOMetadata";
readonly outputs: readonly [];
readonly stateMutability: "nonpayable";
readonly type: "function";
}];
static createInterface(): IDAOMetadataInterface;
static connect(address: string, signerOrProvider: Signer | Provider): IDAOMetadata;
}