File tree Expand file tree Collapse file tree 1 file changed +7
-8
lines changed Expand file tree Collapse file tree 1 file changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -57,16 +57,17 @@ module.exports = class Protocol {
57
57
'arbitrum-rinkeby' ,
58
58
'optimism' ,
59
59
'optimism-kovan' ,
60
+ 'aurora' ,
61
+ 'aurora-testnet' ,
60
62
] ,
61
- near : [
62
- 'near-mainnet' ,
63
- ] ,
63
+ near : [ 'near-mainnet' ] ,
64
64
} )
65
65
}
66
66
67
67
normalizeName ( name ) {
68
- return Protocol . availableProtocols ( )
69
- . findKey ( possibleNames => possibleNames . includes ( name ) )
68
+ return Protocol . availableProtocols ( ) . findKey ( possibleNames =>
69
+ possibleNames . includes ( name ) ,
70
+ )
70
71
}
71
72
72
73
displayName ( ) {
@@ -142,9 +143,7 @@ module.exports = class Protocol {
142
143
case 'near' :
143
144
return new NearSubgraph ( optionsWithProtocol )
144
145
default :
145
- throw new Error (
146
- `Data sources with kind '${ this . name } ' are not supported yet` ,
147
- )
146
+ throw new Error ( `Data sources with kind '${ this . name } ' are not supported yet` )
148
147
}
149
148
}
150
149
You can’t perform that action at this time.
0 commit comments