There are a number of ethersjs imports in the library as follows:
import ethers from 'ethers'
In my build process, this causes an error as ethersjs does not have a default export. The correct way of importing seems to be import { ethers } from 'ethers'
There are a number of ethersjs imports in the library as follows:
import ethers from 'ethers'In my build process, this causes an error as ethersjs does not have a default export. The correct way of importing seems to be
import { ethers } from 'ethers'