Closed 0xdavinchee closed 8 months ago
how is this one doing
the fix did not work, will be investigated.
@elvijsTDL please write a concrete bug report on the issue related to this.
The subgraph shows some of the tokens as unlisted even if they should be e.g. ETHx , fUSDCx
If you query the listed tokens you can see that they are missing:
tokens(where: {isListed: true}) {
isListed
isSuperToken
isNativeAssetSuperToken
name
symbol
}
}
At some point it has flipped from listed to unlisted as it used to work fine
This might be related to GoodDollar G$ getting unlisted from Celo too
Link: https://xkcd.com/1843
we move this:
resolverEntry.isToken = Token.load(target.toHex()) != null;
out of theresolverEntry == null
and only update it if thetarget
is not null.We need to do this because of sepolia where the token entity is created after the resolver set event is emitted (triggered), thus we want to be able to call set again and fix this. Edited: This makes ETHx not shown as listed in sepolia subgraph.