You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+11Lines changed: 11 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -626,6 +626,8 @@ All events emitted by the registry and asset contracts. Use for indexing, loggin
626
626
- `uint256 indexed endTime`: Subscription expiry time (Unix timestamp).
627
627
- `uint256 nonce`: Subscription nonce (increments each time a new record is created for the subscriber).
628
628
- `address payer`: Payer for this subscription (refund beneficiary on cancel/revoke).
629
+
- `uint256 subscriptionPrice`: Per-second subscription price snapshot used for this subscription record.
630
+
- `uint256 registryFeeShare`: Registry fee share snapshot (0-100) used for this subscription record.
629
631
630
632
631
633
---
@@ -646,6 +648,15 @@ All events emitted by the registry and asset contracts. Use for indexing, loggin
646
648
- `uint256 amount` : Amount of creator fee claimed.
647
649
648
650
651
+
---
652
+
653
+
**CreatorFeeClaimedBatch** : Emitted when creator fees are claimed for multiple subscribers in a single batch call. Emitted once per batch call regardless of how many subscribers had claimable fees.
654
+
- Contract: `Asset`
655
+
- Parameters:
656
+
- `bytes32[] indexed subscribers` : Array of subscriber identities passed to the batch claim (note: as an indexed dynamic type, the topic is the keccak256 hash of the ABI-encoded array).
657
+
- `uint256 totalAmount` : Total creator fee claimed across all subscribers in the batch.
658
+
659
+
649
660
---
650
661
651
662
**SubscriptionPriceUpdated** : Emitted when the subscription price is updated.
0 commit comments