Skip to content

Commit 967b651

Browse files
ci-botAniket-Engg
authored andcommitted
fix getBlock endpoint
1 parent ba0647d commit 967b651

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ module.exports = {
343343
.perform(async (done) => {
344344
try {
345345
console.log('getting the provider up..')
346-
const provider = new JsonRpcProvider('https://go.getblock.io/1552e4e35bcf4efe8a78897cba5557f9')
346+
const provider = new JsonRpcProvider('https://go.getblock.us/1552e4e35bcf4efe8a78897cba5557f9')
347347
currentBlockNumber = (await provider.getBlockNumber()) as number
348348
console.log('getBlockNumber', currentBlockNumber)
349349
done()

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

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

libs/remix-debug/src/init.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export function setProvider (web3, url) {
2222

2323
export function web3DebugNode (network) {
2424
const web3DebugNodes = {
25-
Main: 'https://go.getblock.io/1552e4e35bcf4efe8a78897cba5557f9',
25+
Main: 'https://go.getblock.us/1552e4e35bcf4efe8a78897cba5557f9',
2626
Sepolia: 'https://go.getblock.io/7fbe62b139884d2c9c1616ca0de8b5b2'
2727
}
2828
if (web3DebugNodes[network]) {

0 commit comments

Comments
 (0)