Skip to content

Commit

Permalink
fix: wagmi chains
Browse files Browse the repository at this point in the history
  • Loading branch information
jayeshbhole-rp committed Jan 6, 2025
1 parent e5bbe29 commit 56b6981
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions packages/react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @tangled3/react

## 1.16.12

### Patch Changes

- fix wagmi

## 1.16.11

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@tangled3/react",
"private": false,
"version": "1.16.11",
"version": "1.16.12",
"type": "module",
"license": "MIT",
"main": "./src/index.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/react/src/providers/EVMProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const EVMProvider = ({

const [wagmiConfig] = useState(() => {
return createConfig({
chains: props.chains as [EVMChain, ...EVMChain[]],
chains: filteredChains as [EVMChain, ...EVMChain[]],
transports: filteredChains.reduce(
(acc, chain) => {
acc[chain.id] = http();
Expand Down

0 comments on commit 56b6981

Please sign in to comment.