Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Returns the full Project record for a given project_id.
fn get_project(env: Env, project_id: u64) -> Project
Project
project_id
u64
struct Project { id: u64, merchant: Address, name: String, description: String, created_at: u64, }
id
merchant
name
description
created_at
PlanNotFound
import { VowenaClient, NETWORKS } from "@vowena/sdk"; const client = new VowenaClient({ contractId: NETWORKS.testnet.contractId, rpcUrl: NETWORKS.testnet.rpcUrl, networkPassphrase: NETWORKS.testnet.networkPassphrase, }); const project = await client.getProject(1, "GREAD_CALLER...ADDR"); console.log(project.name); // "Acme SaaS"
READ_CALLER
Was this page helpful?