Skip to content

Commit ea562e4

Browse files
committed
remove goerli too
1 parent 1dde315 commit ea562e4

File tree

19 files changed

+9
-70
lines changed

19 files changed

+9
-70
lines changed

apps/debugger/src/app/debugger.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export class DebuggerClientApi extends DebuggerApiMixin(PluginClient) {
2323
fetchContractAndCompile: (address: string, currentReceipt: TransactionReceipt) => Promise<CompilerAbstract>
2424
getFile: (path: string) => Promise<string>
2525
setFile: (path: string, content: string) => Promise<void>
26-
getDebugProvider: () => any // returns an instance of web3.js, if applicable (mainnet, goerli, ...) it returns a reference to a node from devops (so we are sure debug endpoint is available)
26+
getDebugProvider: () => any // returns an instance of web3.js, if applicable (mainnet, ...) it returns a reference to a node from devops (so we are sure debug endpoint is available)
2727
web3: () => any // returns an instance of web3.js
2828
onStartDebugging: (debuggerBackend: any) => void // called when debug starts
2929
onStopDebugging: () => void // called when debug stops

apps/remix-dapp/src/reducers/state.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export const appInitialState: any = {
1313
sendValue: '0',
1414
sendUnit: 'wei',
1515
gasLimit: 3000000,
16-
networkName: 'Goerli',
16+
networkName: 'Sepolia',
1717
loadedAccounts: {},
1818
isRequesting: false,
1919
isSuccessful: false,

apps/remix-dapp/src/utils/chains.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,6 @@ export const sepolia = {
1414
rpcUrl: 'https://sepolia.infura.io/v3/b6bf7d3508c941499b10025c0776eaf8',
1515
};
1616

17-
export const goerli = {
18-
chainId: 5,
19-
name: 'Goerli',
20-
currency: 'ETH',
21-
explorerUrl: 'https://goerli.etherscan.io',
22-
rpcUrl: 'https://rpc.ankr.com/eth_goerli',
23-
};
24-
2517
export const arbitrum = {
2618
chainId: 42161,
2719
name: 'Arbitrum',

apps/remix-dapp/src/utils/constants.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import {
66
polygonMumbai,
77
optimism,
88
optimismGoerli,
9-
goerli,
109
sepolia,
1110
ronin,
1211
saigon,
@@ -31,7 +30,6 @@ export const constants = {
3130
polygonMumbai,
3231
optimism,
3332
optimismGoerli,
34-
goerli,
3533
sepolia,
3634
ronin,
3735
saigon,

apps/remix-dapp/src/utils/txRunner.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,6 @@ export class TxRunner {
158158
const id = Number(chainId)
159159
let name = '';
160160
if (id === 1) name = 'Main';
161-
else if (id === 5) name = 'Goerli';
162161
else if (id === 11155111) name = 'Sepolia';
163162
else name = 'Custom';
164163

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const tests = {
2727
'Should verify a contract (contract is already verified) #group1': function (browser: NightwatchBrowser) {
2828
browser
2929
.frameParent()
30-
.clickLaunchIcon('udapp') // switch to Goerli
30+
.clickLaunchIcon('udapp') // switch to sepolia
3131
.switchEnvironment('basic-http-provider')
3232
.waitForElementPresent('[data-id="basic-http-provider-modal-footer-ok-react"]')
3333
.execute(() => {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ module.exports = {
382382
}
383383
384384
function resolveENS() view {
385-
// Same address for Mainnet, Goerli and other networks;
385+
// Same address for Mainnet and other networks;
386386
ENS ens = ENS(0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e);
387387
(,bytes32 node) = NameEncoder.dnsEncodeName("vitalik.eth");
388388
Resolver resolver = ens.resolver(node);

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -723,7 +723,7 @@ contract C {
723723
}
724724
725725
contract MyResolver {
726-
// Same address for Mainnet, Goerli and other networks;
726+
// Same address for Mainnet and other networks;
727727
ENS ens = ENS(0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e);
728728
729729
function resolve() public view returns(address) {

apps/remix-ide/src/app.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ import { Blockchain } from './blockchain/blockchain'
4040
import { MergeVMProvider, LondonVMProvider, BerlinVMProvider, ShanghaiVMProvider, CancunVMProvider, PectraVMProvider } from './app/providers/vm-provider'
4141
import { MainnetForkVMProvider } from './app/providers/mainnet-vm-fork-provider'
4242
import { SepoliaForkVMProvider } from './app/providers/sepolia-vm-fork-provider'
43-
import { GoerliForkVMProvider } from './app/providers/goerli-vm-fork-provider'
4443
import { CustomForkVMProvider } from './app/providers/custom-vm-fork-provider'
4544
import { HardhatProvider } from './app/providers/hardhat-provider'
4645
import { GanacheProvider } from './app/providers/ganache-provider'
@@ -350,7 +349,6 @@ class AppComponent {
350349
const vmProviderCustomFork = new CustomForkVMProvider(blockchain)
351350
const vmProviderMainnetFork = new MainnetForkVMProvider(blockchain)
352351
const vmProviderSepoliaFork = new SepoliaForkVMProvider(blockchain)
353-
const vmProviderGoerliFork = new GoerliForkVMProvider(blockchain)
354352
const vmProviderShanghai = new ShanghaiVMProvider(blockchain)
355353
const vmProviderCancun = new CancunVMProvider(blockchain)
356354
const vmProviderPectra = new PectraVMProvider(blockchain)
@@ -435,7 +433,6 @@ class AppComponent {
435433
vmProviderBerlin,
436434
vmProviderLondon,
437435
vmProviderSepoliaFork,
438-
vmProviderGoerliFork,
439436
vmProviderMainnetFork,
440437
vmProviderCustomFork,
441438
hardhatProvider,

apps/remix-ide/src/app/plugins/walletconnect/utils/chains.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,6 @@ export const sepolia = {
1414
rpcUrl: 'https://rpc.sepolia.org'
1515
}
1616

17-
export const goerli = {
18-
chainId: 5,
19-
name: 'Goerli',
20-
currency: 'ETH',
21-
explorerUrl: 'https://goerli.etherscan.io',
22-
rpcUrl: 'https://rpc.ankr.com/eth_goerli'
23-
}
24-
2517
export const arbitrum = {
2618
chainId: 42161,
2719
name: 'Arbitrum',

0 commit comments

Comments
 (0)