Skip to main content
Glama

helius_get_asset_proof

Retrieve cryptographic proof for a digital asset on Solana blockchain to verify ownership and authenticity.

Instructions

Get proof for a digital asset

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes

Implementation Reference

  • The handler function that executes the tool logic by calling Helius RPC's getAssetProof method.
    export const getAssetProofHandler = async (input: { id: string }): Promise<ToolResultSchema> => { try { const proof = await (helius as any as Helius).rpc.getAssetProof({ id: input.id }); return createSuccessResponse(`Asset proof: ${JSON.stringify(proof, null, 2)}`); } catch (error) { return createErrorResponse(`Error getting asset proof: ${error instanceof Error ? error.message : String(error)}`); } }
  • JSON schema defining the input for the tool (requires 'id' string).
    { name: 'helius_get_asset_proof', description: 'Get proof for a digital asset', inputSchema: { type: 'object', properties: { id: { type: 'string' } }, required: ['id'] } },
  • src/tools.ts:575-575 (registration)
    Maps the tool name to its handler function in the global handlers dictionary.
    "helius_get_asset_proof": helius.getAssetProofHandler,

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/dcSpark/mcp-server-helius'

If you have feedback or need assistance with the MCP directory API, please join our Discord server