-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathschema.graphql
934 lines (821 loc) · 20.5 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
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
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
# This file was generated based on ".graphqlconfig". Do not edit manually.
schema {
query: Query
mutation: Mutation
subscription: Subscription
}
type Account {
address: String!
chainId: Int!
createdAt: DateTime!
ensNode: ENSNode
metadata: AccountMetadata
state: AccountStates
store: AccountStores
type: AccountTypes
updatedAt: DateTime!
}
type AccountBalance {
superBalance: BigNumber
balance: BigNumber!
token: String
}
type AccountBalances {
items: [AccountBalance!]!
}
type AccountDashboardChange {
balance: Float!
netChange: Float!
}
type AccountDashboardDataPoint {
balance: Float!
timestamp: String!
}
type AccountMember {
account: Account!
createdAt: DateTime!
member: Account!
state: AccountMemberStates!
store: AccountMemberStores
type: AccountMemberTypes
updatedAt: DateTime!
}
type AccountMembers {
currentPage: Int!
items: [AccountMember!]!
nextPage: Int
total: Int
}
type AccountMetadata {
account: Account!
createdAt: DateTime!
email: String
isEmailVerified: Boolean!
isPhoneVerified: Boolean!
phone: String
updatedAt: DateTime!
}
type AccountProof {
createdAt: DateTime!
hash: String!
state: AccountProofStates!
updatedAt: DateTime!
}
type AccountSettings {
account: Account!
createdAt: DateTime!
defaultTokenListName: String
delayTransactions: Int
fcmToken: String
updatedAt: DateTime!
}
type AccountTotalBalances {
totalBalances: [AccountTotalBalancesItem!]!
}
type AccountTotalBalancesItem {
balances: [AccountTotalBalancesMetadata!]!
category: AccountTotalBalancesCategories
chainId: Float!
totalBalance: Float
}
type AccountTotalBalancesMetadata {
address: String
iconUrl: String
key: String!
protocol: String
serviceTitle: String
share: Float
title: String!
tokenAddress: String
value: Float!
}
type Accounts {
currentPage: Int!
items: [Account!]!
nextPage: Int
total: Int
}
type BlockStats {
currentBlockNumber: Int
lastProcessedBlockNumber: Int
reConsumeBlockNumber: Int
}
type BridgeAsset {
address: String!
chainId: Int!
decimals: Int!
icon: String!
name: String!
symbol: String!
}
type BridgeInfo {
icon: String
serviceTime: Int!
}
type BridgeRoute {
bridgeInfo: BridgeInfo!
bridgeName: String!
fromAsset: BridgeAsset!
fromChainId: Int!
inputAmount: BigNumber!
outputAmount: BigNumber!
toAsset: BridgeAsset!
toChainId: Int!
}
type ENSAddresses {
items: [String]!
}
type ENSNames {
items: [String]!
}
type ENSNode {
address: String!
createdAt: DateTime
guardianSignature: String
hash: String!
label: String
name: String
rootNode: ENSRootNode
state: ENSNodeStates
updatedAt: DateTime
zone: ENSNodeZones!
}
type ENSRootNode {
createdAt: DateTime!
hash: String!
name: String
state: ENSRootNodeStates!
updatedAt: DateTime!
}
type ENSRootNodes {
currentPage: Int!
items: [ENSRootNode!]!
nextPage: Int
total: Int
}
type ExchangeOffer {
exchangeRate: Float!
provider: ExchangeProviders!
receiveAmount: BigNumber!
transactions: [SendTransaction!]!
}
type ExchangeOffers {
items: [ExchangeOffer!]!
}
type GatewayBatch {
account: String!
createdAt: DateTime
data: [String!]!
delayedUntil: DateTime
estimatedGas: Int!
estimatedGasPrice: BigNumber!
feeAmount: BigNumber!
feeData: String!
feeToken: String
hash: String!
logs: [TransactionLog!]!
nonce: Int!
refundAmount: BigNumber!
refundData: String!
refundToken: String
senderSignature: String!
state: GatewayBatchStates!
to: [String!]!
transaction: GatewayTransaction
updatedAt: DateTime
}
type GatewayBatches {
currentPage: Int!
items: [GatewayBatch!]!
nextPage: Int
total: Int
}
type GatewayEstimatedBatch {
createdAt: DateTime!
estimatedGas: Int!
estimatedGasPrice: BigNumber!
expiredAt: DateTime!
feeAmount: BigNumber!
feeTokenReceiver: String
refundAmount: BigNumber!
refundTokenPayee: String
signature: String!
}
type GatewayEstimatedKnownOp {
estimatedGas: Int!
estimatedGasPrice: BigNumber!
feeAmount: BigNumber!
}
type GatewayGasInfo {
fast: BigNumber!
instant: BigNumber!
standard: BigNumber!
}
type GatewaySender {
address: String!
balance: BigNumber!
createdAt: DateTime!
nonce: Float!
state: GatewaySenderStates!
updatedAt: DateTime!
}
type GatewaySenders {
items: [GatewaySender!]!
}
type GatewaySupportedToken {
address: String!
exchangeRate: Float!
}
type GatewaySupportedTokens {
items: [GatewaySupportedToken!]!
}
type GatewayTransaction {
batches: [GatewayBatch!]!
blockNumber: Int
chainId: Int!
createdAt: DateTime!
gasLimit: Float!
gasPrice: BigNumber!
gasUsed: Int
hash: String!
id: Int!
internalTransactions: [InternalTransaction!]!
internalTransactionsFetched: Boolean!
sender: String
state: GatewayTransactionStates!
timestamp: Int
totalCost: BigNumber!
updatedAt: DateTime!
}
type InternalTransaction {
from: String!
to: String!
value: BigNumber!
}
type MovrFee {
amount: BigNumber!
assetAddress: String!
}
type MovrFees {
bridgeFee: MovrFee!
gasLimit: MovrFee!
}
type MovrRoute {
bridgeRoute: BridgeRoute!
fees: MovrFees!
useMiddleware: Boolean!
}
type Mutation {
activatePaymentHubBridge(acceptedChainId: Int!, acceptedToken: String, chainId: Int, hub: String!, token: String): PaymentHubBridge!
callContract(chainId: Int, data: String!, to: String!): String!
callProject(chainId: Int, payload: JSONObject, sender: String!): ProjectResponse!
cancelGatewayBatch(account: String!, chainId: Int, hash: String!): GatewayBatch!
createPaymentHubPayment(chainId: Int, hub: String!, recipient: String!, sender: String!, token: String, value: BigNumber!): PaymentHubPayment!
createSession(account: String!, chainId: Int, code: String!, fcmToken: String, signature: String!, ttl: Int): Session!
createSessionCode(account: String!, chainId: Int): String!
deactivatePaymentHubBridge(acceptedChainId: Int!, acceptedToken: String, chainId: Int, hub: String!, token: String): PaymentHubBridge!
destroySession(chainId: Int): Boolean!
estimateGatewayBatch(account: String!, chainId: Int, data: [String!]!, feeToken: String, nonce: Int!, refundToken: String, to: [String!]!): GatewayEstimatedBatch!
estimateGatewayKnownOp(account: String!, chainId: Int, feeToken: String, op: GatewayKnownOps!): GatewayEstimatedKnownOp!
forceGatewayBatch(account: String!, chainId: Int, hash: String!): GatewayBatch!
p2pPaymentDepositWithdrawals(chainId: Int, limit: Int = 10, owner: String!, page: Int = 1, token: String): P2PPaymentDeposits!
reserveENSNode(address: String!, chainId: Int, name: String!): ENSNode!
signP2PPaymentChannel(chainId: Int, hash: String!, senderSignature: String!): P2PPaymentChannel!
submitGatewayBatch(account: String!, chainId: Int, data: [String!]!, estimatedGas: Int!, estimatedGasPrice: BigNumber!, estimationExpiredAt: DateTime!, estimationSignature: String!, feeAmount: BigNumber, feeToken: String, nonce: Int!, refundAmount: BigNumber, refundToken: String, senderSignature: String!, to: [String!]!): GatewayBatch!
syncAccount(chainId: Int): Account!
syncAccountMember(account: String!, chainId: Int): AccountMember!
syncP2PPaymentDeposits(chainId: Int, owner: String!, tokens: [String!] = []): P2PPaymentDeposits!
topUpAccount(account: String!, chainId: Int): String
topUpPaymentDepositAccount(account: String!, chainId: Int): String
touchSession(chainId: Int): Boolean!
transferPaymentHubDeposit(chainId: Int, hub: String!, sender: String!, targetChainId: Int!, targetHub: String, targetToken: String, token: String, value: BigNumber!): PaymentHubDeposit!
updateAccountMetadata(account: String!, chainId: Int, email: String, phone: String): AccountMetadata!
updateAccountSettings(account: String!, chainId: Int, delayTransactions: Int, fcmToken: String): AccountSettings!
updateP2PPaymentChannel(blockNumber: Int!, chainId: Int, recipient: String!, sender: String!, senderSignature: String!, token: String, totalAmount: BigNumber!, uid: String!): P2PPaymentChannel!
updateP2PPaymentDeposit(chainId: Int, owner: String!, token: String, totalAmount: BigNumber): P2PPaymentDeposit
updatePaymentHub(chainId: Int, hub: String!, liquidity: BigNumber!, token: String): PaymentHub!
updatePaymentHubDeposit(blockNumber: Int!, chainId: Int, hub: String!, sender: String!, senderSignature: String, token: String, totalAmount: BigNumber): PaymentHubDeposit!
}
type NativeCurrencies {
items: [NativeCurrenciesItem!]!
}
type NativeCurrenciesItem {
chainId: Float!
decimals: Float!
logoURI: String!
name: String!
symbol: String!
}
type Network {
chainId: Int!
name: NetworkNames!
nativeCurrency: String!
}
type Nft {
amount: Int!
image: String
name: String
tokenId: String!
}
type NftCollection {
balance: Float!
contractAddress: String!
contractName: String
contractSymbol: String
items: [Nft!]!
nftVersion: String
tokenType: TokenTypes!
}
type NftList {
currentPage: Int!
items: [NftCollection!]!
nextPage: Int
total: Int
}
type Notification {
payload: JSONObject
recipient: String!
type: NotificationTypes!
}
type P2PPaymentChannel {
committedAmount: BigNumber!
createdAt: DateTime!
endangered: Boolean!
hash: String!
latestPayment: P2PPaymentChannelPayment
recipient: String!
sender: String!
state: P2PPaymentChannelStates!
token: String
totalAmount: BigNumber!
uid: String!
updatedAt: DateTime!
}
type P2PPaymentChannelPayment {
blockNumber: Int!
createdAt: DateTime!
guardianSignature: String
senderSignature: String
state: P2PPaymentChannelPaymentStates!
totalAmount: BigNumber!
updatedAt: DateTime!
value: BigNumber!
}
type P2PPaymentChannelPayments {
currentPage: Int!
items: [P2PPaymentChannelPayment!]!
nextPage: Int
total: Int
}
type P2PPaymentChannels {
currentPage: Int!
items: [P2PPaymentChannel!]!
nextPage: Int
total: Int
}
type P2PPaymentDeposit {
address: String!
availableAmount: BigNumber!
createdAt: DateTime
exitState: P2PPaymentDepositExitStates
latestWithdrawal: P2PPaymentDepositWithdrawal
lockedAmount: BigNumber!
owner: String!
pendingAmount: BigNumber!
token: String
totalAmount: BigNumber!
updatedAt: DateTime
withdrawAmount: BigNumber!
}
type P2PPaymentDepositWithdrawal {
createdAt: DateTime!
guardianSignature: String
state: P2PPaymentDepositWithdrawalStates!
totalAmount: BigNumber!
updatedAt: DateTime!
value: BigNumber!
}
type P2PPaymentDeposits {
items: [P2PPaymentDeposit!]!
}
type PaginatedTokens {
currentPage: Int!
items: [TokenListToken!]!
nextPage: Int
total: Int
}
type PaymentHub {
address: String!
createdAt: DateTime
liquidity: BigNumber!
token: String
updatedAt: DateTime
}
type PaymentHubBridge {
acceptedChainId: Int!
acceptedToken: String
createdAt: DateTime
hub: PaymentHub!
state: PaymentHubBridgeStates!
updatedAt: DateTime
}
type PaymentHubBridges {
currentPage: Int!
items: [PaymentHubBridge!]!
nextPage: Int
total: Int
}
type PaymentHubDeposit {
createdAt: DateTime
hub: PaymentHub!
owner: String!
totalAmount: BigNumber!
updatedAt: DateTime
}
type PaymentHubDeposits {
currentPage: Int!
items: [PaymentHubDeposit!]!
nextPage: Int
total: Int
}
type PaymentHubPayment {
createdAt: DateTime!
hash: String!
hub: PaymentHub!
recipient: String
sender: String
value: BigNumber!
}
type PaymentHubPayments {
currentPage: Int!
items: [PaymentHubPayment!]!
nextPage: Int
total: Int
}
type PaymentHubs {
currentPage: Int!
items: [PaymentHub!]!
nextPage: Int
total: Int
}
type ProjectPublic {
address: String!
createdAt: DateTime
endpoint: String!
id: Int!
key: String!
owner: Int!
privateKey: String!
state: ProjectStates!
updatedAt: DateTime
}
type ProjectResponse {
data: JSONObject
}
type Query {
account(account: String!, chainId: Int): Account
accountBalances(account: String!, chainId: Int, tokens: [String!] = []): AccountBalances!
accountMember(account: String!, chainId: Int, member: String!): AccountMember
accountMembers(account: String!, chainId: Int, limit: Int = 10, page: Int = 1): AccountMembers!
accountSettings(account: String!, chainId: Int): AccountSettings
accountTokenList(account: String!, chainId: Int, name: String): TokenListPublic
accountTotalBalances(account: String!, chainId: Int, currency: Currencies!): AccountTotalBalances
accounts(chainId: Int, limit: Int = 10, page: Int = 1): Accounts!
altalixTransactionURL(address: String!, buyAmount: Float, buyCurrency: String!, chainId: Int, sellAmount: Float, sellCurrency: String!): String!
blockStats(chainId: Int): BlockStats!
defaultNetwork: Network!
delayTransactionOptions: [Int!]!
ensAddressesLookup(chainId: Int, names: [String!] = []): ENSAddresses!
ensNamesLookup(addresses: [String!] = [], chainId: Int): ENSNames!
ensNode(chainId: Int, nameOrHashOrAddress: String!): ENSNode
ensNodeOwner(chainId: Int, name: String!): String
ensRootNode(chainId: Int, name: String!): ENSRootNode
ensRootNodes(chainId: Int): ENSRootNodes!
exchangeOffers(account: String!, chainId: Int, fromAmount: BigNumber!, fromTokenAddress: String!, toTokenAddress: String!): ExchangeOffers!
exchangeSupportedAssets(account: String!, chainId: Int, limit: Int = 10, page: Int = 1): PaginatedTokens!
findBridgeRoutes(amount: BigNumber!, fromAsset: String!, fromChainId: Int!, toAsset: String!, toChainId: Int!): [MovrRoute!]!
gatewayBatch(chainId: Int, hash: String!): GatewayBatch
gatewayBatches(account: String!, chainId: Int, limit: Int = 10, page: Int = 1): GatewayBatches!
gatewayGasInfo(chainId: Int): GatewayGasInfo!
gatewayPendingBatches(account: String!, chainId: Int, limit: Int = 10, page: Int = 1): GatewayBatches!
gatewaySenders(chainId: Int): GatewaySenders!
gatewaySupportedToken(chainId: Int, token: String!): GatewaySupportedToken
gatewaySupportedTokens(chainId: Int): GatewaySupportedTokens!
gatewayTransaction(chainId: Int, hash: String!): GatewayTransaction
getContractAbi(address: String!, chainId: Int): JSONObject
isTokenOnTokenList(chainId: Int, name: String, token: String!): Boolean!
nativeCurrencies: NativeCurrencies!
nftList(account: String!, chainId: Int): NftList!
p2pPaymentChannel(chainId: Int, hash: String!): P2PPaymentChannel
p2pPaymentChannelPayments(chainId: Int, channel: String!, limit: Int = 10, page: Int = 1): P2PPaymentChannelPayments!
p2pPaymentChannels(chainId: Int, limit: Int = 10, page: Int = 1, senderOrRecipient: String!, token: String, uncommittedOnly: Boolean): P2PPaymentChannels!
paymentHub(chainId: Int, hub: String!, token: String): PaymentHub
paymentHubBridge(acceptedChainId: Int!, acceptedToken: String, chainId: Int, hub: String!, token: String): PaymentHubBridge
paymentHubBridges(acceptedChainId: Int, chainId: Int, hub: String!, limit: Int = 10, page: Int = 1, token: String): PaymentHubBridges!
paymentHubDeposit(chainId: Int, hub: String!, owner: String!, token: String): PaymentHubDeposit
paymentHubDeposits(chainId: Int, hub: String!, limit: Int = 10, owner: String!, page: Int = 1, tokens: [String!] = []): PaymentHubDeposits!
paymentHubPayment(hash: String!): PaymentHubPayment
paymentHubPayments(chainId: Int, hub: String!, limit: Int = 10, owner: String!, page: Int = 1, senderOrRecipient: String, token: String): PaymentHubPayments!
paymentHubs(chainId: Int, hub: String, limit: Int = 10, page: Int = 1, token: String): PaymentHubs
project(chainId: Int, key: String!): ProjectPublic
supportedBridges: SupportedBridges!
supportedNetworks: [Network!]!
tokenList(chainId: Int, name: String): TokenListPublic
tokenLists(chainId: Int): TokenLists!
transaction(chainId: Int, hash: String!): Transaction
transactions(account: String!, chainId: Int, noCache: Boolean): Transactions!
validateENSNode(address: String!, chainId: Int, name: String!): Boolean!
wyreExchangeRates(chainId: Int): String!
wyreOrderReservation(amount: String!, chainId: Int, city: String, country: String, dest: String!, destCurrency: String!, email: String, failureRedirectUrl: String, firstName: String, lastName: String, lockFields: [String!]!, paymentMethod: String, phone: String, postalCode: String, redirectUrl: String, sourceCurrency: String!, state: String): String!
}
type SendTransaction {
data: String
to: String!
value: BigNumber
}
type Session {
account: Account!
token: String!
ttl: Int!
}
type Subscription {
newNotification(address: String!, chainId: Int): Notification
}
type SupportedBridge {
bridgeName: String!
}
type SupportedBridges {
items: [SupportedBridge!]!
}
type TokenListPublic {
chainId: Float!
createdAt: DateTime!
endpoint: String!
id: Float!
isDefault: Boolean!
name: String!
tokens: [TokenListToken!]
updatedAt: DateTime!
useInExchangeModule: Boolean!
}
type TokenListToken {
address: String!
chainId: Float!
decimals: Float
logoURI: String
name: String
symbol: String
}
type TokenLists {
items: [TokenListPublic!]!
}
type Transaction {
asset: TransactionAsset
batch: JSONObject
blockExplorerUrl: String
blockHash: String
blockNumber: Float
chainId: Int!
contractMethodCalled: String
cumulativeGasUsed: Float
direction: TransactionDirections
from: String!
gasLimit: Float
gasPrice: BigNumber
gasUsed: Float
hash: String!
id: Int
input: String
internalTransactions: JSONObject
internalTransactionsFetched: Boolean!
logs: JSONObject
logsBloom: String
logsTrimmed: Boolean
mainTransactionDataFetched: Boolean!
nonce: Float
status: TransactionStatuses
timestamp: Float
to: String!
transactionIndex: Float
value: BigNumber
}
type TransactionAsset {
category: TransactionAssetCategories
contract: String
decimal: Int
decimals: Int
from: String
name: String
symbol: String
to: String
tokenId: BigNumber
type: TokenTypes
value: BigNumber
}
type TransactionLog {
address: String!
data: String!
decoded: TransactionLogDecoded
topics: [String!]!
}
type TransactionLogDecoded {
name: String!
params: JSONObject
signature: String!
}
type Transactions {
currentPage: Int!
items: [Transaction!]!
nextPage: Int
total: Int
}
enum AccountMemberStates {
Added
Removed
}
enum AccountMemberStores {
AccountOwnerRegistry
PersonalAccountRegistry
}
enum AccountMemberTypes {
Owner
}
enum AccountProofStates {
Added
Removed
}
enum AccountStates {
Deployed
UnDeployed
}
enum AccountStores {
PersonalAccountRegistry
}
enum AccountTotalBalancesCategories {
Deposits
Investments
LiquidityPools
Rewards
}
enum AccountTypes {
Contract
Key
}
enum Currencies {
EUR
GBP
USD
}
enum ENSNodeStates {
Claimed
Reserved
}
enum ENSNodeZones {
CNS
ENS
ZNS
}
enum ENSRootNodeStates {
Released
Submitted
Verified
}
enum ExchangeProviders {
Aave
Honeyswap
OneInch
PoolTogether
Rari
Sushiswap
Synthetix
Uniswap
Paraswap
}
enum GatewayBatchStates {
Canceled
Delayed
Queued
Reverted
Sending
Sent
}
enum GatewayKnownOps {
WithdrawP2PDeposit
}
enum GatewaySenderStates {
Busy
Ready
}
enum GatewayTransactionStates {
Canceled
Canceling
Replaced
Reverted
Sending
Sent
}
enum NetworkNames {
Aurora
AuroraTest
Bsc
BscTest
Etherspot
Fantom
FantomTest
Goerli
Kovan
LocalA
LocalB
LocalH
Mainnet
Matic
Mumbai
Rinkeby
Ropsten
Sokol
Xdai
OptimismKovan
Optimism
ArbitrumTest
Arbitrum
Moonbeam
Moonbase
Celo
CeloTest
}
enum NotificationTypes {
AccountMemberCreated
AccountMemberUpdated
AccountUpdated
Blocknative
ENSNodeCreated
ENSNodeUpdated
GatewayBatchCreated
GatewayBatchUpdated
P2PPaymentChannelCreated
P2PPaymentChannelUpdated
P2PPaymentDepositCreated
P2PPaymentDepositUpdated
PaymentHubBridgeCreated
PaymentHubBridgeUpdated
PaymentHubCreated
PaymentHubDepositCreated
PaymentHubDepositUpdated
PaymentHubPaymentCreated
PaymentHubUpdated
TransactionUpdated
}
enum P2PPaymentChannelPaymentStates {
Committed
Expired
Reserved
Signed
}
enum P2PPaymentChannelStates {
Opened
Signed
}
enum P2PPaymentDepositExitStates {
Completed
Rejected
Requested
}
enum P2PPaymentDepositWithdrawalStates {
Signed
Withdrawn
}
enum PaymentHubBridgeStates {
Active
Inactive
}
enum ProjectStates {
Accepted
New
Rejected
}
enum TokenTypes {
Erc1155
Erc20
Erc721
Native
}
enum TransactionAssetCategories {
External
Internal
Token
}
enum TransactionDirections {
Receiver
Sender
}
enum TransactionStatuses {
Completed
Pending
Reverted
}
"A date-time string at UTC, such as 2019-12-03T09:54:33Z, compliant with the date-time format."
scalar DateTime
"BigNumber.js"
scalar BigNumber
"JSONObject"
scalar JSONObject