@q-dev/q-js-sdk
Version:
Typescript Library to interact with Q System Contracts
43 lines (42 loc) • 1.55 kB
TypeScript
import { Signer } from "ethers";
import type { Provider } from "@ethersproject/providers";
import type { BaseRelayRecipient, BaseRelayRecipientInterface } from "../BaseRelayRecipient";
export declare class BaseRelayRecipient__factory {
static readonly abi: readonly [{
readonly inputs: readonly [];
readonly name: "versionRecipient";
readonly outputs: readonly [{
readonly internalType: "string";
readonly name: "";
readonly type: "string";
}];
readonly stateMutability: "view";
readonly type: "function";
}, {
readonly inputs: readonly [];
readonly name: "trustedForwarder";
readonly outputs: readonly [{
readonly internalType: "address";
readonly name: "";
readonly type: "address";
}];
readonly stateMutability: "view";
readonly type: "function";
}, {
readonly inputs: readonly [{
readonly internalType: "address";
readonly name: "forwarder";
readonly type: "address";
}];
readonly name: "isTrustedForwarder";
readonly outputs: readonly [{
readonly internalType: "bool";
readonly name: "";
readonly type: "bool";
}];
readonly stateMutability: "view";
readonly type: "function";
}];
static createInterface(): BaseRelayRecipientInterface;
static connect(address: string, signerOrProvider: Signer | Provider): BaseRelayRecipient;
}