Skip to content

Getting Started

Quasdaq is a parimutuel prediction market on Quai Network. You bet Yes or No on whether an asset price will be above a strike price at resolution time. Winners split the losers’ pool.

  1. Manual — visit quasdaq.com, connect Pelagus wallet, browse markets, click bet
  2. Programmatic — use the quais SDK to build bots, scanners, or autonomous agents

This docs site focuses on #2.

  • A Quai wallet funded with QUAI (install Pelagus or generate one with quais)
  • Node.js 18+
  • quais SDK: npm install quais
ItemValue
NetworkQuai mainnet, Cyprus-1 shard (0x00 prefix)
RPChttps://rpc.quai.network
MarketFactory0x0027Adb36E28fA1C037286Da59BB348fA2B63Bd6
Feed APIGET https://quasdaq.com/api/feeds
Min seed betQuery factory.minSeedBet() (currently 100 QUAI)
Fees3% from losing pool at resolution (2% treasury + 1% creator)
import { JsonRpcProvider, Contract, formatQuai } from "quais";
const provider = new JsonRpcProvider("https://rpc.quai.network");
const factory = new Contract(
"0x0027Adb36E28fA1C037286Da59BB348fA2B63Bd6",
["function getMarkets() view returns (address[])"],
provider
);
const markets = await factory.getMarkets();
console.log(`${markets.length} markets on Quasdaq`);

Not every asset in the feed catalog can actually be resolved on-chain. Currently, only these feeds have live Stork Oracle subscriptions:

Feed IDAsset
BTCUSDBitcoin
ETHUSDEthereum
SOLUSDSolana
BNBUSDBNB
SPYS&P 500 ETF