Skip to main content
Reference for all ArcX terms, parameters, and concepts.

Glossary

A

Admin The ArcX-operated address with privileged access to protocol functions (pause, finalize, configure fees). Example: Admin calls finalize() after the strategy unwind is complete, enabling ST and EPT redemptions. alreadyClaimed Per-user counter tracking how many PointsTokens have been claimed from a given EPT contract. Prevents double-claiming across multiple claimPoints() calls. Example: Alice claims 300 PointsTokens. Her alreadyClaimed is set to 300. If she calls claimPoints() again, the contract computes gross - 300 to avoid minting duplicates. ArcX AMM The custom Pendle-style AMM used for trading ST/USDC. Features a time-decay curve that converges ST price toward NAV as the epoch approaches maturity. Only ST trades on the AMM; EPT is deposit-only. Example: Points farmers sell ST on the ArcX AMM after flash looping. Yield seekers buy discounted ST on the same pool. Arbitrage (Upward) The self-correcting mechanism that caps the combined value of ST + EPT at $1. If the implied EPT cost plus ST price exceeds the deposit cost, points farmers flash loop more aggressively, selling ST and widening the discount until equilibrium. Example: ST trades at $0.98 (EPT cost = $0.02). Points farmers flash loop heavily, ST drops to $0.90 (EPT cost = $0.10). Arbitrage (Downward, broken) The mechanism that would correct a too-wide ST discount by buying cheap ST + EPT and redeeming for $1. This doesn’t work because there is no early redemption. You can’t burn ST + EPT for USDC before finalization. Example: ST trades at $0.80 (20% discount), but no one can profitably correct this because redemption is locked.

C

Checkpoint The lazy evaluation operation that settles a user’s accrued credits at the moment of any EPT transfer, mint, or claim. Both sender and receiver are checkpointed. Example: When Alice transfers 50 EPT to Bob, Alice’s credits from the holding period are locked, and Bob’s credit counter starts fresh from the transfer timestamp. claimPoints() EPT function called after finalization. Settles the caller’s credits, computes their share of totalPoints, deducts the redemption fee, and mints net PointsTokens. Example: Alice has 4,320,000,000 credits out of 6,048,000,000 total. totalPoints = 1,000. She receives (4,320M / 6,048M) x 1,000 = 714 gross points, minus fee. Credit The activity-weighted holding measure that determines a user’s share of points. credits = integral(balance x creditRate) dt. More EPT held, for longer, during higher-activity periods = more credits. Example: Holding 100 EPT for 259,200 seconds at creditRate = 10 produces 259,200,000 credits. creditRate The rate at which credits accrue per EPT per second. Set by the Credits Oracle. Reflects strategy activity: higher open interest or volume means a higher creditRate. Example: For a funding arb strategy with $500K OI, creditRate might be 500. If OI doubles to $1M, creditRate updates to 1,000. Credits Oracle ArcX-operated off-chain service that pushes creditRate updates to EPT contracts during the epoch. Update frequency is approximately every 5—15 minutes. Example: The Credits Oracle observes the strategy’s OI increased from $200K to $400K, and pushes updateCreditRate(400) to the EPT contract. Cross-chain deposit A deposit originating from a non-Starknet chain (Ethereum, Arbitrum, Solana). USDC is locked in a SourceChainDepositEscrow, a LayerZero message delivers the deposit instruction to Starknet, and tokens are minted at arrival-time NAV. Example: Alice deposits from Ethereum. Her USDC is locked for ~3 minutes while LayerZero delivers the message. ST + EPT are minted on Starknet when the message arrives.

D

Deposit cutoff Configurable parameter (depositCutoff) specifying how many seconds before epochEnd deposits stop being accepted. Default is 0 (deposits accepted until maturity). Example: With depositCutoff = 3600, deposits stop 1 hour before the epoch ends. Deposit fee A fee charged on gross USDC at deposit time. Covers operational costs and serves as sandwich attack defense. Configurable per strategy. Example: With a 0.5% deposit fee, a $100 deposit yields $99.50 net USDC, which is used to mint ST shares and EPT.

E

