@silvana-one/api
Version:
Silvana API
15 lines • 506 B
JavaScript
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