@sodax/sdk 1.0.0-rc.2 → 1.0.0-rc.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +2 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +7 -1
- package/dist/index.d.ts +7 -1
- package/dist/index.mjs +4 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.cjs
CHANGED
|
@@ -6826,6 +6826,8 @@ function getEvmViemChain(id) {
|
|
|
6826
6826
|
return hyper;
|
|
6827
6827
|
case types.LIGHTLINK_MAINNET_CHAIN_ID:
|
|
6828
6828
|
return chains.lightlinkPhoenix;
|
|
6829
|
+
case types.ETHEREUM_MAINNET_CHAIN_ID:
|
|
6830
|
+
return chains.mainnet;
|
|
6829
6831
|
default:
|
|
6830
6832
|
throw new Error(`Unsupported EVM chain ID: ${id}`);
|
|
6831
6833
|
}
|