Skip to content

Commit c2b131f

Browse files
committed
Merge branch 'main' into chore/update-dependencies
2 parents f0657cd + 425d77f commit c2b131f

File tree

8 files changed

+31
-8
lines changed

8 files changed

+31
-8
lines changed

.changeset/quick-bats-teach.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

packages/cli/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# @graphprotocol/graph-cli
22

3+
## 0.91.0
4+
5+
### Minor Changes
6+
7+
- [#1754](https://github.com/graphprotocol/graph-tooling/pull/1754)
8+
[`2050bf6`](https://github.com/graphprotocol/graph-tooling/commit/2050bf6259c19bd86a7446410c7e124dfaddf4cd)
9+
Thanks [@incrypto32](https://github.com/incrypto32)! - Add support for subgraph datasource and
10+
associated types.
11+
12+
- [#1781](https://github.com/graphprotocol/graph-tooling/pull/1781)
13+
[`e8218ee`](https://github.com/graphprotocol/graph-tooling/commit/e8218eedec4292a95957efc5cadcbcf5280c0375)
14+
Thanks [@alinobrasil](https://github.com/alinobrasil)! - added rpc and api urls for
15+
botanix-testnet
16+
317
## 0.90.1
418

519
### Patch Changes

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphprotocol/graph-cli",
3-
"version": "0.90.1",
3+
"version": "0.91.0",
44
"type": "module",
55
"description": "CLI for building for and deploying to The Graph",
66
"license": "(Apache-2.0 OR MIT)",

packages/cli/src/command-helpers/abi.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -358,6 +358,8 @@ const getEtherscanLikeAPIUrl = (network: string) => {
358358
return 'https://maizenet-explorer.usecorn.com/api';
359359
case 'corn-testnet':
360360
return 'https://testnet-explorer.usecorn.com/api';
361+
case 'botanix-testnet':
362+
return 'https://api.routescan.io/v2/network/testnet/evm/3636/etherscan/api';
361363
default:
362364
return `https://api-${network}.etherscan.io/api`;
363365
}
@@ -522,6 +524,8 @@ const getPublicRPCEndpoint = (network: string) => {
522524
return 'https://maizenet-rpc.usecorn.com';
523525
case 'corn-testnet':
524526
return 'https://testnet-rpc.usecorn.com';
527+
case 'botanix-testnet':
528+
return 'https://node.botanixlabs.dev';
525529
default:
526530
throw new Error(`Unknown network: ${network}`);
527531
}

packages/cli/src/commands/codegen.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ export default class CodegenCommand extends Command {
4343
summary: 'IPFS node to use for fetching subgraph data.',
4444
char: 'i',
4545
default: DEFAULT_IPFS_URL,
46+
hidden: true
4647
}),
4748
'uncrashable-config': Flags.file({
4849
summary: 'Directory for uncrashable config.',

packages/cli/src/commands/init.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,7 @@ export default class InitCommand extends Command {
157157
summary: 'IPFS node to use for fetching subgraph data.',
158158
char: 'i',
159159
default: DEFAULT_IPFS_URL,
160+
hidden: true
160161
}),
161162
};
162163

packages/ts/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# @graphprotocol/graph-ts
22

3+
## 0.36.0
4+
5+
### Minor Changes
6+
7+
- [#1754](https://github.com/graphprotocol/graph-tooling/pull/1754)
8+
[`2050bf6`](https://github.com/graphprotocol/graph-tooling/commit/2050bf6259c19bd86a7446410c7e124dfaddf4cd)
9+
Thanks [@incrypto32](https://github.com/incrypto32)! - Add support for subgraph datasource and
10+
associated types.
11+
312
## 0.35.1
413

514
### Patch Changes

packages/ts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphprotocol/graph-ts",
3-
"version": "0.35.1",
3+
"version": "0.36.0",
44
"description": "TypeScript/AssemblyScript library for writing subgraph mappings for The Graph",
55
"main": "index.ts",
66
"module": "index.ts",

0 commit comments

Comments
 (0)