Skip to content

Commit 8dbf8e1

Browse files
committed
update rpc nodes url
1 parent ea05ffb commit 8dbf8e1

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

apps/remix-ide-e2e/src/tests/terminal.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -306,12 +306,12 @@ module.exports = {
306306

307307
'Should connect to the sepolia fork and run web3.eth.getCode in the terminal #group9': function (browser: NightwatchBrowser) {
308308
browser
309-
.switchEnvironment('vm-custom-fork')
309+
.switchEnvironment('vm-custom-fork')
310310
.waitForElementVisible('[data-id="vm-custom-fork-modal-footer-ok-react"]')
311311
.execute(() => {
312312
(document.querySelector('*[data-id="vm-custom-forkModalDialogContainer-react"] input[data-id="CustomForkNodeUrl"]') as any).focus()
313313
}, [], () => { })
314-
.clearValue('*[data-id="CustomForkNodeUrl"]').pause(1000).setValue('*[data-id="CustomForkNodeUrl"]', 'https://remix-sepolia.ethdevops.io')
314+
.clearValue('*[data-id="CustomForkNodeUrl"]').pause(1000).setValue('*[data-id="CustomForkNodeUrl"]', 'https://go.getblock.io/ee42d0a88f314707be11dd799b122cb9')
315315
.execute(() => {
316316
(document.querySelector('*[data-id="vm-custom-forkModalDialogContainer-react"] input[data-id="CustomForkBlockNumber"]') as any).focus()
317317
}, [], () => { })
@@ -355,7 +355,7 @@ module.exports = {
355355
}
356356
`
357357
browser
358-
.clickLaunchIcon('udapp')
358+
// .clickLaunchIcon('udapp')
359359
.switchEnvironment('vm-mainnet-fork')
360360
.clickLaunchIcon('filePanel')
361361
.addFile('test_mainnet.sol', { content: script })

apps/remix-ide/src/app/providers/goerli-vm-fork-provider.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export class GoerliForkVMProvider extends BasicVMProvider {
1818
)
1919
this.blockchain = blockchain
2020
this.fork = 'shanghai'
21-
this.nodeUrl = 'https://remix-sepolia.ethdevops.io'
21+
this.nodeUrl = 'https://remix-goerli.ethdevops.io'
2222
this.blockNumber = 'latest'
2323
}
2424

apps/remix-ide/src/app/providers/sepolia-vm-fork-provider.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export class SepoliaForkVMProvider extends BasicVMProvider {
1818
)
1919
this.blockchain = blockchain
2020
this.fork = 'shanghai'
21-
this.nodeUrl = 'https://remix-sepolia.ethdevops.io'
21+
this.nodeUrl = 'https://go.getblock.io/ee42d0a88f314707be11dd799b122cb9'
2222
this.blockNumber = 'latest'
2323
}
2424

libs/remix-debug/src/init.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,12 @@ export function setProvider (web3, url) {
2121

2222
export function web3DebugNode (network) {
2323
const web3DebugNodes = {
24-
Main: 'https://eth.getblock.io/68069907-1d3c-466e-a533-a943afd935c6/mainnet',
24+
Main: 'https://go.getblock.io/56f8bc5187aa4ac696348f67545acf38',
25+
Holesky: 'https://go.getblock.io/7b91c53809fb49c787087e02ef84820b',
2526
Rinkeby: 'https://remix-rinkeby.ethdevops.io',
2627
Ropsten: 'https://remix-ropsten.ethdevops.io',
2728
Goerli: 'https://remix-goerli.ethdevops.io',
28-
Sepolia: 'https://remix-sepolia.ethdevops.io'
29+
Sepolia: 'https://go.getblock.io/ee42d0a88f314707be11dd799b122cb9'
2930
}
3031
if (web3DebugNodes[network]) {
3132
return loadWeb3(web3DebugNodes[network])

0 commit comments

Comments
 (0)