wagmi 1.2.0 → 1.2.1
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/chains.d.ts +1 -1
- package/dist/chains.js +6 -0
- package/dist/index.js +1 -1
- package/dist/window.d.ts +1 -0
- package/package.json +2 -2
package/dist/chains.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { Chain, arbitrum, arbitrumGoerli, aurora, auroraTestnet, avalanche, avalancheFuji, baseGoerli, boba, bronos, bronosTestnet, bsc, bscTestnet, canto, celo, celoAlfajores, celoCannoli, cronos, crossbell, dfk, dogechain, edgeware, edgewareTestnet, evmos, evmosTestnet, fantom, fantomTestnet, filecoin, filecoinCalibration, filecoinHyperspace, flare, flareTestnet, foundry, gnosis, gnosisChiado, goerli, haqqMainnet, haqqTestedge2, hardhat, harmonyOne, iotex, iotexTestnet, klaytn, lineaTestnet, localhost, mainnet, metis, metisGoerli, moonbaseAlpha, moonbeam, moonriver, nexi, okc, optimism, optimismGoerli, polygon, polygonMumbai, polygonZkEvm, polygonZkEvmTestnet, pulsechain, pulsechainV4, scrollTestnet, sepolia, shardeumSphinx, skaleBlockBrawlers, skaleCalypso, skaleCalypsoTestnet, skaleChaosTestnet, skaleCryptoBlades, skaleCryptoColosseum, skaleEuropa, skaleEuropaTestnet, skaleExorde, skaleHumanProtocol, skaleNebula, skaleNebulaTestnet, skaleRazor, skaleTitan, skaleTitanTestnet, songbird, songbirdTestnet, syscoin, taraxa, taraxaTestnet, telos, telosTestnet, thunderTestnet, wanchain, wanchainTestnet, xdc, xdcTestnet, zhejiang, zkSync, zkSyncTestnet, zoraTestnet } from '@wagmi/core/chains';
|
|
1
|
+
export { Chain, arbitrum, arbitrumGoerli, aurora, auroraTestnet, avalanche, avalancheFuji, baseGoerli, boba, bronos, bronosTestnet, bsc, bscTestnet, canto, celo, celoAlfajores, celoCannoli, cronos, cronosTestnet, crossbell, dfk, dogechain, edgeware, edgewareTestnet, evmos, evmosTestnet, fantom, fantomTestnet, fibo, filecoin, filecoinCalibration, filecoinHyperspace, flare, flareTestnet, foundry, gnosis, gnosisChiado, goerli, haqqMainnet, haqqTestedge2, hardhat, harmonyOne, iotex, iotexTestnet, klaytn, lineaTestnet, localhost, mainnet, metis, metisGoerli, moonbaseAlpha, moonbeam, moonriver, nexi, okc, optimism, optimismGoerli, polygon, polygonMumbai, polygonZkEvm, polygonZkEvmTestnet, pulsechain, pulsechainV4, scrollTestnet, sepolia, shardeumSphinx, skaleBlockBrawlers, skaleCalypso, skaleCalypsoTestnet, skaleChaosTestnet, skaleCryptoBlades, skaleCryptoColosseum, skaleEuropa, skaleEuropaTestnet, skaleExorde, skaleHumanProtocol, skaleNebula, skaleNebulaTestnet, skaleRazor, skaleTitan, skaleTitanTestnet, songbird, songbirdTestnet, syscoin, taraxa, taraxaTestnet, telos, telosTestnet, thunderTestnet, wanchain, wanchainTestnet, xdc, xdcTestnet, zhejiang, zkSync, zkSyncTestnet, zora, zoraTestnet } from '@wagmi/core/chains';
|
package/dist/chains.js
CHANGED
|
@@ -19,6 +19,7 @@ import {
|
|
|
19
19
|
celoAlfajores,
|
|
20
20
|
celoCannoli,
|
|
21
21
|
cronos,
|
|
22
|
+
cronosTestnet,
|
|
22
23
|
crossbell,
|
|
23
24
|
dfk,
|
|
24
25
|
dogechain,
|
|
@@ -28,6 +29,7 @@ import {
|
|
|
28
29
|
evmosTestnet,
|
|
29
30
|
fantom,
|
|
30
31
|
fantomTestnet,
|
|
32
|
+
fibo,
|
|
31
33
|
filecoin,
|
|
32
34
|
filecoinCalibration,
|
|
33
35
|
filecoinHyperspace,
|
|
@@ -95,6 +97,7 @@ import {
|
|
|
95
97
|
zhejiang,
|
|
96
98
|
zkSync,
|
|
97
99
|
zkSyncTestnet,
|
|
100
|
+
zora,
|
|
98
101
|
zoraTestnet
|
|
99
102
|
} from "@wagmi/core/chains";
|
|
100
103
|
export {
|
|
@@ -115,6 +118,7 @@ export {
|
|
|
115
118
|
celoAlfajores,
|
|
116
119
|
celoCannoli,
|
|
117
120
|
cronos,
|
|
121
|
+
cronosTestnet,
|
|
118
122
|
crossbell,
|
|
119
123
|
dfk,
|
|
120
124
|
dogechain,
|
|
@@ -124,6 +128,7 @@ export {
|
|
|
124
128
|
evmosTestnet,
|
|
125
129
|
fantom,
|
|
126
130
|
fantomTestnet,
|
|
131
|
+
fibo,
|
|
127
132
|
filecoin,
|
|
128
133
|
filecoinCalibration,
|
|
129
134
|
filecoinHyperspace,
|
|
@@ -191,5 +196,6 @@ export {
|
|
|
191
196
|
zhejiang,
|
|
192
197
|
zkSync,
|
|
193
198
|
zkSyncTestnet,
|
|
199
|
+
zora,
|
|
194
200
|
zoraTestnet
|
|
195
201
|
};
|
package/dist/index.js
CHANGED
package/dist/window.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "wagmi",
|
|
3
3
|
"description": "React Hooks for Ethereum",
|
|
4
4
|
"license": "MIT",
|
|
5
|
-
"version": "1.2.
|
|
5
|
+
"version": "1.2.1",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
8
|
"url": "https://github.com/wagmi-dev/wagmi.git",
|
|
@@ -123,7 +123,7 @@
|
|
|
123
123
|
"@tanstack/react-query-persist-client": "^4.28.0",
|
|
124
124
|
"abitype": "0.8.7",
|
|
125
125
|
"use-sync-external-store": "^1.2.0",
|
|
126
|
-
"@wagmi/core": "1.2.
|
|
126
|
+
"@wagmi/core": "1.2.1"
|
|
127
127
|
},
|
|
128
128
|
"devDependencies": {
|
|
129
129
|
"@testing-library/react": "^13.3.0",
|