-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.graphql
47 lines (46 loc) · 988 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
# Limit Order Swaps
type FilledOrder @entity {
id: ID! # txHash + txIndex
augustusRFQ: Bytes!
augustusRFQVersion: String!
orderHash: Bytes!
makerAddress: Bytes!
makerAsset: Bytes!
makerAmount: BigInt!
takerAddress: Bytes!
takerAsset: Bytes!
takerAmount: BigInt!
txHash: Bytes!
txOrigin: Bytes!
txTarget: Bytes
txGasLimit: BigInt!
txGasPrice: BigInt!
blockHash: Bytes!
blockNumber: BigInt!
timestamp: BigInt!
}
# NFT Swaps
type FilledOrderNFT @entity {
id: ID! # txHash + txIndex
augustusRFQ: Bytes!
augustusRFQVersion: String!
orderHash: Bytes!
makerAddress: Bytes!
makerAsset: Bytes!
makerAssetType: BigInt!
makerAssetId: BigInt!
makerAmount: BigInt!
takerAddress: Bytes!
takerAsset: Bytes!
takerAssetType: BigInt!
takerAssetId: BigInt!
takerAmount: BigInt!
txHash: Bytes!
txOrigin: Bytes!
txTarget: Bytes
txGasLimit: BigInt!
txGasPrice: BigInt!
blockHash: Bytes!
blockNumber: BigInt!
timestamp: BigInt!
}