We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
ethers-io
Learn more about funding links in repositories.
Report abuse
1 parent 095de51 commit b69f43bCopy full SHA for b69f43b
src.ts/providers/provider-browser.ts
@@ -49,6 +49,8 @@ export class BrowserProvider extends JsonRpcApiPollingProvider {
49
* %%network%%.
50
*/
51
constructor(ethereum: Eip1193Provider, network?: Networkish) {
52
+ assertArgument(ethereum && ethereum.request, "invalid EIP-1193 provider", "ethereum", ethereum);
53
+
54
super(network, { batchMaxCount: 1 });
55
56
this.#request = async (method: string, params: Array<any> | Record<string, any>) => {
0 commit comments