Expand description
Standard for nep171 (Non-Fungible Token) events.
These events will be picked up by the NEAR indexer.
This is an extension of the events format (nep-297): https://github.com/near/NEPs/blob/master/specs/Standards/EventsFormat.md
The three events in this standard are NftMint
, NftTransfer
, and NftBurn
.
These events can be logged by calling .emit()
on them if a single event, or calling
NftMint::emit_many
, NftTransfer::emit_many
,
or NftBurn::emit_many
respectively.