Skip to content

Repository files navigation

@dimes-dot-fi/sdk

TypeScript SDK for building on Dimes Multiply — leveraged prediction markets.

npm version npm downloads license docs


Dimes Multiply is a middle-layer protocol that lets trading terminals, wallets, and apps offer up to 10x leveraged exposure on prediction markets (Polymarket) without building internal leverage infrastructure. This SDK gives you a type-safe TypeScript client for the Multiply API, a quote engine with auto-correction, React hooks, and viem-compatible on-chain transaction builders.

Features

  • Full API client — typed methods for markets, quotes, positions, and contract info with automatic camelCase conversion
  • Quote engineexecuteQuote() handles the draft → promote flow, retries on market-moved errors, and auto-corrects leverage/collateral/slippage
  • React hooksuseMarkets(), usePositions(), useQuote(), useContractInfo(), and more — works with your existing TanStack Query setup
  • On-chain builders — viem-compatible transaction data for createPosition, approve, and requestClose
  • Signature verification — verify quote signatures against the contract-info endpoint with per-client caching
  • Auth managementApiKeyAuth auto-obtains and refreshes JWTs; JwtAuth for static or dynamic tokens
  • Error handling — typed DimesApiError with friendly messages, structured hints, and programmatic correction suggestions
  • Tree-shakeable — three entry points, ESM + CJS, zero runtime dependencies beyond humps

Install

npm install @dimes-dot-fi/sdk

Entry Points

Import What Peer deps
@dimes-dot-fi/sdk Client, quote engine, errors, types
@dimes-dot-fi/sdk/react React hooks + provider react, @tanstack/react-query
@dimes-dot-fi/sdk/contract Tx builders, signature verification viem

Quick Start

Client setup

Your backend holds the Dimes API key and exposes an endpoint that generates JWTs for your users (see Authentication). Point JwtAuth at that endpoint — it fetches, caches, and auto-refreshes tokens:

import { DimesClient, JwtAuth } from "@dimes-dot-fi/sdk";

const client = new DimesClient({
  auth: new JwtAuth({
    tokenUrl: "https://your-backend.com/api/dimes-token",
  }),
});

For server-side (Node.js) where you hold the API key directly:

import { DimesClient, ApiKeyAuth } from "@dimes-dot-fi/sdk";

const client = new DimesClient({
  auth: new ApiKeyAuth({
    apiKey: process.env.DIMES_API_KEY,
    walletAddress: "0x1234...abcd",
  }),
});

Browse markets

const { data: markets } = await client.getMarkets();
const market = await client.getMarket("will-btc-hit-100k-2026");

console.log(market.leverage.maxBps); // 100000 (10x)

Execute a quote

import { executeQuote } from "@dimes-dot-fi/sdk";

const result = await executeQuote(client, {
  marketTicker: "will-btc-hit-100k-2026",
  side: "yes",
  collateralUsd: 25,
  leverageBps: 50000, // 5x
  slippageBps: 300,
});

console.log(result.quote.entryPriceUsd);
console.log(result.corrections); // auto-applied adjustments, if any

executeQuote handles the full lifecycle: creates a draft quote, promotes it, retries on market-moved errors, and auto-corrects parameters when the API suggests adjustments. Hook into each stage:

const result = await executeQuote(client, params, {
  onDraftReady: (draft) => showPreview(draft),
  onMarketMoved: (event) => showRetryNotice(event.retryCount),
  onCorrection: (adj) => showAdjustment(adj.field, adj.toLabel),
  maxRetries: 3,
});

Open a position on-chain

Always verify the quote's signature before submitting. The quote is signed by the Dimes authority over every term (size, leverage, fees, expiry); the vault enforces it on-chain (InvalidSignature / SignatureExpired), so verifying client-side just lets a tampered or stale quote fail fast instead of reverting.

Recommended (mirrors the dimes-demo-ui demo)

