Get Item

Use this method to get the metadata of an item.

Usage in your script

GetItem
  .Initialize(destroyAtEnd: true)
  .SetParameters(
    collection_address: "0x...",
    token_id: 2
  )
  .OnError(error => Debug.Log(error))
  .OnComplete(result=> Debug.Log(result))
  .Run();

Member Functions

.Initialize()

ParameterTypeRequiredDescription

destroyAtEnd

bool

Optional

defines if this component will be destroyed after .Run()

.SetParameters()

ParameterTypeRequiredDescription

collection_address

String

Yes

The item's collection address

token_id

Int

Yes

The item's tokenId

.onError()

Action on Error: returns error information.

.onComplete()

Action on successful: returns Items_model type.

.Run()

Runs the API call and fills the corresponding model in the component on success.

Last updated