@@ -431,8 +431,8 @@ pub trait StellarAssetInterface {
431431 ///
432432 /// # Events
433433 ///
434- /// Emits an event with topics `["set_authorized", id: Address], data =
435- /// [authorize: bool]`
434+ /// Emits an event with topics `["set_authorized", id: Address,
435+ /// sep0011_asset: String], data = [authorize: bool]`
436436 fn set_authorized ( env : Env , id : Address , authorize : bool ) ;
437437
438438 /// Returns true if `id` is authorized to use its balance.
@@ -451,8 +451,8 @@ pub trait StellarAssetInterface {
451451 ///
452452 /// # Events
453453 ///
454- /// Emits an event with topics `["mint", to: Address], data
455- /// = amount: i128`
454+ /// Emits an event with topics `["mint", to: Address,
455+ /// sep0011_asset: String], data = amount: i128`
456456 fn mint ( env : Env , to : Address , amount : i128 ) ;
457457
458458 /// Clawback `amount` from `from` account. `amount` is burned in the
@@ -466,8 +466,8 @@ pub trait StellarAssetInterface {
466466 ///
467467 /// # Events
468468 ///
469- /// Emits an event with topics `["clawback", admin : Address, to: Address] ,
470- /// data = amount: i128`
469+ /// Emits an event with topics `["clawback", from : Address,
470+ /// sep0011_asset: String], data = amount: i128`
471471 fn clawback ( env : Env , from : Address , amount : i128 ) ;
472472
473473 /// Creates this contract asset's unlimited trustline for the provided
0 commit comments