You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi @rheaplex,
This function constructs the hashString for verification of the commitHash from input from the backend server.
The type Collectible is a representation of the input strings only, it is not actually a NFT.
https://github.com/flow-hydraulics/flow-pds/blob/main/cadence-contracts/PDS.cdc#L21
You can get a simpler identifier using
self.getType().identifier
:self.getType().identifier.concat(".").concat(self.id.toString())
-> A.0000000000000001.HelloWorld.01
or a much simpler (but much less meaningful) unique identifier using
self.uuid
:self.uuid
-> 56343473567356
The text was updated successfully, but these errors were encountered: