👤
Get User
Use this method to get a user's metadata, such as the name, bio, social link, etc.
GetUser
.Initialize(destroyAtEnd: true)
.SetParameters(
"0x421...",
)
.OnError(error => Debug.Log(error))
.OnComplete(result => Debug.Log(result))
.Run();
.Initialize()
Parameter | Type | Required | Description |
---|---|---|---|
destroyAtEnd | bool | Optional | defines if this component will be destroyed after .Run() |
.SetParameters()
Parameter | Type | Required | Description |
---|---|---|---|
wallet_address | String | Yes | Unique wallet address of user |
.onError()
Action on Error: returns error information.
.onComplete()
.Run()
Runs the API call and fills the corresponding model in the component on success.
Last modified 10mo ago