@colony/colony-js-adapter
Version:
ColonyContract adapter interfaces
28 lines (26 loc) • 861 B
JavaScript
/* @flow */
export type { Adapter as IAdapter } from './interface/Adapter';
export type { Block } from './interface/Block';
export type { Event, EventArgs } from './interface/Event';
export type {
EventHandler,
EventHandlers,
EventCallback,
} from './interface/EventHandlers';
export type { Contract as IContract } from './interface/Contract';
export type {
Provider as IProvider,
Log,
LogFilter,
} from './interface/Provider';
export type { Signature } from './interface/Signature';
export type { Transaction } from './interface/Transaction';
export type { TransactionReceipt } from './interface/TransactionReceipt';
export type { TransactionOptions } from './interface/TransactionOptions';
export type { Wallet as IWallet } from './interface/Wallet';
export type {
CallFn,
EstimateFn,
InterfaceFn,
SendFn,
} from './interface/Functions';