diff --git a/README.md b/README.md index a6c01b2..a9ee770 100644 --- a/README.md +++ b/README.md @@ -104,6 +104,12 @@
Berachain + +
+ Plasma +
Plasma +
+
coming soon @@ -116,13 +122,14 @@
🔜
+ +
coming soon
🔜
- diff --git a/src/constants.ts b/src/constants.ts index e3ed885..8d2605e 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -6,6 +6,7 @@ import { linea, scroll, mantle, + plasma, mainnet, polygon, arbitrum, @@ -75,6 +76,7 @@ export const NATIVE_SYMBOL_BY_CHAIN_ID: { [key in SupportedChainId]: string } = [linea.id]: linea.nativeCurrency.symbol, [scroll.id]: scroll.nativeCurrency.symbol, [mantle.id]: mantle.nativeCurrency.symbol, + [plasma.id]: plasma.nativeCurrency.symbol, [mainnet.id]: mainnet.nativeCurrency.symbol, [polygon.id]: polygon.nativeCurrency.symbol, [unichain.id]: unichain.nativeCurrency.symbol, diff --git a/src/types.ts b/src/types.ts index a6f2352..a60475f 100644 --- a/src/types.ts +++ b/src/types.ts @@ -6,6 +6,7 @@ import { linea, scroll, mantle, + plasma, mainnet, polygon, arbitrum, @@ -34,6 +35,7 @@ export type SupportedChainId = | typeof linea.id | typeof scroll.id | typeof mantle.id + | typeof plasma.id | typeof mainnet.id | typeof polygon.id | typeof arbitrum.id diff --git a/src/utils/index.ts b/src/utils/index.ts index fb34ef6..5f39a08 100644 --- a/src/utils/index.ts +++ b/src/utils/index.ts @@ -7,6 +7,7 @@ import { linea, scroll, mantle, + plasma, mainnet, polygon, arbitrum, @@ -36,6 +37,7 @@ export function isChainIdSupported( linea.id, scroll.id, mantle.id, + plasma.id, polygon.id, mainnet.id, arbitrum.id,