18 lines
562 B
JavaScript
18 lines
562 B
JavaScript
"use strict";
|
|
// To modify this file, you must update ./admin/cmds/update-exports.js
|
|
import * as ethers from "./ethers";
|
|
try {
|
|
const anyGlobal = window;
|
|
if (anyGlobal._ethers == null) {
|
|
anyGlobal._ethers = ethers;
|
|
}
|
|
}
|
|
catch (error) {
|
|
console.log("FOOBAR", error);
|
|
}
|
|
export { ethers };
|
|
export { Signer, Wallet, VoidSigner, getDefaultProvider, providers, Contract, ContractFactory, BigNumber, FixedNumber, constants, errors, logger, utils, wordlists,
|
|
////////////////////////
|
|
// Compile-Time Constants
|
|
version, Wordlist } from "./ethers";
|