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
+9-11Lines changed: 9 additions & 11 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"
@@ -817,8 +819,10 @@ type Indexer @entity(immutable: false) {
817
819
indexingRewardCut: Int!
818
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"
819
821
legacyIndexingRewardCut: Int!
820
-
"The percent of indexing rewards generated by the delegated stake that the Indexer keeps for itself"
822
+
"[Horizon only] The percent of indexing rewards generated by the delegated stake that the Indexer keeps for itself"
821
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!
822
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."
823
827
overDelegationDilution: BigDecimal!
824
828
"The total amount of query fees given to delegators"
@@ -827,8 +831,10 @@ type Indexer @entity(immutable: false) {
827
831
queryFeeCut: Int!
828
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"
829
833
legacyQueryFeeCut: Int!
830
-
"The percent of query rebate rewards generated by the delegated stake that the Indexer keeps for itself"
834
+
"[Horizon only] The percent of query rebate rewards generated by the delegated stake that the Indexer keeps for itself"
831
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!
832
838
"Amount of blocks a delegator chooses for the waiting period for changing their params"
833
839
delegatorParameterCooldown: Int!
834
840
"Block number for the last time the delegator updated their parameters"
@@ -838,14 +844,6 @@ type Indexer @entity(immutable: false) {
0 commit comments