diff --git a/src/index.ts b/src/index.ts index a640022e..7a52fe08 100644 --- a/src/index.ts +++ b/src/index.ts @@ -90,6 +90,7 @@ export { export * from '@massalabs/web3-utils'; export { fromMAS, toMAS, MassaUnits } from './utils/converters'; -/** Exposed utils */ -export * as utils from './utils/Xbqcrypto'; -export * as time from './utils/time'; +/** + * This namespace provides utility functions, such as unit conversion, serialization, encoding, etc. + */ +export * as utils from './utils'; diff --git a/typedoc.json b/typedoc.json new file mode 100644 index 00000000..196ff2df --- /dev/null +++ b/typedoc.json @@ -0,0 +1,12 @@ +{ + "sidebarLinks": { + "Wallet operations": "classes/WalletClient.html", + "Smart contracts operations": "classes/SmartContractsClient.html", + "Events": "classes/EventPoller.html", + "Public API": "classes/PublicApiClient.html", + "Private API": "classes/PrivateApiClient.html", + }, + "navigationLinks": { + "Main documentation": "https://docs.massa.net/" + } +} \ No newline at end of file