Skip to content

Commit

Permalink
export MAINNET, TESTNET default configs (#1867)
Browse files Browse the repository at this point in the history
  • Loading branch information
artursapek authored Apr 2, 2024
1 parent 74c22b4 commit 816120f
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions wormhole-connect/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,23 +1,27 @@
import WormholeConnect from './WormholeConnect';
export default WormholeConnect;

export { dark, light } from './theme';
import type {
WormholeConnectPartialTheme,
WormholeConnectTheme,
dark,
light,
} from './theme';

import MAINNET from './config/mainnet';
import TESTNET from './config/testnet';

import type { WormholeConnectConfig } from './config/types';
import type { ChainName } from '@wormhole-foundation/wormhole-connect-sdk';

export default WormholeConnect;

export {
MAINNET,
TESTNET,
WormholeConnectConfig,
ChainName,
dark,
light,
WormholeConnectPartialTheme,
WormholeConnectTheme,
};

export {
MAINNET_CHAINS,
TESTNET_CHAINS,
CONFIG,
} from '@wormhole-foundation/wormhole-connect-sdk';

0 comments on commit 816120f

Please sign in to comment.