@q-dev/q-ts-gdk-sdk
Version:
Typescript Library to interact with GDK Contracts
22 lines (21 loc) • 842 B
TypeScript
/// <reference types="node" />
import type { ContractOptions } from "web3-eth-contract";
import type { EventLog } from "web3-core";
import type { EventEmitter } from "events";
import type { Callback, NonPayableTransactionObject, BlockType, BaseContract } from "./types";
export interface EventOptions {
filter?: object;
fromBlock?: BlockType;
topics?: string[];
}
export interface IDAOResource extends BaseContract {
constructor(jsonInterface: any[], address?: string, options?: ContractOptions): IDAOResource;
clone(): IDAOResource;
methods: {
checkPermission(member_: string, permission_: string): NonPayableTransactionObject<boolean>;
getResource(): NonPayableTransactionObject<string>;
};
events: {
allEvents(options?: EventOptions, cb?: Callback<EventLog>): EventEmitter;
};
}