Skip to content

Commit

Permalink
Merge pull request #607 from MoralisWeb3/fix-avalanche-chainid
Browse files Browse the repository at this point in the history
fix: avalanche chainId
  • Loading branch information
ErnoW authored Aug 24, 2022
2 parents 5644d32 + a0ece52 commit d543356
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/calm-birds-buy.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@moralisweb3/evm-utils': patch
---

Fix avalanche chainId from 43113 to 43114 when using `EvmChain.AVALANCHE`
2 changes: 1 addition & 1 deletion packages/evmUtils/src/dataTypes/EvmChain/EvmChain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export class EvmChain implements MoralisData, EvmChainable {
return EvmChain.create(97);
}
public static get AVALANCHE() {
return EvmChain.create(43113);
return EvmChain.create(43114);
}
public static get FUJI() {
return EvmChain.create(43113);
Expand Down

0 comments on commit d543356

Please sign in to comment.