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
@@ -769,8 +769,10 @@ type Indexer @entity(immutable: false) {
769
769
indexerIndexingRewards: BigInt!
770
770
"The total amount of indexing rewards given to delegators"
771
771
delegatorIndexingRewards: BigInt!
772
-
"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"
772
+
"[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"
773
773
indexerRewardsOwnGenerationRatio: BigDecimal!
774
+
"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"
775
777
transferredToL2: Boolean!
776
778
"Timestamp for the FIRST L1 -> L2 Transfer"
@@ -813,18 +815,26 @@ type Indexer @entity(immutable: false) {
813
815
delegatorShares: BigInt!
814
816
"Exchange rate of of tokens received for each share"
815
817
delegationExchangeRate: BigDecimal!
816
-
"The percent of indexing rewards generated by the total stake that the Indexer keeps for itself. In parts per million"
818
+
"[Horizon only] The percent of indexing rewards generated by the total stake that the Indexer keeps for itself. In parts per million"
817
819
indexingRewardCut: Int!
818
-
"The percent of indexing rewards generated by the delegated stake that the Indexer keeps for itself"
820
+
"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"
821
+
legacyIndexingRewardCut: Int!
822
+
"[Horizon only] The percent of indexing rewards generated by the delegated stake that the Indexer keeps for itself"
819
823
indexingRewardEffectiveCut: BigDecimal!
824
+
"The percent of indexing rewards generated by the delegated stake that the Indexer keeps for itself. This is the indexingRewardEffectiveCut before Horizon"
825
+
legacyIndexingRewardEffectiveCut: BigDecimal!
820
826
"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."
821
827
overDelegationDilution: BigDecimal!
822
828
"The total amount of query fees given to delegators"
823
829
delegatorQueryFees: BigInt!
824
-
"The percent of query rebate rewards the Indexer keeps for itself. In parts per million"
830
+
"[Horizon only] The percent of query rebate rewards generated by the total stake that the Indexer keeps for itself. In parts per million"
825
831
queryFeeCut: Int!
826
-
"The percent of query rebate rewards generated by the delegated stake that the Indexer keeps for itself"
832
+
"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"
833
+
legacyQueryFeeCut: Int!
834
+
"[Horizon only] The percent of query rebate rewards generated by the delegated stake that the Indexer keeps for itself"
827
835
queryFeeEffectiveCut: BigDecimal!
836
+
"The percent of query rebate rewards generated by the delegated stake that the Indexer keeps for itself. This is the queryFeeEffectiveCut before Horizon"
837
+
legacyQueryFeeEffectiveCut: BigDecimal!
828
838
"Amount of blocks a delegator chooses for the waiting period for changing their params"
829
839
delegatorParameterCooldown: Int!
830
840
"Block number for the last time the delegator updated their parameters"
@@ -834,14 +844,6 @@ type Indexer @entity(immutable: false) {
0 commit comments