From 04cc9d4da84a39cf6ecdb085e2a44525b4a2fe58 Mon Sep 17 00:00:00 2001 From: "kiloconnect[bot]" <240665456+kiloconnect[bot]@users.noreply.github.com> Date: Fri, 20 Mar 2026 14:48:27 +0000 Subject: [PATCH] feat(promo): add CREATOR_CLAW promo code ($100, 30 uses, 1-month expiry) --- src/lib/promoCreditCategories.ts | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/lib/promoCreditCategories.ts b/src/lib/promoCreditCategories.ts index 41ac52117..c76dbd065 100644 --- a/src/lib/promoCreditCategories.ts +++ b/src/lib/promoCreditCategories.ts @@ -675,6 +675,17 @@ const encryptedSelfServicePromos: readonly EncryptedSelfServicePromoCreditCatego description: 'Austin ClawCon Credits', total_redemptions_allowed: 2000, }, + { + // Replace with output of: pnpm promo encrypt CREATOR_CLAW + encrypted_credit_category: 'PLACEHOLDER:NEEDS_ENCRYPTION:CREATOR_CLAW', + is_user_selfservicable: true, + is_idempotent: true, + amount_usd: 100, + expiry_hours: 30 * 24, + promotion_ends_at: new Date('2026-04-20'), + description: 'Creator Claw Credits', + total_redemptions_allowed: 30, + }, ]; const selfServicePromos: readonly SelfServicePromoCreditCategoryConfig[] =