@q-dev/q-js-sdk
Version:
Typescript Library to interact with Q System Contracts
32 lines (31 loc) • 1.21 kB
TypeScript
import { Signer } from "ethers";
import type { Provider } from "@ethersproject/providers";
import type { ValidationRewardProxy, ValidationRewardProxyInterface } from "../ValidationRewardProxy";
export declare class ValidationRewardProxy__factory {
static readonly abi: readonly [{
readonly inputs: readonly [];
readonly stateMutability: "nonpayable";
readonly type: "constructor";
}, {
readonly stateMutability: "payable";
readonly type: "receive";
}, {
readonly inputs: readonly [{
readonly internalType: "address";
readonly name: "_registry";
readonly type: "address";
}];
readonly name: "initialize";
readonly outputs: readonly [];
readonly stateMutability: "nonpayable";
readonly type: "function";
}, {
readonly inputs: readonly [];
readonly name: "allocate";
readonly outputs: readonly [];
readonly stateMutability: "nonpayable";
readonly type: "function";
}];
static createInterface(): ValidationRewardProxyInterface;
static connect(address: string, signerOrProvider: Signer | Provider): ValidationRewardProxy;
}