Comment on page
Exchange Subgraph
The Exchange Subgraph contains indexed information about exchange, exchange volumes, asset volumes, the orders, developer royalties, etc.

https://thegraph.com/hosted-service/subgraph/gcbsumid/exchange-optimistic-kovan
Hosted Service
Try querying the Exchange Subgraph!
type Account @entity {
id: ID!
address: Bytes!
orders: [Order!]!
numOfOpenBuyOrders: BigInt!
numOfOpenSellOrders: BigInt!
numOfFilledOrders: BigInt!
numOfCancelledOrders: BigInt!
volume: BigInt!
volumeAsBuyer: BigInt!
volumeAsSeller: BigInt!
dailyData: [AccountDayData!]
claimedRoyalties: [UserRoyalty!]
}
type Order @entity {
id: ID!
exchange: Exchange!
asset: Asset!
owner: Account!
type: OrderType!
price: BigInt!
amountOrdered: BigInt!
amountFilled: BigInt!
status: OrderStatus!
createdAtTimestamp: BigInt!
filledAtTimestamp: BigInt!
cancelledAtTimestamp: BigInt!
lastClaimedAtTimestamp: BigInt!
orderFills: [OrderFill!]
}
Last modified 1yr ago