Skip to content

Commit

Permalink
fix(core): export NetworkConfigBuilder class (#345)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
drichar authored Jan 30, 2025
1 parent 93b47b9 commit b258440
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion packages/use-wallet/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
export { LogLevel } from './logger'
export { WalletManager, WalletManagerConfig, WalletManagerOptions } from './manager'
export { AlgodConfig, NetworkConfig, NetworkId, DEFAULT_NETWORK_CONFIG } from './network'
export {
AlgodConfig,
NetworkConfig,
NetworkConfigBuilder,
NetworkId,
DEFAULT_NETWORK_CONFIG
} from './network'
export { State, WalletState, ManagerStatus, DEFAULT_STATE } from './store'
export { StorageAdapter } from './storage'
export { webpackFallback } from './webpack'
Expand Down

0 comments on commit b258440

Please sign in to comment.