Skip to content

Commit f4be48c

Browse files
ArshamTeymouriggwpezniklasad1
authored
change try-runtime rpc domains (paritytech#5443)
as part of paritytech/devops/3502, try-runtime nodes were migrated to a new provider with a new domain address. The PR fixes all the references to try-runtime nodes on rococo, westend, kusama and polkadot networks. --------- Co-authored-by: ArshamTeymouri <[email protected]> Co-authored-by: Oliver Tale-Yazdi <[email protected]> Co-authored-by: Niklas Adolfsson <[email protected]>
1 parent 38fce08 commit f4be48c

File tree

5 files changed

+16
-6
lines changed

5 files changed

+16
-6
lines changed

.config/lychee.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ exclude = [
3232
"https://github.com/paritytech/polkadot-sdk/substrate/frame/timestamp",
3333
"https://github.com/paritytech/substrate/frame/fast-unstake",
3434
"https://github.com/zkcrypto/bls12_381/blob/e224ad4ea1babfc582ccd751c2bf128611d10936/src/test-data/mod.rs",
35-
"https://polkadot-try-runtime-node.parity-chains.parity.io/",
3635
"https://polkadot.network/the-path-of-a-parachain-block/",
3736
"https://research.web3.foundation/en/latest/polkadot/NPoS/3.%20Balancing.html",
3837
"https://research.web3.foundation/en/latest/polkadot/Token%20Economics.html#inflation-model",
@@ -41,6 +40,7 @@ exclude = [
4140
"https://research.web3.foundation/en/latest/polkadot/overview/2-token-economics.html#inflation-model",
4241
"https://research.web3.foundation/en/latest/polkadot/slashing/npos.html",
4342
"https://rpc.polkadot.io/",
43+
"https://try-runtime.polkadot.io/",
4444
"https://w3f.github.io/parachain-implementers-guide/node/approval/approval-distribution.html",
4545
"https://w3f.github.io/parachain-implementers-guide/node/index.html",
4646
"https://w3f.github.io/parachain-implementers-guide/protocol-chain-selection.html",

.github/workflows/check-runtime-migration.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,13 @@ jobs:
5656
# - network: westend
5757
# package: westend-runtime
5858
# wasm: westend_runtime.compact.compressed.wasm
59-
# uri: "wss://westend-try-runtime-node.parity-chains.parity.io:443"
59+
# uri: "wss://try-runtime-westend.polkadot.io:443"
6060
# subcommand_extra_args: "--no-weight-warnings"
6161
# command_extra_args: ""
6262
# - network: rococo
6363
# package: rococo-runtime
6464
# wasm: rococo_runtime.compact.compressed.wasm
65-
# uri: "wss://rococo-try-runtime-node.parity-chains.parity.io:443"
65+
# uri: "wss://try-runtime-rococo.polkadot.io:443"
6666
# subcommand_extra_args: "--no-weight-warnings"
6767
# command_extra_args: ""
6868
- network: asset-hub-westend

.gitlab/pipeline/check.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ check-runtime-migration-westend:
106106
NETWORK: "westend"
107107
PACKAGE: "westend-runtime"
108108
WASM: "westend_runtime.compact.compressed.wasm"
109-
URI: "wss://westend-try-runtime-node.parity-chains.parity.io:443"
109+
URI: "wss://try-runtime-westend.polkadot.io:443"
110110
SUBCOMMAND_EXTRA_ARGS: "--no-weight-warnings"
111111

112112
check-runtime-migration-rococo:
@@ -119,7 +119,7 @@ check-runtime-migration-rococo:
119119
NETWORK: "rococo"
120120
PACKAGE: "rococo-runtime"
121121
WASM: "rococo_runtime.compact.compressed.wasm"
122-
URI: "wss://rococo-try-runtime-node.parity-chains.parity.io:443"
122+
URI: "wss://try-runtime-rococo.polkadot.io:443"
123123
SUBCOMMAND_EXTRA_ARGS: "--no-weight-warnings"
124124

125125
check-core-crypto-features:

prdoc/pr_5443.prdoc

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
crates:
2+
- name: frame-remote-externalities
3+
bump: patch
4+
doc:
5+
- audience: Runtime Dev
6+
description: as part of https://github.com/paritytech/devops/issues/3502, try-runtime
7+
nodes were migrated to a new provider with a new domain address. The PR fixes
8+
all the references to try-runtime nodes on rococo, westend, kusama and polkadot
9+
networks
10+
title: change try-runtime rpc domains

substrate/utils/frame/remote-externalities/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ type ChildKeyValues = Vec<(ChildInfo, Vec<KeyValue>)>;
5555
type SnapshotVersion = Compact<u16>;
5656

5757
const LOG_TARGET: &str = "remote-ext";
58-
const DEFAULT_HTTP_ENDPOINT: &str = "https://polkadot-try-runtime-node.parity-chains.parity.io:443";
58+
const DEFAULT_HTTP_ENDPOINT: &str = "https://try-runtime.polkadot.io:443";
5959
const SNAPSHOT_VERSION: SnapshotVersion = Compact(4);
6060

6161
/// The snapshot that we store on disk.

0 commit comments

Comments
 (0)