Skip to content

Commit

Permalink
Adding Sepolia network to network prefixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanml committed Sep 27, 2022
1 parent 104ea37 commit 29efb4d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/prefix-for-network.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ export = function getPrefixForNetwork(networkId: string): string | null {
case 42: // kovan test net
prefix = 'kovan.';
break;
case 11155111: // sepolia test net
prefix = 'sepolia.';
break;
default:
prefix = null;
}
Expand Down

0 comments on commit 29efb4d

Please sign in to comment.