Connect your wallet and get an NFT from MotoDEX
Curated by
Aurora
Call-to-Action
https://openbisea.io/motodexID Type
EVM ADDRESS
Cred Type
GRAPHQL
Last Update Time
07/09/2023, 17:13:47
Endpoint
https://api.thegraph.com/***Query
query info($address: String!) {
# write you query here
transfers(
where: {
to: $address
from: "0x0000000000000000000000000000000000000000"
}
) {
id
}
}Expression
function(resp) {
if (resp != null && (resp.transfers != null && resp.transfers.length > 0 )) {
return 1
}
return 0
}