Skip to content

Commit 67ffe56

Browse files
committed
fix: update subgraph URLs to use the correct base URL
1 parent e67c49c commit 67ffe56

File tree

5 files changed

+13
-7
lines changed

5 files changed

+13
-7
lines changed

environments/environments.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"protectedDataDeliveryWhitelistAddress": "0x256bcd881c33bdf9df952f2a0148f27d439f2e64",
1616
"protectedDataDeliveryDappAddress": "0x1cb7D4F3FFa203F211e57357D759321C6CE49921",
1717
"protectedDataDeliveryDappEns": "protected-data-delivery.apps.iexec.eth",
18-
"dataprotectorSubgraphUrl": "https://thegraph-product.iex.ec/subgraphs/name/bellecour/dataprotector-v2"
18+
"dataprotectorSubgraphUrl": "https://thegraph.iex.ec/subgraphs/name/bellecour/dataprotector-v2"
1919
},
2020
"staging": {
2121
"smsUrl": "https://sms.scone-prod.stagingv8.iex.ec",
@@ -33,6 +33,6 @@
3333
"protectedDataDeliveryWhitelistAddress": "0x3da63b3fbeb6e4ad28d91d3d1adc452253f44029",
3434
"protectedDataDeliveryDappAddress": "0x295869EF57EA9028DCC208e187bab33D48618259",
3535
"protectedDataDeliveryDappEns": "protected-data-delivery-staging.apps.iexec.eth",
36-
"dataprotectorSubgraphUrl": "https://thegraph-product.iex.ec/subgraphs/name/bellecour/staging-dataprotector-v2"
36+
"dataprotectorSubgraphUrl": "https://thegraph.iex.ec/subgraphs/name/bellecour/staging-dataprotector-v2"
3737
}
38-
}
38+
}

packages/sdk/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## NEXT
6+
7+
### Changed
8+
9+
- migrated subgraphs default base URL (<https://thegraph.iex.ec>)
10+
511
## [2.0.0-beta.15] (2025-04-04)
612

713
### Changed

packages/sdk/src/config/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export const DEFAULT_SHARING_CONTRACT_ADDRESS =
1313
'0x1390c3c6a545198809F1C7c5Dd2600ef74D60925'.toLowerCase();
1414

1515
export const DEFAULT_SUBGRAPH_URL =
16-
'https://thegraph-product.iex.ec/subgraphs/name/bellecour/dataprotector-v2';
16+
'https://thegraph.iex.ec/subgraphs/name/bellecour/dataprotector-v2';
1717

1818
export const DEFAULT_DEBUG_SMS_URL = 'https://sms-debug.iex.ec';
1919

packages/sdk/tests/e2e/dataProtectorSharing/consumeProtectedData.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ describe.skip('dataProtector.consumeProtectedData()', () => {
3131
ipfsGateway: 'https://ipfs-gateway.stagingv8.iex.ec',
3232
ipfsNode: 'https://ipfs-upload.stagingv8.iex.ec',
3333
subgraphUrl:
34-
'https://thegraph-product.iex.ec/subgraphs/name/bellecour/dev-dataprotector-v2',
34+
'https://thegraph.iex.ec/subgraphs/name/bellecour/dev-dataprotector-v2',
3535
};
3636

3737
const provider1 = utils.getSignerFromPrivateKey(

packages/subgraph/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,6 @@ Trigger deployment via promote action on CI.
7272

7373
### Hosted dev subgraph
7474

75-
Promote with target `dev-subgraph` to deploy on https://thegraph-product.iex.ec/subgraphs/name/bellecour/dev-dataprotector
75+
Promote with target `dev-subgraph` to deploy on https://thegraph.iex.ec/subgraphs/name/bellecour/dev-dataprotector
7676

77-
### Subgraph API on Production
77+
### Subgraph API on Production

0 commit comments

Comments
 (0)