Proof of Humanity - Registered profile

Curated by

Kleros

ID Type

EVM ADDRESS

Cred Type

GRAPHQL

Last Update Time

07/08/2023, 14:10:13

Query

query info($address: String!) {

  submission(id: $address){
    id
    registered
    status
  }
  
}

Expression

function(data){
 if(data != null && data.submission != null && data.submission.registered==true) {
   return 1
 }
 return 0
}