Ethereal

Curated by

Exa Labs

ID Type

EVM ADDRESS

Cred Type

SUBGRAPH

Last Update Time

08/01/2023, 24:01:03

Query

query info($address: String!) {
    addrStats(address:$address) {
      activities {
          net_key,
          mints,
      }
  }
}

Expression

(data) => {
  return data.addrStats.activities.find(s=>s.net_key==1)?.mints||0 > 0 ? 1 : 0;
}