vtimestamp_info
Learn how the vtimestamp service verifies document timestamps and lists proofs on the Verus blockchain using public RPC endpoints.
Instructions
Get information about the vtimestamp service — what it is, how it works, and supported features.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools.ts:260-293 (handler)The vtimestamp_info tool handler, which returns information about the vtimestamp service.
server.tool( 'vtimestamp_info', 'Get information about the vtimestamp service — what it is, how it works, and supported features.', {}, async () => { return { content: [ { type: 'text' as const, text: JSON.stringify( { name: 'vtimestamp', description: 'Decentralized document timestamping on the Verus blockchain. Creates cryptographic proof that a document existed at a specific point in time. Documents never leave the user\'s device — only a SHA-256 hash is stored on-chain, tied to the user\'s VerusID (a self-sovereign blockchain identity). Anyone can verify a timestamp without an account.', website: 'https://vtimestamp.com', github: 'https://github.com/vdappdev2/vtimestamp', verification_url: 'https://vtimestamp.com/verify', features: [ 'Privacy-first: only hash stored, document never uploaded', 'Self-sovereign: timestamps stored on user\'s own VerusID', 'Permissionless verification: anyone can verify, no account needed', 'Structured metadata: title, description, filename stored on-chain', 'Identity-bound: proof answers both \'when\' and \'who\'', 'Immutable: blockchain timestamp cannot be changed or backdated', ], }, null, 2 ), }, ], }; } );