Skip to content

Commit

Permalink
feat: support more networks in the blockchain credential
Browse files Browse the repository at this point in the history
fix #640
  • Loading branch information
vplasencia committed Dec 17, 2024
1 parent abeb1ed commit 19bcec9
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 0 deletions.
10 changes: 10 additions & 0 deletions apps/api/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,13 @@ POLYGON_AMOY_RPC_URL=
OPTIMISM_SEPOLIA_RPC_URL=
ARBITRUM_SEPOLIA_RPC_URL=
AVALANCHE_C_CHAIN_FUJI_RPC_URL=
BASE_SEPOLIA_RPC_URL=
LINEA_SEPOLIA_RPC_URL=
SCROLL_SEPOLIA_RPC_URL=
ETHEREUM_RPC_URL=
POLYGON_RPC_URL=
OPTIMISM_RPC_URL=
ARBITRUM_RPC_URL=
BASE_RPC_URL=
LINEA_RPC_URL=
SCROLL_RPC_URL=
40 changes: 40 additions & 0 deletions libs/utils/src/getSupportedNetworks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,46 @@ export const blockchainCredentialSupportedNetworks: BlockchainNetwork[] = [
{
id: "avalanche_c_chain_fuji",
name: "Avalanche C-Chain Fuji"
},
{
id: "base_sepolia",
name: "Base Sepolia"
},
{
id: "linea_sepolia",
name: "Linea Sepolia"
},
{
id: "scroll_sepolia",
name: "Scroll Sepolia"
},
{
id: "ethereum",
name: "Ethereum"
},
{
id: "polygon",
name: "Polygon"
},
{
id: "optimism",
name: "Optimism"
},
{
id: "arbitrum",
name: "Arbitrum"
},
{
id: "base",
name: "Base"
},
{
id: "linea",
name: "Linea"
},
{
id: "scroll",
name: "Scroll"
}
]

Expand Down

0 comments on commit 19bcec9

Please sign in to comment.