/* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ import BN from "bn.js"; import { EventData, PastEventOptions } from "../Web3Types"; export interface TestRecipientWithoutFallbackContract extends Truffle.Contract { "new"( forwarder: string, meta?: Truffle.TransactionDetails ): Promise; } type AllEvents = never; export interface TestRecipientWithoutFallbackInstance extends Truffle.ContractInstance { /** * :warning: **Warning** :warning: The Forwarder can have a full control over your Recipient. Only trust verified Forwarder.Method is not a required method to allow Recipients to trust multiple Forwarders. Not recommended yet. */ getTrustedForwarder(txDetails?: Truffle.TransactionDetails): Promise; /** * :warning: **Warning** :warning: The Forwarder can have a full control over your Recipient. Only trust verified Forwarder. * @param forwarder The address of the Forwarder contract that is being used. */ isTrustedForwarder( forwarder: string, txDetails?: Truffle.TransactionDetails ): Promise; methods: { /** * :warning: **Warning** :warning: The Forwarder can have a full control over your Recipient. Only trust verified Forwarder.Method is not a required method to allow Recipients to trust multiple Forwarders. Not recommended yet. */ getTrustedForwarder( txDetails?: Truffle.TransactionDetails ): Promise; /** * :warning: **Warning** :warning: The Forwarder can have a full control over your Recipient. Only trust verified Forwarder. * @param forwarder The address of the Forwarder contract that is being used. */ isTrustedForwarder( forwarder: string, txDetails?: Truffle.TransactionDetails ): Promise; }; getPastEvents(event: string): Promise; getPastEvents( event: string, options: PastEventOptions, callback: (error: Error, event: EventData) => void ): Promise; getPastEvents(event: string, options: PastEventOptions): Promise; getPastEvents( event: string, callback: (error: Error, event: EventData) => void ): Promise; }