Request Protocols
const client = axios.create({ baseURL: 'https://api.protocolink.com' });
const getProtocols = async () => {
const result = await client.get(`/v1/protocols`);
return result.data;
}
const tokens = await getProtocols();Last updated