const response = await fetch('api.rair.market/api/users/{userAddress}', {
method: 'PATCH',
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify({
"nickName": "text",
"avatar": "text",
"background": "text",
"email": "text",
"firstName": "text",
"lastName": "text",
"ageVerified": "text",
"blocked": "text"
}),
});
const data = await response.json();