@@ -78,7 +78,6 @@ const INDEXING_RULE_QUERY = gql`
78
78
decisionBasis
79
79
requireSupported
80
80
safety
81
- protocolNetwork
82
81
}
83
82
}
84
83
`
@@ -101,7 +100,6 @@ const INDEXING_RULES_QUERY = gql`
101
100
decisionBasis
102
101
requireSupported
103
102
safety
104
- protocolNetwork
105
103
}
106
104
}
107
105
`
@@ -170,7 +168,6 @@ describe('Indexing rules', () => {
170
168
decisionBasis : IndexingDecisionBasis . RULES ,
171
169
requireSupported : true ,
172
170
safety : true ,
173
- protocolNetwork : 'eip155:421614' ,
174
171
}
175
172
176
173
// Update the rule and ensure the right data is returned
@@ -207,12 +204,10 @@ describe('Indexing rules', () => {
207
204
decisionBasis : IndexingDecisionBasis . RULES ,
208
205
requireSupported : true ,
209
206
safety : true ,
210
- protocolNetwork : 'arbitrum-sepolia' ,
211
207
}
212
208
213
209
const expected = {
214
210
...input ,
215
- protocolNetwork : 'eip155:421614' ,
216
211
}
217
212
218
213
// Update the rule
@@ -254,7 +249,6 @@ describe('Indexing rules', () => {
254
249
decisionBasis : IndexingDecisionBasis . RULES ,
255
250
requireSupported : true ,
256
251
safety : true ,
257
- protocolNetwork : 'eip155:421614' ,
258
252
}
259
253
260
254
// Write the original
@@ -320,7 +314,6 @@ describe('Indexing rules', () => {
320
314
decisionBasis : IndexingDecisionBasis . OFFCHAIN ,
321
315
requireSupported : true ,
322
316
safety : true ,
323
- protocolNetwork : 'eip155:421614' ,
324
317
}
325
318
326
319
// Write the original
@@ -438,7 +431,6 @@ describe('Indexing rules', () => {
438
431
decisionBasis : IndexingDecisionBasis . NEVER ,
439
432
requireSupported : true ,
440
433
safety : true ,
441
- protocolNetwork : 'eip155:421614' ,
442
434
}
443
435
444
436
const deploymentExpected = {
@@ -454,7 +446,6 @@ describe('Indexing rules', () => {
454
446
decisionBasis : IndexingDecisionBasis . OFFCHAIN ,
455
447
requireSupported : false ,
456
448
safety : true ,
457
- protocolNetwork : 'eip155:421614' ,
458
449
}
459
450
deploymentExpected . identifier = 'QmZSJPm74tvhgr8uzhqvyQm2J6YSbUEj4nF6j8WxxUQLsC'
460
451
@@ -529,7 +520,6 @@ describe('Indexing rules', () => {
529
520
decisionBasis : IndexingDecisionBasis . RULES ,
530
521
requireSupported : true ,
531
522
safety : true ,
532
- protocolNetwork : 'eip155:421614' ,
533
523
}
534
524
535
525
// Write the rule
@@ -593,7 +583,6 @@ describe('Indexing rules', () => {
593
583
minAverageQueryFees : null ,
594
584
custom : null ,
595
585
decisionBasis : IndexingDecisionBasis . RULES ,
596
- protocolNetwork : 'eip155:421614' ,
597
586
}
598
587
599
588
// Write the rule
@@ -676,7 +665,6 @@ describe('Indexing rules', () => {
676
665
decisionBasis : IndexingDecisionBasis . NEVER ,
677
666
requireSupported : true ,
678
667
safety : false ,
679
- protocolNetwork : 'eip155:421614' ,
680
668
}
681
669
682
670
const deploymentExpected = {
@@ -692,7 +680,6 @@ describe('Indexing rules', () => {
692
680
decisionBasis : IndexingDecisionBasis . OFFCHAIN ,
693
681
requireSupported : false ,
694
682
safety : true ,
695
- protocolNetwork : 'eip155:421614' ,
696
683
}
697
684
698
685
const deploymentMergedExpected = {
@@ -708,7 +695,6 @@ describe('Indexing rules', () => {
708
695
decisionBasis : IndexingDecisionBasis . OFFCHAIN ,
709
696
requireSupported : false ,
710
697
safety : true ,
711
- protocolNetwork : 'eip155:421614' ,
712
698
}
713
699
714
700
// Write the orginals
0 commit comments