@graphprotocol/graph-cli 0.75.0-alpha-20240619145956-55dc1fa → 0.75.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 +1 -6
- package/dist/command-helpers/abi.js +0 -4
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @graphprotocol/graph-cli
|
|
2
2
|
|
|
3
|
-
## 0.75.0
|
|
3
|
+
## 0.75.0
|
|
4
4
|
|
|
5
5
|
### Minor Changes
|
|
6
6
|
|
|
@@ -9,11 +9,6 @@
|
|
|
9
9
|
Thanks [@alinobrasil](https://github.com/alinobrasil)! - getEtherscanLikeAPIUrl: added for sei
|
|
10
10
|
mainnet (to be able to obtain contract ABI)
|
|
11
11
|
|
|
12
|
-
- [#1688](https://github.com/graphprotocol/graph-tooling/pull/1688)
|
|
13
|
-
[`55dc1fa`](https://github.com/graphprotocol/graph-tooling/commit/55dc1fae5bcfb487bf3aee6a6d1c6972dea6f0d7)
|
|
14
|
-
Thanks [@alinobrasil](https://github.com/alinobrasil)! - added rootstock blockexplorer api and
|
|
15
|
-
public rpc url
|
|
16
|
-
|
|
17
12
|
## 0.74.1
|
|
18
13
|
|
|
19
14
|
### Patch Changes
|
|
@@ -237,8 +237,6 @@ const getEtherscanLikeAPIUrl = (network) => {
|
|
|
237
237
|
return `https://api-cardona-zkevm.polygonscan.com/api`;
|
|
238
238
|
case 'sei-mainnet':
|
|
239
239
|
return `https://seitrace.com/pacific-1/api`;
|
|
240
|
-
case 'rootstock':
|
|
241
|
-
return 'https://rootstock.blockscout.com/api';
|
|
242
240
|
default:
|
|
243
241
|
return `https://api-${network}.etherscan.io/api`;
|
|
244
242
|
}
|
|
@@ -351,8 +349,6 @@ const getPublicRPCEndpoint = (network) => {
|
|
|
351
349
|
return `https://rpc.cardona.zkevm-rpc.com`;
|
|
352
350
|
case 'sei-mainnet':
|
|
353
351
|
return `https://evm-rpc.sei-apis.com`;
|
|
354
|
-
case 'rootstock':
|
|
355
|
-
return 'https://public-node.rsk.co';
|
|
356
352
|
default:
|
|
357
353
|
throw new Error(`Unknown network: ${network}`);
|
|
358
354
|
}
|
package/oclif.manifest.json
CHANGED