/* Generated by ts-generator ver. 0.0.8 */
/* tslint:disable */

import Contract, { CustomOptions, contractOptions } from "web3/eth/contract";
import { TransactionObject, BlockType } from "web3/eth/types";
import { Callback, EventLog } from "web3/types";
import { EventEmitter } from "events";
import { Provider } from "web3/providers";

export class IArbitrumGasInfo {
  constructor(jsonInterface: any[], address?: string, options?: CustomOptions);
  _address: string;
  options: contractOptions;
  methods: {
    getPricesInWeiWithAggregator(
      aggregator: string
    ): TransactionObject<{
      0: string;
      1: string;
      2: string;
      3: string;
      4: string;
      5: string;
    }>;

    getPricesInWei(): TransactionObject<{
      0: string;
      1: string;
      2: string;
      3: string;
      4: string;
      5: string;
    }>;

    getPricesInArbGasWithAggregator(
      aggregator: string
    ): TransactionObject<{
      0: string;
      1: string;
      2: string;
    }>;

    getPricesInArbGas(): TransactionObject<{
      0: string;
      1: string;
      2: string;
    }>;

    getGasAccountingParams(): TransactionObject<{
      0: string;
      1: string;
      2: string;
    }>;

    setL1GasPriceEstimate(priceInWei: number | string): TransactionObject<void>;

    getL1GasPriceEstimate(): TransactionObject<string>;
    getCurrentTxL1GasFees(): TransactionObject<string>;
  };
  deploy(options: {
    data: string;
    arguments: any[];
  }): TransactionObject<Contract>;
  events: {
    allEvents: (
      options?: {
        filter?: object;
        fromBlock?: BlockType;
        topics?: (null | string)[];
      },
      cb?: Callback<EventLog>
    ) => EventEmitter;
  };
  getPastEvents(
    event: string,
    options?: {
      filter?: object;
      fromBlock?: BlockType;
      toBlock?: BlockType;
      topics?: (null | string)[];
    },
    cb?: Callback<EventLog[]>
  ): Promise<EventLog[]>;
  setProvider(provider: Provider): void;
  clone(): IArbitrumGasInfo;
}
