Are you an LLM? Read llms.txt for a summary of the docs, or llms-full.txt for the full context.
Skip to content

Odos

Configuration

import { createConfig, odos } from "@spandex/core";
 
export const config = createConfig({
  providers: [
    odos({
      // Optional. Use for attribution
      referralCode: undefined,
      // Optional. Use it if you got it
      apiKey: undefined,
      // Optional. Enable fees and surplus if negotiated with Odos.
      // negotiatedFeatures: ["integratorSurplus", "integratorFees"],
    }),
    // ...
  ],
});