import { aggregateZapSats } from './zapAggregation' export function getReviewTipsForArticle(params: { authorPubkey: string articleId: string }): Promise { return aggregateZapSats({ authorPubkey: params.authorPubkey, articleId: params.articleId, kindType: 'review_tip', }) }