diff --git a/cli/src/live-common-setup-base.ts b/cli/src/live-common-setup-base.ts index 9e005bf009..3762925086 100644 --- a/cli/src/live-common-setup-base.ts +++ b/cli/src/live-common-setup-base.ts @@ -41,6 +41,7 @@ setSupportedCurrencies([ "stakenet", "bitcoin_testnet", "ethereum_ropsten", + "ethereum_goerli", "cosmos_testnet", "crypto_org", "crypto_org_croeseid", diff --git a/src/api/explorerConfig/index.ts b/src/api/explorerConfig/index.ts index 5616c797b2..103218b7ff 100644 --- a/src/api/explorerConfig/index.ts +++ b/src/api/explorerConfig/index.ts @@ -189,6 +189,14 @@ const initialExplorerConfig: FullConfig = { version: "v3", }, }, + ethereum_goerli: { + id: "eth_goerli", + stable: { + base: "EXPLORER_STAGING", + version: "v3", + }, + }, + ethereum_classic: { id: "etc", stable: { diff --git a/src/appSupportsQuitApp.ts b/src/appSupportsQuitApp.ts index b000f24e06..f101de34cb 100644 --- a/src/appSupportsQuitApp.ts +++ b/src/appSupportsQuitApp.ts @@ -43,6 +43,7 @@ export const minAppVersion = { Eos: "1.3.1", "Eth Recovery": "0.0.0", "Eth Ropsten": "1.6.0", + "Eth Goerli": "1.9.11", "Ether-1": "1.4.0", EtherGem: "1.4.0", Ethereum: "1.4.0", diff --git a/src/env.ts b/src/env.ts index 78dc63ebaa..9b0d1f04a5 100644 --- a/src/env.ts +++ b/src/env.ts @@ -290,6 +290,11 @@ const envDefinitions = { parser: stringParser, desc: "Ledger generic explorer API", }, + EXPLORER_STAGING: { + def: "https://explorers.api-01.live.ledger-stg.com", + parser: stringParser, + desc: "Ledger staging explorer API", + }, EXPLORER_BETA: { def: "https://explorers.api.live.ledger.com", parser: stringParser, diff --git a/tools/src/live-common-setup.js b/tools/src/live-common-setup.js index 8df84c2837..5f81cb614b 100644 --- a/tools/src/live-common-setup.js +++ b/tools/src/live-common-setup.js @@ -48,6 +48,7 @@ setSupportedCurrencies([ "decred", "bitcoin_testnet", "ethereum_ropsten", + "ethereum_goerli", "tron", "stellar", "filecoin",