Epoch A fixed-duration window (typically 8—12 weeks) during which a strategy runs. Each epoch creates new ST and EPT contract instances. Epochs progress through three states: ACTIVE --- MATURITY --- FINALIZED. Example: Epoch 7 runs for ~3 months. Epoch 8 starts after Epoch 7 finalizes. epochId Unique identifier for an epoch. Encoded in contract deployments and token names. Example: ST-PacificaFundingArb-E007 is the ST token for Epoch 7 of the Pacifica Funding Arb strategy. EPT (Expected Points Token) ERC20 with built-in credit accrual. Represents a claim on exchange points earned during the epoch, weighted by holding duration and strategy activity. One EPT contract per epoch per exchange per strategy. EPT is deposit-only and does not trade on any AMM. Example: Alice deposits $100 into Pacifica-Extended Funding Arb and receives 99.50 EPT_Pacifica + 99.50 EPT_Extended. EPT implied cost The theoretical cost of EPT derived from the minting parity equation: EPT_cost = 1 - X/R, where X = ST market price on the ArcX AMM and R = ST exchange rate. Example: ST trades at $0.90, exchange rate R = 1.0. EPT_cost = 1 - 0.90/1.0 = $0.10.

F

Finalization The event where the admin calls finalize() after the NAV Oracle reports finalNAV and the Final Points Oracle reports totalPoints. Enables ST --- USDC redemption and EPT --- PointsToken claiming. Example: Epoch 7 ends. Within 1—2 days, positions are unwound and USDC is returned. Admin finalizes. Users can now redeem. Final Points Oracle ArcX-operated off-chain service that reports the total number of exchange points earned during the epoch. Called once per epoch, after maturity. Example: The strategy earned 12,500 Pacifica points during Epoch 7. The Final Points Oracle pushes finalizePoints(12500) to the EPT_Pacifica contract. Flash loop The iterative mechanism for acquiring leveraged EPT exposure. Deposit USDC --- receive ST + EPT --- sell ST on ArcX AMM --- re-deposit proceeds --- repeat. Each iteration accumulates more EPT while recycling capital through ST sales. Example: $100 deposit --- sell ST for $90 --- re-deposit $90 --- sell ST for $81 --- re-deposit --- after 3 loops, hold ~271 EPT.

G

globalCreditIndex A cumulative counter tracking total credit-seconds per EPT unit since the epoch started. Updated on every global checkpoint. Used to compute per-user credits via the delta: userCredits += balance x (globalCreditIndex - userCreditIndex). Example: After 259,200 seconds at creditRate 10, globalCreditIndex = 2,592,000.

L

LayerZero (LZ) The cross-chain messaging protocol used to deliver deposit instructions from source chains to Starknet. Typical latency: 1—5 minutes. Worst case: ~30 minutes. Example: Alice’s deposit message travels from Ethereum to Starknet via LayerZero in ~3 minutes.

M

MATURITY The second epoch state. Entered when the epoch end time is reached. Strategy positions are unwound, no new deposits accepted, and settlement begins. Example: Epoch 7 enters MATURITY when the epoch end timestamp is reached. The strategy runner closes positions on Pacifica and Extended. MAX_NAV_STALENESS Hardcoded parameter (30 minutes). If the NAV oracle hasn’t updated within this window, deposits automatically revert. Prevents depositing against stale pricing. Example: NAV was last updated 35 minutes ago. Alice’s deposit transaction reverts with a staleness error. Minting parity The protocol-enforced relationship: 1 USDC deposited = (1/R) ST + 1 EPT. This equation defines the conservation law for token creation and is the basis for the flash loop cost calculation. Example: If R = 1.0, depositing $1 gives you 1 ST share + 1 EPT. The flash loop exploits this by selling ST and re-depositing. Multi-EPT The pattern where a single deposit into a cross-exchange strategy produces separate EPT tokens for each exchange. Example: Depositing into the Pacifica-Extended Funding Arb produces 1 ST + EPT_Pacifica + EPT_Extended. Three tokens from one deposit.

N

