Skip to content

Commit

Permalink
Restore defaultSimplehashNetwork chain list
Browse files Browse the repository at this point in the history
  • Loading branch information
christianbaroni committed Jan 17, 2025
1 parent 1cc2922 commit 980518a
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/state/backendNetworks/backendNetworks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -333,14 +333,27 @@ export const useBackendNetworksStore = createRainbowStore<BackendNetworksState>(
return 'gnosis';
case ChainId.goerli:
return 'ethereum-goerli';
// case ChainId.gravity: // FIXME: Unsupported as of now https://docs.simplehash.com/reference/supported-chains-testnets#mainnets
// return 'gravity';
// case ChainId.ink: // FIXME: Unsupported as of now https://docs.simplehash.com/reference/supported-chains-testnets#mainnets
// return 'ink';
case ChainId.mainnet:
return 'ethereum';
case ChainId.optimism:
return 'optimism';
case ChainId.polygon:
return 'polygon';
// case ChainId.sanko: // FIXME: Unsupported as of now https://docs.simplehash.com/reference/supported-chains-testnets#mainnets
// return 'sanko';
case ChainId.scroll:
return 'scroll';
case ChainId.zksync:
return 'zksync-era';
case ChainId.zora:
return 'zora';
case ChainId.linea:
return 'linea';

default:
return '';
}
Expand Down

0 comments on commit 980518a

Please sign in to comment.