/** * This module provides utility functions for working with knowledge graph * images in TypeScript. * * @since 0.0.6 */ export { Account } from './src/account.js'; export { DataBlock, TextBlock } from './src/blocks.js'; export { createGeoClient } from './src/client.js'; /** * This module provides utility functions for working with base58 ids * in TypeScript. */ export * as Base58 from './src/core/base58.js'; export { getChecksumAddress } from './src/core/get-checksum-address.js'; /** * This module provides functions for creating DAO spaces. */ export * as daoSpace from './src/dao-space/index.js'; export * as Encoding from './src/encoding.js'; export { getAcceptEditorArguments, getAcceptSubspaceArguments, getCalldataForSpaceGovernanceType, getCreateDaoSpaceCalldata, getCreatePersonalSpaceCalldata, getProcessGeoProposalArguments, getRemoveEditorArguments, getRemoveSubspaceArguments, validateIpfsUri, } from './src/encodings/index.js'; /** * @deprecated Use `Ops` for pure operation builders and `createGeoClient({ network })` * for API, storage, image, comment, entity-delete, and transaction workflows. */ export * as Graph from './src/graph/index.js'; export { Id } from './src/id.js'; /** * This module provides utility functions for working knowledge graph * identifiers in TypeScript. */ export * as IdUtils from './src/id-utils.js'; /** * This module provides utility functions for interacting with the default * IPFS gateway in TypeScript. * * @since 0.1.1 */ export * as Ipfs from './src/ipfs.js'; export { defineGeoNetworkConfig, GeoTestnetConfig } from './src/networks.js'; export * as Ops from './src/ops/index.js'; /** * This module provides functions for creating and managing personal spaces. * * @since 0.2.0 */ export * as personalSpace from './src/personal-space/index.js'; export { Position } from './src/position.js'; /** * This module provides utility functions for working with ranks in the Knowledge Graph. * Ranks allow ordering or scoring entities within a collection. */ export * as Rank from './src/ranks/index.js'; /** * This module provides utility functions for working with Graph URIs in TypeScript. * * @since 0.0.6 */ export { GraphUrl } from './src/scheme.js'; export { getSmartAccountWalletClient, getWalletClient, TESTNET_RPC_URL, } from './src/smart-wallet.js'; /** * Provides ids for commonly used entities across the Knowledge Graph. */ export { ContentIds, NetworkIds, SystemIds } from './src/system-ids.js'; export * from './src/types.js'; //# sourceMappingURL=index.d.ts.map