NAV (Net Asset Value) The total USDC value of all strategy positions for an epoch, reported by the NAV Oracle. Determines ST share price (sharePrice = NAV / totalShares). Example: The strategy holds $50K long on Pacifica and $50K short on Extended. NAV = $100K + accumulated PnL = $101,500. NAV Oracle ArcX-operated off-chain service that reports strategy NAV to the ST Vault every 5 minutes. Computes NAV from exchange position data (principal + unrealized PnL + fees). Example: The NAV Oracle reads position values from Pacifica and Extended APIs, sums them, and pushes the total to the ST Vault contract.

P

Pacifica A Solana-based perp DEX integrated with ArcX. One of the launch exchanges for the Pacifica-Extended Funding Arb strategy. PointsToken: xPC. Example: ArcX opens long positions on Pacifica as part of the cross-exchange funding arb. Pause Admin action that stops new deposits into an epoch. Does not affect the epoch lifecycle, trading on the ArcX AMM, credit accrual, or redemptions. Example: A suspected oracle issue triggers a pause. Existing positions are unaffected, but no new deposits are accepted until the admin calls unpause(). pointsPerCredit The conversion ratio computed at finalization: totalPoints / totalCredits. Determines how many points each credit is worth. Example: totalPoints = 1,000, totalCredits = 864,000,000. pointsPerCredit = 0.000001157. A user with 561,600,000 credits receives 650 points. PointsCollector Admin-callable contract that claims PointsTokens on behalf of whitelisted contract addresses. Used to distribute pool credits to participants via merkle tree. Example: After Epoch 7 finalizes, admin calls PointsCollector to claim a contract’s accrued credits, then creates a merkle distribution. PointsToken ERC20 representing tokenized exchange points, 1:1 backed by real points in ArcX’s exchange account. One contract per exchange (xPC for Pacifica, xHL for Hyperliquid, xET for Extended). Persists across epochs. Example: Alice claims 450 PointsTokens (xPC) from Epoch 7. She already had 320 xPC from previous epochs. Her total: 770 xPC.

R

Redemption fee Fee charged when converting EPT credits to PointsTokens. Deducted from gross PointsTokens before minting. Configurable per EPT contract. Example: Alice’s gross claim is 714 PointsTokens. With a 2% redemption fee, she receives 699 net PointsTokens. Redemption Module Shared Cairo trait used by both EPT (credits --- PointsToken) and PointsToken (PointsToken --- airdrop tokens). Implements the burn-to-claim pattern with incremental claiming via alreadyClaimed tracking. Example: The same code path handles Alice claiming PointsTokens from EPT and later burning those PointsTokens for airdrop tokens post-TGE. Refund timeout Configurable parameter on SourceChainDepositEscrow. If a cross-chain deposit isn’t acknowledged within this window, the user can call cancel() to recover locked USDC. Example: Alice’s cross-chain deposit hasn’t been acknowledged after 30 minutes. She calls cancel(depositId) and gets her USDC back.

S

sharePrice The current USDC value of one ST share: currentNAV / totalShares. Updated every time the NAV Oracle pushes a new value. Example: NAV = $103,000, totalShares = 100,000. sharePrice = $1.03. SourceChainDepositEscrow Contract deployed on each supported source chain. Locks user USDC, sends a deposit message via LayerZero to Starknet, and either releases USDC to the ArcX multisig (on acknowledgment) or refunds to the user (on timeout). Example: On Ethereum, Alice approves USDC on the escrow contract and calls depositUSDC(). Her USDC is locked until Starknet acknowledges the deposit. ST (Strategy Token) ERC4626-like vault share representing a claim on the epoch’s USDC NAV at finalization. One ST contract per epoch per strategy. Tradeable on the ArcX AMM during the epoch, redeemable for USDC after finalization. Example: Alice deposits $100, receives ~99.50 ST shares. The strategy makes 2%. She redeems for ~$101.50. Strategy An actively managed trading approach executed by ArcX on perp DEXes. Each strategy has its own vault, producing unique ST and EPT tokens each epoch. Example: “Pacifica-Extended Funding Arb” is a strategy that goes long on one exchange and short on another to capture funding rate differentials. Strategy Runner ArcX’s off-chain service that executes perp DEX trades using deposited USDC as margin. Operates on exchange accounts controlled by ArcX. Example: The Strategy Runner opens a $50K long position on Pacifica and a $50K short position on Extended to execute the funding arb strategy.

T

