Skip to content

Commit

Permalink
Merge pull request #1965 from oasisprotocol/lw/use-oasis-io
Browse files Browse the repository at this point in the history
Migrate from grpc.oasis.dev to grpc.oasis.io
  • Loading branch information
lukaw3d authored May 31, 2024
2 parents 246f2ce + 279c6a0 commit 06b9849
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
1 change: 1 addition & 0 deletions .changelog/1965.bugfix.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Migrate from grpc.oasis.dev to grpc.oasis.io
5 changes: 2 additions & 3 deletions internals/getSecurityHeaders.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,9 @@ const getCsp = ({ isExtension, isDev }) =>
'self';
connect-src
'self'
https://grpc.oasis.dev
https://testnet.grpc.oasis.dev
https://grpc.oasis.io
https://testnet.grpc.oasis.io
https://api.oasisscan.com
https://monitor.oasis.dev
${isDev ? localnet : ''}
${isDev ? hmr : ''}
;
Expand Down
4 changes: 2 additions & 2 deletions src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ type BackendConfig = {

export const config: BackendConfig = {
mainnet: {
grpc: 'https://grpc.oasis.dev',
grpc: 'https://grpc.oasis.io',
ticker: 'ROSE',
min_delegation: 100,
[BackendAPIs.OasisMonitor]: {
Expand All @@ -42,7 +42,7 @@ export const config: BackendConfig = {
},
},
testnet: {
grpc: 'https://testnet.grpc.oasis.dev',
grpc: 'https://testnet.grpc.oasis.io',
ticker: 'TEST',
min_delegation: 100,
[BackendAPIs.OasisMonitor]: {
Expand Down

0 comments on commit 06b9849

Please sign in to comment.