Skip to content

Commit ead33e6

Browse files
authored
Merge branch 'master' into smart_scroll
2 parents 28efcf6 + 967b651 commit ead33e6

File tree

4 files changed

+29
-10
lines changed

4 files changed

+29
-10
lines changed

.circleci/config.yml

Lines changed: 26 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ workflows:
388388
- build
389389
matrix:
390390
parameters:
391-
browser: ["chrome", "firefox"]
391+
browser: ["chrome"]
392392
script: ["singletest.sh"]
393393
job: ["nogroup"]
394394
jobsize: ["1"]
@@ -439,14 +439,29 @@ workflows:
439439
requires:
440440
- build
441441
matrix:
442-
alias: browser-tests
442+
alias: chrome-tests
443+
parameters:
444+
browser: ["chrome"]
445+
script: ["browser_test.sh"]
446+
job: ["0","1","2","3","4","5","6","7","8","9"]
447+
jobsize: ["10"]
448+
parallelism: [15]
449+
scriptparameter: [""]
450+
- remix-ide-browser:
451+
requires:
452+
- build
453+
matrix:
454+
alias: firefox-tests
443455
parameters:
444-
browser: ["chrome", "firefox"]
456+
browser: ["firefox"]
445457
script: ["browser_test.sh"]
446458
job: ["0","1","2","3","4","5","6","7","8","9"]
447459
jobsize: ["10"]
448460
parallelism: [15]
449461
scriptparameter: [""]
462+
filters:
463+
branches:
464+
only: ['master', 'remix_live', 'remix_beta', 'remix_alpha']
450465
- remix-ide-browser:
451466
requires:
452467
- build
@@ -466,7 +481,8 @@ workflows:
466481
requires:
467482
- lint
468483
- remix-libs
469-
- browser-tests
484+
- chrome-tests
485+
- firefox-tests
470486
- metamask
471487
- plugins
472488

@@ -480,7 +496,8 @@ workflows:
480496
requires:
481497
- lint
482498
- remix-libs
483-
- browser-tests
499+
- chrome-tests
500+
- firefox-tests
484501
- metamask
485502
- plugins
486503
- predeploy
@@ -493,7 +510,8 @@ workflows:
493510
requires:
494511
- lint
495512
- remix-libs
496-
- browser-tests
513+
- chrome-tests
514+
- firefox-tests
497515
- metamask
498516
- plugins
499517
- predeploy
@@ -506,7 +524,8 @@ workflows:
506524
requires:
507525
- lint
508526
- remix-libs
509-
- browser-tests
527+
- chrome-tests
528+
- firefox-tests
510529
- metamask
511530
- plugins
512531
- predeploy

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)