Leveraged lending protocol for yield optimization
Impermax is a non-custodial lending protocol specialized for leveraged positions. Integrate to build margin trading and leveraged yield farming platforms.
// Impermax Subgraph
const IMPERMAX_SUBGRAPH = 'https://api.thegraph.com/subgraphs/name/impermax/impermax-v2';
const query = `
query {
markets(first: 10) {
id
symbol
totalBorrows
totalSupply
borrowRate
supplyRate
}
}
`;