UNPKG

@silvana-one/api

Version:
15 lines 519 B
import { client } from "./client/client.gen.js"; export function config({ apiKey, chain, throwOnError, }) { client.setConfig({ headers: { "x-api-key": apiKey, }, baseUrl: chain === "zeko:testnet" ? "https://zekotokens.com/api/v1/" : chain === "mina:devnet" ? "https://devnet.minatokens.com/api/v1/" : "https://minatokens.com/api/v1/", throwOnError: throwOnError ?? true, }); } //# sourceMappingURL=config.js.map