Skip to content

Commit

Permalink
fix: avalanche chainId
Browse files Browse the repository at this point in the history
  • Loading branch information
ErnoW committed Aug 24, 2022
1 parent 263779d commit a0ece52
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 a0ece52

Please sign in to comment.