index.ts 1007 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. "use strict";
  2. // To modify this file, you must update ./misc/admin/lib/cmds/update-exports.js
  3. import * as ethers from "./ethers";
  4. try {
  5. const anyGlobal = (window as any);
  6. if (anyGlobal._ethers == null) {
  7. anyGlobal._ethers = ethers;
  8. }
  9. } catch (error) { }
  10. export { ethers };
  11. export {
  12. Signer,
  13. Wallet,
  14. VoidSigner,
  15. getDefaultProvider,
  16. providers,
  17. BaseContract,
  18. Contract,
  19. ContractFactory,
  20. BigNumber,
  21. FixedNumber,
  22. constants,
  23. errors,
  24. logger,
  25. utils,
  26. wordlists,
  27. ////////////////////////
  28. // Compile-Time Constants
  29. version,
  30. ////////////////////////
  31. // Types
  32. ContractFunction,
  33. ContractReceipt,
  34. ContractTransaction,
  35. Event,
  36. EventFilter,
  37. Overrides,
  38. PayableOverrides,
  39. CallOverrides,
  40. PopulatedTransaction,
  41. ContractInterface,
  42. BigNumberish,
  43. Bytes,
  44. BytesLike,
  45. Signature,
  46. Transaction,
  47. UnsignedTransaction,
  48. Wordlist
  49. } from "./ethers";