-
Notifications
You must be signed in to change notification settings - Fork 148
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add NFT mint/transfer/burn event standard #256
Merged
Merged
Changes from all commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
f9a0885
feat: add batch
ecc0d62
refactor: change interface to typescript
8d8af42
feat: update batch standard
f260197
feat: update standard https://github.com/near/NEPs/issues/254#issueco…
6c68eaa
feat: update docs
e8d9a70
feat: update issue
285003e
feat: add `owner_id` https://github.com/near/NEPs/issues/254#issuecom…
4f54dee
feat: add `event_json` https://github.com/near/NEPs/issues/254#issuec…
d6ec110
feat: update specs/Standards/NonFungibleToken/Event.md
1dcc59f
feat: update specs/Standards/NonFungibleToken/Event.md
2bb7941
feat: update specs/Standards/NonFungibleToken/Event.md
67660a7
feat: update specs/Standards/NonFungibleToken/Event.md
f27284b
feat: update specs/Standards/NonFungibleToken/Event.md
bfb082a
feat: update specs/Standards/NonFungibleToken/Event.md
a7222af
feat: update specs/Standards/NonFungibleToken/Event.md https://github…
76655a0
feat: update specs/Standards/NonFungibleToken/Event.md
d00daef
feat: add single line sentence
6d7d8d4
feat: update specs/Standards/NonFungibleToken/Event.md
02b4e3d
feat: add memo
b99596d
feat: update specs/Standards/NonFungibleToken/Event.md
4dfbd6e
feat: bake `token_ids`
a544365
feat: add delegatee
ebd8412
feat: add delegatee description
b3dbea3
feat: update specs/Standards/NonFungibleToken/Event.md
e3c7f2a
feat: add authorised_id
4de0431
feat: apply suggestions from code review
947e575
feat: update specs/Standards/NonFungibleToken/Event.md
ab02604
feat: update transfer event
6fafebd
feat: add EventJsonLog comment
77cb81c
feat: update `EventJsonLog`
45c6dbe
Created "Events" and "Examples" sections
frol ad4c8c4
feat: use authorized
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,200 @@ | ||
# Non-Fungible Token Event | ||
|
||
Version `1.0.0` | ||
|
||
## Summary | ||
|
||
Standard interfaces for NFT contract actions. | ||
|
||
## Motivation | ||
|
||
NFT-driven apps perform many similar actions. | ||
For example - `minting`, `burning` and `transferring`. | ||
Each app may have their own way of performing these actions. | ||
This introduces inconsistency in capturing these events. | ||
This extension addresses that. | ||
|
||
It's common for NFT apps to transfer many or one token at a time. | ||
Other applications need to track these and similar events consistently. | ||
If not, tracking state across many NFT-driven apps become infeasible. | ||
|
||
We need a standard way to capture events. | ||
This was discussed here https://github.com/near/NEPs/issues/254. | ||
|
||
## Events | ||
|
||
Many apps use different interfaces that represent the same action. | ||
This interface standardizes that process by introducing event logs. | ||
There is no Event NEP yet, so this standard paves the road to that. | ||
|
||
Events use standard logs capability of NEAR and defined as a convention. | ||
Events are log entries that start with `EVENT_JSON:` prefix followed by a single valid JSON document of the following interface: | ||
|
||
```ts | ||
// Interface to capture data | ||
// about an event | ||
// Arguments | ||
// * `standard`: name of standard e.g. nep171 | ||
// * `version`: e.g. 1.0.0 | ||
// * `event`: string | ||
// * `data`: associate event data | ||
interface EventLogData { | ||
standard: string, | ||
version: string, | ||
event: string, | ||
data?: unknown, | ||
} | ||
``` | ||
|
||
#### Valid event logs: | ||
|
||
```js | ||
EVENT_JSON:{"standard": "nepXXX", "version": "1.0.0", "event": "xyz_is_triggered"} | ||
``` | ||
|
||
```js | ||
EVENT_JSON:{ | ||
"standard": "nepXXX", | ||
"version": "1.0.0", | ||
"event": "xyz_is_triggered" | ||
} | ||
``` | ||
|
||
```js | ||
EVENT_JSON:{"standard": "nepXXX", "version": "1.0.0", "event": "xyz_is_triggered", "data": {"triggered_by": "foundation.near"}} | ||
``` | ||
|
||
#### Invalid event logs: | ||
|
||
* Two events in a single log entry (instead, call `log` for each individual event) | ||
``` | ||
EVENT_JSON:{"standard": "nepXXX", "version": "1.0.0", "event": "xyz_is_triggered"} | ||
EVENT_JSON:{"standard": "nepXXX", "version": "1.0.0", "event": "xyz_is_triggered"} | ||
``` | ||
* Invalid JSON data | ||
``` | ||
EVENT_JSON:invalid json | ||
``` | ||
|
||
## Interface | ||
|
||
Non-Fungible Token Events MUST have `standard` set to `"nep171"`, standard version set to `"1.0.0"`, `event` value is one of `nft_mint`, `nft_burn`, `nft_transfer`, and `data` must be of one of the following relavant types: `NftMintLog[] | NftTransferLog[] | NftBurnLog[]`: | ||
|
||
```ts | ||
interface EventLogData { | ||
standard: "nep171", | ||
version: "1.0.0", | ||
event: "nft_mint" | "nft_burn" | "nft_transfer", | ||
data: NftMintLog[] | NftTransferLog[] | NftBurnLog[], | ||
} | ||
``` | ||
|
||
```ts | ||
// An event log to capture token minting | ||
// Arguments | ||
// * `owner_id`: "account.near" | ||
// * `token_ids`: ["1", "abc"] | ||
// * `memo`: optional message | ||
interface NftMintLog { | ||
owner_id: string, | ||
token_ids: string[], | ||
memo?: string | ||
} | ||
|
||
// An event log to capture token burning | ||
// Arguments | ||
// * `owner_id`: owner of tokens to burn | ||
This conversation was marked as resolved.
Show resolved
Hide resolved
|
||
// * `authorized_id`: approved account to burn, if applicable | ||
// * `token_ids`: ["1","2"] | ||
// * `memo`: optional message | ||
interface NftBurnLog { | ||
owner_id: string, | ||
authorized_id?: string, | ||
token_ids: string[], | ||
memo?: string | ||
} | ||
|
||
// An event log to capture token transfer | ||
// Arguments | ||
// * `authorized_id`: approved account to transfer | ||
// * `old_owner_id`: "owner.near" | ||
// * `new_owner_id`: "receiver.near" | ||
// * `token_ids`: ["1", "12345abc"] | ||
// * `memo`: optional message | ||
interface NftTransferLog { | ||
authorized_id?: string, | ||
old_owner_id: string, | ||
new_owner_id: string, | ||
token_ids: string[], | ||
memo?: string | ||
} | ||
``` | ||
|
||
## Examples | ||
|
||
Single owner batch minting (pretty-formatted for readability purposes): | ||
|
||
```js | ||
EVENT_JSON:{ | ||
"standard": "nep171", | ||
"version": "1.0.0", | ||
"event": "nft_mint", | ||
"data": [ | ||
{"owner_id": "foundation.near", "token_ids": ["aurora", "proximitylabs"]} | ||
] | ||
} | ||
``` | ||
|
||
This conversation was marked as resolved.
Show resolved
Hide resolved
|
||
Different owners batch minting: | ||
|
||
```js | ||
EVENT_JSON:{ | ||
"standard": "nep171", | ||
"version": "1.0.0", | ||
"event": "nft_mint", | ||
"data": [ | ||
{"owner_id": "foundation.near", "token_ids": ["aurora", "proximitylabs"]}, | ||
{"owner_id": "user1.near", "token_ids": ["meme"]} | ||
] | ||
} | ||
``` | ||
|
||
Different events (separate log entries): | ||
|
||
```js | ||
EVENT_JSON:{ | ||
"standard": "nep171", | ||
"version": "1.0.0", | ||
"event": "nft_burn", | ||
"data": [ | ||
{"owner_id": "foundation.near", "token_ids": ["aurora", "proximitylabs"]}, | ||
] | ||
} | ||
``` | ||
|
||
```js | ||
EVENT_JSON:{ | ||
"standard": "nep171", | ||
"version": "1.0.0", | ||
"event": "nft_transfer", | ||
"data": [ | ||
{"old_owner_id": "user1.near", "new_owner_id": "user2.near", "token_ids": ["meme"], "memo": "have fun!"} | ||
] | ||
} | ||
``` | ||
|
||
## Further methods | ||
|
||
Note that the example events covered above cover two different kinds of events: | ||
1. Events that are not specified in the NFT Standard (`nft_mint`, `nft_burn`) | ||
2. An event that is covered in the [NFT Core Standard](https://nomicon.io/Standards/NonFungibleToken/Core.html#nft-interface). (`nft_transfer`) | ||
|
||
This event standard also applies beyond the three events highlighted here, where future events follow the same convention of as the second type. For instance, if an NFT contract uses the [approval management standard](https://nomicon.io/Standards/NonFungibleToken/ApprovalManagement.html), it may emit an event for `nft_approve` if that's deemed as important by the developer community. | ||
|
||
Please feel free to open pull requests for extending the events standard detailed here as needs arise. | ||
|
||
## Drawbacks | ||
|
||
There is a known limitation of 16kb strings when capturing logs. | ||
This can be observed if `token_ids` vary in length across different apps. | ||
This impacts the amount of events that can be processed. |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I like this, sounds much clearer!