Integrate decentralized options trading into your applications
Dopex is a decentralized options protocol offering single-sided staking options vaults (SSOV) and Atlantic Straddles. Build powerful options trading applications.
// Dopex Subgraph API
const DOPEX_SUBGRAPH = 'https://api.thegraph.com/subgraphs/name/dopex-io/dopex-v2';
const query = `
query {
vaults(first: 10, orderBy: totalValueLocked, orderDirection: desc) {
id
symbol
totalValueLocked
epochDuration
}
}
`;