Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/common/config/allowlist.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default {
'*://cn.etherscan.com/*',
'*://goto.etherscan.com/*',
'*://sepolia.etherscan.io/*',
'*://goerli.etherscan.io/*',
'*://hoodi.etherscan.io/*',
'*://cn.etherscan.com/*',
'*://etherscan.io/*',
'*://bscscan.com/*',
Expand Down
12 changes: 6 additions & 6 deletions src/common/config/feature.support.ts
Original file line number Diff line number Diff line change
Expand Up @@ -154,8 +154,8 @@ export class FeatureActiveSupport {
url: 'https://ethervm.io/decompile/binance'
},
{
chain: 'gor.eth',
url: 'https://ethervm.io/decompile/goerli'
chain: 'hoodi.eth',
url: 'https://ethervm.io/decompile/hoodi'
},
{
chain: 'sepolia.eth',
Expand Down Expand Up @@ -297,8 +297,8 @@ export class FeatureActiveSupport {
chain: 'gnosis'
},
{
pathname: 'goerli',
chain: 'gor.eth'
pathname: 'hoodi',
chain: 'hoodi.eth'
},
{
pathname: 'fantom-testnet',
Expand Down Expand Up @@ -369,8 +369,8 @@ export class FeatureActiveSupport {
supportSimulator: false
},
{
pathname: 'goerli',
chain: 'gor.eth',
pathname: 'hoodi',
chain: 'hoodi.eth',
supportSimulator: false
},
{
Expand Down
28 changes: 14 additions & 14 deletions src/common/constants/support.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ export const EXT_SUPPORT_WEB_LIST: ExtSupportWebsite[] = [
logo: 'https://assets.blocksec.com/image/1671685360787-7.png'
},
{
name: 'Goerli',
domains: ['goerli.etherscan.io'],
chainID: 5,
chain: 'gor.eth',
name: 'Hoodi',
domains: ['hoodi.etherscan.io'],
chainID: 560048,
chain: 'hoodi.eth',
siteName: 'ETHERSCAN',
logo: 'https://assets.blocksec.com/image/1671685360787-7.png'
}
Expand All @@ -72,10 +72,10 @@ export const EXT_SUPPORT_WEB_LIST: ExtSupportWebsite[] = [
logo: 'https://raw.githubusercontent.com/blockscout/frontend-configs/main/configs/meta-suites-logos/ethereum.png'
},
{
name: 'Goerli (Blockscout)',
domains: ['eth-goerli.blockscout.com'],
chainID: 5,
chain: 'gor.eth',
name: 'Hoodi (Blockscout)',
domains: ['eth-hoodi.blockscout.com'],
chainID: 560048,
chain: 'hoodi.eth',
siteName: 'BLOCKSCOUT',
logo: 'https://raw.githubusercontent.com/blockscout/frontend-configs/main/configs/meta-suites-logos/ethereum.png'
}
Expand Down Expand Up @@ -505,8 +505,8 @@ export const PHALCON_SUPPORT_LIST = [
supportSimulator: false
},
{
pathname: 'goerli',
chain: 'gor.eth',
pathname: 'hoodi',
chain: 'hoodi.eth',
supportSimulator: false
},
{
Expand Down Expand Up @@ -622,8 +622,8 @@ export const TENDERLY_SUPPORT_LIST = [
chain: 'gnosis'
},
{
pathname: 'goerli',
chain: 'gor.eth'
pathname: 'hoodi',
chain: 'hoodi.eth'
},
{
pathname: 'fantom-testnet',
Expand Down Expand Up @@ -749,8 +749,8 @@ export const ETHERVM_SUPPORT_DIRECT_LIST = [
url: 'https://ethervm.io/decompile/binance'
},
{
chain: 'gor.eth',
url: 'https://ethervm.io/decompile/goerli'
chain: 'hoodi.eth',
url: 'https://ethervm.io/decompile/hoodi'
},
{
chain: 'sepolia.eth',
Expand Down
2 changes: 1 addition & 1 deletion src/tests/isMatchURL.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ test('should match URL with query parameters', () => {
'*://cn.etherscan.com/*',
'*://goto.etherscan.com/*',
'*://sepolia.etherscan.io/*',
'*://goerli.etherscan.io/*',
'*://hoodi.etherscan.io/*',
'*://cn.etherscan.com/*',
'*://etherscan.io/*',
'*://bscscan.com/*',
Expand Down