TGE (Token Generation Event) The moment when a perp DEX launches its token and distributes airdrops. After TGE, PointsTokens become redeemable for airdrop tokens via the Redemption Module. Example: Pacifica conducts TGE and distributes PCA tokens. ArcX deposits PCA into the Redemption Module. xPC holders can now burn xPC to receive PCA. Time-decay curve The AMM pricing function used by the ArcX AMM for ST/USDC pools. Concentrates liquidity around expected ST price ranges and steepens as maturity approaches, pulling ST price toward NAV. Inspired by Pendle’s logit-based curve. Example: At epoch start, the curve allows a wide trading range. Near maturity, the curve forces ST price close to NAV. totalCredits Running sum of all users’ settled credits across the epoch. Used as the denominator in points distribution: yourShare = yourCredits / totalCredits. Example: At finalization, totalCredits = 864,000,000. Alice has 561,600,000 credits, giving her a 65% share. totalPoints The actual number of exchange points earned during the epoch, reported by the Final Points Oracle at finalization. Used as the numerator in points distribution. Example: The Pacifica-Extended Funding Arb strategy earned 1,000 Pacifica points during Epoch 7. totalPoints = 1,000.

U

userCheckpoint The per-user credit settlement operation. Computes newCredits = balance x (globalCreditIndex - userCreditIndex), adds to the user’s credit total, and updates their index to the current global value. Triggered on every transfer, mint, and claim. Example: Alice’s last checkpoint was at globalCreditIndex = 1,000,000. The index is now 2,592,000. Her 100 EPT earns 100 x (2,592,000 - 1,000,000) = 159,200,000 new credits. userCreditIndex Per-user marker tracking the globalCreditIndex value at the user’s last checkpoint. The delta between the current global index and the user’s index, multiplied by their balance, gives unsettled credits. Example: Alice’s userCreditIndex = 2,592,000. Global is now 5,184,000. Delta = 2,592,000. With 50 EPT balance, she has 129,600,000 unsettled credits.

Protocol Parameters

Hardcoded

ParameterValueContractDescription
MAX_NAV_STALENESS30 minutesST VaultMaximum age of NAV data for accepting deposits

Configurable (Per Strategy / Per Epoch)

ParameterExpected RangeSet byContractDescription
depositFeeRate0.01%—0.5%AdminST VaultFee on gross USDC deposits. Lower for low-vol strategies (funding arb), higher for volatile (MM).
redeemFeeRateConfigurable per strategyAdminEPTFee on PointsToken claims
depositCutoff0—86,400 secondsAdminST VaultHow long before epochEnd to stop deposits. 0 = accept until maturity.
epochStartUnix timestampDeploymentST VaultWhen the epoch begins
epochEndUnix timestampDeploymentST VaultWhen the epoch ends (typically epochStart + 8—12 weeks)
refundTimeout~30 minutesAdminSourceChainDepositEscrowTime before unacknowledged cross-chain deposits can be refunded
maturityTimeUnix timestampDeploymentArcX AMMEpoch end time for time-decay curve convergence
scalarRootStrategy-dependentAdminArcX AMMControls time-decay curve steepness

Operational (Off-Chain)

ParameterExpected ValueServiceDescription
NAV update frequencyEvery 5 minutesNAV OracleHow often NAV is pushed on-chain
creditRate update frequencyEvery 5—15 minutesCredits OracleHow often creditRate is adjusted
Strategy unwind time1—48 hoursStrategy RunnerTime to close positions after epoch end
LP snapshot frequencyMultiple per epochPointsCollectorHow often LP positions are snapshot for merkle distribution

Token Reference

TokenTypeScopeTradeableRedeemable forExpiry
STERC4626-like sharesPer epoch, per strategyYes (ArcX AMM ST/USDC)USDC (after finalization)None
EPTERC20 + creditsPer epoch, per exchange, per strategyNo (deposit-only, via flash loop)PointsTokens (after finalization)None
PointsTokenERC20Per exchange (persists across epochs)Yes (standard ERC20)Airdrop tokens (after TGE)None

Naming Convention

TokenPatternExample
STST-{Strategy}-E{epochId}ST-PacificaFundingArb-E007
EPTEPT-{Exchange}-E{epochId}EPT-Pacifica-E007
PointsTokenx{Exchange}xPC, xHL, xET

