Section 12: Tokenomics & Economic Model
π The complete OTCM Security Token economic model β token parameters, vesting schedules, the perpetual 5% fee engine, staking rewards architecture, and SOL treasury strategy.
π 12.1 OTCM Token Parameters
The OTCM utility token serves as the native currency of the OTCM Protocol ecosystem, providing governance rights, fee discounts, staking rewards, and access to premium platform features. Under the SEC's March 17, 2026 interpretation (Release No. 33-11412), the OTCM governance/utility token's classification as a "Digital Tool" vs. Digital Security is under active legal review. Pending formal legal opinion, OTCM conservatively treats the governance token as a security under Regulation D Rule 506(c) and applies full accredited investor verification.
πΉ 12.1.1 Total Supply & Denomination
|
| |
interface OTCMTokenParameters {
totalSupply: 1_000_000_000; // 1 billion tokens
decimals: 9; // Standard Solana precision
minimumUnit: 0.000000001; // 1 lamport equivalent
standard: 'SPL_TOKEN_2022';
extensions: [
'TRANSFER_HOOK', // Compliance enforcement
'METADATA', // On-chain metadata
'PERMANENT_DELEGATE', // Protocol operations
];
authorities: {
mintAuthority: null; // Disabled (fixed supply)
freezeAuthority: Pubkey; // Compliance enforcement
transferHookAuthority: Pubkey;
};
metadata: {
name: 'OTCM Protocol Token';
symbol: 'OTCM';
uri: 'https://otcm.io/token-metadata.json';
image: 'https://otcm.io/assets/otcm-logo.png';
};
}
πΉ 12.1.2 1:1 Backing Structure
EveryComprehensive OTCMTechnical tokenWhitepaper is backedβ 1:1 byVersion Preferred Series "M" shares held in custody at Empire Stock Transfer, an SEC-registered transfer agent. This backing structure ensures intrinsic value and enables token holders to redeem underlying equity:7.0
ST22
"UnlikeDigitalunbackedSecuritiesutilityPlatformtokenscommon|intheMarchcryptocurrency2026industry,OTCM|tokensrepresent fractional ownership of real equity securities. Each token is mathematically guaranteed to be backed by proportional Series M preferred shares."
interface BackingStructure {
backingAsset: {
type: 'PREFERRED_SERIES_M';
issuer: 'Groovy Company, Inc. dba OTCM Protocol';
cusip: string;
parValue: 0.001; // $0.001 per share
};
custody: {
custodian: 'Empire Stock Transfer';
custodyType: 'QUALIFIED_CUSTODY';
auditFrequency: 'MONTHLY';
attestationFrequency: 'EVERY_SOLANA_SLOT'; // ~400ms
};
redemption: {
enabled: true;
minimumRedemption: 1000; // 1,000 OTCM minimum
processingTime: '3_5_BUSINESS_DAYS';
deliveryMethod: ['DRS', 'PHYSICAL_CERTIFICATE'];
};
requiredRatio: 1.0000;
toleranceRange: 0.0000; // Zero tolerance
}
πΉ 12.1.3 Token Technical Specifications
pub struct OTCMTokenConfig {
/// Total supply (fixed at genesis)
pub total_supply: u64, // 1_000_000_000_000_000_000 (with decimals)
/// Decimal precision
pub decimals: u8, // 9
/// Token standard extensions
pub extensions: TokenExtensions {
transfer_hook: TransferHook {
program_id: Pubkey, // Hook program address
extra_accounts: Vec<AccountMeta>,
},
metadata: TokenMetadata {
name: String, // "OTCM Protocol Token"
symbol: String, // "OTCM"
uri: String, // Metadata URI
},
},
/// Authority configuration
pub mint_authority: Option<Pubkey>, // None (disabled)
pub freeze_authority: Option<Pubkey>, // Some(compliance_multisig)
}
impl OTCMTokenConfig {
pub fn is_supply_fixed(&self) -> bool {
self.mint_authority.is_none() // True β no new tokens can be minted
}
}
πΉ 12.1.4 Initial Liquidity Pool Configuration
πΉ 12.1.5 Graduation Mechanism
πΉ 12.1.6 Post-Graduation Token Economics
Upon reaching the graduation threshold, accumulated bonding curve funds are burned and permanently locked in the CPMM liquidity pool:
interface GraduationMechanism {
trigger: {
metric: 'MARKET_CAP';
threshold: 250_000; // $250,000 USD
checkFrequency: 'EACH_TRADE';
automaticExecution: true;
};
migration: {
pauseBondingCurve: true;
bondingCurveFunds: number; // Accumulated USDC
remainingTokens: number; // Unsold OTCM from curve
cpmmPool: {
usdcSide: bondingCurveFunds;
otcmSide: remainingTokens;
initialK: bondingCurveFunds * remainingTokens;
};
lpTokens: {
recipient: 'BURN_ADDRESS'; // 0x000...dead
lockDuration: 'PERMANENT';
withdrawable: false;
};
};
postGraduation: {
tradingVenue: 'CEDEX_CPMM';
liquidityLocked: true;
priceDiscovery: 'AMM_DRIVEN';
slippageControl: 'CIRCUIT_BREAKER';
};
}
βPermanent Liquidity Lock:Post-graduation, LP tokens are sent to the burn address β making liquidity withdrawal mathematically impossible. This creates a "rugpull-proof" structure where underlying liquidity can never be extracted by any party.
β³ 12.2 Token Vesting Schedule
πΉ 12.2.1 Vesting Philosophy
OTCM Protocol implements a structured vesting schedule designed to align issuer incentives with long-term token success, prevent market manipulation through sudden large sells, and create predictable supply dynamics that enable informed investment decisions.
"Vesting ensures that token issuers maintain skin-in-the-game throughout the protocol's growth phase. Immediate large-scale selling is structurally impossible, protecting all participants from dump scenarios."
πΉ 12.2.2 ST22 Issuer Token Allocation
πΉ 12.2.3 Vesting Timeline
The 60% issuer allocation follows a structured release schedule over 30 months:
Total vesting period: 30 months (time from minting to final release, assuming immediate graduation)
Section πΉ12: 12.2.4 Vesting Smart Contract Implementation
Tokenomics
Version:This 6.1section |documents Implementation:the Rust/Anchorcomplete on-chaineconomic enforcementarchitecture of OTCM Protocol β Transferthe HookOTCM integratedSecurity Token (issued by Groovy Company, Inc. dba OTCM Protocol), the ST22 Digital Securities issued by third-party OTC companies, the 5% fee structure applied across all transaction phases, the staking reward mechanism, the deflationary burn mechanics, and the five-year revenue model.
Vesting is
12.1 at theTwo-Token TransferArchitecture
OTCM layerProtocol (Controloperates 24)two βdistinct lockedtoken tokenstypes cannotwith bedifferent transferredlegal regardlessstructures, ofeconomic wallet owner action. There is no administrative overrideroles, and noregulatory graceframeworks. period.These are not interchangeable and serve entirely separate functions.
#[account] pub struct VestingAccount {
pub beneficiary: Pubkey,
pub total_allocation: u64,
pub total_claimed: u64,
pub claimed_phases: u8, // Bitmask β 1 bit per phase
pub graduation_timestamp: i64, // Set by BondingCurve on graduation
pub creation_timestamp: i64,
}
#[derive(BorshSerialize, BorshDeserialize, Clone, Copy, PartialEq)]
pub enum VestingPhase {
Phase1MintCompletion = 0, // 20% β immediate at mint
Phase2Graduation = 1, // 20% β at $250K market cap
Phase3SixMonths = 2, // 20% β 6 months post-graduation
Phase4TwelveMonths = 3, // 20% β 12 months post-graduation
Phase5EighteenMonths = 4, // 20% β 18 months post-graduation
}
Vesting Schedule Summary:
Attribute |
OTCM Security Token |
|||
Issued by |
Groovy Company, Inc. dba OTCM Protocol ( |
(per |
||
Underlying asset |
Series |
|||
Custodian |
Empire |
|||
Regulatory basis |
Reg |
Reg D Rule 506(c) or Reg S Β· Category 1 Model B |
||
|
Primary economic role |
Platform utility: staking, AI Module access, fee discounts, governance |
Liquidity |
||
|
Secondary market venue |
Centralized exchanges (Binance, Kraken, Coinbase) β |
CEDEX β exclusively |
||
|
Supply model |
Fixed issuance with ongoing burns from platform operations |
Fixed per-offering supply; 100% distributed to investors |
||
|
5% fee applies? |
No β OTCM Security Token trades on CEXs under their fee structures |
Yes β 5% on primary offering + 5% on all CEDEX trades |
24-Hour Cooldown:Control 23 (velocity limit) enforces a minimum 24-hour gap between vesting claims for the same wallet β preventing rapid sequential claim-and-sell patterns.
12.2
πΉ 12.2.5 Anti-Dump Mechanisms
Beyond vesting, additional anti-dump mechanisms protect token holders:
Daily Sell Limit β Maximum 1% of daily volume can be sold by any single wallet
Price Impact Circuit Breaker β Transactions exceeding 2% price impact are rejected
Velocity Detection β Rapid sequential sells from related wallets trigger freeze
Cool-Down Period β 24-hour minimum between vesting claims
πΉ 12.2.6 Vesting Visualization
Month 0 (Mint) ββββββββββββββββββββββββββββββββββββββββββββββββββ 20%
Month 0+ (Grad) ββββββββββββββββββββββββββββββββββββββββββββββββββ 40%
Month 6 ββββββββββββββββββββββββββββββββββββββββββββββββββ 60%
Month 12 ββββββββββββββββββββββββββββββββββββββββββββββββββ 80%
Month 18 ββββββββββββββββββββββββββββββββββββββββββββββββββ 100%
β = Unlocked tokens β = Locked tokens
Key Events:
βββ Day 0: Token minting β 20% immediately available
βββ Graduation: $250K MC reached β Additional 20% unlocked
βββ +6 months: Time-based release β Additional 20% unlocked
βββ +12 months: Time-based release β Additional 20% unlocked
βββ +18 months: Final release β All tokens fully vested
πΈ 12.3 Revenue Model: Perpetual
The 5% TransactionFee FeeArchitecture
Month 0 (Mint) ββββββββββββββββββββββββββββββββββββββββββββββββββ 20%
Month 0+ (Grad) ββββββββββββββββββββββββββββββββββββββββββββββββββ 40%
Month 6 ββββββββββββββββββββββββββββββββββββββββββββββββββ 60%
Month 12 ββββββββββββββββββββββββββββββββββββββββββββββββββ 80%
Month 18 ββββββββββββββββββββββββββββββββββββββββββββββββββ 100%
β = Unlocked tokens β = Locked tokens
Key Events:
βββ Day 0: Token minting β 20% immediately available
βββ Graduation: $250K MC reached β Additional 20% unlocked
βββ +6 months: Time-based release β Additional 20% unlocked
βββ +12 months: Time-based release β Additional 20% unlocked
βββ +18 months: Final release β All tokens fully vested
πΉ 12.3.1 Fee Structure Overview
The OTCM Protocol generates sustainable revenue throughcharges a single unified 5% transaction fee appliedon all ST22 Digital Securities transactions. The fee applies identically at both phases of the ST22 lifecycle: the primary offering (pre-CEDEX, during the Regulation D capital raise) and all secondary market trading on CEDEX (post-CEDEX, after holding periods expire).
12.2.1 Fee Application β Primary Offering Phase
When an accredited investor purchases ST22 tokens during the active Regulation D 506(c) offering, the 5% fee is deducted from the gross subscription amount before proceeds are remitted to allthe tradesissuer. executedThe onissuer CEDEX:receives 95 cents of every dollar invested. The investor receives 100% of the tokens purchased β the fee is a cost of platform access, not a dilution of token allocation.
|
|
Amount | |
Investor |
$100,000 | |
OTCM |
$5,000 |
|
|
Of which: permanently locked to Global Unified CEDEX Liquidity Pool (0.44%) |
$440 |
|
|
Of which: retained by OTCM Protocol |
$4,560 |
|
|
Issuer net proceeds (USD) |
$95,000 |
|
|
Investor receives |
ST22 tokens at $100,000 face value (100% of subscription) |
πΉ12.2.2 12.3.2 Fee DistributionApplication Mechanismβ Secondary Market (CEDEX) Phase
interfaceEvery FeeDistributionST22 {trade calculation:executed {on totalFeeRate:CEDEX 500;after //the 5.00%applicable inholding basisperiod pointsexpires appliedTo:carries 'TRADE_VALUE';the collectOn:same ['BUY',5% 'SELL'];fee. };This distribution:fee {applies otcmProtocol:on {every percentage:trade, 80;continuously //and 4%permanently, for the life of tradethe (80%ST22 issuance. The issuer receives no share of fee)secondary recipient:market OTCM_TREASURY_ADDRESS;trading usage:fees.
[ 'PROTOCOL_DEVELOPMENT',
'OPERATIONAL_COSTS',
'LIQUIDITY_PROVISION',
'TREASURY_GROWTH',
];
};
st22Issuer: {
percentage: 20; // 1% of trade (20% of fee)
recipient: ISSUER_REVENUE_ADDRESS;
usage: [
'ISSUER_REVENUE',
'STAKING_REWARDS_FUNDING',
'OPERATIONAL_SUPPORT',
];
};
};
collection: {
timing: 'ATOMIC_WITH_TRADE';
currency: 'TRADE_CURRENCY';
settlement: 'IMMEDIATE';
};
}
πΉ 12.3.3 Revenue Projections by Volume
Annual Protocol Revenue = Daily Volume Γ 4% Γ 365
Example CEDEX Trade |
|||
Trade value |
$ |
||
OTCM Protocol platform fee (5%) |
$ | 500
||
Of which: permanently locked to Global Unified CEDEX Liquidity Pool (0.44%) |
$ | 44
||
Of which: retained by OTCM Protocol |
$ |
||
|
Issuer secondary fee share |
$ |
||
|
Global Pool cumulative effect |
$ |
πΉ 12.3.4 Fee Collection Implementation
pub fn collect_trading_fee(
ctx: Context<CollectFee>,
trade_amount: u64,
) -> Result<()> {
let total_fee = trade_amount
.checked_mul(FEE_RATE_BPS as u64) // 500 bps
.ok_or(ErrorCode::Overflow)?
.checked_div(10_000)
.ok_or(ErrorCode::Overflow)?;
let protocol_share = total_fee
.checked_mul(80) // 80% of fee = 4% of trade
.ok_or(ErrorCode::Overflow)?
.checked_div(100)
.ok_or(ErrorCode::Overflow)?;
let issuer_share = total_fee
.checked_sub(protocol_share)
.ok_or(ErrorCode::Overflow)?; // 20% of fee = 1% of trade
transfer_to_treasury(&ctx.accounts.protocol_treasury, protocol_share)?;
transfer_to_issuer(&ctx.accounts.issuer_revenue, issuer_share)?;
emit!(FeeCollected {
trade_amount,
total_fee,
protocol_share,
issuer_share,
timestamp: Clock::get()?.unix_timestamp,
});
Ok(())
}
πΉ 12.3.5 Comparative Fee Analysis
Authoritative | V7 5% | fee |
| trading fees. Of each 5% fee: 0.44% is permanently locked to the Global Unified CEDEX Liquidity Pool by immutable Transfer Hook; the remainder is retained by OTCM | Protocol
12.2.3 0.44% Permanent Lock β Global Unified CEDEX Liquidity Pool
π‘TheValue0.44%Proposition:ofOTCM'severy5%ST22feetransactionincludesvaluecomprehensivethatcomplianceroutesinfrastructureto(KYC/AMLtheΒ·Globalaccreditation),UnifiedSEC-registeredCEDEXtransferLiquidityagentPoolcustody,isshareholderenforcedregistry,by an immutableauditTransfertrail,Hook control. LP tokens for this capital are burned at pool initialization β mathematically preventing withdrawal by any party, including OTCM Protocol. This creates a permanent, compounding pool of protocol-owned liquidity that deepens with every primary offering and24/7everytrading.secondaryTraditionaltradealternativesacrossrequireallseparateST22feesissuancesforoneachtheservice.platform.
πΉ12.3 12.3.6 Revenue Model and Five-Year Projections
OTCM Protocol's revenue is entirely derived from the 5% platform fee applied to ST22 transaction volume. There are no subscription fees, access fees, or listing fees. Revenue Projectionsscales linearly with total ST22 transaction volume across all issuances on the platform β both primary raise volume and secondary CEDEX trading volume.
12.3.1 Revenue Structure
|
|
Calculation |
||||
Primary offering revenue |
5% Γ gross investor subscriptions per offering |
(4.56%) + |
|||
Secondary market revenue |
5% Γ CEDEX trade value across all ST22 issuances |
(4.56%) + |
|||
OTCM Security Token staking |
AI Module burn fees collected on OTCM STO operations |
||||
ποΈ 12.4 Staking Rewards Architecture
πΉ12.3.2 12.4. Five-Year Platform Revenue Projections
The following projections model protocol revenue at 5% of total ST22 transaction volume, including both primary offering subscriptions and secondary CEDEX trading. Projections assume accelerating issuer adoption driven by the Predictive Marketing AI Module's IDOS-driven outreach pipeline.
|
Year |
ST22 Issuers |
Daily CEDEX Volume |
Annual Volume |
Protocol Revenue (5%) |
Global Pool Accumulation (0.44%) |
|
Year 1 |
50 |
$500K |
$182.5M |
$9.1M |
$803K |
|
Year 2 |
200 |
$2M |
$730M |
$36.5M |
$3.2M |
|
Year 3 |
500 |
$5M |
$1.83B |
$91.3M |
$8.0M |
|
Year 4 |
1,000 |
$10M |
$3.65B |
$182.5M |
$16.1M |
|
Year 5 |
2,000 |
$20M |
$7.30B |
$365.0M |
$32.1M |
|
Revenue Model Projections represent total transaction volume across primary offering subscriptions and secondary CEDEX trades for all active ST22 issuances. Revenue grows as (a) new issuers onboard, increasing active issuance count; and (b) secondary market depth increases, enabling larger daily trading volumes per issuance. The Global Pool accumulation column represents the permanently locked 0.44% component that does not appear in OTCM Protocol |
12.4 Staking Architecture β OTCM Security Token
OTCM Security Token staking mechanism that enables token holders to earn passive incomerewards through participation in theprotocol protocol'soperations. security and governance. Individual ST22The staking nodesarchitecture provideis continuousdesigned rewardsaround witha industry-leading2.6-day epoch cycle that produces approximately 140 compounding frequency.
annually
"Stakingβtransformsdeliveringpassivemeaningfultokenyieldholdingadvantageintooveractivetraditionalprotocolquarterlyparticipation,dividend structures while aligning holder incentives withlong-termplatformnetwork success while providing sustainable passive income."security.
πΉ 12.4.21 APY ConfigurationStaking &Tier RangesStructure
|
|
OTCM Staked |
Platform |
AI Module Access |
Bronze |
1,000 OTCM |
Basic platform access Β· fee discount eligible |
IDOS dashboard read-only Β· top 500 issuers |
Silver |
10,000 OTCM |
Enhanced |
Full IDOS + weekly AI prospect report |
Gold |
50,000 OTCM |
Full |
EDGAR NLP Engine + OTC tier alerts + investor analytics |
|
Platinum |
100,000 OTCM |
Complete suite Β· highest governance weight |
Real-time feeds Β· IDOS queue Β· LTOE Β· wallet profiling Β· outreach automation |
πΉ 12.4.32 Epoch DurationAPY & CompoundingConfiguration
Staking yields are configurable by issuers within protocol-enforced bounds. The 8% floor and 60% ceiling are hard-coded in the smart contract β no issuer or governance vote can set APY outside this range.
|
|
Value |
Notes |
Minimum |
8% |
Protocol floor β hard-coded, non-configurable |
Maximum APY |
60% |
Protocol ceiling β hard-coded, non-configurable |
|
Default APY |
15% |
Standard configuration for new staking nodes |
|
Epoch duration |
2.6 days (432,000 Solana slots at ~400ms/slot) |
~140 epochs per year |
|
Annual compounding events |
~140 |
vs. 4 for traditional quarterly dividends |
πΉ 12.4.43 Compounding MathematicsAdvantage
The 2.6-day epoch produces ~140 compounding events annually, delivering a measurable effective APY premium over instruments compounding at quarterly frequency. The formula: APY_effective = (1 + APY_nominal / n)^n β 11, Wherewhere n =β ~140140.
(compounding periods per year for OTCM staking)
Nominal APY |
Quarterly Compound (4Γ/yr) |
OTCM Compound (~140Γ/yr) |
Compounding Advantage |
8% |
8.24% |
8.33% |
+0. |
15% |
15.87% |
16.18% |
+ |
30% |
33.55% |
34.99% |
+1.44% |
|
60% |
74.90% |
82.21% |
+7.31% |
πΉ 12.4.54 Staking PoolEpoch ImplementationReward Calculation
interface StakingPool
{
poolId:
Pubkey;
issuerId:
string;
tokenMint: Pubkey;
apyConfig: {
currentApy: number; // BasisEpoch pointsreward calculation (1500Rust/Anchor)
= 15%)
minApy: 800; // APY range: 800β6000 bps (8%β60%) minimumβ maxApy:enforced 6000;in smart contract
// 60%Epoch: maximum432,000 adjustmentFrequency:slots 'EPOCH';
};
epochConfig: {
durationSlots: 5616; // (~2.6 days at 400ms/slotslot)
currentEpoch: number;
epochStartSlot:pub number;fn nextDistribution:calculate_epoch_reward(
Date; };staked_amount: poolState:u64,
{ totalStaked:apy_basis_points: number;u16, totalStakers: number;
rewardsAvailable: number;
rewardsDistributed: number;
lastDistributionEpoch: number;
};
rewardsFunding: {
source: 'ISSUER_REVENUE'; // 1%800 transaction= fee8%, share6000 autoReplenish:= true;60%
reserveTarget: number;epoch_duration_slots: u64, // 3Always epochs432,000
worth slots_per_year: u64, // 126,144,000
) -> Result<u64> {
require!(
apy_basis_points >= 800 && apy_basis_points <= 6000,
StakingError::ApyOutOfBounds
);
let reward = (staked_amount as u128)
.checked_mul(apy_basis_points as u128)?
.checked_mul(epoch_duration_slots as u128)?
.checked_div(slots_per_year as u128 * 10_000)?;
u64::try_from(reward).map_err(|_| error!(StakingError::Overflow))
}
12.5 2% Staking Reinvestment β Global Pool Accumulation Mechanism
Two percent of every staking reward distributed across all OTCM Security Token staking nodes is automatically routed to the Global Unified CEDEX Liquidity Pool before rewards };reach }staker
wallets. This
πΉreinvestment 12.4.6is LPenforced Reinvestmentby Mechanism
immutable Transfer Hook logic β it cannot be disabled, reduced, or bypassed by any party including OTCM Protocol.
|
|
pub const LP_REINVESTMENT_BPS: u16 = 200; // 2% β HARDCODED β NOT CONFIGURABLE. The 2% staking reinvestment executes through immutable Transfer Hook logic. There is no administrative function, upgrade path, or governance mechanism to disable or reduce this percentage. It is mathematically inevitable that 2% of all staking rewards |
πΉ 12.4.7 Staking Rewards Distribution
pub fn distribute_epoch_rewards(
ctx: Context<DistributeRewards>,
epoch: u64,
) -> Result<()> {
require!(
Clock::get()?.slot >= pool.epoch_config.epoch_start_slot
+ pool.epoch_config.duration_slots,
ErrorCode::EpochNotComplete
);
let epoch_rate = pool.apy_config.current_apy
.checked_div(140).ok_or(ErrorCode::Overflow)?;
let total_rewards = pool.pool_state.total_staked
.checked_mul(epoch_rate as u64).ok_or(ErrorCode::Overflow)?
.checked_div(10_000).ok_or(ErrorCode::Overflow)?;
let lp_reinvestment = total_rewards
.checked_mul(2).ok_or(ErrorCode::Overflow)?
.checked_div(100).ok_or(ErrorCode::Overflow)?;
let staker_rewards = total_rewards
.checked_sub(lp_reinvestment).ok_or(ErrorCode::Overflow)?;
transfer_to_master_lp(&ctx.accounts.master_lp, lp_reinvestment)?;
distribute_to_stakers(&ctx, staker_rewards)?;
pool.pool_state.rewards_distributed += total_rewards;
pool.pool_state.last_distribution_epoch = epoch;
pool.epoch_config.current_epoch += 1;
pool.epoch_config.epoch_start_slot = Clock::get()?.slot;
emit!(EpochRewardsDistributed {
epoch,
total_rewards,
lp_reinvestment,
staker_rewards,
stakers_count: pool.pool_state.total_stakers,
});
Ok(())
}
π¦ 12.5 SOL Treasury Strategy
πΉ 12.5.1 Strategic RationaleTwo Funding Sources for the Global Pool
The Global Unified CEDEX Liquidity Pool is funded by two protocol-owned, continuously compounding sources:
β’ OTCM Protocol allocatesSolana Treasury β The SOL treasury held by OTCM Protocol. Seeds and maintains initial pool depth.
β’ OTCM Staking Pool reinvestment β 2% of all staking rewards across all staking nodes routes to the Global Pool each epoch via immutable Transfer Hook. This is the continuously compounding growth mechanism β it scales with staking participation.
Additionally, the pool deepens on every ST22 transaction through the 0.44% permanent fee lock described in Β§12.2.3.
12.6 Deflationary Burn Mechanics
OTCM Security Token supply is subject to ongoing deflationary pressure through per-operation burns on AI Module usage. Burns execute at the smart contract level, are irreversible, and reduce circulating supply permanently. They are publicly auditable on-chain.
12.6.1 AI Module Per-Operation Burns
|
AI Module Operation |
OTCM Burn Cost |
Trigger Frequency |
|
EDGAR batch query execution (per 500 records) |
1,000 OTCM |
Per batch, multiple times daily at scale |
|
Full IDOS universe refresh cycle |
1,000 OTCM |
Once per 24-hour refresh cycle |
|
Automated outreach sequence launch (per issuer) |
750 OTCM |
Per issuer dispatched from priority queue |
|
Launch Readiness Score analysis (per deployment) |
500 OTCM |
Per pending ST22 offering |
|
Investor wallet behavioral report (per ST22 launch) |
250 OTCM |
Per ST22 offering |
|
OTC Markets feed refresh subscription |
50 OTCM |
Monthly subscription renewal |
|
Burn Velocity at Scale At 500 active issuers, with the Predictive Marketing AI Module running daily IDOS refreshes (1,000 OTCM/day), weekly outreach dispatches (~750 OTCM Γ 50 issuers/week = 37,500 OTCM/week), and monthly feed subscriptions, annual burn velocity reaches millions of OTCM tokens. Burns are demand-driven β they are a |
12.7 ST22 Issuance Economics
Third-party ST22 issuances have a simple and transparent economics model. 100% of ST22 tokens minted in each offering proceedsare distributed to buildingaccredited investors through the Empire Stock Transfer onboarding process. No tokens are withheld by the issuer, by OTCM Protocol, or by Empire. No vesting schedules apply to third-party issuer ST22 tokens.
12.7.1 ST22 Token Distribution Model
|
Allocation |
Percentage |
Recipient |
Notes |
|
Investor distribution |
100% |
Verified accredited investors via Empire Stock Transfer |
All tokens distributed at time of purchase |
|
Issuer retention |
0% |
N/A |
Issuers receive USD proceeds, not tokens |
|
OTCM Protocol allocation |
0% |
N/A |
OTCM earns the 5% fee in USD, not tokens |
|
Team / advisory vesting |
0% |
N/A |
No vesting for third-party ST22 issuances |
|
Reserve / treasury |
0% |
N/A |
Not applicable β per-offering fixed supply |
|
Clean Cap Table β Full Float at Launch Every ST22 issuance launches with 100% of tokens in investor hands. There are no founder allocations, no team vesting overhangs, no treasury reserve for future sale, and no protocol tokens that could create sell pressure. The entire float is held by Empire-verified accredited investors subject to Rule 144 or Reg S holding period restrictions enforced by Transfer Hook Control 24. This produces a cleaner, more investor-aligned tokenomics model than most DeFi protocols. |
12.8 Fee Discount Structure β OTCM Security Token
Holders of the OTCM Security Token who stake above minimum thresholds receive discounts on the 5% ST22 transaction fee. Discounts apply to CEDEX secondary market trading fees only β the primary offering fee is fixed at 5% with no discount available, as the primary fee funds issuer onboarding infrastructure.
|
|
OTCM Staked |
Fee Discount |
Effective CEDEX Fee |
|
Bronze |
1,000 OTCM |
10% |
4.5% |
|
Silver |
10,000 OTCM |
25% |
3.75% |
|
Gold |
50,000 OTCM |
35% |
3.25% |
|
Platinum |
100,000 OTCM |
50% |
2.5% |
|
Fee Discounts Apply to CEDEX Trading Only The 5% primary offering fee (charged during the Reg D capital raise phase) is fixed and carries no discount. Fee discounts from OTCM Security Token staking apply exclusively to CEDEX secondary market trading fees. The 0.44% Global Pool permanent lock is calculated on the full pre-discount fee amount and is not reduced by staking tier discounts. |
|
Groovy Company, Inc. dba OTCM Protocol
|
πΉ 12.5.3 Staking Yield Projections
Treasury Target: 6β8% annual staking yields generating $480,000β$640,000 in operational funding annually.
πΉ 12.5.4 Treasury Management Policy
interface TreasuryManagementPolicy {
allocation: {
stakingAllocation: 90; // 90% actively staked
liquidReserve: 10; // 10% liquid for operations
};
staking: {
validatorSelection: 'DIVERSIFIED';
minimumValidators: 5;
maxPerValidator: 25; // 25% max per validator
validatorCriteria: [
'TOP_100_BY_STAKE',
'COMMISSION_UNDER_10_PERCENT',
'UPTIME_ABOVE_99_PERCENT',
'NO_SLASHING_HISTORY',
];
};
yieldManagement: {
compoundingFrequency: 'EPOCH';
yieldDistribution: {
operations: 60; // 60% to operations
treasuryGrowth: 30; // 30% compounded to treasury
stakingReserve: 10; // 10% to staking rewards reserve
};
};
riskManagement: {
maxDrawdown: 20; // 20% max allowed drawdown
rebalanceThreshold: 30; // Rebalance if allocation drifts 30%
liquidityMinimum: 500_000; // $500K minimum liquid
};
}
πΉ 12.5.5 Risk Management Framework
Validator Diversificationβ Maximum 25% stake with any single validatorSlashing Protectionβ Only stake with validators having no slashing historyLiquidity Reserveβ 10% maintained liquid for operational needsRebalancingβ Automatic rebalancing when allocations drift beyond thresholdsPrice Volatilityβ Accept SOL price volatility as strategic exposure to ecosystem growth
β οΈPrice Volatility Risk:SOL treasury value will fluctuate with SOL market price. While this creates potential upside from price appreciation, it also exposes the treasury to downside risk. This volatility is accepted as strategic exposure to the Solana ecosystem.
π° SOL Treasury Staking β Risk Specification
Version: 6.1 | Applies To: $8,000,000 SOL Treasury Allocation
The SOL treasury is delegated to native Solana staking validators (not liquid staking derivatives). This decision was made to eliminate smart contract risk associated with LST protocols (Marinade Β· Jito SOL Β· bSOL Β· etc.).
Validator Selection Criteria
Staking Risk Matrix
π 12.6 Economic Sustainability Analysis
πΉ 12.6.1 Value Flow Architecture
Trading Activity on CEDEX
β
5% Transaction Fees Generated
β
4% β OTCM Protocol Treasury
1% β ST22 Issuer Revenue (funds staking rewards)
0.44% β OTCM LP (permanently locked)
β
Treasury funds: Operations + Development + SOL Staking
Staking rewards attract OTCM stakers
β
More stakers β reduced sell pressure β price support
Price support β attracts more issuers
More issuers β more ST22 tokens β more trading
β
(Loop repeats β self-sustaining and compounding)
πΉ 12.6.2 Token Velocity Management
πΉ 12.6.3 Deflationary Mechanisms
While OTCM maintains fixed supply, effective circulating supply decreases over time through:
LP Lockβ 40% of supply permanently non-circulating in liquidity poolsStaking Lockβ Active staking removes tokens from circulationLost Walletsβ Standard blockchain attrition from lost private keysGraduation Burnsβ LP tokens burned at graduation, permanently locking liquidity
πΉ 12.6.4 Long-Term Projections
βEconomic Sustainability:The OTCM Protocol creates a self-sustaining economic loop: trading generates fees β fees fund operations and staking rewards β staking rewards attract more stakers β stakers reduce sell pressure β reduced sell pressure supports price β higher price attracts more issuers and traders β more trading generates more fees.
Groovy Company, Inc. dba OTCM Protocol Β· Wyoming Corporation Β· invest@otcm.io Β· otcm.io