Skip to content

Commit b258440

Browse files
authored
fix(core): export NetworkConfigBuilder class (#345)
The `NetworkConfigBuilder` class, a key component of the new network configuration API, was missing from the main exports. This class enables users to customize network configurations with a fluent builder pattern.
1 parent 93b47b9 commit b258440

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

packages/use-wallet/src/index.ts

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
export { LogLevel } from './logger'
22
export { WalletManager, WalletManagerConfig, WalletManagerOptions } from './manager'
3-
export { AlgodConfig, NetworkConfig, NetworkId, DEFAULT_NETWORK_CONFIG } from './network'
3+
export {
4+
AlgodConfig,
5+
NetworkConfig,
6+
NetworkConfigBuilder,
7+
NetworkId,
8+
DEFAULT_NETWORK_CONFIG
9+
} from './network'
410
export { State, WalletState, ManagerStatus, DEFAULT_STATE } from './store'
511
export { StorageAdapter } from './storage'
612
export { webpackFallback } from './webpack'

0 commit comments

Comments
 (0)