📄 src/web3/index.ts
D-OPEN SOVEREIGN
1export * from './client';
2export * from './session';
3export * from './subscription';
4export * from './contracts';
5export * from './events';
6export * from './wallet';
7export * from './network/chains';
8export * from './registry';
9// The two wei<->ether conversions consumers need for the SDK's own bigint
10// outputs (getUserBalances, getVotingBalance, publicClient.getBalance, ...) —
11// not a general viem re-export surface, just these.
12export { formatEther, parseEther } from 'viem';
13