Skip to content

Commit

Permalink
fix: update network ID
Browse files Browse the repository at this point in the history
  • Loading branch information
Sekhmet committed Nov 23, 2023
1 parent 982ced2 commit 81dd6bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/evm/provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export class EvmProvider extends BaseProvider {

async getNetworkIdentifier(): Promise<string> {
const result = await this.provider.getNetwork();
return `starknet_${result.chainId}`;
return `evm_${result.chainId}`;
}

async getLatestBlockNumber(): Promise<number> {
Expand Down

0 comments on commit 81dd6bf

Please sign in to comment.