Skip to content

Commit

Permalink
Update InfuraJsonRpcSupportedNetwork with supported networks (#69)
Browse files Browse the repository at this point in the history
* feat: add sepolia to InfuraJsonRpcSupportedNetwork

* fix: update InfuraJsonRpcSupportedNetwork with new and deprecated nets
  • Loading branch information
mikesposito authored Jan 25, 2023
1 parent bbe59b9 commit 4a3ac88
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,24 @@ export type ExtendedJsonRpcRequest<T> = JsonRpcRequest<T> & { origin?: string };
*/
export type InfuraJsonRpcSupportedNetwork =
| 'mainnet'
| 'ropsten'
| 'rinkeby'
| 'kovan'
| 'goerli'
| 'eth2-beacon-mainnet'
| 'sepolia'
| 'filecoin'
| 'polygon-mainnet'
| 'polygon-mumbai'
| 'palm-mainnet'
| 'palm-testnet'
| 'optimism-mainnet'
| 'optimism-kovan'
| 'optimism-goerli'
| 'arbitrum-mainnet'
| 'arbitrum-rinkeby';
| 'arbitrum-goerli'
| 'aurora-mainnet'
| 'aurora-testnet'
| 'avalanche-mainnet'
| 'avalanche-fuji'
| 'celo-mainnet'
| 'celo-alfajores'
| 'near-mainnet'
| 'near-testnet'
| 'starknet-mainnet'
| 'starknet-goerli';

0 comments on commit 4a3ac88

Please sign in to comment.