diff --git a/ecosystem/sep-0041.md b/ecosystem/sep-0041.md index 4c8f6ffa1..e6386222d 100644 --- a/ecosystem/sep-0041.md +++ b/ecosystem/sep-0041.md @@ -3,13 +3,13 @@ ``` SEP: 0041 Title: Soroban Token Interface -Authors: Jonathan Jove <@jonjove>, Siddharth Suresh <@sisuresh> +Authors: Jonathan Jove <@jonjove>, Siddharth Suresh <@sisuresh>, Simon Chow <@chowbao> Track: Standard Status: Draft Created: 2023-09-22 -Updated: 2023-10-18 -Version 0.2.0 -Discussion: https://discord.com/channels/897514728459468821/1159937045322547250 +Updated: 2025-01-08 +Version 0.3.0 +Discussion: https://discord.com/channels/897514728459468821/1159937045322547250, https://github.com/stellar/stellar-protocol/discussions/1584 ``` ## Simple Summary @@ -208,10 +208,37 @@ The event has data: - `i128` the amount burned. +#### Mint Event + +The `mint` event is emitted when an amount of the token is minted. + +The event has topics: + +- `Symbol` with value `"mint"` +- `Address` the address to hold the newly minted tokens. + +The event has data: + +- `i128` the amount minted. + +#### Clawback Event + +The `clawback` event is emitted when an amount of the token is clawed back. + +The event has topics: + +- `Symbol` with value `"clawback"` +- `Address` The address holding the balance from which the clawback will take tokens. + +The event has data: + +- `i128` the amount clawed back. + ## Changelog - `v0.1.0` - Initial draft based on [CAP-46-6]. - `v0.2.0` - Remove `spendable_balance`. +- `v0.3.0` - Add `mint` and `clawback` event ## Implementations