Skip to content

Commit

Permalink
chore: update rpc
Browse files Browse the repository at this point in the history
  • Loading branch information
mclyk committed Mar 20, 2024
1 parent 4208778 commit 8104bd5
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/srtool.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
- name: Diff with parallel live runtime
if: matrix.chain == 'parallel'
run: |
subwasm get wss://polkadot-parallel-rpc.parallel.fi:443 --output parallel-live.wasm
subwasm get wss://parallel-rpc.dwellir.com:443 --output parallel-live.wasm
subwasm diff ${{ steps.srtool_build.outputs.wasm_compressed }} parallel-live.wasm | tee ${{ matrix.chain }}-diff.txt
- name: Archive Runtime
uses: actions/upload-artifact@v2
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ try-heiko-live-upgrade:

.PHONY: try-parallel-live-upgrade
try-parallel-live-upgrade:
make CHAIN=parallel URL=wss://polkadot-parallel-rpc.parallel.fi:443 try-live-upgrade
make CHAIN=parallel URL=wss://parallel-rpc.dwellir.com:443 try-live-upgrade

help:
@grep -E '^[a-zA-Z_-]+:.*?' Makefile | cut -d: -f1 | sort
2 changes: 1 addition & 1 deletion scripts/helper/src/commands/hrmp/accept.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default function ({ createCommand }: CreateCommandParameters): Command {
default: 'wss://rpc.polkadot.io'
})
.option('-p, --para-ws [url]', 'the parachain API endpoint', {
default: 'wss://polkadot-parallel-rpc.parallel.fi'
default: 'wss://parallel-rpc.dwellir.com'
})
.option('-d, --dry-run [boolean]', 'whether to execute using PARA_CHAIN_SUDO_KEY', {
validator: program.BOOLEAN,
Expand Down
2 changes: 1 addition & 1 deletion scripts/helper/src/commands/set/add-market.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default function ({ createCommand }: CreateCommandParameters): Command {
validator: program.STRING
})
.option('-p, --para-ws [url]', 'the parachain API endpoint', {
default: 'wss://polkadot-parallel-rpc.parallel.fi'
default: 'wss://parallel-rpc.dwellir.com'
})
.option('-d, --dry-run [boolean]', 'whether to execute using PARA_CHAIN_SUDO_KEY', {
validator: program.BOOLEAN,
Expand Down
2 changes: 1 addition & 1 deletion scripts/helper/src/commands/set/farming-reward.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default function ({ createCommand }: CreateCommandParameters): Command {
validator: program.STRING
})
.option('-p, --para-ws [url]', 'the parachain API endpoint', {
default: 'wss://polkadot-parallel-rpc.parallel.fi'
default: 'wss://parallel-rpc.dwellir.com'
})
.option('-d, --dry-run [boolean]', 'whether to execute using PARA_CHAIN_SUDO_KEY', {
validator: program.BOOLEAN,
Expand Down
2 changes: 1 addition & 1 deletion scripts/helper/src/commands/set/market-reward.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default function ({ createCommand }: CreateCommandParameters): Command {
validator: program.STRING
})
.option('-p, --para-ws [url]', 'the parachain API endpoint', {
default: 'wss://polkadot-parallel-rpc.parallel.fi'
default: 'wss://parallel-rpc.dwellir.com'
})
.option('-d, --dry-run [boolean]', 'whether to execute using PARA_CHAIN_SUDO_KEY', {
validator: program.BOOLEAN,
Expand Down
2 changes: 1 addition & 1 deletion scripts/helper/src/commands/ump/transact.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { u32 } from '@polkadot/types'
export default function ({ createCommand }: CreateCommandParameters): Command {
return createCommand('open hrmp channel to specific chain')
.option('-p, --para-ws [url]', 'the parachain API endpoint', {
default: 'wss://polkadot-parallel-rpc.parallel.fi'
default: 'wss://parallel-rpc.dwellir.com'
})
.option('-e, --encoded-call-data [hex]', 'the hex encoded call data', {
default: '0x0001081234'
Expand Down
2 changes: 1 addition & 1 deletion scripts/helper/src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ export const getDefaultRelayChainWsUrl = (): string => {
export const getDefaultParachainWsUrl = (): string => {
return process.env['RELAY_CHAIN_TYPE'] === 'kusama'
? 'wss://heiko-rpc.parallel.fi'
: 'wss://polkadot-parallel-rpc.parallel.fi'
: 'wss://parallel-rpc.dwellir.com'
}

export const getDefaultXcmFee = (): number => {
Expand Down

0 comments on commit 8104bd5

Please sign in to comment.