-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.graphql
141 lines (130 loc) · 3.15 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
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
type SocialDexDeployer_OwnershipTransferred @entity {
id: ID!
previousOwner: String!
newOwner: String!
timestamp: BigInt!
txHash: String!
blockNumber: BigInt!
previousOwnerTokens: [SocialDexDeployer_TokenCreated!]! @derivedFrom(field: "deployer")
newOwnerTokens: [SocialDexDeployer_TokenCreated!]! @derivedFrom(field: "deployer")
gasUsed: BigInt!
gasPrice: BigInt!
}
type SocialDexDeployer_TokenCreated @entity {
id: ID!
tokenAddress: String!
lpNftId: BigInt!
deployer: String!
name: String!
symbol: String!
supply: BigInt!
_supply: BigInt!
lockerAddress: String!
createdAt: BigInt!
updatedAt: BigInt!
holders: [TokenHolder!]! @derivedFrom(field: "token")
transfers: [Transfer!]! @derivedFrom(field: "token")
price: [PriceTracking!]! @derivedFrom(field: "token")
liquidityEvents: [LiquidityEvent!]! @derivedFrom(field: "token")
tradingVolume: [DailyVolume!]! @derivedFrom(field: "token")
marketStats: TokenMarketStats!
socialMetrics: SocialMetrics!
tokenPairs: [TokenPair!]! @derivedFrom(field: "token0")
}
type TokenHolder @entity {
id: ID!
token: SocialDexDeployer_TokenCreated!
address: String!
balance: BigInt!
updatedAt: BigInt!
percentageOwned: BigDecimal!
averageAcquisitionPrice: BigDecimal!
transactions: [Transfer!]! @derivedFrom(field: "from")
liquidityProvided: [LiquidityEvent!]! @derivedFrom(field: "provider")
}
type Transfer @entity {
id: ID!
token: SocialDexDeployer_TokenCreated!
from: String!
to: String!
amount: BigInt!
timestamp: BigInt!
txHash: String!
blockNumber: BigInt!
gasUsed: BigInt!
gasPrice: BigInt!
priceAtTime: BigDecimal!
}
type PriceTracking @entity {
id: ID!
token: SocialDexDeployer_TokenCreated!
price: BigDecimal!
timestamp: BigInt!
volume24h: BigDecimal!
high24h: BigDecimal!
low24h: BigDecimal!
priceChange24h: BigDecimal!
liquidityUSD: BigDecimal!
}
type LiquidityEvent @entity {
id: ID!
token: SocialDexDeployer_TokenCreated!
provider: TokenHolder!
type: LiquidityEventType!
amount: BigInt!
timestamp: BigInt!
txHash: String!
}
type DailyVolume @entity {
id: ID!
token: SocialDexDeployer_TokenCreated!
date: String!
volume: BigDecimal!
transactions: Int!
uniqueTraders: Int!
}
type TokenMarketStats @entity {
id: ID!
token: SocialDexDeployer_TokenCreated!
marketCap: BigDecimal!
fullyDilutedValuation: BigDecimal!
circulatingSupply: BigInt!
totalHolders: Int!
averageHoldTime: BigInt!
burnedTokens: BigInt!
}
type SocialMetrics @entity {
id: ID!
token: SocialDexDeployer_TokenCreated!
twitterFollowers: Int!
telegramMembers: Int!
discordMembers: Int!
websiteVisits: Int!
socialScore: Int!
updatedAt: BigInt!
}
type TokenPair @entity {
id: ID!
token0: SocialDexDeployer_TokenCreated!
token1: SocialDexDeployer_TokenCreated!
pairAddress: String!
totalLiquidity: BigDecimal!
volume24h: BigDecimal!
createdAt: BigInt!
}
enum LiquidityEventType {
ADD
REMOVE
LOCK
UNLOCK
}
type DeployerStats @entity {
id: ID!
address: String!
tokensCreated: Int!
totalValueLocked: BigDecimal!
successfulProjects: Int!
activeHolders: Int!
reputation: Int!
lastActiveTimestamp: BigInt!
}