Skip to content

Commit

Permalink
fix: don't repeat yourself
Browse files Browse the repository at this point in the history
  • Loading branch information
H34D committed Mar 15, 2024
1 parent 50bad8e commit 16a5d8b
Showing 1 changed file with 5 additions and 26 deletions.
31 changes: 5 additions & 26 deletions src/config.ts
@@ -1,35 +1,14 @@
import type {
import {
EnvironmentName,
MasaArgs,
NetworkName,
SupportedNetworks,
} from '@masa-finance/masa-sdk';
import type { WagmiConfigProps } from 'wagmi';

export const AllNetworks: NetworkName[] = [
// eth
'goerli',
'sepolia',
'ethereum',
// celo
'alfajores',
'celo',
// polygon
'mumbai',
'polygon',
// bsc
'bsctest',
'bsc',
// opbnb
'opbnbtest',
'opbnb',
// base
'basegoerli',
'basesepolia',
'base',
// scroll
'scrollsepolia',
'scroll',
];
export const AllNetworks: NetworkName[] = Object.keys(SupportedNetworks).filter(
(networkName: string) => networkName === 'unknown'
) as NetworkName[];

export interface ArweaveConfig {
port?: string;
Expand Down

0 comments on commit 16a5d8b

Please sign in to comment.