@levrbet/shared 0.5.43 → 0.5.45
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.
- package/package.json +1 -1
- package/prisma/schema.prisma +2 -1
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -596,7 +596,7 @@ model FreeBetCampaign {
|
|
|
596
596
|
chainId Int
|
|
597
597
|
name String
|
|
598
598
|
description String
|
|
599
|
-
|
|
599
|
+
txHash String?
|
|
600
600
|
|
|
601
601
|
entries FreeBetCampaignEntry[]
|
|
602
602
|
|
|
@@ -607,6 +607,7 @@ model FreeBetCampaignEntry {
|
|
|
607
607
|
objectId String @id @default(auto()) @map("_id") @db.ObjectId
|
|
608
608
|
merkleRoot String
|
|
609
609
|
ethAddress String
|
|
610
|
+
proof Json?
|
|
610
611
|
|
|
611
612
|
campaign FreeBetCampaign @relation(fields: [merkleRoot], references: [merkleRoot])
|
|
612
613
|
|