Sure, you can run a search against the audit log: https://learn.microsoft.com/en-us/microsoft-365/compliance/audit-log-search?view=o365-worldwide
Here's the corresponding PowerShell cmdlet:
Search-UnifiedAuditLog -StartDate (Get-Date).AddDays(-30) -EndDate (Get-Date) -Operations Add-MailboxPermission
Alternatively, you can also query the Exchange admin audit log:
Search-AdminAuditLog -Cmdlets Add-MailboxPermission
Make sure to narrow down the search by leveraging the date and objectId parameters.