Get Supported Chains
Fetch the list of chains supported by the routing engine
get
getimport { RoutingEngineSDK } from 'routing-engine-sdk';
const sdk = new RoutingEngineSDK({
api: { apiKey: 'your-api-key' },
});
try {
const response = await sdk.chains.get();
console.log(response.data.chains);
} catch (error) {
console.error(error);
}Last updated

