market/src/@context/MarketMetadata/_queries.ts

18 lines
251 B
TypeScript

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