ethers.js/ethers.d.ts

13 lines
676 B
TypeScript
Raw Normal View History

import { Contract, Interface } from './contracts';
2018-08-03 03:43:09 +03:00
import * as providers from './providers';
import { HDNode, SigningKey, Wallet } from './wallet';
2018-08-03 03:43:09 +03:00
import { constants } from './utils/constants';
import * as errors from './utils/errors';
import * as utils from './utils';
2018-08-03 03:43:09 +03:00
import * as types from './types';
import * as wordlists from './wordlists';
2018-08-02 01:05:19 +03:00
import { platform } from './utils/shims';
import { version } from './_version';
2018-08-03 03:43:09 +03:00
declare function getDefaultProvider(network?: types.Network | string): providers.BaseProvider;
2018-08-02 01:05:19 +03:00
export { Wallet, HDNode, SigningKey, Contract, Interface, getDefaultProvider, providers, errors, constants, utils, types, wordlists, platform, version };