The first step to integration is generating a config using the ShogunQuoteApiClient function. The most basic info you'll need is your Shogun API Key, which is used for tracking fee shares
import { ShogunQuoteApiClient } from '@shogun-sdk/root';
// Create a new client instance
const client = new ShogunQuoteApiClient(
'YOUR_API_KEY', // Get this from Shogun dashboard
'https://api.shogun.com' // API endpoint
);