Skip to content

Commit 1bc8380

Browse files
committed
replaced defunct polygon-rpc.com
1 parent 8491194 commit 1bc8380

File tree

6 files changed

+9
-5
lines changed

6 files changed

+9
-5
lines changed

packages/metadata/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ All notable changes to the metadata will be documented in this file.
33

44
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
55

6+
## [UNRELEASED]
7+
### Changed
8+
- replaced public RPC https://polygon-rpc.com (nomore available) with https://polygon.drpc.org
9+
610
## [v1.6.2]
711
### Added
812
- `VestingSchedulerV3` now also available on eth-sepolia and base-sepolia

packages/metadata/main/networks/list.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ module.exports =
331331
"hostedEndpoint": "https://subgraph-endpoints.superfluid.dev/polygon-mainnet/auto-wrap"
332332
},
333333
"publicRPCs": [
334-
"https://polygon-rpc.com",
334+
"https://polygon.drpc.org",
335335
"https://poly-rpc.gateway.pokt.network"
336336
],
337337
"coinGeckoId": "polygon-pos"

packages/metadata/module/networks/list.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ export default
331331
"hostedEndpoint": "https://subgraph-endpoints.superfluid.dev/polygon-mainnet/auto-wrap"
332332
},
333333
"publicRPCs": [
334-
"https://polygon-rpc.com",
334+
"https://polygon.drpc.org",
335335
"https://poly-rpc.gateway.pokt.network"
336336
],
337337
"coinGeckoId": "polygon-pos"

packages/metadata/networks.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@
329329
"hostedEndpoint": "https://subgraph-endpoints.superfluid.dev/polygon-mainnet/auto-wrap"
330330
},
331331
"publicRPCs": [
332-
"https://polygon-rpc.com",
332+
"https://polygon.drpc.org",
333333
"https://poly-rpc.gateway.pokt.network"
334334
],
335335
"coinGeckoId": "polygon-pos"

packages/sdk-core/test/0_framework.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ makeSuite("Framework Tests", (testEnv: TestEnvironment) => {
9797

9898
it("Should be able to create a framework with chain id only", async () => {
9999
const customProvider = new ethers.providers.JsonRpcProvider(
100-
"https://polygon-rpc.com/",
100+
"https://polygon.drpc.org/",
101101
"matic"
102102
);
103103
await Framework.create({

packages/subgraph/scripts/getLiquidations.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ const getLiquidatedStreams = async (
443443
for (let i = 7; i < 30; i += 7) {
444444
await getLiquidatedStreams(
445445
137,
446-
"https://polygon-rpc.com/",
446+
"https://polygon.drpc.org/",
447447
nowInSecs - (30 - i + 7) * DAY_IN_SECS, // lagging start time
448448
nowInSecs - (30 - i) * DAY_IN_SECS
449449
);

0 commit comments

Comments
 (0)