Skip to content

Commit

Permalink
Add support for the sepolia network (#60)
Browse files Browse the repository at this point in the history
  • Loading branch information
danjm authored Sep 19, 2022
1 parent bcea85b commit 4e796ea
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/prefix-for-chain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ export = function getPrefixForChain(chainId: string): string | null {
case '0x2a': // kovan test net
prefix = 'kovan.';
break;
case '0xaa36a7': // sepolia test net
prefix = 'sepolia.';
break;
default:
prefix = null;
}
Expand Down

0 comments on commit 4e796ea

Please sign in to comment.