Fetch contract-info once (it's cached), check the recovered signer with assertQuoteSigner, then build and submit the tx however your wallet stack requires. This keeps full control of your own UX and tx path while the SDK owns the crypto:

import {
  assertQuoteSigner,
  resolveExpectedSigner,
  getCachedContractInfo,
  buildApproveTx,
  buildCreatePositionTx,
} from "@dimes-dot-fi/sdk/contract";
import { getAddress } from "viem";

const quote = result.quote;

// The signed `user` is bound to msg.sender on-chain, so the submitting wallet
// must be the one the quote was created for.
const user = getAddress(quote.authorityPublicKey);
if (getAddress(walletAddress) !== user) throw new Error("Wrong wallet for this quote.");

// contract-info is cached per-client (staleTime: Infinity in React via useContractInfo()).
const { polygonSignerAddress } = await getCachedContractInfo(client);
const expectedSigner = resolveExpectedSigner(polygonSignerAddress);
if (!expectedSigner) throw new Error("No signer address from /contract-info.");

// Recover + compare. Throws DimesContractError("invalid_signer") on mismatch.
await assertQuoteSigner(quote, user, expectedSigner);

// Build viem-compatible transactions and submit them your way.
const approveTx = buildApproveTx(usdcAddress, vaultAddress, BigInt(quote.totalUserAmountUsdcUnits));
const createTx = buildCreatePositionTx(quote);
await walletClient.writeContract(approveTx);
await walletClient.writeContract(createTx);

Primitives (build it differently)

  • recoverCreatePositionSigner(quote, user) — pure EIP-712 recovery; compare the returned address yourself.
  • buildCreatePositionTx, buildApproveTx, buildRequestCloseTx, buildPushFundedCreateCalls, buildDepositWalletBatch — raw call/tx builders for EOA, smart-wallet (ERC-4337) batching, or deposit-wallet relayer flows. See the three create-position hooks in dimes-ui for worked examples of each.

Headless one-liners (no custom UX needed)

For a bot or server that holds a DimesClient and doesn't need bespoke checks, these verify against the client's cached contract-info for you:

import { buildVerifiedCreatePositionTx, buildVerifiedPushFundedCreateCalls } from "@dimes-dot-fi/sdk/contract";

// verify-then-build in one call (throws on a bad signature):
const createTx = await buildVerifiedCreatePositionTx(client, quote, user);
const calls = await buildVerifiedPushFundedCreateCalls(client, quote, depositWallet); // pUSD address from contract-info

verifyQuoteSignature(client, quote, user) is the standalone verify if you want to build separately. (verifyOfferSignature is a deprecated alias.)

Close a position

import { buildRequestCloseTx } from "@dimes-dot-fi/sdk/contract";

const closeTx = buildRequestCloseTx(vaultAddress, positionKey);
await walletClient.writeContract(closeTx);

React

import { DimesClient, JwtAuth } from "@dimes-dot-fi/sdk";
import { DimesProvider } from "@dimes-dot-fi/sdk/react";

const client = new DimesClient({
  auth: new JwtAuth({ tokenUrl: "https://your-backend.com/api/dimes-token" }),
});

function App() {
  return (
    <QueryClientProvider client={queryClient}>
      <DimesProvider client={client}>
        <YourApp />
      </DimesProvider>
    </QueryClientProvider>
  );
}

All hooks accept optional queryOptions for full control over caching, polling, and queryClient selection:

import { useMarkets, usePositions, useQuote, useContractInfo } from "@dimes-dot-fi/sdk/react";

function Dashboard() {
  const { data: markets } = useMarkets();
  const { data: positions } = usePositions({ status: "open" });
  const { data: contractInfo } = useContractInfo(); // cached, staleTime: Infinity
  const { state, execute, reset } = useQuote();

  // state.phase: "idle" | "loading-draft" | "draft-ready" | "promoting" | "promoted" | "error"
}

Error Handling

import { DimesApiError, formatErrorMessage, quoteErrorHint, hintAdjustment } from "@dimes-dot-fi/sdk";

try {
  await executeQuote(client, params);
} catch (err) {
  if (err instanceof DimesApiError) {
    // User-friendly message for any error code
    console.log(formatErrorMessage(err.code, err.params));

    // Programmatic correction hints for leverage/collateral/slippage errors
    const hint = quoteErrorHint(err.code, err.params, { leverageBps: params.leverageBps });
    const adj = hintAdjustment(hint, params);
    if (adj) {
      console.log(`Suggestion: adjust ${adj.field} to ${adj.toLabel}`);
    }
  }
}

The SDK's HTTP client automatically retries on 429 (rate limit) with Retry-After support and refreshes auth on 401.

Sandbox

const client = new DimesClient({
  baseUrl: "https://api-sandbox.dimes.fi",
  auth: new ApiKeyAuth({
    apiKey: "dm_sbx_skey_...",
    walletAddress: "0x...",
  }),
});

Same API, same contracts, fake USDC. Get a sandbox key via the Telegram link on dimes.fi.

API Method Reference

Endpoint Method React Hook
GET /markets client.getMarkets() useMarkets()
GET /markets/:ticker client.getMarket(ticker) useMarket(ticker)
GET /contract-info client.getContractInfo() useContractInfo()
GET /positions client.getPositions() usePositions()
GET /user-limits client.getUserLimits() useUserLimits()
GET /partner-limits client.getPartnerLimits() usePartnerLimits()
POST /draft-quotes client.createDraftQuote()
POST /promoted-quotes/:id client.promoteDraftQuote()
POST /quotes client.createQuote()
Draft → Promote (full flow) executeQuote() useQuote()
Cancel position client.cancelPosition() useCancelPosition()

Examples

Runnable, type-checked examples live in examples/ — they're verified against the SDK source in CI (pnpm examples:typecheck), so they never drift from the real API:

File Shows
01-quickstart.ts Auth, list markets, fetch an executable quote
02-quote-engine.ts executeQuote auto-correction + market-moved retries
03-open-position-onchain.ts EOA flow: approve → verify signature → createPosition (viem)
04-positions-and-close.ts List positions, request an on-chain close
05-websocket.ts Stream live position events over Socket.IO
react/trade-panel.tsx Provider + useMarkets + useQuote
react/streams.tsx usePositions with live WebSocket reconciliation

Documentation

Publishing

# Bump version, then publish
pnpm version patch   # or minor/major
npm publish --access public

The prepublishOnly hook runs lint, typecheck, tests, and build before publishing.

License

MIT

About

TypeScript SDK for the Dimes API — typed client, quote engine, React hooks, and viem transaction builders for leveraged prediction markets.

Topics

Resources

Contributing

Security policy

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Used by

Contributors

Languages