/* Generated by ts-generator ver. 0.0.8 */ /* tslint:disable */ import BN from "bn.js"; import { Contract, ContractOptions } from "web3-eth-contract"; import { EventLog } from "web3-core"; import { EventEmitter } from "events"; import { ContractEvent, Callback, TransactionObject, BlockType } from "./types"; interface EventOptions { filter?: object; fromBlock?: BlockType; topics?: string[]; } export class ProxySafeVanillaFDT extends Contract { constructor( jsonInterface: any[], address?: string, options?: ContractOptions ); clone(): ProxySafeVanillaFDT; methods: { accumulativeFundsOf(_owner: string): TransactionObject; allowance(owner: string, spender: string): TransactionObject; approve( spender: string, amount: number | string ): TransactionObject; balanceOf(account: string): TransactionObject; decimals(): TransactionObject; decreaseAllowance( spender: string, subtractedValue: number | string ): TransactionObject; fundsToken(): TransactionObject; fundsTokenBalance(): TransactionObject; increaseAllowance( spender: string, addedValue: number | string ): TransactionObject; name(): TransactionObject; owner(): TransactionObject; renounceOwnership(): TransactionObject; symbol(): TransactionObject; totalSupply(): TransactionObject; transferOwnership(newOwner: string): TransactionObject; withdrawableFundsOf(_owner: string): TransactionObject; withdrawnFundsOf(_owner: string): TransactionObject; withdrawFunds(): TransactionObject; updateFundsReceived(): TransactionObject; initialize( name: string, symbol: string, _fundsToken: string, owner: string, initialAmount: number | string ): TransactionObject; pushFunds(owners: string[]): TransactionObject; transfer(to: string, value: number | string): TransactionObject; transferFrom( from: string, to: string, value: number | string ): TransactionObject; mint(account: string, amount: number | string): TransactionObject; burn(account: string, amount: number | string): TransactionObject; }; events: { Approval: ContractEvent<{ owner: string; spender: string; value: string; 0: string; 1: string; 2: string; }>; FundsDistributed: ContractEvent<{ by: string; fundsDistributed: string; 0: string; 1: string; }>; FundsWithdrawn: ContractEvent<{ by: string; fundsWithdrawn: string; 0: string; 1: string; }>; OwnershipTransferred: ContractEvent<{ previousOwner: string; newOwner: string; 0: string; 1: string; }>; Transfer: ContractEvent<{ from: string; to: string; value: string; 0: string; 1: string; 2: string; }>; allEvents: ( options?: EventOptions, cb?: Callback ) => EventEmitter; }; }