@q-dev/q-js-sdk
Version:
Typescript Library to interact with Q System Contracts
31 lines (30 loc) • 1.18 kB
TypeScript
import { Signer } from "ethers";
import type { Provider } from "@ethersproject/providers";
import type { IERC677TransferReceiver, IERC677TransferReceiverInterface } from "../IERC677TransferReceiver";
export declare class IERC677TransferReceiver__factory {
static readonly abi: readonly [{
readonly inputs: readonly [{
readonly internalType: "address";
readonly name: "_from";
readonly type: "address";
}, {
readonly internalType: "uint256";
readonly name: "_amount";
readonly type: "uint256";
}, {
readonly internalType: "bytes";
readonly name: "_data";
readonly type: "bytes";
}];
readonly name: "tokenFallback";
readonly outputs: readonly [{
readonly internalType: "bool";
readonly name: "";
readonly type: "bool";
}];
readonly stateMutability: "nonpayable";
readonly type: "function";
}];
static createInterface(): IERC677TransferReceiverInterface;
static connect(address: string, signerOrProvider: Signer | Provider): IERC677TransferReceiver;
}