Token Standards

The building blocks for institutional-grade digital assets.

Asset Portability.

Kortana supports standard EVM token interfaces, referred to as **KIPs** (Kortana Improvement Proposals). These are fully compatible with Ethereum standards but optimized for the Solaris execution engine.

KIP-20: Fungible Assets

The standard for liquidity, governance tokens, and native stablecoins.

import "@kortana/contracts/token/KIP20/KIP20.sol";

contract GlobalStablecoin is KIP20 {
    constructor() KIP20("USD Kortana", "USDK") {
        _mint(msg.sender, 1000000 * 10 ** 18);
    }
}

KIP-721: Asset Containers

Beyond simple NFTs, Kortana's **Asset Containers** allow for embedding legal metadata, fractional ownership rules, and automated compliance directly into the token URI.

Legal Embed

Cryptographically signed PDF/Legal links in metadata.

Logic Hooks

On-transfer compliance checks for KYC/AML.