X account binding on Galxe will be unavailable until May 19. If you have already bound your X account, you are advised not to unbind it at this time.

Sybil Prevention Credential powered by Nomis.cc

Curated by

Nomis Protocol

ID Type

EVM ADDRESS

Cred Type

GRAPHQL

Last Update Time

05/09/2025, 19:28:42

Query

query info($address: Bytes!) {
  changedScores(
    where: {owner: $address, calculationModel: 11, chainId: 9999999999999}, 
    first: 1, 
    orderBy: blockNumber, 
    orderDirection: desc
  ) {
    id
    tokenId
    owner
    score
    calculationModel
    blockNumber
    blockTimestamp
    transactionHash
  }
}

Expression

function(resp) {
  if (resp != null 
    && (resp.changedScores != null 
    && resp.changedScores.length > 0 
    && resp.changedScores[0].score >= 4000)) 
  {
     return 1
  }
  return 0
}