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.
Asset Layer
Physical and digital assets are verified and prepared for tokenization through legal structures (SPV/Trust)
Tokenization Layer
Smart contracts mint tokens representing fractional ownership with embedded compliance rules
Oracle Layer
Real-time data feeds provide asset valuations, ownership verification, and regulatory compliance
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:
- Asset verification and valuation
- Legal structure setup (SPV/Trust)
- Smart contract deployment
- Token minting and distribution
- 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.