@graphprotocol/graph-cli 0.68.1-alpha-20240220162408-2cbd8b6 → 0.68.2
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 +9 -2
- package/dist/command-helpers/abi.js +4 -0
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,18 @@
|
|
|
1
1
|
# @graphprotocol/graph-cli
|
|
2
2
|
|
|
3
|
-
## 0.68.
|
|
3
|
+
## 0.68.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`5d39c18`](https://github.com/graphprotocol/graph-tooling/commit/5d39c180c3825bc4e7b869dc4ae10ebb4ac91f76)
|
|
8
|
+
Thanks [@saihaj](https://github.com/saihaj)! - fix base sepolia url
|
|
9
|
+
|
|
10
|
+
## 0.68.1
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
|
6
13
|
|
|
7
14
|
- [#1589](https://github.com/graphprotocol/graph-tooling/pull/1589)
|
|
8
|
-
[`
|
|
15
|
+
[`7f0e8ab`](https://github.com/graphprotocol/graph-tooling/commit/7f0e8ab70bcd2279b54a040031de2795e7346b1a)
|
|
9
16
|
Thanks [@saihaj](https://github.com/saihaj)! - fix optimism sepolia url
|
|
10
17
|
|
|
11
18
|
## 0.68.0
|
|
@@ -126,6 +126,8 @@ const getEtherscanLikeAPIUrl = (network) => {
|
|
|
126
126
|
return `https://api.bscscan.com/api`;
|
|
127
127
|
case 'base-testnet':
|
|
128
128
|
return `https://api-goerli.basescan.org/api`;
|
|
129
|
+
case 'base-sepolia':
|
|
130
|
+
return `https://api-sepolia.basescan.org/api`;
|
|
129
131
|
case 'base':
|
|
130
132
|
return `https://api.basescan.org/api`;
|
|
131
133
|
case 'chapel':
|
|
@@ -206,6 +208,8 @@ const getPublicRPCEndpoint = (network) => {
|
|
|
206
208
|
return 'https://api.avax.network/ext/bc/C/rpc';
|
|
207
209
|
case 'base-testnet':
|
|
208
210
|
return 'https://goerli.base.org';
|
|
211
|
+
case 'base-sepolia':
|
|
212
|
+
return 'https://sepolia.base.org';
|
|
209
213
|
case 'base':
|
|
210
214
|
return 'https://rpc.base.org';
|
|
211
215
|
case 'bsc':
|
package/oclif.manifest.json
CHANGED