-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathschema.graphql
49 lines (42 loc) · 886 Bytes
/
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
type OwnershipTransferred @entity {
id: ID!
previousOwner: Bytes! # address
newOwner: Bytes! # address
}
type Paused @entity {
id: ID!
account: Bytes! # address
}
type PhunkBidEntered @entity {
id: ID!
phunkIndex: BigInt! # uint256
value: BigInt! # uint256
fromAddress: Bytes! # address
}
type PhunkBidWithdrawn @entity {
id: ID!
phunkIndex: BigInt! # uint256
value: BigInt! # uint256
fromAddress: Bytes! # address
}
type PhunkBought @entity {
id: ID!
phunkIndex: BigInt! # uint256
value: BigInt! # uint256
fromAddress: Bytes! # address
toAddress: Bytes! # address
}
type PhunkNoLongerForSale @entity {
id: ID!
phunkIndex: BigInt! # uint256
}
type PhunkOffered @entity {
id: ID!
phunkIndex: BigInt! # uint256
minValue: BigInt! # uint256
toAddress: Bytes! # address
}
type Unpaused @entity {
id: ID!
account: Bytes! # address
}