Welcome to OAS Documentation

OAS (Omni Asset) is a comprehensive platform for tokenizing real-world assets on the blockchain. Our platform enables institutions and individuals to convert physical and intangible assets into digital tokens, providing liquidity, fractional ownership, and global accessibility.

Installation

Get started with OAS SDK in your project. We support multiple programming languages and frameworks.

Node.js / JavaScript

npm install @omniasset/sdk

// or using yarn
yarn add @omniasset/sdk

// or using pnpm
pnpm add @omniasset/sdk

Python

pip install omniasset

# or using poetry
poetry add omniasset

Quick Start

Initialize the OAS SDK and create your first tokenized asset in just a few lines of code.

import { OAS } from '@omniasset/sdk';

// Initialize the SDK
const oas = new OAS({
  apiKey: 'your-api-key',
  network: 'mainnet' // or 'testnet'
});

// Create a new tokenized asset
const asset = await oas.assets.create({
  name: 'Luxury Apartment NYC',
  symbol: 'APT-NYC-001',
  type: 'real-estate',
  totalSupply: 1000000,
  pricePerToken: 100, // USD
  metadata: {
    location: 'Manhattan, New York',
    sqft: 2500,
    bedrooms: 3,
    documents: ['deed.pdf', 'appraisal.pdf']
  }
});

console.log('Asset tokenized:', asset.tokenAddress);

Platform Architecture

OAS is built on a modular, scalable architecture that combines blockchain technology with traditional financial infrastructure.

1

Asset Layer

Physical and digital assets are verified and prepared for tokenization through legal structures (SPV/Trust)

2

Tokenization Layer

Smart contracts mint tokens representing fractional ownership with embedded compliance rules

3

Oracle Layer

Real-time data feeds provide asset valuations, ownership verification, and regulatory compliance

4

Application Layer

APIs, SDKs, and user interfaces for seamless integration and interaction with tokenized assets

Core Concepts

Tokenization Process

The tokenization process involves multiple steps to ensure legal compliance and asset security:

  1. Asset verification and valuation
  2. Legal structure setup (SPV/Trust)
  3. Smart contract deployment
  4. Token minting and distribution
  5. Ongoing management and compliance

Custody Solutions

OAS provides institutional-grade custody through multi-signature wallets and hardware security modules (HSMs). Assets are secured with industry-leading practices including cold storage, regular audits, and insurance coverage.

Oracle Integration

Decentralized oracles provide real-time data for asset valuation, regulatory compliance, and automated actions. We integrate with Chainlink and other leading oracle providers for maximum reliability.