Uniswap V3 Trader
Curated by
Galxe
ID Type
EVM ADDRESS
Cred Type
SUBGRAPH
Last Update Time
12/21/2023, 18:49:05
Query
query user($address: String){
  swaps(where: {origin:$address}) 
  {
    id
  }
}
Expression
function(data) {
  if (data == null || data.swaps == null) {
    return 0
  } else if (Array.isArray(data.swaps) && data.swaps.length == 0) {
    return 0
  }
  return 1
}