SOL-STK logo SOL-STK Solana inscription terminal

SOL-STK // Stock-coded inscriptions on Solana

Stock tickers, minted like artifacts.

A Solana-native mint terminal for stock-coded inscriptions: ticker metadata, market lore, deterministic visuals, and a fee model designed to route value back to holders.

Enter Mint Terminal Pre-launch interface

Protocol overview

The stock tape goes on-chain.

SOL-STK starts with a clean wallet flow, a transparent launch model, and public-facing core logic. The live mint transaction plugs in once the Solana program is ready.

ChainSolana
Target supply4,444
Mint price0.08 SOL
StatusPre-launch

Tax flow + dividends

Fees should not disappear into a black hole.

The proposed launch model routes mint revenue and marketplace fees into visible buckets, including a holder dividend vault. Clear routing first, claims after the program is live.

TAX ROUTER

Proposed fee split

Holder dividend vault60%
Market liquidity + listings25%
Ops, infra, and audits10%
Protocol reserve5%
CLAIM ENGINE

Dividend logic

  1. Mint fees and marketplace fees route into the dividend vault.
  2. Each inscription counts as one claim unit.
  3. Claimable rewards are calculated pro-rata by inscription ownership.
  4. Transfers should settle the current checkpoint before ownership moves.
pending = holderUnits / totalUnits * vaultFlow
01

Connect

Use Phantom, Solflare, Backpack, or any Solana wallet with an injected provider.

02

Inscribe

Mint a stock-coded artifact with ticker metadata and deterministic visual traits.

03

Hold

Hold the inscription, track the vault, and stay aligned with the fee flow.

Mint terminal

Forge a Solana stock inscription

Connect your wallet to enter the mint flow. The UI is wallet-ready; the actual transaction will be enabled when the Solana program is deployed.

Mint cost 0.08 SOL
Wallet not connected

Live stock packet


      

Open core logic

No black box mint.

Before public mint, the core constants, vault rules, and program address should be visible. People should know exactly what they are signing.

What will be public

  • Program ID and verified source repository
  • Mint price, max supply, wallet cap, and vault addresses
  • Dividend formula and fee routing rules
  • Audit notes or community review checklist
core.rs
pub const MAX_SUPPLY: u16 = 4444;
pub const MINT_PRICE_LAMPORTS: u64 = 80_000_000;
pub const WALLET_CAP: u8 = 4;

pub fn route_fee(amount: u64) -> FeeSplit {
    FeeSplit {
        dividend_vault: amount * 60 / 100,
        market_liquidity: amount * 25 / 100,
        operations: amount * 10 / 100,
        reserve: amount * 5 / 100,
    }
}

pub fn claimable(holder_units: u64, total_units: u64, vault_flow: u64) -> u64 {
    vault_flow * holder_units / total_units
}

Marketplace

The trading floor is warming up.

Listings, floor tracking, sweep tools, and dividend-aware ownership views are coming after the mint program is wired in.

Coming soon
Floor price-- SOL
24h volume-- SOL
Listed-- / 4,444
Dividend vault-- SOL

Wallet inventory

My inscriptions

Once the program and indexer are connected, this area will render inscriptions owned by the connected wallet.

Connect a wallet to scan the vault.

Protocol Notes

SOL-STK is a Solana-native stock inscription experience with fast wallet entry, transparent fee routing, open core logic, and a brand built for global crypto users.

Draft inscription format

{
  "p": "sol-stk",
  "op": "mint",
  "ticker": "NVDA",
  "chain": "solana",
  "seed": "0xSOL..."
}