use goerli instead of görli

pull/2723/head
yann300 2 years ago
parent 0e458eaee8
commit 585ef49550
  1. 4
      apps/etherscan/src/app/utils/utilities.ts
  2. 2
      libs/remix-core-plugin/src/lib/compiler-metadata.ts

@ -13,9 +13,7 @@ export const getNetworkName = async (client: RemixClient) => {
if (!network) {
throw new Error("no known network to verify against")
}
const name = network.name!.toLowerCase()
// TODO : remove that when https://github.com/ethereum/remix-ide/issues/2017 is fixe
return name === "görli" ? "goerli" : name
return network.name!.toLowerCase()
}
export const getReceiptStatus = async (

@ -15,7 +15,7 @@ export class CompilerMetadata extends Plugin {
innerPath: string
constructor () {
super(profile)
this.networks = ['VM:-', 'main:1', 'ropsten:3', 'rinkeby:4', 'kovan:42', 'görli:5', 'Custom']
this.networks = ['VM:-', 'main:1', 'ropsten:3', 'rinkeby:4', 'kovan:42', 'goerli:5', 'Custom']
this.innerPath = 'artifacts'
}

Loading…
Cancel
Save