Aptos Ecosystem Skill

SkillDev tools

Skill aptos-ecosystem

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the Aptos Ecosystem Skill skill

What this skill tells your AI

The instructions your AI receives, as published by plurigrid/asi in skills/aptos-ecosystem/SKILL.md and read by ahel’s review.

Overview

Comprehensive Aptos blockchain ecosystem intelligence derived from DefiLlama adapter analysis, GitHub activity monitoring, and core protocol changes. Use for protocol survival analysis, opportunity detection, and ecosystem evolution tracking.

Discovery Methodology

How We Got Here

  1. Cloned DefiLlama/DefiLlama-Adapters (depth 100 for recency)
  2. Grepped for aptos: exports in module.exports patterns
  3. Extracted contract addresses from getResources() calls
  4. Cross-referenced with aptos-core releases for capability evolution

Why GitHub Recency Matters

  • Adapter freshness = protocol liveness signal
  • Commit velocity = team activity/funding health
  • Breaking changes in aptos-core = adaptation requirement (protocols that don't adapt die)
  • New primitives = opportunity windows for first-movers

Protocol Census (72 Active)

DEXs/AMMs (15)

ProtocolAddressStatus
Liquidswap0x05a97986a9d031c4567e15b797be516910cfcb4156312482efc6a19c0a30c948Core
Thalaswap v10x48271d39d0b05bd6efca2278f22277d6fcc375504f9839fd73f74ace240861afCore
Thalaswap v2/v3(separate adapters)Evolving
CellanaActiveGrowth
HyperionActiveGrowth
CetusCross-chainStable
PancakeSwapMulti-chainStable
Kaching, Houston, BaptSwap, Interest-DEX, Aptoswap, Mosaic, Yuzu, MeridianVariousMixed

Lending (12)

ProtocolAddressStatus
Echelon0xc6bc659f1649553c1a3fa05d9727433dc03843baac29473c817d06d39e7621baMulti-chain
Aries Markets0x9770fa9c725cbd97eb50b2be5f7416efdfd1f1554beb0750d4dae4c64e860da3Core
Meso FinanceActiveGrowth
JouleActiveGrowth
Echo LendingActiveNew
Aave-AptosActiveEnterprise
Kofi, Moar, Abel, EternalVariousMixed

Perps/Derivatives (4)

ProtocolAddressNotes
Merkle Trade0x5ae6789dd2fec1a9ec9cccfb3acaf12e93d432f0a3a42c92fe1a9d490b7bbc06USDC vault
Thetis MarketActiveOptions
Mirage ProtocolActiveSynths
AgDEXActiveAggregator

RWA/Tokenized Assets (4)

ProtocolAptos AddressETH Token
Securitize (BUIDL)0x50038be55be5b964cfa32cf128b5cf05f123959f286b4cc02b86cafd48945f890x7712c34205737192402172409a8f7ccef8aa2aec
Ondo FinanceActiveUSDY
Franklin TempletonActiveFOBXX
Libre CapitalActiveVarious

Liquid Staking (5)

ProtocolStatus
Amnis FinanceCore
Thala LSDCore
Echo LSDNew
TortugaEstablished
DittoEstablished

CEX Holdings Tracking (10)

Bybit, Bitfinex, KuCoin, OKX, MEXC, Gate, Blofin, Flipster, HashKey, BitKub

Aptos CLI v7.13.0 Impact Analysis

Breaking Changes & New Primitives

Release: 2026/01/06 (3 days ago)
Language: v2.3 (default)
Bytecode: v9 (default)

🔴 Critical Changes - Protocol Must Adapt

ChangeImpactWho Must Adapt
Signed integers (sint)New numeric types in MoveAll protocols using math
Bytecode v9 defaultRecompilation requiredEvery deployed contract
Encrypted mempoolMEV protection infraDEXs, arbitrage bots

🟡 Opportunity Windows - First Mover Advantage

New PrimitiveEnablesOpportunity
PVSS (Publicly Verifiable Secret Sharing)Threshold signatures, DKGNew validator services, MPC wallets
Batch encryptionPrivate orderflowDark pools, RFQ systems
Orderless transactionsGasless UXConsumer apps, gaming
SLH-DSA (post-quantum sigs)Quantum resistanceLong-term custody solutions
Dead man's switch (orderbook)Auto-cancellationAdvanced trading protocols
Historical data syncFull archive nodesAnalytics, indexers

🟢 Infrastructure Improvements

ChangeBenefit
VM profilerBetter gas optimization
Layout caches enabled by default10-20% perf boost
Gas charging optimizationsCheaper txns
Keyless/Federated keylessSocial login at scale
Multi-asset faucetTestnet UX

Evolution Predictions

🪦 Likely to Die (6-12 months)

  • Small DEXs without differentiators - Liquidity consolidation inevitable
  • Protocols not updating to bytecode v9 - Will break
  • MEV-dependent strategies - Encrypted mempool kills them
  • Single-chain-only protocols - Movement/Initia fork drain

🌱 Likely to Survive & Thrive

  • Thalaswap - First-mover AMM, continuous iteration (v1→v2→v3)
  • Echelon - Multi-chain from day 1 (Aptos + Movement + Initia)
  • Aries Markets - Solid lending fundamentals
  • Liquidswap - Pontem ecosystem backing

🚀 New Protocol Opportunities (Enabled by v7.13.0)

OpportunityEnabled ByNot Yet Built
Threshold custodyPVSS + DKGMPC wallets native to Aptos
Private DEXBatch encryptionDark pool AMM
Quantum-safe vaultsSLH-DSALong-horizon treasury
Conditional ordersDead man's switchStop-loss native
Gasless gamesOrderless txnsWeb2-feel gaming
Intent-based tradingEncrypted mempoolSolver networks

Address Patterns

Resource Query Pattern

// Account → Resources → Filter by module type → Extract data
const res = await getResources(ACCOUNT_ADDRESS)
const data = res.find(i => i.type === 'MODULE::struct::Type').data.field
api.add(TOKEN_ADDRESS, data.value)

Cross-chain Price Mapping

// Map Aptos TVL to ETH token for CoinGecko pricing
api.add('ethereum:0x7712c34205737192402172409a8f7ccef8aa2aec', supply, { skipChain: true })

Monitoring Commands

# Clone with recency
git clone --depth 100 https://github.com/DefiLlama/DefiLlama-Adapters.git

# Count Aptos protocols
grep -rl "aptos" projects --include="*.js" | xargs grep -l "aptos:\s*{" | wc -l

# Find all Aptos contract addresses
grep -r "0x[a-f0-9]\{64\}" projects --include="*.js" | grep aptos

# Watch aptos-core releases
gh release list -R aptos-labs/aptos-core --limit 5

Thread Context

When discussing Aptos protocols in threads:

  1. Always check adapter recency - Last commit date indicates liveness
  2. Cross-reference aptos-core - New CLI = new capabilities = opportunity
  3. Track Movement/Initia forks - Same Move code, different chains
  4. Watch for encrypted mempool adoption - MEV landscape shift

GF(3) Classification

TritProtocols
PLUS (+1)New primitives, PVSS, batch encryption
ERGODIC (0)Stable DEXs, lending, established LSDs
MINUS (-1)Dying protocols, bytecode-incompatible

Complete Contract Address Registry

Core Assets (from DefiLlama coreAssets.json)

{
  "APT": "0x1::aptos_coin::AptosCoin",
  "USDC": "0x5e156f1207d0ebfa19a9eeff00d62a282278fb8719f4fab3a586a0a2c0fffbea::coin::T",
  "USDT": "0xa2eda21a58856fda86451436513b867c97eecb4ba099da5775520e0f7492e852::coin::T",
  "USDY": "0xcfea864b32833f157f042618bd845145256b1bf4c0da34a7013b76e42daa53cc::usdy::USDY",
  "WBTC": "0xae478ff7d83ed072dbc5e264250e67ef58f57c99d89b447efd8a0a2e8b2be76e::coin::T",
  "ETH": "0xcc8a89c8dce9693d354449f1f73e60e14e347417854f029db5bc8e7454008abb::coin::T",
  "USDC_3": "0xbae207659db88bea0cbead6da0ed00aac12edcdda169e591cd41c94180b46f3b",
  "USDt": "0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b",
  "ST_APT": "0x84d7aeef42d38a5ffc3ccef853e1b82e4958659d16a7de736a29c55fbbeb0114::staked_aptos_coin::StakedAptosCoin",
  "amAPT": "0x111ae3e5bc816a5e63c2da97d0aa3886519e0cd5e4b046659fa35796bd11542a::amapt_token::AmnisApt",
  "stApt": "0x111ae3e5bc816a5e63c2da97d0aa3886519e0cd5e4b046659fa35796bd11542a::stapt_token::StakedApt"
}

Protocol Contract Addresses

DEXs
ProtocolMain AddressNotes
Liquidswap v10x05a97986a9d031c4567e15b797be516910cfcb4156312482efc6a19c0a30c948Pontem
Liquidswap v20x61d2c22a6cb7831bee0f48363b0eec92369357aece0d1142062f7d5d85c7bef8
Thalaswap0x48271d39d0b05bd6efca2278f22277d6fcc375504f9839fd73f74ace240861afstable_pool, weighted_pool
Cellana0x4bf51972879e3b95c4781a5cdcb9e1ee24ef483e7d22f2d903626f126df62bd1Uses API key
Hyperion0x8b4a2c4bb53857c718a04c020b98f8c2e1f99a68b0f57389a8bf5434cd22e05c
Kaching0x7226c806b4b00873a9390082c885005a7aa9488129b8a11e23b18d33c409d360
Houston0xdfa1f6cdefd77fa9fa1c499559f087a0ed39953cd9c20ab8acab6c2eb5539b78
PancakeSwap0xc7efb4076dbe143cbcd98cfaaa929ecfc8f299203dfff63b95ccb6bfe19850faMulti-chain
Mosaic0x26a95d4bd7d7fc3debf6469ff94837e03e887088bef3a3f2d08d1131141830d3
Yuzu0x46566b4a16a1261ab400ab5b9067de84ba152b5eb4016b217187f2a2ca980c5a
Lending
ProtocolMain AddressMulti-chain
Echelon0xc6bc659f1649553c1a3fa05d9727433dc03843baac29473c817d06d39e7621baAptos+Move+Initia
Aries Markets0x9770fa9c725cbd97eb50b2be5f7416efdfd1f1554beb0750d4dae4c64e860da3Aptos only
Joule0x2fe576faa841347a9b1b32c869685deb75a15e3f62dfe37cbd6d52cc403a16f6Aptos+Move
Meso Finance0x68476f9d437e3f32fd262ba898b5e3ee0a23a1d586a6cf29a28add35f253f6f7Aptos only
Echo Lending0xeab7ea4d635b6b6add79d5045c4a45d8148d88287b1cfa1c3b6a4b56f46839edAptos only
Aave-Aptos0x39ddcd9e1a39fa14f25e3f9ec8a86074d05cc0881cbf667df8a6ee70942016fbEnterprise
Kofi Finance0x2cc52445acc4c5e5817a0ac475976fbef966fedb6e30e7db792e10619c76181f
Moar0x37e9ce6910ceadd16b0048250a33dac6342549acf31387278ea0f95c9057f110
Auro Finance0x50a340a19e6ada1be07192c042786ca6a9651d5c945acc8727e8c6416a56a32c
Liquid Staking
ProtocolMain AddressToken
Amnis Finance0x111ae3e5bc816a5e63c2da97d0aa3886519e0cd5e4b046659fa35796bd11542aamAPT, stApt
Thala LSD0xfaf4e633ae9eb31366c9ca24214231760926576c7b625313b3688b5e900731f6thAPT
Echo LSD0xa0281660ff6ca6c1b68b55fcb9b213c2276f90ad007ad27fd003cf2f3478e96e
Tortuga0x84d7aeef42d38a5ffc3ccef853e1b82e4958659d16a7de736a29c55fbbeb0114tAPT
Ditto0xd11107bdf0d6d7040c6c0bfbdecb6545191fdf13e8d8d259952f53e1713f61b5stAPT
Perps/Derivatives
ProtocolMain AddressAsset
Merkle Trade0x5ae6789dd2fec1a9ec9cccfb3acaf12e93d432f0a3a42c92fe1a9d490b7bbc06USDC vault
Tsunami Fi0x1786191d0ce793debfdef9890868abdcdc7053f982ccdd102a72732b3082f31dSUNSET
RWA/Tokenized
ProtocolAptos AddressMaps To
Securitize BUIDL0x50038be55be5b964cfa32cf128b5cf05f123959f286b4cc02b86cafd48945f89ETH:0x7712c34205737192402172409a8f7ccef8aa2aec
Propbase0x6dba1728c73363be1bdd4d504844c40fbb893e368ccbeff1d1bd83497dbc756d
TruFin TruStake0x6f8ca77dd0a4c65362f475adb1c26ae921b1d75aa6b70e53d0e340efd7d8bc80
Launchpads
ProtocolMain Address
MovePump0x766ec6a18eed729b6b62f8af38f7a62dbc847b84bec29063c8b0d46830a82401
Cross-chain Intents
ProtocolAptos Addresses
NEAR Intents0xd1a1c1804e91ba85a569c7f018bb7502d2f13d4742d2611953c9c14681af6446, 0x107b277f8ac97230f1e53cf3661b3f05a40c5a02d1d2b74fe77826b62b4d1c43

Detailed Evolution Analysis

🪦 Death Watch

ProtocolReasonTimeline
Tsunami FiAlready has hallmarks: [[1704994608, "Tsunami Aptos sunsetting"]]DEAD
Small AMMs (Houston, Mosaic, Yuzu)<$1M TVL, no differentiation6-12 months
Non-v9 protocolsBytecode incompatibilityImmediate on upgrade

🌱 Survival Indicators

SignalGoodBad
Multi-chainEchelon, Joule, LiquidswapSingle-chain only
Move network support✓ Movement, InitiaAptos-only
API key usageCellana (rate limiting)Open abuse
function_view callsModern Move patternsLegacy aQuery

🚀 v7.13.0 Opportunity Matrix

New CapabilityFirst Mover OpportunityIncumbent Threat
Signed integersFixed-point finance, PnL trackingAll lending (must update)
PVSS/DKGMPC custody, threshold validatorsCentralized custody
Encrypted mempoolPrivate RFQ, dark poolsDEX aggregators, MEV
Orderless txnsGasless UX appsHigh-gas protocols
Dead man's switchConditional orders nativeCEX-style trading
SLH-DSAQuantum-safe vaultsLong-term custody

Movement/Initia Fork Impact

Protocols with Movement support (will survive fork drain):

  • Echelon - 0x6a01d5761d43a5b5a0ccbfc42edf2d02c0611464aae99a2ea0e0d4819f0550b5 (Movement)
  • Joule - 0x6a164188af7bb6a8268339343a5afe0242292713709af8801dafba3a054dc2f2 (Movement)
  • Liquidswap - 0x3851f155e7fc5ec98ce9dbcaf04b2cb0521c562463bd128f9d1331b38c497cf3 (Movement v0.5)

Query Patterns by Protocol Type

DEX TVL Pattern

const pools = await getResources(ACCOUNT)
pools.filter(i => i.type.includes('LiquidityPool'))
  .forEach(pool => {
    api.add(token0, pool.data.coin_x_reserve.value)
    api.add(token1, pool.data.coin_y_reserve.value)
  })

Lending TVL Pattern

const market = await getResource(MARKET_ADDR, `${MODULE}::lending::Market`)
api.add(coin, market.total_cash)
// borrowed = market.total_liability

Liquid Staking Pattern

const supply = await function_view({
  functionStr: `${LSD_MODULE}::staked_token::total_supply`
})
return { aptos: supply / 1e8 }

RWA Cross-chain Pattern

const supply = res.find(i => i.type.includes('TokenData')).data.total_issued
api.add('ethereum:' + ETH_TOKEN_ADDR, supply, { skipChain: true })

Related Skills

  • defillama-api - Query TVL data
  • aptos-agent - Blockchain interactions
  • aptos-trading - DEX execution
  • move-narya-bridge - Formal verification
  • aptos-society - WEV multiverse finance
  • aptos-wallet-mcp - Wallet operations

Signals

GitHub stars
63
Forks
12
Last commit
Jul 2026
Advanced
Catalog kind
skill
Gateway key
aptos-ecosystem
Source
github.com/plurigrid/asi