@berachain/graphql 0.4.1 → 0.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -138,18 +138,21 @@ ${lt}`,Bt=_.gql`
|
|
|
138
138
|
query GetValidatorAnalytics($pubKey: Bytes!, $timestamp: Timestamp!) {
|
|
139
139
|
boostByValidators(
|
|
140
140
|
interval: day
|
|
141
|
+
first: 1000
|
|
141
142
|
where: {validator_: {publicKey: $pubKey}, timestamp_gte: $timestamp}
|
|
142
143
|
) {
|
|
143
144
|
...BoostByValidator
|
|
144
145
|
}
|
|
145
146
|
blockRewardStatsByValidators(
|
|
146
147
|
interval: day
|
|
148
|
+
first: 1000
|
|
147
149
|
where: {validator_: {publicKey: $pubKey}, timestamp_gte: $timestamp}
|
|
148
150
|
) {
|
|
149
151
|
...BlockRewardStatsByValidator
|
|
150
152
|
}
|
|
151
153
|
incentiveDistributionByValidators(
|
|
152
154
|
interval: day
|
|
155
|
+
first: 1000
|
|
153
156
|
where: {validator_: {publicKey: $pubKey}, timestamp_gte: $timestamp}
|
|
154
157
|
) {
|
|
155
158
|
token {
|
|
@@ -138,18 +138,21 @@ ${ot}`,bt=_`
|
|
|
138
138
|
query GetValidatorAnalytics($pubKey: Bytes!, $timestamp: Timestamp!) {
|
|
139
139
|
boostByValidators(
|
|
140
140
|
interval: day
|
|
141
|
+
first: 1000
|
|
141
142
|
where: {validator_: {publicKey: $pubKey}, timestamp_gte: $timestamp}
|
|
142
143
|
) {
|
|
143
144
|
...BoostByValidator
|
|
144
145
|
}
|
|
145
146
|
blockRewardStatsByValidators(
|
|
146
147
|
interval: day
|
|
148
|
+
first: 1000
|
|
147
149
|
where: {validator_: {publicKey: $pubKey}, timestamp_gte: $timestamp}
|
|
148
150
|
) {
|
|
149
151
|
...BlockRewardStatsByValidator
|
|
150
152
|
}
|
|
151
153
|
incentiveDistributionByValidators(
|
|
152
154
|
interval: day
|
|
155
|
+
first: 1000
|
|
153
156
|
where: {validator_: {publicKey: $pubKey}, timestamp_gte: $timestamp}
|
|
154
157
|
) {
|
|
155
158
|
token {
|