-
Notifications
You must be signed in to change notification settings - Fork 1
/
schema.graphql
41 lines (38 loc) · 1000 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
type WarheadClaimed @entity(immutable: true) {
id: Bytes!
warheadId: BigInt! # uint256
claimer: Bytes! # address
claimedAt: BigInt! # uint256
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type WarheadCreated @entity(immutable: true) {
id: Bytes!
warheadId: BigInt! # uint256
dropper: Bytes! # address
warheadAddress: Bytes! # address
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type WarheadCreatedWithReceiver @entity(immutable: true) {
id: Bytes!
warheadId: BigInt! # uint256
dropper: Bytes! # address
warheadAddress: Bytes! # address
targetReceiver: Bytes! # address
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type WarheadDropped @entity(immutable: true) {
id: Bytes!
warheadId: BigInt! # uint256
targetLat: BigInt! # int256
targetLong: BigInt! # int256
impactTime: BigInt! # uint256
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}