You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: schema.graphql
+15-13Lines changed: 15 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -773,8 +773,10 @@ type Indexer @entity(immutable: false) {
773
773
indexerIndexingRewards: BigInt!
774
774
"The total amount of indexing rewards given to delegators"
775
775
delegatorIndexingRewards: BigInt!
776
-
"Percentage of indexers' own rewards received in relation to its own stake. 1 (100%) means that the indexer is receiving the exact amount that is generated by his own stake"
776
+
"[Horizon only] Percentage of indexers' own rewards received in relation to its own stake. 1 (100%) means that the indexer is receiving the exact amount that is generated by his own stake"
777
777
indexerRewardsOwnGenerationRatio: BigDecimal!
778
+
"Percentage of indexers' own rewards received in relation to its own stake. 1 (100%) means that the indexer is receiving the exact amount that is generated by his own stake. This is the indexerRewardsOwnGenerationRatio before Horizon"
"Whether the indexer has been transferred from L1 to L2 partially or fully"
779
781
transferredToL2: Boolean!
780
782
"Timestamp for the FIRST L1 -> L2 Transfer"
@@ -817,18 +819,26 @@ type Indexer @entity(immutable: false) {
817
819
delegatorShares: BigInt!
818
820
"Exchange rate of of tokens received for each share"
819
821
delegationExchangeRate: BigDecimal!
820
-
"The percent of indexing rewards generated by the total stake that the Indexer keeps for itself. In parts per million"
822
+
"[Horizon only] The percent of indexing rewards generated by the total stake that the Indexer keeps for itself. In parts per million"
821
823
indexingRewardCut: Int!
822
-
"The percent of indexing rewards generated by the delegated stake that the Indexer keeps for itself"
824
+
"The percent of indexing rewards generated by the total stake that the Indexer keeps for itself. In parts per million. This is the indexingRewardCut before Horizon"
825
+
legacyIndexingRewardCut: Int!
826
+
"[Horizon only] The percent of indexing rewards generated by the delegated stake that the Indexer keeps for itself"
823
827
indexingRewardEffectiveCut: BigDecimal!
828
+
"The percent of indexing rewards generated by the delegated stake that the Indexer keeps for itself. This is the indexingRewardEffectiveCut before Horizon"
829
+
legacyIndexingRewardEffectiveCut: BigDecimal!
824
830
"The percent of reward dilution delegators experience because of overdelegation. Overdelegated stake can't be used to generate rewards but still gets accounted while distributing the generated rewards. This causes dilution of the rewards for the rest of the pool."
825
831
overDelegationDilution: BigDecimal!
826
832
"The total amount of query fees given to delegators"
827
833
delegatorQueryFees: BigInt!
828
-
"The percent of query rebate rewards the Indexer keeps for itself. In parts per million"
834
+
"[Horizon only] The percent of query rebate rewards generated by the total stake that the Indexer keeps for itself. In parts per million"
829
835
queryFeeCut: Int!
830
-
"The percent of query rebate rewards generated by the delegated stake that the Indexer keeps for itself"
836
+
"The percent of query rebate rewards generated by the total stake that the Indexer keeps for itself. In parts per million. This is the queryFeeCut before Horizon"
837
+
legacyQueryFeeCut: Int!
838
+
"[Horizon only] The percent of query rebate rewards generated by the delegated stake that the Indexer keeps for itself"
831
839
queryFeeEffectiveCut: BigDecimal!
840
+
"The percent of query rebate rewards generated by the delegated stake that the Indexer keeps for itself. This is the queryFeeEffectiveCut before Horizon"
841
+
legacyQueryFeeEffectiveCut: BigDecimal!
832
842
"Amount of blocks a delegator chooses for the waiting period for changing their params"
833
843
delegatorParameterCooldown: Int!
834
844
"Block number for the last time the delegator updated their parameters"
@@ -838,14 +848,6 @@ type Indexer @entity(immutable: false) {
0 commit comments