@ardier16/q-js-sdk
Version:
Typescript Library to interact with Q System Contracts
52 lines (41 loc) • 1.31 kB
TypeScript
/* Autogenerated file. Do not edit manually. */
/* tslint:disable */
/* eslint-disable */
import BN from "bn.js";
import { ContractOptions } from "web3-eth-contract";
import { EventLog } from "web3-core";
import { EventEmitter } from "events";
import {
Callback,
PayableTransactionObject,
NonPayableTransactionObject,
BlockType,
ContractEventLog,
BaseContract,
} from "./types";
interface EventOptions {
filter?: object;
fromBlock?: BlockType;
topics?: string[];
}
export interface GsnEip712Library extends BaseContract {
constructor(
jsonInterface: any[],
address?: string,
options?: ContractOptions
): GsnEip712Library;
clone(): GsnEip712Library;
methods: {
EIP712DOMAIN_TYPEHASH(): NonPayableTransactionObject<string>;
GENERIC_PARAMS(): NonPayableTransactionObject<string>;
RELAYDATA_TYPE(): NonPayableTransactionObject<string>;
RELAYDATA_TYPEHASH(): NonPayableTransactionObject<string>;
RELAY_REQUEST_NAME(): NonPayableTransactionObject<string>;
RELAY_REQUEST_SUFFIX(): NonPayableTransactionObject<string>;
RELAY_REQUEST_TYPE(): NonPayableTransactionObject<string>;
RELAY_REQUEST_TYPEHASH(): NonPayableTransactionObject<string>;
};
events: {
allEvents(options?: EventOptions, cb?: Callback<EventLog>): EventEmitter;
};
}