Skip to content

Commit

Permalink
Add Degen chain
Browse files Browse the repository at this point in the history
  • Loading branch information
Destiner committed Apr 24, 2024
1 parent 48fab06 commit 5fd2898
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions utils/chains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ import {
immutableZkEvmTestnet,
aurora,
auroraTestnet,
degen,
opBNB,
opBNBTestnet,
manta,
Expand Down Expand Up @@ -171,6 +172,7 @@ const KLAYTN = klaytn.id;
const KLAYTN_BAOBAB = klaytnBaobab.id;
const AURORA = aurora.id;
const AURORA_TESTNET = auroraTestnet.id;
const DEGEN = degen.id;
const HARMONY = harmonyOne.id;
const CRONOS = cronos.id;
const OP_BNB = opBNB.id;
Expand Down Expand Up @@ -276,6 +278,7 @@ type Chain =
| typeof KLAYTN_BAOBAB
| typeof AURORA
| typeof AURORA_TESTNET
| typeof DEGEN
| typeof HARMONY
| typeof CRONOS
| typeof OP_BNB
Expand Down Expand Up @@ -381,6 +384,7 @@ const CHAINS: Chain[] = [
KLAYTN_BAOBAB,
AURORA,
AURORA_TESTNET,
DEGEN,
HARMONY,
CRONOS,
OP_BNB,
Expand Down Expand Up @@ -558,6 +562,8 @@ function getChainData(chain: Chain): ChainData {
return aurora;
case AURORA_TESTNET:
return auroraTestnet;
case DEGEN:
return degen;
case HARMONY:
return harmonyOne;
case CRONOS:
Expand Down

0 comments on commit 5fd2898

Please sign in to comment.