forked from kin-labs/kinetic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
api-schema.graphql
467 lines (418 loc) · 9.54 KB
/
api-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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
# ------------------------------------------------------
# THIS FILE WAS AUTOMATICALLY GENERATED (DO NOT MODIFY)
# ------------------------------------------------------
type App {
createdAt: DateTime!
defaultEnvUrl: String
envs: [AppEnv!]
id: String!
index: Int!
name: String
settingsUrl: String
updatedAt: DateTime!
users: [AppUser!]
}
input AppCreateInput {
index: Int!
name: String!
skipWalletCreation: Boolean
}
type AppEnv {
app: App
cluster: Cluster
createdAt: DateTime!
id: String!
key: String
mints: [AppMint!]
name: String
updatedAt: DateTime!
wallets: [Wallet!]
webhookAcceptIncoming: Boolean
webhookEventEnabled: Boolean
webhookEventUrl: String
webhookSecret: String
webhookVerifyEnabled: Boolean
webhookVerifyUrl: String
}
input AppEnvUpdateInput {
webhookAcceptIncoming: Boolean
webhookEventEnabled: Boolean
webhookEventUrl: String
webhookSecret: String
webhookVerifyEnabled: Boolean
webhookVerifyUrl: String
}
type AppMint {
addMemo: Boolean
createdAt: DateTime!
id: String!
mint: Mint
order: Int
updatedAt: DateTime!
wallet: Wallet
}
input AppMintUpdateInput {
addMemo: Boolean
}
type AppTransaction {
amount: String
createdAt: DateTime
destination: String
errors: [AppTransactionError!]
explorerUrl: String
feePayer: String
id: String
mint: String
processingDuration: Int
referenceId: String
referenceType: String
signature: String
solanaCommitted: DateTime
solanaCommittedDuration: Int
solanaFinalized: DateTime
solanaFinalizedDuration: Int
solanaStart: DateTime
solanaTransaction: JSON
source: String
status: AppTransactionStatus!
totalDuration: Int
updatedAt: DateTime
webhookEventDuration: Int
webhookEventEnd: DateTime
webhookEventIncoming: AppWebhook
webhookEventOutgoing: AppWebhook
webhookEventStart: DateTime
webhookVerifyDuration: Int
webhookVerifyEnd: DateTime
webhookVerifyIncoming: AppWebhook
webhookVerifyOutgoing: AppWebhook
webhookVerifyStart: DateTime
}
type AppTransactionCounter {
limit: Float
page: Float
pageCount: Float
total: Float
}
type AppTransactionError {
id: String
instruction: Int
logs: [String!]
message: String
type: AppTransactionErrorType!
}
enum AppTransactionErrorType {
BadNonce
InvalidAccount
SomeError
Unknown
WebhookFailed
}
input AppTransactionListInput {
destination: String
limit: Float
page: Float
referenceId: String
referenceType: String
signature: String
source: String
status: [AppTransactionStatus!]
}
enum AppTransactionStatus {
Committed
Confirmed
Failed
Finalized
Processing
}
input AppUpdateInput {
name: String
}
type AppUser {
app: App
createdAt: DateTime!
id: String!
role: AppUserRole!
updatedAt: DateTime!
user: User
}
input AppUserAddInput {
role: AppUserRole!
userId: String!
}
input AppUserRemoveInput {
userId: String!
}
enum AppUserRole {
Member
Owner
}
input AppUserUpdateRoleInput {
role: AppUserRole!
userId: String!
}
type AppWebhook {
createdAt: DateTime!
direction: AppWebhookDirection!
headers: JSON
id: String!
payload: JSON
responseError: String
responsePayload: JSON
responseStatus: Int
type: AppWebhookType!
updatedAt: DateTime!
}
enum AppWebhookDirection {
Incoming
Outgoing
}
enum AppWebhookType {
Event
Verify
}
type AuthToken {
token: String!
user: User!
}
"""
The `BigInt` scalar type represents non-fractional signed whole numeric values.
"""
scalar BigInt
type Cluster {
createdAt: DateTime
enableStats: Boolean
endpointPrivate: String
endpointPublic: String
explorer: String
id: String
mints: [Mint!]
name: String
status: ClusterStatus
type: ClusterType
updatedAt: DateTime
}
input ClusterCreateInput {
endpointPrivate: String!
endpointPublic: String!
explorer: String
name: String!
type: ClusterType!
}
type ClusterStat {
createdAt: DateTime!
id: String!
numSlots: Float
numTransactions: Float!
samplePeriodSecs: Float!
slot: Float!
updatedAt: DateTime!
}
enum ClusterStatus {
Active
Inactive
}
type ClusterToken {
address: String
decimals: Int
extensions: ClusterTokenExtensions
logoURI: String
name: String
symbol: String
tags: [String!]
}
type ClusterTokenExtensions {
address: String
assetContract: String
bridgeContract: String
coinGeckoId: String
description: String
discord: String
explorer: String
github: String
imageUrl: String
medium: String
serumV3Usdc: String
serumV3Usdt: String
tgann: String
tggroup: String
twitter: String
website: String
}
input ClusterTokenInput {
address: String
name: String
symbol: String
type: ClusterType!
}
enum ClusterType {
Custom
SolanaDevnet
SolanaMainnet
SolanaTestnet
}
input ClusterUpdateInput {
enableStats: Boolean
endpointPrivate: String
endpointPublic: String
explorer: String
name: String
status: ClusterStatus
}
"""
A date-time string at UTC, such as 2019-12-03T09:54:33Z, compliant with the date-time format.
"""
scalar DateTime
"""
The `JSON` scalar type represents JSON values as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf).
"""
scalar JSON
input LoginInput {
password: String!
username: String!
}
type Mint {
addMemo: Boolean
address: String
airdropAmount: Int
airdropMax: Int
airdropPublicKey: String
coinGeckoId: String
createdAt: DateTime
decimals: Int
default: Boolean
enabled: Boolean
id: String
logoUrl: String
name: String
order: Int
symbol: String
type: MintType
updatedAt: DateTime
}
input MintAddInput {
address: String!
clusterId: String!
name: String!
symbol: String!
}
enum MintType {
SplToken
}
type Mutation {
adminAddClusterMint(input: MintAddInput!): Cluster
adminCreateApp(input: AppCreateInput!): App
adminCreateCluster(input: ClusterCreateInput!): Cluster
adminCreateUser(input: UserCreateInput!): User
adminDeleteApp(appId: String!): App
adminDeleteCluster(clusterId: String!): Cluster
adminDeleteUser(userId: String!): User
adminDeleteWallet(walletId: String!): Wallet
adminUpdateCluster(clusterId: String!, input: ClusterUpdateInput!): Cluster
adminUpdateUser(input: UserUpdateInput!, userId: String!): User
login(input: LoginInput!): AuthToken
logout: Boolean
userAppEnvMintDisable(appEnvId: String!, appId: String!, mintId: String!): AppEnv
userAppEnvMintEnable(appEnvId: String!, appId: String!, mintId: String!): AppEnv
userAppEnvMintSetWallet(appEnvId: String!, appId: String!, mintId: String!, walletId: String!): AppEnv
userAppEnvWalletAdd(appEnvId: String!, appId: String!, walletId: String!): AppEnv
userAppEnvWalletRemove(appEnvId: String!, appId: String!, walletId: String!): AppEnv
userAppUserAdd(appId: String!, input: AppUserAddInput!): App
userAppUserRemove(appId: String!, input: AppUserRemoveInput!): App
userAppUserUpdateRole(appId: String!, input: AppUserUpdateRoleInput!): App
userDeleteWallet(appEnvId: String!, walletId: String!): Wallet
userGenerateWallet(appEnvId: String!): Wallet
userImportWallet(appEnvId: String!, secretKey: String!): Wallet
userUpdateApp(appId: String!, input: AppUpdateInput!): App
userUpdateAppEnv(appEnvId: String!, appId: String!, input: AppEnvUpdateInput!): AppEnv
userUpdateAppMint(appId: String!, appMintId: String!, input: AppMintUpdateInput!): AppMint
}
type Query {
adminApp(appId: String!): App
adminApps: [App!]
adminCluster(clusterId: String!): Cluster
adminClusterTokens(input: ClusterTokenInput!): [ClusterToken!]
adminClusters: [Cluster!]
adminUser(userId: String!): User
adminUsers: [User!]
adminWallet(walletId: String!): Wallet
adminWalletBalances(appEnvId: String!, walletId: String!): [WalletBalance!]
adminWallets: [Wallet!]
clusterStats(clusterId: String!): [ClusterStat!]
me: User
uptime: Float!
userApp(appId: String!): App
userAppEnv(appEnvId: String!, appId: String!): AppEnv
userAppRole(appId: String!): AppUserRole
userAppTransaction(appEnvId: String!, appId: String!, appTransactionId: String!): AppTransaction
userAppTransactionCounter(appEnvId: String!, appId: String!, input: AppTransactionListInput): AppTransactionCounter
userAppTransactions(appEnvId: String!, appId: String!, input: AppTransactionListInput): [AppTransaction!]
userApps: [App!]
userWallet(appEnvId: String!, walletId: String!): Wallet
userWalletAirdrop(amount: Float!, appEnvId: String!, walletId: String!): WalletAirdropResponse
userWalletBalance(appEnvId: String!, walletId: String!): WalletBalance
userWalletBalances(appEnvId: String!, walletId: String!): [WalletBalance!]
userWallets(appEnvId: String!): [Wallet!]
}
type User {
apps: [AppUser!]
avatarUrl: String
createdAt: DateTime!
email: String
emails: [UserEmail!]
id: String!
name: String
role: UserRole
updatedAt: DateTime!
username: String!
}
input UserCreateInput {
avatarUrl: String
email: String!
name: String
password: String!
role: UserRole
username: String
}
type UserEmail {
createdAt: DateTime!
email: String!
id: String!
updatedAt: DateTime!
}
enum UserRole {
Admin
User
}
input UserUpdateInput {
avatarUrl: String
name: String
role: UserRole
}
type Wallet {
appEnvs: [AppEnv!]
appMints: [AppMint!]
balances: [WalletBalance!]
createdAt: DateTime
id: String!
owner: User
publicKey: String
type: WalletType
updatedAt: DateTime
}
type WalletAirdropResponse {
signature: String
}
type WalletBalance {
appEnv: AppEnv
balance: BigInt
change: BigInt
createdAt: DateTime
id: String
updatedAt: DateTime
}
enum WalletType {
Generated
Imported
Provisioned
}