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.
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.
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.
Dividend logic
- Mint fees and marketplace fees route into the dividend vault.
- Each inscription counts as one claim unit.
- Claimable rewards are calculated pro-rata by inscription ownership.
- Transfers should settle the current checkpoint before ownership moves.
Connect
Use Phantom, Solflare, Backpack, or any Solana wallet with an injected provider.
Inscribe
Mint a stock-coded artifact with ticker metadata and deterministic visual traits.
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.
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
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 soonWallet inventory
My inscriptions
Once the program and indexer are connected, this area will render inscriptions owned by the connected wallet.
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.
Follow on XDraft inscription format
{
"p": "sol-stk",
"op": "mint",
"ticker": "NVDA",
"chain": "solana",
"seed": "0xSOL..."
}