-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsubgraph.graphql
119 lines (108 loc) · 2.58 KB
/
subgraph.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
"""
Account Information
"""
type VetDomainsName @entity {
id: String!
address: Bytes!
}
type Account @entity {
id: Bytes!
name: String
asThorNode: ThorNodeContract
ThorNodes: [ThorNode!]! @derivedFrom(field: "owner")
ThorNodeoperatorOwner: [ThorNodeOperator!]! @derivedFrom(field: "owner")
ThorNodeoperatorOperator: [ThorNodeOperator!]! @derivedFrom(field: "operator")
ThorNodetransferFromEvent: [ThorNodeTransfer!]! @derivedFrom(field: "from")
ThorNodetransferToEvent: [ThorNodeTransfer!]! @derivedFrom(field: "to")
events: [Event!]! @derivedFrom(field: "emitter")
}
"""
ThorNode Contract for ThorNodes
"""
type ThorNodeContract @entity(immutable: true) {
id: Bytes!
asAccount: Account!
supportsMetadata: Boolean
name: String
symbol: String
tokens: [ThorNode!]! @derivedFrom(field: "contract")
operators: [ThorNodeOperator!]! @derivedFrom(field: "contract")
transfers: [ThorNodeTransfer!]! @derivedFrom(field: "contract")
}
type ThorNode @entity {
id: ID!
contract: ThorNodeContract!
identifier: BigInt!
owner: Account!
approval: Account!
uri: String
level: Int!
isX: Boolean!
transfers: [ThorNodeTransfer!]! @derivedFrom(field: "token")
sales: [AuctionSuccessful!]! @derivedFrom(field: "token")
auctions: [Auction!]! @derivedFrom(field: "token")
}
type ThorNodeOperator @entity {
id: ID!
contract: ThorNodeContract!
owner: Account!
operator: Account!
approved: Boolean!
}
type ThorNodeTransfer implements Event @entity(immutable: true) {
id: ID!
emitter: Account!
transaction: Transaction!
timestamp: BigInt!
contract: ThorNodeContract!
token: ThorNode!
from: Account!
to: Account!
}
"""
Generic Types
"""
interface Event {
id: ID!
transaction: Transaction!
emitter: Account!
timestamp: BigInt!
}
type Transaction @entity(immutable: true) {
id: ID!
timestamp: BigInt!
blockNumber: BigInt!
events: [Event!]! @derivedFrom(field: "transaction")
}
"""
Auctions
"""
type AuctionSuccessful implements Event @entity(immutable: true) {
id: ID!
transaction: Transaction!
emitter: Account!
timestamp: BigInt!
auctionId: BigInt!
token: ThorNode!
seller: Account!
winner: Account!
finalPrice: BigDecimal!
finalPriceExact: BigInt!
}
type Auction implements Event @entity {
id: ID!
transaction: Transaction!
emitter: Account!
timestamp: BigInt!
auctionId: BigInt!
token: ThorNode!
seller: Account!
startingPrice: BigDecimal!
startingPriceExact: BigInt!
endingPrice: BigDecimal!
endingPriceExact: BigInt!
duration: BigInt!
endTimestamp: BigInt!
cancelled: Boolean!
successful: Boolean!
}