Skip to content

Commit 74d7058

Browse files
author
Leszek Wiesner
authored
Merge pull request #357 from Lezek123/mainnet-rpc-hotfix
Update mainnet RPC endpoint
2 parents fd36964 + 575f114 commit 74d7058

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

ypp-operations/docs/cli/payRewardForChannel.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ OPTIONS
2121
--payerMemberId=payerMemberId (required) Joystream member Id of Reward payer account
2222
--queryNodeEndpoint=queryNodeEndpoint [default: https://query.joystream.org/graphql] Query node endpoint to use
2323
24-
--rpcEndpoint=rpcEndpoint [default: wss://rpc.joystream.org:9944] RPC endpoint of the Joystream node to
24+
--rpcEndpoint=rpcEndpoint [default: wss://rpc.joystream.org] RPC endpoint of the Joystream node to
2525
connect to
2626
```

ypp-operations/docs/cli/payRewards.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ OPTIONS
2626
2727
--queryNodeEndpoint=queryNodeEndpoint [default: https://query.joystream.org/graphql] Query node endpoint to use
2828
29-
--rpcEndpoint=rpcEndpoint [default: wss://rpc.joystream.org:9944] RPC endpoint of the Joystream node to
29+
--rpcEndpoint=rpcEndpoint [default: wss://rpc.joystream.org] RPC endpoint of the Joystream node to
3030
connect to
3131
```

ypp-operations/src/cli/base/default.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export default abstract class DefaultCommandBase extends Command {
2424
}),
2525
rpcEndpoint: flags.string({
2626
required: false,
27-
default: 'wss://rpc.joystream.org:9944',
27+
default: 'wss://rpc.joystream.org',
2828
description: 'RPC endpoint of the Joystream node to connect to',
2929
}),
3030
queryNodeEndpoint: flags.string({

0 commit comments

Comments
 (0)