@q-dev/q-js-sdk
Version:
Typescript Library to interact with Q System Contracts
42 lines (41 loc) • 1.51 kB
TypeScript
import { Signer } from "ethers";
import type { Provider } from "@ethersproject/providers";
import type { GreedyReceiverMock, GreedyReceiverMockInterface } from "../GreedyReceiverMock";
export declare class GreedyReceiverMock__factory {
static readonly abi: readonly [{
readonly anonymous: false;
readonly inputs: readonly [{
readonly indexed: false;
readonly internalType: "uint256";
readonly name: "value";
readonly type: "uint256";
}];
readonly name: "Recieved";
readonly type: "event";
}, {
readonly stateMutability: "payable";
readonly type: "receive";
}, {
readonly inputs: readonly [{
readonly internalType: "bool";
readonly name: "setingValue";
readonly type: "bool";
}];
readonly name: "changeMode";
readonly outputs: readonly [];
readonly stateMutability: "nonpayable";
readonly type: "function";
}, {
readonly inputs: readonly [{
readonly internalType: "address";
readonly name: "_withdrawble";
readonly type: "address";
}];
readonly name: "doWithdraw";
readonly outputs: readonly [];
readonly stateMutability: "nonpayable";
readonly type: "function";
}];
static createInterface(): GreedyReceiverMockInterface;
static connect(address: string, signerOrProvider: Signer | Provider): GreedyReceiverMock;
}