@merkl/api 0.10.198 → 0.10.199

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -217,7 +217,6 @@ export class RewardService {
217
217
  return res;
218
218
  }
219
219
  static async registerClaims(claims) {
220
- console.log(claims);
221
220
  for (const claim of claims) {
222
221
  const tokenId = TokenService.hashId({
223
222
  chainId: claim.chainId,
@@ -18,7 +18,6 @@ export class StatusService {
18
18
  return await StatusRepository.findUnique(campaignUnique);
19
19
  }
20
20
  static async update(campaignUnique, status) {
21
- console.log(campaignUnique, status);
22
21
  // Check if the status exists already, otherwise create it
23
22
  const campaignExists = await StatusRepository.findUnique(campaignUnique);
24
23
  if (!campaignExists) {