Configuring the Client

ClientConfig

Description: these are the options that can be specified in a ChainvineClient and ChainvineUser instance.

import { ChainvineClient, ClientConfig } from '@chainvine/sdk/lib';

const config: ClientConfig = {
   apiKey: 'S3CR37C0D3Z',
   testMode: true,
   logToConsole: true,
}

const client = new ChainvineClient(config);

Last updated