-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.graphql
68 lines (58 loc) · 1.05 KB
/
schema.graphql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
type CancelAllOrders @entity {
id: ID!
user: String!
newMinNonce: BigInt!
timestamp:BigInt!
chainId: String!
}
type CancelMultipleOrders @entity {
id: ID!
user: String!
orderNonces: [Int!]
timestamp:BigInt!
chainId: String!
}
type RoyaltyPayment @entity {
id: ID!
collection: String!
tokenId: BigInt!
royaltyRecipient: String!
currency: String!
amount: BigInt!
timestamp:BigInt!
chainId: String!
}
type TakerAsk @entity {
id: ID!
orderHash: String!
orderNonce: BigInt!
taker: String!
maker: String!
strategy: String!
currency: String!
collection: String!
tokenId: BigInt!
amount: BigInt!
price: BigInt!
timestamp:BigInt!
transactionHash: String!
block: BigInt!
chainId: String!
}
type TakerBid @entity {
id: ID!
orderHash: String!
orderNonce: BigInt!
taker: String!
maker: String!
strategy: String!
currency: String!
collection: String!
tokenId: BigInt!
amount: BigInt!
price: BigInt!
timestamp:BigInt!
transactionHash: String!
block: BigInt!
chainId: String!
}