UNPKG

@silvana-one/api

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