🪄
Update Collection
Use this method to update a collection's metadata
UpdateCollection
.Initialize(destroyAtEnd: true)
.SetParameters(
address: "0x...",
image: "https://",
image_url:"https://",
description:"my collection",
website:"https://",
genre:"action"
)
.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 |
---|---|---|---|
address | String | Yes | Collection address |
image | String | Yes | new image URL |
image_url | String | Yes | new image URL |
description | String | Yes | new description for the project |
website | String | Yes | Website of the collection |
genre | String | Yes | Type of the collection |
.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