Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@web3-onboard/core",
"version": "2.18.0-alpha.1",
"version": "2.18.0-alpha.2",
"description": "Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardized spec compliant web3 providers for all supported wallets, framework agnostic modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.",
"keywords": [
"Ethereum",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/chain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ async function setChain(options: {

// validate that chainId has been added to chains
const chain = chains.find(
({ namespace, id }) => namespace === chainNamespace && id === chainIdHex
({ namespace, id }) => namespace === chainNamespace && id.toLowerCase() === chainIdHex.toLowerCase()
)

if (!chain) {
Expand Down