@@ -170,8 +170,8 @@ pub trait StellarAssetInterface {
170170 ///
171171 /// # Events
172172 ///
173- /// Emits an event with topics `["set_authorized", id: Address], data =
174- /// [ authorize: bool] `
173+ /// Emits an event with topics `["set_authorized", id: Address,
174+ /// sep0011_asset: String], data = authorize: bool`
175175 fn set_authorized (env : Env , id : Address , authorize : bool );
176176
177177 /// Returns true if `id` is authorized to use its balance.
@@ -190,8 +190,8 @@ pub trait StellarAssetInterface {
190190 ///
191191 /// # Events
192192 ///
193- /// Emits an event with topics `["mint", to: Address], data
194- /// = amount: i128`
193+ /// Emits an event with topics `["mint", to: Address,
194+ /// sep0011_asset: String], data = amount: i128`
195195 fn mint (env : Env , to : Address , amount : i128 );
196196
197197 /// Clawback `amount` from `from` account. `amount` is burned in the
@@ -205,8 +205,8 @@ pub trait StellarAssetInterface {
205205 ///
206206 /// # Events
207207 ///
208- /// Emits an event with topics `["clawback", admin : Address, to: Address] ,
209- /// data = amount: i128`
208+ /// Emits an event with topics `["clawback", from : Address,
209+ /// sep0011_asset: String], data = amount: i128`
210210 fn clawback (env : Env , from : Address , amount : i128 );
211211
212212 /// Creates this contract asset's unlimited trustline for the provided
0 commit comments