Skip to content

Commit

Permalink
fix: networkversion
Browse files Browse the repository at this point in the history
  • Loading branch information
kvhnuke committed Sep 11, 2023
1 parent 8d155a5 commit 8b0bafb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/extension/src/providers/ethereum/inject.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export class Provider extends EventEmitter implements ProviderInterface {
})
).then((res) => {
this.chainId = res;
this.networkVersion = res;
this.networkVersion = Number(res).toString();
});
}
if (
Expand Down

1 comment on commit 8b0bafb

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.