Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

91 total results found

Performance Optimization

Frontend Implementation

Build & Deployment

Frontend Implementation

Browser Compatibility

Frontend Implementation

Smart Contract Testing

Testing & QA

Performance Testing

Testing & QA

Security Testing

Testing & QA

Bug Management

Testing & QA

Security Policies

Security Protocols

Access Control

Security Protocols

Data Protection

Security Protocols

Smart Contract Security

Security Protocols

Incident Response

Security Protocols

Security Audits

Security Protocols

Compliance

Security Protocols

Penetration Testing

Security Protocols

Introduction & Standards

API Documentation

Overview Our API serves as the primary interface between the frontend application and the blockchain infrastructure. It provides a RESTful interface that handles business logic, smart contract interactions, and data management. API Design Principles 1. RESTful...

Vault Formation

API Documentation API Endpoints

Create Vault Creates a new vault with specified configuration. Endpoint POST /api/v1/vaults Sample Request { "vault_name": "Example Vault", "vault_type": "public", "privacy_type": "semi-private", "admin_user": { "wallet_address": "addr1q...

Governance

API Documentation API Endpoints

Proposal Management Create a new governance proposal. HTTP Request POST /api/v1/vaults/{vaultId}/proposals Sample Request { "proposer": "user_wallet123", "proposal_details": { "title": "Liquidate Asset A", "description": "Sell asset A for ...

Wallet Integration

API Documentation API Endpoints

About CIP-08 and CIP-30 This guide is a walkthrough on how to implement the message signing described in CIP-08 in order to authenticate users on the web with just their CIP-30-compatible wallet app: https://developers.cardano.org/docs/integrate-cardano/user...

Getting Started

API Documentation API Endpoints

Obtain API credentials Review authentication requirements Test endpoints in development environment Implement error handling Add real-time updates using WebSocket endpoints Environment URLs Development: https://api-dev.l4va.example.com Staging: ht...

Terminology / Glossary

System Architecture

Term / Acronym Definition / Meaning Vault A blockchain-based container that holds tokenized real-world assets, fractionalized tokens (FTs), and governance settings. Private Vault A vault where only the Admin User (AU) can submit as...

Error Handling & Logging

API Documentation

Error Types and Handling Standard Error Types enum ErrorType {   VALIDATION_ERROR = 'VALIDATION_ERROR',   AUTHENTICATION_ERROR = 'AUTHENTICATION_ERROR',    AUTHORIZATION_ERROR = 'AUTHORIZATION_ERROR',   BLOCKCHAIN_ERROR = 'BLOCKCHAIN_ERROR',   BUSINESS_...

Authentication & Security

API Documentation

Any code or data structure shown below is sample code, and sample data structures provided as best practice. As we start implementing this in our project, I expect the engineering team to update this page.Authentication FlowAPI Key Authenticationinterface ApiK...