Skip to content
This repository was archived by the owner on Sep 6, 2023. It is now read-only.

Commit 4389532

Browse files
authored
Merge branch 'main' into frame-connector-v1
2 parents b76b3c5 + 8fd81f6 commit 4389532

34 files changed

+538
-702
lines changed

.changeset/cyan-cougars-shout.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/eighty-papayas-lay.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/new-boats-pay.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/short-turtles-stare.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/silver-cheetahs-sell.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

packages/chains/CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,34 @@
11
# @wagmi/chains
22

3+
## 1.4.0
4+
5+
### Minor Changes
6+
7+
- 97dbd44: Added EOS EVM and EOS EVM Testnet chains
8+
9+
### Patch Changes
10+
11+
- d642e1d: Updated PulseChain Metadata
12+
- 3027d7b: Updated Zora chain URLs and names
13+
14+
## 1.3.0
15+
16+
### Minor Changes
17+
18+
- 62b8209: Added multicall3 contract to Cronos Testnet
19+
- 106ac13: Added `bxn` and `bxnTestnet`.
20+
- 8b3f5e5: Added multicall3 for Base Goerli
21+
22+
## 1.2.0
23+
24+
### Minor Changes
25+
26+
- a7cbd04: Added cronos testnet chain
27+
28+
### Patch Changes
29+
30+
- f6ee133: Added Fibo
31+
332
## 1.1.1
433

534
### Patch Changes

packages/chains/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@ const { chains, provider } = configureChains(
4848
- `cronosTestnet`
4949
- `edgeware`
5050
- `edgewareTestnet`
51+
- `eos`
52+
- `eosTestnet`
5153
- `fantom`
5254
- `fantomTestnet`
5355
- `foundry`

packages/chains/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@wagmi/chains",
33
"description": "A collection of chains for wagmi",
44
"license": "MIT",
5-
"version": "1.1.1",
5+
"version": "1.4.0",
66
"main": "dist/index.js",
77
"module": "dist/index.mjs",
88
"types": "dist/index.d.ts",

packages/chains/src/baseGoerli.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,11 @@ export const baseGoerli = {
2323
url: 'https://goerli.basescan.org',
2424
},
2525
},
26+
contracts: {
27+
multicall3: {
28+
address: '0xca11bde05977b3631167028862be2a173976ca11',
29+
blockCreated: 1376988,
30+
},
31+
},
2632
testnet: true,
2733
} as const satisfies Chain

packages/chains/src/bxn.ts

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
import { Chain } from './types'
2+
3+
export const bxn = {
4+
id: 4999,
5+
name: 'BlackFort Exchange Network',
6+
network: 'bxn',
7+
nativeCurrency: { name: 'BlackFort Token', symbol: 'BXN', decimals: 18 },
8+
rpcUrls: {
9+
default: {
10+
http: ['https://mainnet.blackfort.network/rpc'],
11+
},
12+
public: {
13+
http: ['https://mainnet.blackfort.network/rpc'],
14+
},
15+
},
16+
blockExplorers: {
17+
default: {
18+
name: 'Blockscout',
19+
url: 'https://explorer.blackfort.network',
20+
},
21+
},
22+
} as const satisfies Chain

0 commit comments

Comments
 (0)