2
0
mirror of synced 2025-02-24 12:08:10 +00:00
2020-01-10 19:59:20 -05:00

13 lines
234 B
TypeScript

"use strict";
let ethers: any = { };
const w = (window as any);
if (w._ethers == null) {
console.log("WARNING: @ethersproject/hardware-wallet requires ethers loaded first");
} else {
ethers = w._ethers;
}
export { ethers }