@graphprotocol/graph-cli 0.68.4 → 0.68.5
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 +7 -0
- package/dist/command-helpers/abi.js +4 -0
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @graphprotocol/graph-cli
|
|
2
2
|
|
|
3
|
+
## 0.68.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`4525b0c`](https://github.com/graphprotocol/graph-tooling/commit/4525b0c3bbabe89561d5d908f23a8f5652f0df88)
|
|
8
|
+
Thanks [@saihaj](https://github.com/saihaj)! - fix blast mainnet etherscan url
|
|
9
|
+
|
|
3
10
|
## 0.68.4
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
|
@@ -188,6 +188,8 @@ const getEtherscanLikeAPIUrl = (network) => {
|
|
|
188
188
|
return `https://api.linea-goerli.build/api`;
|
|
189
189
|
case 'blast-testnet':
|
|
190
190
|
return `https://api.routescan.io/v2/network/testnet/evm/168587773/etherscan/api`;
|
|
191
|
+
case 'blast-mainnet':
|
|
192
|
+
return `https://api.routescan.io/v2/network/mainnet/evm/81457/etherscan/api`;
|
|
191
193
|
default:
|
|
192
194
|
return `https://api-${network}.etherscan.io/api`;
|
|
193
195
|
}
|
|
@@ -278,6 +280,8 @@ const getPublicRPCEndpoint = (network) => {
|
|
|
278
280
|
return 'https://linea-goerli.public.blastapi.io';
|
|
279
281
|
case 'blast-testnet':
|
|
280
282
|
return 'https://sepolia.blast.io';
|
|
283
|
+
case 'blast-mainnet':
|
|
284
|
+
return 'https://rpc.blast.io';
|
|
281
285
|
case 'optimism-sepolia':
|
|
282
286
|
return 'https://sepolia.optimism.io';
|
|
283
287
|
default:
|
package/oclif.manifest.json
CHANGED