-
Notifications
You must be signed in to change notification settings - Fork 251
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(contract-standards): add events to FT contract standard #723
Changes from all commits
852b8bf
1b45007
8cad8aa
51b6f42
ab6be94
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,215 @@ | ||
//! Standard for nep141 (Fungible Token) events. | ||
//! | ||
//! These events will be picked up by the NEAR indexer. | ||
//! | ||
//! <https://github.com/near/NEPs/blob/master/specs/Standards/FungibleToken/Event.md> | ||
//! | ||
//! 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 [`FtMint`], [`FtTransfer`], and [`FtBurn`]. | ||
//! | ||
//! These events can be logged by calling `.emit()` on them if a single event, or calling | ||
//! [`FtMint::emit_many`], [`FtTransfer::emit_many`], | ||
//! or [`FtBurn::emit_many`] respectively. | ||
|
||
use crate::event::NearEvent; | ||
use near_sdk::json_types::U128; | ||
use near_sdk::AccountId; | ||
use serde::Serialize; | ||
|
||
/// Data to log for an FT mint event. To log this event, call [`.emit()`](FtMint::emit). | ||
#[must_use] | ||
#[derive(Serialize, Debug, Clone)] | ||
pub struct FtMint<'a> { | ||
pub owner_id: &'a AccountId, | ||
pub amount: &'a U128, | ||
#[serde(skip_serializing_if = "Option::is_none")] | ||
pub memo: Option<&'a str>, | ||
} | ||
|
||
impl FtMint<'_> { | ||
/// Logs the event to the host. This is required to ensure that the event is triggered | ||
/// and to consume the event. | ||
pub fn emit(self) { | ||
Self::emit_many(&[self]) | ||
} | ||
|
||
/// Emits an FT mint event, through [`env::log_str`](near_sdk::env::log_str), | ||
/// where each [`FtMint`] represents the data of each mint. | ||
pub fn emit_many(data: &[FtMint<'_>]) { | ||
new_141_v1(Nep141EventKind::FtMint(data)).emit() | ||
} | ||
} | ||
|
||
/// Data to log for an FT transfer event. To log this event, | ||
/// call [`.emit()`](FtTransfer::emit). | ||
#[must_use] | ||
#[derive(Serialize, Debug, Clone)] | ||
pub struct FtTransfer<'a> { | ||
pub old_owner_id: &'a AccountId, | ||
pub new_owner_id: &'a AccountId, | ||
pub amount: &'a U128, | ||
#[serde(skip_serializing_if = "Option::is_none")] | ||
pub memo: Option<&'a str>, | ||
} | ||
|
||
impl FtTransfer<'_> { | ||
/// Logs the event to the host. This is required to ensure that the event is triggered | ||
/// and to consume the event. | ||
pub fn emit(self) { | ||
Self::emit_many(&[self]) | ||
} | ||
|
||
/// Emits an FT transfer event, through [`env::log_str`](near_sdk::env::log_str), | ||
/// where each [`FtTransfer`] represents the data of each transfer. | ||
pub fn emit_many(data: &[FtTransfer<'_>]) { | ||
new_141_v1(Nep141EventKind::FtTransfer(data)).emit() | ||
} | ||
} | ||
|
||
/// Data to log for an FT burn event. To log this event, call [`.emit()`](FtBurn::emit). | ||
#[must_use] | ||
#[derive(Serialize, Debug, Clone)] | ||
pub struct FtBurn<'a> { | ||
pub owner_id: &'a AccountId, | ||
pub amount: &'a U128, | ||
#[serde(skip_serializing_if = "Option::is_none")] | ||
pub memo: Option<&'a str>, | ||
} | ||
|
||
impl FtBurn<'_> { | ||
/// Logs the event to the host. This is required to ensure that the event is triggered | ||
/// and to consume the event. | ||
pub fn emit(self) { | ||
Self::emit_many(&[self]) | ||
} | ||
|
||
/// Emits an FT burn event, through [`env::log_str`](near_sdk::env::log_str), | ||
/// where each [`FtBurn`] represents the data of each burn. | ||
pub fn emit_many<'a>(data: &'a [FtBurn<'a>]) { | ||
new_141_v1(Nep141EventKind::FtBurn(data)).emit() | ||
} | ||
} | ||
|
||
#[derive(Serialize, Debug)] | ||
pub(crate) struct Nep141Event<'a> { | ||
version: &'static str, | ||
#[serde(flatten)] | ||
event_kind: Nep141EventKind<'a>, | ||
} | ||
|
||
#[derive(Serialize, Debug)] | ||
#[serde(tag = "event", content = "data")] | ||
#[serde(rename_all = "snake_case")] | ||
#[allow(clippy::enum_variant_names)] | ||
enum Nep141EventKind<'a> { | ||
FtMint(&'a [FtMint<'a>]), | ||
FtTransfer(&'a [FtTransfer<'a>]), | ||
FtBurn(&'a [FtBurn<'a>]), | ||
} | ||
|
||
fn new_141<'a>(version: &'static str, event_kind: Nep141EventKind<'a>) -> NearEvent<'a> { | ||
NearEvent::Nep141(Nep141Event { version, event_kind }) | ||
} | ||
|
||
fn new_141_v1(event_kind: Nep141EventKind) -> NearEvent { | ||
new_141("1.0.0", event_kind) | ||
} | ||
|
||
#[cfg(test)] | ||
mod tests { | ||
use super::*; | ||
use near_sdk::{test_utils, AccountId}; | ||
|
||
fn bob() -> AccountId { | ||
AccountId::new_unchecked("bob".to_string()) | ||
} | ||
|
||
fn alice() -> AccountId { | ||
AccountId::new_unchecked("alice".to_string()) | ||
} | ||
|
||
#[test] | ||
fn ft_mint() { | ||
let owner_id = &bob(); | ||
let amount = &U128(100); | ||
FtMint { owner_id, amount, memo: None }.emit(); | ||
assert_eq!( | ||
test_utils::get_logs()[0], | ||
r#"EVENT_JSON:{"standard":"nep141","version":"1.0.0","event":"ft_mint","data":[{"owner_id":"bob","amount":"100"}]}"# | ||
); | ||
} | ||
|
||
#[test] | ||
fn ft_mints() { | ||
let owner_id = &bob(); | ||
let amount = &U128(100); | ||
let mint_log = FtMint { owner_id, amount, memo: None }; | ||
FtMint::emit_many(&[ | ||
mint_log, | ||
FtMint { owner_id: &alice(), amount: &U128(200), memo: Some("has memo") }, | ||
]); | ||
assert_eq!( | ||
test_utils::get_logs()[0], | ||
r#"EVENT_JSON:{"standard":"nep141","version":"1.0.0","event":"ft_mint","data":[{"owner_id":"bob","amount":"100"},{"owner_id":"alice","amount":"200","memo":"has memo"}]}"# | ||
); | ||
} | ||
|
||
#[test] | ||
fn ft_burn() { | ||
let owner_id = &bob(); | ||
let amount = &U128(100); | ||
FtBurn { owner_id, amount, memo: None }.emit(); | ||
assert_eq!( | ||
test_utils::get_logs()[0], | ||
r#"EVENT_JSON:{"standard":"nep141","version":"1.0.0","event":"ft_burn","data":[{"owner_id":"bob","amount":"100"}]}"# | ||
); | ||
} | ||
|
||
#[test] | ||
fn nft_burns() { | ||
let owner_id = &bob(); | ||
let amount = &U128(100); | ||
FtBurn::emit_many(&[ | ||
FtBurn { owner_id: &alice(), amount: &U128(200), memo: Some("has memo") }, | ||
FtBurn { owner_id, amount, memo: None }, | ||
]); | ||
assert_eq!( | ||
test_utils::get_logs()[0], | ||
r#"EVENT_JSON:{"standard":"nep141","version":"1.0.0","event":"ft_burn","data":[{"owner_id":"alice","amount":"200","memo":"has memo"},{"owner_id":"bob","amount":"100"}]}"# | ||
); | ||
} | ||
|
||
#[test] | ||
fn ft_transfer() { | ||
let old_owner_id = &bob(); | ||
let new_owner_id = &alice(); | ||
let amount = &U128(100); | ||
FtTransfer { old_owner_id, new_owner_id, amount, memo: None }.emit(); | ||
assert_eq!( | ||
test_utils::get_logs()[0], | ||
r#"EVENT_JSON:{"standard":"nep141","version":"1.0.0","event":"ft_transfer","data":[{"old_owner_id":"bob","new_owner_id":"alice","amount":"100"}]}"# | ||
); | ||
} | ||
|
||
#[test] | ||
fn nft_transfers() { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nit: it should be There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
let old_owner_id = &bob(); | ||
let new_owner_id = &alice(); | ||
let amount = &U128(100); | ||
FtTransfer::emit_many(&[ | ||
FtTransfer { | ||
old_owner_id: &alice(), | ||
new_owner_id: &bob(), | ||
amount: &U128(200), | ||
memo: Some("has memo"), | ||
}, | ||
FtTransfer { old_owner_id, new_owner_id, amount, memo: None }, | ||
]); | ||
assert_eq!( | ||
test_utils::get_logs()[0], | ||
r#"EVENT_JSON:{"standard":"nep141","version":"1.0.0","event":"ft_transfer","data":[{"old_owner_id":"alice","new_owner_id":"bob","amount":"200","memo":"has memo"},{"old_owner_id":"bob","new_owner_id":"alice","amount":"100"}]}"# | ||
); | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
pub mod core; | ||
pub mod core_impl; | ||
pub mod events; | ||
pub mod macros; | ||
pub mod metadata; | ||
pub mod receiver; | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,17 +7,17 @@ | |
//! 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 [`NftMintData`], [`NftTransferData`], and [`NftBurnData`]. | ||
//! The three events in this standard are [`NftMint`], [`NftTransfer`], and [`NftBurn`]. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nice, thanks for the catching this! |
||
//! | ||
//! These events can be logged by calling `.emit()` on them if a single event, or calling | ||
//! [`NftMintData::emit_many`], [`NftTransferData::emit_many`], | ||
//! or [`NftBurnData::emit_many`] respectively. | ||
//! [`NftMint::emit_many`], [`NftTransfer::emit_many`], | ||
//! or [`NftBurn::emit_many`] respectively. | ||
|
||
use crate::event::NearEvent; | ||
use near_sdk::AccountId; | ||
use serde::Serialize; | ||
|
||
/// Data to log for an NFT mint event. To log this event, call [`.emit()`](NftMintData::emit). | ||
/// Data to log for an NFT mint event. To log this event, call [`.emit()`](NftMint::emit). | ||
#[must_use] | ||
#[derive(Serialize, Debug, Clone)] | ||
pub struct NftMint<'a> { | ||
|
@@ -35,14 +35,14 @@ impl NftMint<'_> { | |
} | ||
|
||
/// Emits an nft mint event, through [`env::log_str`](near_sdk::env::log_str), | ||
/// where each [`NftMintData`] represents the data of each mint. | ||
/// where each [`NftMint`] represents the data of each mint. | ||
pub fn emit_many(data: &[NftMint<'_>]) { | ||
new_171_v1(Nep171EventKind::NftMint(data)).emit() | ||
} | ||
} | ||
|
||
/// Data to log for an NFT transfer event. To log this event, | ||
/// call [`.emit()`](NftTransferData::emit). | ||
/// call [`.emit()`](NftTransfer::emit). | ||
#[must_use] | ||
#[derive(Serialize, Debug, Clone)] | ||
pub struct NftTransfer<'a> { | ||
|
@@ -63,13 +63,13 @@ impl NftTransfer<'_> { | |
} | ||
|
||
/// Emits an nft transfer event, through [`env::log_str`](near_sdk::env::log_str), | ||
/// where each [`NftTransferData`] represents the data of each transfer. | ||
/// where each [`NftTransfer`] represents the data of each transfer. | ||
pub fn emit_many(data: &[NftTransfer<'_>]) { | ||
new_171_v1(Nep171EventKind::NftTransfer(data)).emit() | ||
} | ||
} | ||
|
||
/// Data to log for an NFT burn event. To log this event, call [`.emit()`](NftBurnData::emit). | ||
/// Data to log for an NFT burn event. To log this event, call [`.emit()`](NftBurn::emit). | ||
#[must_use] | ||
#[derive(Serialize, Debug, Clone)] | ||
pub struct NftBurn<'a> { | ||
|
@@ -89,7 +89,7 @@ impl NftBurn<'_> { | |
} | ||
|
||
/// Emits an nft burn event, through [`env::log_str`](near_sdk::env::log_str), | ||
/// where each [`NftBurnData`] represents the data of each burn. | ||
/// where each [`NftBurn`] represents the data of each burn. | ||
pub fn emit_many<'a>(data: &'a [NftBurn<'a>]) { | ||
new_171_v1(Nep171EventKind::NftBurn(data)).emit() | ||
} | ||
|
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.
ft_burns
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.
Oh it's merged 😅 I just noticed that
Created PR with the fix #735