@graphprotocol/graph-cli 0.85.0-alpha-20241002175408-c3f53f6 → 0.85.0
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/CHANGELOG.md +6 -2
- package/dist/command-helpers/abi.js +27 -27
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,13 +1,17 @@
|
|
|
1
1
|
# @graphprotocol/graph-cli
|
|
2
2
|
|
|
3
|
-
## 0.85.0
|
|
3
|
+
## 0.85.0
|
|
4
4
|
|
|
5
5
|
### Minor Changes
|
|
6
6
|
|
|
7
7
|
- [#1733](https://github.com/graphprotocol/graph-tooling/pull/1733)
|
|
8
|
-
[`
|
|
8
|
+
[`d13bc5e`](https://github.com/graphprotocol/graph-tooling/commit/d13bc5e6ba08a62be78d1bf469fc0e3b89ee3c1a)
|
|
9
9
|
Thanks [@alinobrasil](https://github.com/alinobrasil)! - added rootstock
|
|
10
10
|
|
|
11
|
+
- [#1736](https://github.com/graphprotocol/graph-tooling/pull/1736)
|
|
12
|
+
[`e759327`](https://github.com/graphprotocol/graph-tooling/commit/e759327cf53fe9462f9bdf65f5ff9fdd125f58db)
|
|
13
|
+
Thanks [@fschoell](https://github.com/fschoell)! - replace etherscan endpoints
|
|
14
|
+
|
|
11
15
|
## 0.84.0
|
|
12
16
|
|
|
13
17
|
### Minor Changes
|
|
@@ -142,27 +142,27 @@ exports.loadAbiFromBlockScout = loadAbiFromBlockScout;
|
|
|
142
142
|
const getEtherscanLikeAPIUrl = (network) => {
|
|
143
143
|
switch (network) {
|
|
144
144
|
case 'mainnet':
|
|
145
|
-
return `https://
|
|
145
|
+
return `https://mainnet.abi.pinax.network/api`;
|
|
146
146
|
case 'arbitrum-one':
|
|
147
|
-
return `https://
|
|
147
|
+
return `https://arbitrum-one.abi.pinax.network/api`;
|
|
148
148
|
case 'arbitrum-goerli':
|
|
149
149
|
return `https://api-goerli.arbiscan.io/api`;
|
|
150
150
|
case 'arbitrum-sepolia':
|
|
151
|
-
return `https://
|
|
151
|
+
return `https://arbitrum-sepolia.abi.pinax.network/api`;
|
|
152
152
|
case 'bsc':
|
|
153
|
-
return `https://
|
|
153
|
+
return `https://bsc.abi.pinax.network/api`;
|
|
154
154
|
case 'base-testnet':
|
|
155
155
|
return `https://api-goerli.basescan.org/api`;
|
|
156
156
|
case 'base-sepolia':
|
|
157
|
-
return `https://
|
|
157
|
+
return `https://base-sepolia.abi.pinax.network/api`;
|
|
158
158
|
case 'base':
|
|
159
|
-
return `https://
|
|
159
|
+
return `https://base.abi.pinax.network/api`;
|
|
160
160
|
case 'chapel':
|
|
161
|
-
return `https://
|
|
161
|
+
return `https://bsc-testnet.abi.pinax.network/api`;
|
|
162
162
|
case 'matic':
|
|
163
|
-
return `https://
|
|
163
|
+
return `https://polygon.abi.pinax.network/api`;
|
|
164
164
|
case 'mumbai':
|
|
165
|
-
return `https://
|
|
165
|
+
return `https://polygon-mumbai.abi.pinax.network/api`;
|
|
166
166
|
case 'aurora':
|
|
167
167
|
return `https://explorer.mainnet.aurora.dev/api`;
|
|
168
168
|
case 'aurora-testnet':
|
|
@@ -170,27 +170,27 @@ const getEtherscanLikeAPIUrl = (network) => {
|
|
|
170
170
|
case 'optimism-goerli':
|
|
171
171
|
return `https://api-goerli-optimistic.etherscan.io/api`;
|
|
172
172
|
case 'optimism':
|
|
173
|
-
return `https://
|
|
173
|
+
return `https://optimism.abi.pinax.network/api`;
|
|
174
174
|
case 'moonbeam':
|
|
175
|
-
return `https://
|
|
175
|
+
return `https://moonbeam.abi.pinax.network/api`;
|
|
176
176
|
case 'moonriver':
|
|
177
177
|
return `https://api-moonriver.moonscan.io/api`;
|
|
178
178
|
case 'mbase':
|
|
179
|
-
return `https://
|
|
179
|
+
return `https://moonbase.abi.pinax.network/api`;
|
|
180
180
|
case 'avalanche':
|
|
181
181
|
return `https://api.snowtrace.io/api`;
|
|
182
182
|
case 'fuji':
|
|
183
183
|
return `https://api-testnet.snowtrace.io/api`;
|
|
184
184
|
case 'celo':
|
|
185
|
-
return `https://
|
|
185
|
+
return `https://celo.abi.pinax.network/api`;
|
|
186
186
|
case 'celo-alfajores':
|
|
187
|
-
return `https://
|
|
187
|
+
return `https://celo-alfajores.abi.pinax.network/api`;
|
|
188
188
|
case 'gnosis':
|
|
189
|
-
return `https://
|
|
189
|
+
return `https://gnosis.abi.pinax.network/api`;
|
|
190
190
|
case 'fantom':
|
|
191
|
-
return `https://
|
|
191
|
+
return `https://fantom.abi.pinax.network/api`;
|
|
192
192
|
case 'fantom-testnet':
|
|
193
|
-
return `https://
|
|
193
|
+
return `https://fantom-testnet.abi.pinax.network/api`;
|
|
194
194
|
case 'zksync-era':
|
|
195
195
|
return `https://block-explorer-api.mainnet.zksync.io/api`;
|
|
196
196
|
case 'zksync-era-testnet':
|
|
@@ -200,29 +200,29 @@ const getEtherscanLikeAPIUrl = (network) => {
|
|
|
200
200
|
case 'polygon-zkevm-testnet':
|
|
201
201
|
return `https://testnet-zkevm.polygonscan.com/api`;
|
|
202
202
|
case 'polygon-zkevm':
|
|
203
|
-
return `https://
|
|
203
|
+
return `https://polygon-zkevm.abi.pinax.network/api`;
|
|
204
204
|
case 'sepolia':
|
|
205
|
-
return `https://
|
|
205
|
+
return `https://sepolia.abi.pinax.network/api`;
|
|
206
206
|
case 'scroll-sepolia':
|
|
207
207
|
return `https://api-sepolia.scrollscan.dev/api`;
|
|
208
208
|
case 'optimism-sepolia':
|
|
209
|
-
return `https://
|
|
209
|
+
return `https://optimism-sepolia.abi.pinax.network/api`;
|
|
210
210
|
case 'scroll':
|
|
211
211
|
return `https://api.scrollscan.com/api`;
|
|
212
212
|
case 'linea':
|
|
213
|
-
return `https://
|
|
213
|
+
return `https://linea.abi.pinax.network/api`;
|
|
214
214
|
case 'linea-sepolia':
|
|
215
|
-
return 'https://
|
|
215
|
+
return 'https://linea-sepolia.abi.pinax.network/api';
|
|
216
216
|
case 'linea-goerli':
|
|
217
217
|
return `https://api.linea-goerli.build/api`;
|
|
218
218
|
case 'blast-testnet':
|
|
219
|
-
return `https://
|
|
219
|
+
return `https://blast-testnet.abi.pinax.network/api`;
|
|
220
220
|
case 'blast-mainnet':
|
|
221
|
-
return `https://
|
|
221
|
+
return `https://blast.abi.pinax.network/api`;
|
|
222
222
|
case 'etherlink-testnet':
|
|
223
223
|
return `https://testnet-explorer.etherlink.com/api`;
|
|
224
224
|
case 'polygon-amoy':
|
|
225
|
-
return `https://
|
|
225
|
+
return `https://polygon-amoy.abi.pinax.network/api`;
|
|
226
226
|
case 'gnosis-chiado':
|
|
227
227
|
return `https://gnosis-chiado.blockscout.com/api`;
|
|
228
228
|
case 'mode-mainnet':
|
|
@@ -234,7 +234,7 @@ const getEtherscanLikeAPIUrl = (network) => {
|
|
|
234
234
|
case 'astar-zkevm-mainnet':
|
|
235
235
|
return `https://astar-zkevm.explorer.startale.com/api`;
|
|
236
236
|
case 'polygon-zkevm-cardona':
|
|
237
|
-
return `https://
|
|
237
|
+
return `https://polygon-zkevm-cardona.abi.pinax.network/api`;
|
|
238
238
|
case 'sei-mainnet':
|
|
239
239
|
return `https://seitrace.com/pacific-1/api`;
|
|
240
240
|
case 'sei-atlantic':
|
|
@@ -256,7 +256,7 @@ const getEtherscanLikeAPIUrl = (network) => {
|
|
|
256
256
|
case 'neox-testnet':
|
|
257
257
|
return 'https://xt4scan.ngd.network/api/ngd/api';
|
|
258
258
|
case 'arbitrum-nova':
|
|
259
|
-
return 'https://
|
|
259
|
+
return 'https://arbitrum-nova.abi.pinax.network/api';
|
|
260
260
|
case 'soneium-testnet':
|
|
261
261
|
return 'https://explorer-testnet.soneium.org/api';
|
|
262
262
|
case 'chiliz':
|
package/oclif.manifest.json
CHANGED