oceanprotocol/market

View on GitHub
src/@context/MarketMetadata/_queries.ts

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
import { gql } from 'urql'

export const opcQuery = gql`
  query OpcQuery {
    opc(id: 1) {
      swapOceanFee
      swapNonOceanFee
      approvedTokens {
        address: id
        symbol
        name
        decimals
      }
      id
    }
  }
`