Limitless Integration

Limitless is a decentralized prediction market built on the Base network (Coinbase's L2). It distinguishes itself by offering leverage on prediction markets.

Direct Contract Interaction Unlike Kalshi or Polymarket's off chain matching, Limitless operates almost entirely on chain or via direct smart contract calls.

  • Execution: FaaSFi interacts with the Market.sol contract. The primary function call is borrowAndTrade().

  • Parameters: This function requires specifying the marketId, the position (Long/Short), the collateral amount, and the leverage multiplier.

Leverage Mechanics Limitless offers a unique "no price based liquidation" mechanism for certain timeframes.

  • Risk Management: FaaSFi must calculate the Loan-to-Value (LTV) internally. Although the protocol is lenient on liquidations, FaaSFi's risk engine monitors the Pyth Network oracle feeds to ensure the underlying probability does not drift to a point where the premium is effectively wiped out.

SDK Implementation Developers utilize the limitless-exchange-ts-sdk. This TypeScript library provides type safety for interacting with the Limitless CLOB and NegRisk (Negative Risk) markets.

Last updated