@sodax/wallet-sdk-react 0.0.1-rc.7 → 0.0.1-rc.8

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 CHANGED
@@ -199,17 +199,17 @@ var createWagmiConfig = (config) => {
199
199
  return wagmi.createConfig({
200
200
  chains: [chains.mainnet, chains.avalanche, chains.arbitrum, chains.base, chains.bsc, chains.sonic, chains.optimism, chains.polygon, chains.nibiru, hyper, chains.lightlinkPhoenix],
201
201
  transports: {
202
- [chains.mainnet.id]: wagmi.http(config["mainnet"]),
203
- [chains.avalanche.id]: wagmi.http(config["avalanche"]),
204
- [chains.arbitrum.id]: wagmi.http(config["arbitrum"]),
205
- [chains.base.id]: wagmi.http(config["base"]),
206
- [chains.bsc.id]: wagmi.http(config["bsc"]),
207
- [chains.sonic.id]: wagmi.http(config["sonic"]),
208
- [chains.optimism.id]: wagmi.http(config["optimism"]),
209
- [chains.polygon.id]: wagmi.http(config["polygon"]),
210
- [chains.nibiru.id]: wagmi.http(config["nibiru"]),
211
- [hyper.id]: wagmi.http(config["hyper"]),
212
- [chains.lightlinkPhoenix.id]: wagmi.http(config["lightlinkPhoenix"])
202
+ [chains.mainnet.id]: wagmi.http(config[types.ETHEREUM_MAINNET_CHAIN_ID]),
203
+ [chains.avalanche.id]: wagmi.http(config[types.AVALANCHE_MAINNET_CHAIN_ID]),
204
+ [chains.arbitrum.id]: wagmi.http(config[types.ARBITRUM_MAINNET_CHAIN_ID]),
205
+ [chains.base.id]: wagmi.http(config[types.BASE_MAINNET_CHAIN_ID]),
206
+ [chains.bsc.id]: wagmi.http(config[types.BSC_MAINNET_CHAIN_ID]),
207
+ [chains.sonic.id]: wagmi.http(config[types.SONIC_MAINNET_CHAIN_ID]),
208
+ [chains.optimism.id]: wagmi.http(config[types.OPTIMISM_MAINNET_CHAIN_ID]),
209
+ [chains.polygon.id]: wagmi.http(config[types.POLYGON_MAINNET_CHAIN_ID]),
210
+ [chains.nibiru.id]: wagmi.http(config[types.NIBIRU_MAINNET_CHAIN_ID]),
211
+ [hyper.id]: wagmi.http(config[types.HYPEREVM_MAINNET_CHAIN_ID]),
212
+ [chains.lightlinkPhoenix.id]: wagmi.http(config[types.LIGHTLINK_MAINNET_CHAIN_ID])
213
213
  }
214
214
  });
215
215
  };