/** * Lightweight entry point that re-exports everything from the SDK that does * NOT depend on viem or permissionless. * * Use `@geoprotocol/geo-sdk/lite` instead of `@geoprotocol/geo-sdk` when you * only need constants, types, and utility functions. This avoids pulling * viem (2,600+ modules) and permissionless (200+ modules) into the bundler's * compilation graph, dramatically improving dev server startup times. * * The full barrel (`@geoprotocol/geo-sdk`) is unchanged and still available * for code that needs daoSpace, personalSpace, encodings, or smart-wallet * functionality. */ export { Account } from './src/account.js'; export { DataBlock, TextBlock } from './src/blocks.js'; export * as Base58 from './src/core/base58.js'; export { getChecksumAddress } from './src/core/get-checksum-address.js'; export * as Encoding from './src/encoding.js'; export * as Graph from './src/graph/index.js'; export { Id } from './src/id.js'; export * as IdUtils from './src/id-utils.js'; export * as Ipfs from './src/ipfs.js'; export { defineGeoNetworkConfig, GeoTestnetConfig } from './src/networks.js'; export * as Ops from './src/ops/index.js'; export { Position } from './src/position.js'; export * as Rank from './src/ranks/index.js'; export { GraphUrl } from './src/scheme.js'; export { ContentIds, NetworkIds, SystemIds } from './src/system-ids.js'; export * from './src/types.js'; //# sourceMappingURL=lite.d.ts.map