Exchange Reference

ExchangeChainPointsTokenDescription
PacificaSolanaxPCSolana-based perp DEX
HyperliquidHyperliquid L1xHLHigh-performance perp DEX
ExtendedStarknetxETStarknet-native perp DEX

Key Equations

EquationPlain EnglishUsed in
1 USDC = (1/R) ST + 1 EPTOne dollar deposited produces this fixed combination of tokensProtocol overview, deposit flow
sharePrice = NAV / totalSharesEach ST share is worth the NAV divided by total sharesST pricing, redemption
shares = netUSDC x totalShares / NAVShares minted depend on current NAV (like a mutual fund)Deposit calculation
usdcOut = shares x finalNAV / totalSharesRedemption gives you your proportional slice of final NAVST redemption
credits = integral(balance x creditRate) dtCredits are the time-weighted, activity-weighted holding measureCredit accrual
pointsPerCredit = totalPoints / totalCreditsYour share of points equals your share of total creditsPoints distribution
EPT_cost = 1 - X/REPT implied cost is the gap between $1 and the market value of ST from a $1 depositEPT pricing, flash loop
Total EPT = deposit / (1 - X/R)Flash loop converges to this maximum EPT from a given depositFlash loop economics

Epoch State Machine Quick Reference

StateDepositsNAV UpdatesCredit AccrualST Trading (ArcX AMM)Flash LoopRedemption
ACTIVEYesEvery 5 minYes (creditRate updates)YesYesNo
MATURITYNoStoppedStoppedYesNoNo
FINALIZEDNoFinal NAV setFinal credits settledYes*NoYes
*Trading can continue on the ArcX AMM even after finalization, but there’s no economic reason to. You can redeem directly.

Trust Surface Quick Reference

ComponentTrust ModelWhat’s TrustedVerifiable?
NAV OracleCentralized (ArcX)Accurate NAV reportingPartially (exchange dashboards)
Credits OracleCentralized (ArcX)Fair creditRate reportingPartially (observable OI/volume)
Final Points OracleCentralized (ArcX)Accurate totalPointsPartially (exchange dashboards)
PointsToken backingTrust-based1:1 backing with real pointsNot currently
Strategy executionCentralized (ArcX)Competent, non-malicious tradingNot on-chain
Cross-chain escrowMultisig + timeoutMultisig honestyRefund timeout as safety valve
Smart contractsOn-chain (audited)Correct logicFully (code is on-chain)
Full analysis: Trust Model & Security

Document Index

#DocumentCategoryLevelWhat it teaches
1What is ArcX?LearnBeginnerThe protocol in one page: splitting, three tokens, two primary user paths
2The Three TokensLearnIntermediateHow ST, EPT, and PointsToken work mechanically
3Strategy TokenLearnIntermediateST deep dive: share pricing, AMM trading, yield seeker returns
4Expected Points TokenLearnIntermediateEPT deep dive: credit accrual, flash loop, deposit-only model
5PointsTokenLearnIntermediateTokenized exchange points, TGE redemption, cross-epoch persistence
6How Epochs WorkLearnIntermediateEpoch states, deposits, cross-chain, finalization, redemption
7Using ArcXLearnBeginnerStep-by-step: deposit, flash loop, buy discounted ST, redeem
8ArcX vs PendleLearnIntermediateSide-by-side concept mapping for Pendle users
9Credit MathematicsDeep DivesAdvancedCredit accrual formulas, 6 worked examples, security properties
10EPT Pricing & Flash Loop EconomicsDeep DivesAdvancedFlash loop math, one-way arb, ST discount dynamics
11Trust Model & SecurityDeep DivesIntermediateTrust assumptions, attack vectors, decentralization roadmap
12Developer Integration GuideBuild (coming soon)AdvancedArchitecture overview + contract and integration docs
13Contract ReferenceBuild (coming soon)AdvancedEvery state variable, function, and event
14Integration & DeploymentBuild (coming soon)AdvancedFrontend patterns, indexer setup, deployment checklist
15You are here, Glossary & ParametersReferenceAllEvery term and parameter defined