-
Notifications
You must be signed in to change notification settings - Fork 2
/
schema.graphql
1032 lines (718 loc) · 20.9 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
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
type ERC20 @entity {
id: ID!
symbol: String!
name: String!
decimals: Int!
}
type OptionsFactoryCounter @entity {
id: ID!
optionsFactoryCount: BigInt!
}
type OptionsFactory @entity {
id: ID!
optionsExchangeAddress: Bytes!
oracleAddress: Bytes!
owner: Bytes!
actions: [FactoryAction!] @derivedFrom(field: "factory")
" Total number of actions (all types)"
actionCount: BigInt!
" Total number of burn actions "
optionsContractCreatedCount: BigInt!
" Total number of asset added actions "
assetAddedCount: BigInt!
" Total number of asset changed actions "
assetChangedCount: BigInt!
" Total number of asset deleted actions "
assetDeletedCount: BigInt!
" Total number of factory ownership transferred actions "
factoryOwnershipTransferredCount: BigInt!
}
#
# Factory Action
#
interface FactoryAction {
" Equals to: <actionType>-<transactionHash>-<logIndex> "
id: ID!
" OptionsFactory the action is related to"
factory: OptionsFactory
" Block number "
block: BigInt!
" Transaction hash (tx) "
transactionHash: Bytes!
" Timestamp as seconds (time) "
timestamp: BigInt!
}
type OptionsContractCreatedAction implements FactoryAction @entity {
" Equals to: <OPTIONS-CREATED>-<transactionHash>-<logIndex> "
id: ID!
" OptionsFactory the action is related to"
factory: OptionsFactory
" OptionsContract address "
address: Bytes!
" Block number "
block: BigInt!
" Transaction hash (tx) "
transactionHash: Bytes!
" Action timestamp as seconds (time) "
timestamp: BigInt!
}
type AssetAddedAction implements FactoryAction @entity {
" Equals to: <ASSET-ADDED>-<transactionHash>-<logIndex> "
id: ID!
" OptionsFactory the action is related to"
factory: OptionsFactory
" Asset name "
asset: String!
" Asset address "
address: Bytes!
" Block number "
block: BigInt!
" Transaction hash (tx) "
transactionHash: Bytes!
" Action timestamp as seconds (time) "
timestamp: BigInt!
}
type AssetChangedAction implements FactoryAction @entity {
" Equals to: <ASSET-CHANGED>-<transactionHash>-<logIndex> "
id: ID!
" OptionsFactory the action is related to"
factory: OptionsFactory
" Asset name "
asset: String!
" Previous Asset address "
oldAddress: Bytes!
" New Asset address "
newAddress: Bytes!
" Block number "
block: BigInt!
" Transaction hash (tx) "
transactionHash: Bytes!
" Action timestamp as seconds (time) "
timestamp: BigInt!
}
type AssetDeletedAction implements FactoryAction @entity {
" Equals to: <ASSET-DELETED>-<transactionHash>-<logIndex> "
id: ID!
" OptionsFactory the action is related to"
factory: OptionsFactory
" Asset name "
asset: String!
" Asset address "
address: Bytes!
" Block number "
block: BigInt!
" Transaction hash (tx) "
transactionHash: Bytes!
" Action timestamp as seconds (time) "
timestamp: BigInt!
}
type FactoryOwnershipTransferredAction implements FactoryAction @entity {
" Equals to: <OWNERSHIP-TRANFERRED>-<transactionHash>-<logIndex> "
id: ID!
" OptionsFactory the action is related to"
factory: OptionsFactory
" Previous owner address "
oldOwner: Bytes!
" New owner number "
newOwner: Bytes!
" Block number "
block: BigInt!
" Transaction hash (tx) "
transactionHash: Bytes!
" Action timestamp as seconds (time) "
timestamp: BigInt!
}
type SupportedAsset @entity {
" Equals to: Asset Name "
id: ID!
" Asset name"
asset: String!
" Asset Address "
address: Bytes!
}
type OptionsContract @entity {
" Equals to: Contract address "
id: ID!
" OptionsContract address"
address: Bytes!
" Contract owner address"
owner: Bytes!
optionsExchangeAddress: Bytes!
oracleAddress: Bytes!
" The incentive paid to liquidator - Value "
liquidationIncentiveValue: BigInt!
" The incentive paid to liquidator - Exponent "
liquidationIncentiveExp: BigInt!
" The fees paid to our protocol every time a execution happens - Value "
transactionFeeValue: BigInt!
" The fees paid to our protocol every time a execution happens - Exponent "
transactionFeeExp: BigInt!
" Max amount that a Vault can be liquidated by - Value "
liquidationFactorValue: BigInt!
" Max amount that a Vault can be liquidated by - Exponent "
liquidationFactorExp: BigInt!
" The minimum ratio of a vault's collateral to insurance promised - Value "
minCollateralizationRatioValue: BigInt!
" The minimum ratio of a vault's collateral to insurance promised - Exponent "
minCollateralizationRatioExp: BigInt!
" The amount of underlying that 1 oToken protects - Value "
oTokenExchangeRateValue: BigInt!
" The amount of underlying that 1 oToken protects - Exponent "
oTokenExchangeRateExp: BigInt!
" The amount of insurance promised per oToken - Value "
strikePriceValue: BigInt!
" The amount of insurance promised per oToken - Exponent "
strikePriceExp: BigInt!
" The time of expiry of the options contract "
expiry: BigInt!
" The collateral asset "
collateral: Bytes!
" The asset that is being protected "
underlying: Bytes!
" The asset in which the insurance is calculated "
strike: Bytes!
" The total collateral added to this OptionsContract "
totalCollateral: BigInt!
" The total collateral liquidated from this OptionsContract "
totalLiquidated: BigInt!
" The total collateral withdrawn from the Options Contract every time the exercise function is called "
totalExercised: BigInt!
" The total amount of underlying that is added to the contract during the exercise window "
totalUnderlying: BigInt!
vaults: [Vault!] @derivedFrom(field: "optionsContract")
" Total number of actions (all types)"
actionCount: BigInt!
" Total number of vaultOpened actions "
vaultOpenedCount: BigInt!
" Total number of transferFee actions "
transferFeeCount: BigInt!
" Total number of optionsContractOwnershipTransferred actions "
optionsContractOwnershipTransferredCount: BigInt!
" Total number of updateParameters actions "
updateParametersCount: BigInt!
actions: [OptionsContractAction!] @derivedFrom(field: "optionsContract")
" Block number when the contract was created "
block: BigInt!
" Transaction hash (tx) where the contract was created "
transactionHash: Bytes!
" Timestamp as seconds (time) when the contract was created "
timestamp: BigInt!
# ERC20
" Total number of events (all types)"
eventCount: BigInt!
" Total number of burn events "
burnEventCount: BigInt!
" Total number of mint events "
mintEventCount: BigInt!
" Total number of transfer events "
transferEventCount: BigInt!
" Total token supply "
totalSupply: BigInt!
" Total token burned "
totalBurned: BigInt!
" Total token minted "
totalMinted: BigInt!
" Total token transferred "
totalTransferred: BigInt!
" List of token events "
events: [TokenEvent!]! @derivedFrom(field: "token")
holdersBalances: [AccountBalance!] @derivedFrom(field: "token")
buyActions: [BuyOTokensAction!] @derivedFrom(field: "token")
collateralERC20: ERC20
underlyingERC20: ERC20
strikeERC20: ERC20
}
#
# OptionsContract Actions
#
interface OptionsContractAction {
" Equals to: <actionType>-<transactionHash>-<logIndex> "
id: ID!
" OptionsContract the action is related to"
optionsContract: OptionsContract
" Block number "
block: BigInt!
" Transaction hash (tx) "
transactionHash: Bytes!
" Timestamp as seconds (time) "
timestamp: BigInt!
}
type VaultOpenedAction implements OptionsContractAction @entity {
" Equals to: <VAULT-OPENED>-<transactionHash>-<logIndex> "
id: ID!
" OptionsContract the action is related to"
optionsContract: OptionsContract
" Vault owner address "
owner: Bytes!
" Block number "
block: BigInt!
" Transaction hash (tx) "
transactionHash: Bytes!
" Action timestamp as seconds (time) "
timestamp: BigInt!
}
type TransferFeeAction implements OptionsContractAction @entity {
" Equals to: <TRANSFER-FEE>-<transactionHash>-<logIndex> "
id: ID!
" OptionsContract the action is related to"
optionsContract: OptionsContract
" To whom the fee is transfered "
to: Bytes!
" Fees amount "
fees: BigInt!
" Block number "
block: BigInt!
" Transaction hash (tx) "
transactionHash: Bytes!
" Action timestamp as seconds (time) "
timestamp: BigInt!
}
type OptionsContractOwnershipTransferredAction implements OptionsContractAction @entity {
" Equals to: <OWNERSHIP-TRANFERRED>-<transactionHash>-<logIndex> "
id: ID!
" OptionsContract the action is related to"
optionsContract: OptionsContract
" Previous owner address "
oldOwner: Bytes!
" New owner number "
newOwner: Bytes!
" Block number "
block: BigInt!
" Transaction hash (tx) "
transactionHash: Bytes!
" Action timestamp as seconds (time) "
timestamp: BigInt!
}
type UpdateParametersAction implements OptionsContractAction @entity {
" Equals to: <UPDATE-PARAMETERS>-<transactionHash>-<logIndex> "
id: ID!
" OptionsContract the action is related to"
optionsContract: OptionsContract
" The incentive paid to liquidator "
liquidationIncentive: BigInt!
" Max amount that a Vault can be liquidated by "
liquidationFactor: BigInt!
" The fees paid to our protocol every time a execution "
transactionFee: BigInt!
" The minimum ratio of a Vault's collateral to insurance promised "
minCollateralizationRatio: BigInt!
" Onwer address who performed the action "
owner: Bytes!
" Block number "
block: BigInt!
" Transaction hash (tx) "
transactionHash: Bytes!
" Action timestamp as seconds (time) "
timestamp: BigInt!
}
type Vault @entity {
" Equals to: <OptionsContract address>-<owner address> "
id: ID!
" Vault Owner"
owner: Bytes!
" OptionsContract the Vault is related to"
optionsContract: OptionsContract!
" Amount of oTokens issued "
oTokensIssued: BigInt!
" Amount of underlying this vault has been paid "
underlying: BigInt!
" Collateral added by this vault "
collateral: BigInt!
actions: [VaultAction!] @derivedFrom(field: "vault")
" Total number of actions (all types)"
actionCount: BigInt!
" Total number of exercise actions "
exerciseCount: BigInt!
" Total number of ethCollateralAddedAction actions "
ethCollateralAddedCount: BigInt!
" Total number of erc20CollateralAdded actions "
erc20CollateralAddedCount: BigInt!
" Total number of removeCollateral actions "
removeCollateralCount: BigInt!
" Total number of removeUnderlying actions "
removeUnderlyingCount: BigInt!
" Total number of issuedOToken actions "
issuedOTokenCount: BigInt!
" Total number of liquidate actions "
liquidateCount: BigInt!
" Total number of redeemVaultBalanceAction actions "
redeemVaultBalanceActionCount: BigInt!
" Total number of burnOToken actions "
burnOTokenCount: BigInt!
}
#
# Vault Actions
#
interface VaultAction {
" Equals to: <actionType>-<transactionHash>-<logIndex> "
id: ID!
" Vault the action is related to"
vault: Vault
" Block number "
block: BigInt!
" Transaction hash (tx) "
transactionHash: Bytes!
" Timestamp as seconds (time) "
timestamp: BigInt!
}
type ExerciseAction implements VaultAction @entity {
" Equals to: <EXERCISE>-<transactionHash>-<logIndex> "
id: ID!
" OptionsContract "
optionsContract: OptionsContract!
" The asset that is being protected the OptionContract "
underlying: Bytes!
" Vault the action is related to"
vault: Vault
" Exerciser address "
exerciser: Bytes!
" Vault exercised from owner address "
vaultExercisedFrom: Bytes!
" The number of oTokens being exercised "
oTokensToExercise: BigInt!
" Amount of underlying paid by the exerciser "
amtUnderlyingToPay: BigInt!
" Amount of collateral paid by to exerciser "
amtCollateralToPay: BigInt!
" Collateral token price in ETH at the time of this exercise "
collateralPrice: BigInt!
" USDC price in ETH at the time of this exercise "
usdcPrice: BigInt!
" Block number "
block: BigInt!
" Transaction hash (tx) "
transactionHash: Bytes!
" Action timestamp as seconds (time) "
timestamp: BigInt!
}
type ETHCollateralAddedAction implements VaultAction @entity {
" Equals to: <ETH-COLLATERAL-ADDED>-<transactionHash>-<logIndex> "
id: ID!
" Vault the action is related to"
vault: Vault
" Amount of collateral added "
amount: BigInt!
" Address of payer "
payer: Bytes!
" Block number "
block: BigInt!
" Transaction hash (tx) "
transactionHash: Bytes!
" Action timestamp as seconds (time) "
timestamp: BigInt!
}
type ERC20CollateralAddedAction implements VaultAction @entity {
" Equals to: <ERC20-COLLATERAL-ADDED>-<transactionHash>-<logIndex> "
id: ID!
" Vault the action is related to"
vault: Vault
" Amount of collateral added "
amount: BigInt!
" Address of payer "
payer: Bytes!
" Block number "
block: BigInt!
" Transaction hash (tx) "
transactionHash: Bytes!
" Action timestamp as seconds (time) "
timestamp: BigInt!
}
type RemoveCollateralAction implements VaultAction @entity {
" Equals to: <REMOVE-COLLATERAL>-<transactionHash>-<logIndex> "
id: ID!
" Vault the action is related to"
vault: Vault
" Amount of collateral removed "
amount: BigInt!
" Address of owner removing the collateral "
owner: Bytes!
" Block number "
block: BigInt!
" Transaction hash (tx) "
transactionHash: Bytes!
" Action timestamp as seconds (time) "
timestamp: BigInt!
}
type RemoveUnderlyingAction implements VaultAction @entity {
" Equals to: <REMOVE-UNDERLYING>-<transactionHash>-<logIndex> "
id: ID!
" Vault the action is related to"
vault: Vault
" Amount of underlying removed "
amount: BigInt!
" Address of owner removing the underlying "
owner: Bytes!
" Block number "
block: BigInt!
" Transaction hash (tx) "
transactionHash: Bytes!
" Action timestamp as seconds (time) "
timestamp: BigInt!
}
type IssuedOTokenAction implements VaultAction @entity {
" Equals to: <ISSUED-OTOKENS>-<transactionHash>-<logIndex> "
id: ID!
" Vault the action is related to"
vault: Vault
" Amount of oTokens issued "
amount: BigInt!
" Address who receive the oTokens "
issuedTo: Bytes!
" Block number "
block: BigInt!
" Transaction hash (tx) "
transactionHash: Bytes!
" Action timestamp as seconds (time) "
timestamp: BigInt!
}
type LiquidateAction implements VaultAction @entity {
" Equals to: <LIQUIDATE>-<transactionHash>-<logIndex> "
id: ID!
" Vault the action is related to"
vault: Vault
" The number of oTokens being taken out of circulation "
oTokensToLiquidate: BigInt!
" Amount of collateral paid to liquidator "
collateralToPay: BigInt!
" Address who liquidates the vault "
liquidator: Bytes!
" Collateral token price in ETH at the time of this liquidation "
collateralPrice: BigInt!
" USDC price in ETH at the time of this liquidation "
usdcPrice: BigInt!
" Block number "
block: BigInt!
" Transaction hash (tx) "
transactionHash: Bytes!
" Action timestamp as seconds (time) "
timestamp: BigInt!
}
type RedeemVaultBalanceAction implements VaultAction @entity {
" Equals to: <REDEEM-VAULT-BALANCE>-<transactionHash>-<logIndex> "
id: ID!
" Vault the action is related to"
vault: Vault
" Amount of collateral redeemed "
collateralRedeemed: BigInt!
" Amount of underlying redeemed "
underlyingRedeemed: BigInt!
" Address who claims the vault "
redeemedBy: Bytes!
" Block number "
block: BigInt!
" Transaction hash (tx) "
transactionHash: Bytes!
" Action timestamp as seconds (time) "
timestamp: BigInt!
}
type BurnOTokenAction implements VaultAction @entity {
" Equals to: <BURN-OTOKENS>-<transactionHash>-<logIndex> "
id: ID!
" Vault the action is related to"
vault: Vault
" Amount of oTokens burned "
burned: BigInt!
" Block number "
block: BigInt!
" Transaction hash (tx) "
transactionHash: Bytes!
" Action timestamp as seconds (time) "
timestamp: BigInt!
}
#
# OptionsExchange actions
#
interface OptionsExchangeAction {
" Equals to: <actionType>-<transactionHash>-<logIndex> "
id: ID!
" Block number "
block: BigInt!
" Transaction hash (tx) "
transactionHash: Bytes!
" Timestamp as seconds (time) "
timestamp: BigInt!
}
type SellOTokensAction implements OptionsExchangeAction @entity {
" Equals to: <SELL-OTOKENS>-<transactionHash>-<logIndex> "
id: ID!
" Seller address "
seller: Bytes!
" Seller address, for when the sell is through the oToken wrapper functions "
transactionFrom: Bytes!
" The address to send the payout tokens back to "
receiver: Bytes!
" oToken to sell "
token: OptionsContract!
" The address of the token to receive the premiums in "
payoutTokenAddress: Bytes!
" The number of oTokens to sell "
oTokensToSell: BigInt!
" Premium received, in payoutTokenAddress token "
payoutTokensReceived: BigInt
" Payout token price in ETH at the time of this purchase "
payoutTokenPrice: BigInt!
" USDC price in ETH at the time of this purchase "
usdcPrice: BigInt!
" Block number "
block: BigInt!
" Transaction hash (tx) "
transactionHash: Bytes!
" Action timestamp as seconds (time) "
timestamp: BigInt!
}
type BuyOTokensAction implements OptionsExchangeAction @entity {
" Equals to: <BUY-OTOKENS>-<transactionHash>-<logIndex> "
id: ID!
" Buyer address "
buyer: Bytes!
" The address to send the oTokens back to "
receiver: Bytes!
" oToken to buy "
token: OptionsContract!
" oToken underlying address "
tokenUnderlyingAddress: Bytes!
" The address of the token to pay the premiums in "
paymentTokenAddress: Bytes!
" The number of oTokens to buy "
oTokensToBuy: BigInt!
" When the underlying being insured is a cToken this is its exchangeRate at the time of this purchase "
exchangeRateCurrent: BigInt
" Premium paid, in paymentTokenAddress token "
premiumPaid: BigInt!
" Payment price in ETH at the time of this purchase "
paymentTokenPrice: BigInt!
" USDC price in ETH at the time of this purchase "
usdcPrice: BigInt!
" When the underlying being insured is a cToken this is its Underlying price in ETH at the time of this purchase "
cTokenUnderlyingPrice: BigInt
" Block number "
block: BigInt!
" Transaction hash (tx) "
transactionHash: Bytes!
" Action timestamp as seconds (time) "
timestamp: BigInt!
}
#
# Token events
#
interface TokenEvent {
id: ID!
token: OptionsContract!
amount: BigInt!
sender: Bytes!
block: BigInt!
timestamp: BigInt!
transaction: Bytes!
}
type BurnEvent implements TokenEvent @entity {
id: ID!
" Token address "
token: OptionsContract!
" Quantity of tokens burned "
amount: BigInt!
" Transaction sender address "
sender: Bytes!
" Address of burner account "
burner: Bytes!
" Block number "
block: BigInt!
" Event timestamp "
timestamp: BigInt!
" Transaction hash "
transaction: Bytes!
}
type MintEvent implements TokenEvent @entity {
id: ID!
" Token address "
token: OptionsContract!
" Quantity of tokens minted "
amount: BigInt!
" Transaction sender address "
sender: Bytes!
" Address of minter account "
minter: Bytes!
" Address of destination account "
destination: Bytes!
" Block number "
block: BigInt!
" Event timestamp "
timestamp: BigInt!
" Transaction hash "
transaction: Bytes!
}
type TransferEvent implements TokenEvent @entity {
id: ID!
" Token address "
token: OptionsContract!
" Quantity of tokens transferred "
amount: BigInt!
" Transaction sender address "
sender: Bytes!
" Address of source account "
source: Bytes!
" Address of destination account "
destination: Bytes!
" Block number "
block: BigInt!
" Event timestamp "
timestamp: BigInt!
" Transaction hash "
transaction: Bytes!
}
#
# Provides information about an Ethereum account
#
type Account @entity {
" Equals to: <accountAddress>"
id: ID!
" Account address "
address: Bytes!
" Token balances that this account holds "
balances: [AccountBalance!]! @derivedFrom(field: "account")
}
#
# Current token balance of a particular Ethereum account
#
type AccountBalance @entity {
" Equals to: <accountAddress>-<tokenAddress>"
id: ID!
" Account address "
account: Account!
" Token address "
token: OptionsContract!
" Current account balance "
amount: BigInt!
" Block number in which the balance was last modified "
block: BigInt
" Last modified timestamp in seconds "
modified: BigInt
" Hash of the last transaction that modified the balance "
transaction: Bytes
}
#
# Approvals
#
enum AllowedToken {