Wallet Metadata
Bundled ADM and coin metadata is available through the adamant-api/metadata entry point.
ts
import {coinMetadata, walletMetadataSource} from 'adamant-api/metadata';
console.log(coinMetadata.ADM.decimals); // 8
console.log(walletMetadataSource.revision);Metadata is generated from a pinned adamant-wallets revision so updates are deterministic and reviewable:
sh
pnpm metadata:check
pnpm metadata:syncGenerated ADAMANT API DTOs follow the same pinned workflow for adamant-schema:
sh
pnpm api-types:check
pnpm api-types:syncSee the API Reference for the exported types CoinSymbol and CoinMetadata.