@merkl/api 0.17.30 → 0.17.32
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/dist/database/api/.generated/drizzle/schema.d.ts +17 -0
- package/dist/database/api/.generated/drizzle/schema.js +1 -0
- package/dist/database/api/.generated/drizzle/schema.ts +1 -0
- package/dist/database/api/.generated/edge.js +4 -3
- package/dist/database/api/.generated/index-browser.js +1 -0
- package/dist/database/api/.generated/index.d.ts +58 -1
- package/dist/database/api/.generated/index.js +4 -3
- package/dist/database/api/.generated/package.json +1 -1
- package/dist/database/api/.generated/schema.prisma +1 -0
- package/dist/database/api/.generated/wasm.js +1 -0
- package/dist/src/eden/index.d.ts +103 -9
- package/dist/src/index.d.ts +21 -3
- package/dist/src/modules/v4/campaign/campaign.controller.d.ts +2 -0
- package/dist/src/modules/v4/campaign/campaign.repository.d.ts +3 -0
- package/dist/src/modules/v4/campaign/campaign.service.d.ts +4 -0
- package/dist/src/modules/v4/opportunity/opportunity.controller.d.ts +4 -0
- package/dist/src/modules/v4/opportunity/opportunity.repository.d.ts +13 -0
- package/dist/src/modules/v4/opportunity/opportunity.service.d.ts +12 -0
- package/dist/src/modules/v4/reward/reward.repository.d.ts +2 -0
- package/dist/src/modules/v4/reward/reward.service.d.ts +11 -0
- package/dist/src/modules/v4/router.d.ts +20 -0
- package/dist/src/modules/v4/token/token.controller.d.ts +10 -0
- package/dist/src/modules/v4/token/token.controller.js +1 -1
- package/dist/src/modules/v4/token/token.model.d.ts +2 -0
- package/dist/src/modules/v4/token/token.model.js +2 -0
- package/dist/src/modules/v4/token/token.repository.d.ts +3 -0
- package/dist/src/modules/v4/token/token.service.d.ts +12 -1
- package/dist/src/modules/v4/token/token.service.js +19 -7
- package/dist/src/modules/v4/user/user.controller.d.ts +4 -0
- package/dist/src/routes/v3/campaignClaims.d.ts +5 -3
- package/dist/src/routes/v3/campaignClaims.js +18 -4
- package/dist/src/routes/v3/router.d.ts +1 -3
- package/dist/tsconfig.package.tsbuildinfo +1 -1
- package/package.json +1 -1
@@ -13418,6 +13418,7 @@ export namespace Prisma {
|
|
13418
13418
|
icon: string | null
|
13419
13419
|
verified: boolean | null
|
13420
13420
|
isTest: boolean | null
|
13421
|
+
isNative: boolean | null
|
13421
13422
|
price: number | null
|
13422
13423
|
}
|
13423
13424
|
|
@@ -13432,6 +13433,7 @@ export namespace Prisma {
|
|
13432
13433
|
icon: string | null
|
13433
13434
|
verified: boolean | null
|
13434
13435
|
isTest: boolean | null
|
13436
|
+
isNative: boolean | null
|
13435
13437
|
price: number | null
|
13436
13438
|
}
|
13437
13439
|
|
@@ -13446,6 +13448,7 @@ export namespace Prisma {
|
|
13446
13448
|
icon: number
|
13447
13449
|
verified: number
|
13448
13450
|
isTest: number
|
13451
|
+
isNative: number
|
13449
13452
|
price: number
|
13450
13453
|
_all: number
|
13451
13454
|
}
|
@@ -13474,6 +13477,7 @@ export namespace Prisma {
|
|
13474
13477
|
icon?: true
|
13475
13478
|
verified?: true
|
13476
13479
|
isTest?: true
|
13480
|
+
isNative?: true
|
13477
13481
|
price?: true
|
13478
13482
|
}
|
13479
13483
|
|
@@ -13488,6 +13492,7 @@ export namespace Prisma {
|
|
13488
13492
|
icon?: true
|
13489
13493
|
verified?: true
|
13490
13494
|
isTest?: true
|
13495
|
+
isNative?: true
|
13491
13496
|
price?: true
|
13492
13497
|
}
|
13493
13498
|
|
@@ -13502,6 +13507,7 @@ export namespace Prisma {
|
|
13502
13507
|
icon?: true
|
13503
13508
|
verified?: true
|
13504
13509
|
isTest?: true
|
13510
|
+
isNative?: true
|
13505
13511
|
price?: true
|
13506
13512
|
_all?: true
|
13507
13513
|
}
|
@@ -13603,6 +13609,7 @@ export namespace Prisma {
|
|
13603
13609
|
icon: string
|
13604
13610
|
verified: boolean
|
13605
13611
|
isTest: boolean
|
13612
|
+
isNative: boolean
|
13606
13613
|
price: number | null
|
13607
13614
|
_count: TokenCountAggregateOutputType | null
|
13608
13615
|
_avg: TokenAvgAggregateOutputType | null
|
@@ -13636,6 +13643,7 @@ export namespace Prisma {
|
|
13636
13643
|
icon?: boolean
|
13637
13644
|
verified?: boolean
|
13638
13645
|
isTest?: boolean
|
13646
|
+
isNative?: boolean
|
13639
13647
|
price?: boolean
|
13640
13648
|
Chain?: boolean | ChainDefaultArgs<ExtArgs>
|
13641
13649
|
Opportunity?: boolean | Token$OpportunityArgs<ExtArgs>
|
@@ -13657,6 +13665,7 @@ export namespace Prisma {
|
|
13657
13665
|
icon?: boolean
|
13658
13666
|
verified?: boolean
|
13659
13667
|
isTest?: boolean
|
13668
|
+
isNative?: boolean
|
13660
13669
|
price?: boolean
|
13661
13670
|
Chain?: boolean | ChainDefaultArgs<ExtArgs>
|
13662
13671
|
}, ExtArgs["result"]["token"]>
|
@@ -13672,6 +13681,7 @@ export namespace Prisma {
|
|
13672
13681
|
icon?: boolean
|
13673
13682
|
verified?: boolean
|
13674
13683
|
isTest?: boolean
|
13684
|
+
isNative?: boolean
|
13675
13685
|
price?: boolean
|
13676
13686
|
Chain?: boolean | ChainDefaultArgs<ExtArgs>
|
13677
13687
|
}, ExtArgs["result"]["token"]>
|
@@ -13687,10 +13697,11 @@ export namespace Prisma {
|
|
13687
13697
|
icon?: boolean
|
13688
13698
|
verified?: boolean
|
13689
13699
|
isTest?: boolean
|
13700
|
+
isNative?: boolean
|
13690
13701
|
price?: boolean
|
13691
13702
|
}
|
13692
13703
|
|
13693
|
-
export type TokenOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "name" | "chainId" | "address" | "decimals" | "symbol" | "displaySymbol" | "icon" | "verified" | "isTest" | "price", ExtArgs["result"]["token"]>
|
13704
|
+
export type TokenOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "name" | "chainId" | "address" | "decimals" | "symbol" | "displaySymbol" | "icon" | "verified" | "isTest" | "isNative" | "price", ExtArgs["result"]["token"]>
|
13694
13705
|
export type TokenInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
13695
13706
|
Chain?: boolean | ChainDefaultArgs<ExtArgs>
|
13696
13707
|
Opportunity?: boolean | Token$OpportunityArgs<ExtArgs>
|
@@ -13728,6 +13739,7 @@ export namespace Prisma {
|
|
13728
13739
|
icon: string
|
13729
13740
|
verified: boolean
|
13730
13741
|
isTest: boolean
|
13742
|
+
isNative: boolean
|
13731
13743
|
price: number | null
|
13732
13744
|
}, ExtArgs["result"]["token"]>
|
13733
13745
|
composites: {}
|
@@ -14168,6 +14180,7 @@ export namespace Prisma {
|
|
14168
14180
|
readonly icon: FieldRef<"Token", 'String'>
|
14169
14181
|
readonly verified: FieldRef<"Token", 'Boolean'>
|
14170
14182
|
readonly isTest: FieldRef<"Token", 'Boolean'>
|
14183
|
+
readonly isNative: FieldRef<"Token", 'Boolean'>
|
14171
14184
|
readonly price: FieldRef<"Token", 'Float'>
|
14172
14185
|
}
|
14173
14186
|
|
@@ -31589,6 +31602,7 @@ export namespace Prisma {
|
|
31589
31602
|
icon: 'icon',
|
31590
31603
|
verified: 'verified',
|
31591
31604
|
isTest: 'isTest',
|
31605
|
+
isNative: 'isNative',
|
31592
31606
|
price: 'price'
|
31593
31607
|
};
|
31594
31608
|
|
@@ -32891,6 +32905,7 @@ export namespace Prisma {
|
|
32891
32905
|
icon?: StringFilter<"Token"> | string
|
32892
32906
|
verified?: BoolFilter<"Token"> | boolean
|
32893
32907
|
isTest?: BoolFilter<"Token"> | boolean
|
32908
|
+
isNative?: BoolFilter<"Token"> | boolean
|
32894
32909
|
price?: FloatNullableFilter<"Token"> | number | null
|
32895
32910
|
Chain?: XOR<ChainScalarRelationFilter, ChainWhereInput>
|
32896
32911
|
Opportunity?: OpportunityListRelationFilter
|
@@ -32911,6 +32926,7 @@ export namespace Prisma {
|
|
32911
32926
|
icon?: SortOrder
|
32912
32927
|
verified?: SortOrder
|
32913
32928
|
isTest?: SortOrder
|
32929
|
+
isNative?: SortOrder
|
32914
32930
|
price?: SortOrderInput | SortOrder
|
32915
32931
|
Chain?: ChainOrderByWithRelationInput
|
32916
32932
|
Opportunity?: OpportunityOrderByRelationAggregateInput
|
@@ -32936,6 +32952,7 @@ export namespace Prisma {
|
|
32936
32952
|
icon?: StringFilter<"Token"> | string
|
32937
32953
|
verified?: BoolFilter<"Token"> | boolean
|
32938
32954
|
isTest?: BoolFilter<"Token"> | boolean
|
32955
|
+
isNative?: BoolFilter<"Token"> | boolean
|
32939
32956
|
price?: FloatNullableFilter<"Token"> | number | null
|
32940
32957
|
Chain?: XOR<ChainScalarRelationFilter, ChainWhereInput>
|
32941
32958
|
Opportunity?: OpportunityListRelationFilter
|
@@ -32956,6 +32973,7 @@ export namespace Prisma {
|
|
32956
32973
|
icon?: SortOrder
|
32957
32974
|
verified?: SortOrder
|
32958
32975
|
isTest?: SortOrder
|
32976
|
+
isNative?: SortOrder
|
32959
32977
|
price?: SortOrderInput | SortOrder
|
32960
32978
|
_count?: TokenCountOrderByAggregateInput
|
32961
32979
|
_avg?: TokenAvgOrderByAggregateInput
|
@@ -32978,6 +32996,7 @@ export namespace Prisma {
|
|
32978
32996
|
icon?: StringWithAggregatesFilter<"Token"> | string
|
32979
32997
|
verified?: BoolWithAggregatesFilter<"Token"> | boolean
|
32980
32998
|
isTest?: BoolWithAggregatesFilter<"Token"> | boolean
|
32999
|
+
isNative?: BoolWithAggregatesFilter<"Token"> | boolean
|
32981
33000
|
price?: FloatNullableWithAggregatesFilter<"Token"> | number | null
|
32982
33001
|
}
|
32983
33002
|
|
@@ -34554,6 +34573,7 @@ export namespace Prisma {
|
|
34554
34573
|
icon: string
|
34555
34574
|
verified?: boolean
|
34556
34575
|
isTest?: boolean
|
34576
|
+
isNative?: boolean
|
34557
34577
|
price?: number | null
|
34558
34578
|
Chain: ChainCreateNestedOneWithoutTokenInput
|
34559
34579
|
Opportunity?: OpportunityCreateNestedManyWithoutTokensInput
|
@@ -34574,6 +34594,7 @@ export namespace Prisma {
|
|
34574
34594
|
icon: string
|
34575
34595
|
verified?: boolean
|
34576
34596
|
isTest?: boolean
|
34597
|
+
isNative?: boolean
|
34577
34598
|
price?: number | null
|
34578
34599
|
Opportunity?: OpportunityUncheckedCreateNestedManyWithoutTokensInput
|
34579
34600
|
Campaigns?: CampaignUncheckedCreateNestedManyWithoutRewardTokenInput
|
@@ -34592,6 +34613,7 @@ export namespace Prisma {
|
|
34592
34613
|
icon?: StringFieldUpdateOperationsInput | string
|
34593
34614
|
verified?: BoolFieldUpdateOperationsInput | boolean
|
34594
34615
|
isTest?: BoolFieldUpdateOperationsInput | boolean
|
34616
|
+
isNative?: BoolFieldUpdateOperationsInput | boolean
|
34595
34617
|
price?: NullableFloatFieldUpdateOperationsInput | number | null
|
34596
34618
|
Chain?: ChainUpdateOneRequiredWithoutTokenNestedInput
|
34597
34619
|
Opportunity?: OpportunityUpdateManyWithoutTokensNestedInput
|
@@ -34612,6 +34634,7 @@ export namespace Prisma {
|
|
34612
34634
|
icon?: StringFieldUpdateOperationsInput | string
|
34613
34635
|
verified?: BoolFieldUpdateOperationsInput | boolean
|
34614
34636
|
isTest?: BoolFieldUpdateOperationsInput | boolean
|
34637
|
+
isNative?: BoolFieldUpdateOperationsInput | boolean
|
34615
34638
|
price?: NullableFloatFieldUpdateOperationsInput | number | null
|
34616
34639
|
Opportunity?: OpportunityUncheckedUpdateManyWithoutTokensNestedInput
|
34617
34640
|
Campaigns?: CampaignUncheckedUpdateManyWithoutRewardTokenNestedInput
|
@@ -34631,6 +34654,7 @@ export namespace Prisma {
|
|
34631
34654
|
icon: string
|
34632
34655
|
verified?: boolean
|
34633
34656
|
isTest?: boolean
|
34657
|
+
isNative?: boolean
|
34634
34658
|
price?: number | null
|
34635
34659
|
}
|
34636
34660
|
|
@@ -34644,6 +34668,7 @@ export namespace Prisma {
|
|
34644
34668
|
icon?: StringFieldUpdateOperationsInput | string
|
34645
34669
|
verified?: BoolFieldUpdateOperationsInput | boolean
|
34646
34670
|
isTest?: BoolFieldUpdateOperationsInput | boolean
|
34671
|
+
isNative?: BoolFieldUpdateOperationsInput | boolean
|
34647
34672
|
price?: NullableFloatFieldUpdateOperationsInput | number | null
|
34648
34673
|
}
|
34649
34674
|
|
@@ -34658,6 +34683,7 @@ export namespace Prisma {
|
|
34658
34683
|
icon?: StringFieldUpdateOperationsInput | string
|
34659
34684
|
verified?: BoolFieldUpdateOperationsInput | boolean
|
34660
34685
|
isTest?: BoolFieldUpdateOperationsInput | boolean
|
34686
|
+
isNative?: BoolFieldUpdateOperationsInput | boolean
|
34661
34687
|
price?: NullableFloatFieldUpdateOperationsInput | number | null
|
34662
34688
|
}
|
34663
34689
|
|
@@ -36482,6 +36508,7 @@ export namespace Prisma {
|
|
36482
36508
|
icon?: SortOrder
|
36483
36509
|
verified?: SortOrder
|
36484
36510
|
isTest?: SortOrder
|
36511
|
+
isNative?: SortOrder
|
36485
36512
|
price?: SortOrder
|
36486
36513
|
}
|
36487
36514
|
|
@@ -36502,6 +36529,7 @@ export namespace Prisma {
|
|
36502
36529
|
icon?: SortOrder
|
36503
36530
|
verified?: SortOrder
|
36504
36531
|
isTest?: SortOrder
|
36532
|
+
isNative?: SortOrder
|
36505
36533
|
price?: SortOrder
|
36506
36534
|
}
|
36507
36535
|
|
@@ -36516,6 +36544,7 @@ export namespace Prisma {
|
|
36516
36544
|
icon?: SortOrder
|
36517
36545
|
verified?: SortOrder
|
36518
36546
|
isTest?: SortOrder
|
36547
|
+
isNative?: SortOrder
|
36519
36548
|
price?: SortOrder
|
36520
36549
|
}
|
36521
36550
|
|
@@ -39980,6 +40009,7 @@ export namespace Prisma {
|
|
39980
40009
|
icon: string
|
39981
40010
|
verified?: boolean
|
39982
40011
|
isTest?: boolean
|
40012
|
+
isNative?: boolean
|
39983
40013
|
price?: number | null
|
39984
40014
|
Chain: ChainCreateNestedOneWithoutTokenInput
|
39985
40015
|
Opportunity?: OpportunityCreateNestedManyWithoutTokensInput
|
@@ -39999,6 +40029,7 @@ export namespace Prisma {
|
|
39999
40029
|
icon: string
|
40000
40030
|
verified?: boolean
|
40001
40031
|
isTest?: boolean
|
40032
|
+
isNative?: boolean
|
40002
40033
|
price?: number | null
|
40003
40034
|
Opportunity?: OpportunityUncheckedCreateNestedManyWithoutTokensInput
|
40004
40035
|
Reward?: RewardUncheckedCreateNestedManyWithoutRewardTokenInput
|
@@ -40297,6 +40328,7 @@ export namespace Prisma {
|
|
40297
40328
|
icon?: StringFieldUpdateOperationsInput | string
|
40298
40329
|
verified?: BoolFieldUpdateOperationsInput | boolean
|
40299
40330
|
isTest?: BoolFieldUpdateOperationsInput | boolean
|
40331
|
+
isNative?: BoolFieldUpdateOperationsInput | boolean
|
40300
40332
|
price?: NullableFloatFieldUpdateOperationsInput | number | null
|
40301
40333
|
Chain?: ChainUpdateOneRequiredWithoutTokenNestedInput
|
40302
40334
|
Opportunity?: OpportunityUpdateManyWithoutTokensNestedInput
|
@@ -40316,6 +40348,7 @@ export namespace Prisma {
|
|
40316
40348
|
icon?: StringFieldUpdateOperationsInput | string
|
40317
40349
|
verified?: BoolFieldUpdateOperationsInput | boolean
|
40318
40350
|
isTest?: BoolFieldUpdateOperationsInput | boolean
|
40351
|
+
isNative?: BoolFieldUpdateOperationsInput | boolean
|
40319
40352
|
price?: NullableFloatFieldUpdateOperationsInput | number | null
|
40320
40353
|
Opportunity?: OpportunityUncheckedUpdateManyWithoutTokensNestedInput
|
40321
40354
|
Reward?: RewardUncheckedUpdateManyWithoutRewardTokenNestedInput
|
@@ -41030,6 +41063,7 @@ export namespace Prisma {
|
|
41030
41063
|
icon: string
|
41031
41064
|
verified?: boolean
|
41032
41065
|
isTest?: boolean
|
41066
|
+
isNative?: boolean
|
41033
41067
|
price?: number | null
|
41034
41068
|
Opportunity?: OpportunityCreateNestedManyWithoutTokensInput
|
41035
41069
|
Campaigns?: CampaignCreateNestedManyWithoutRewardTokenInput
|
@@ -41048,6 +41082,7 @@ export namespace Prisma {
|
|
41048
41082
|
icon: string
|
41049
41083
|
verified?: boolean
|
41050
41084
|
isTest?: boolean
|
41085
|
+
isNative?: boolean
|
41051
41086
|
price?: number | null
|
41052
41087
|
Opportunity?: OpportunityUncheckedCreateNestedManyWithoutTokensInput
|
41053
41088
|
Campaigns?: CampaignUncheckedCreateNestedManyWithoutRewardTokenInput
|
@@ -41310,6 +41345,7 @@ export namespace Prisma {
|
|
41310
41345
|
icon?: StringFilter<"Token"> | string
|
41311
41346
|
verified?: BoolFilter<"Token"> | boolean
|
41312
41347
|
isTest?: BoolFilter<"Token"> | boolean
|
41348
|
+
isNative?: BoolFilter<"Token"> | boolean
|
41313
41349
|
price?: FloatNullableFilter<"Token"> | number | null
|
41314
41350
|
}
|
41315
41351
|
|
@@ -41543,6 +41579,7 @@ export namespace Prisma {
|
|
41543
41579
|
icon: string
|
41544
41580
|
verified?: boolean
|
41545
41581
|
isTest?: boolean
|
41582
|
+
isNative?: boolean
|
41546
41583
|
price?: number | null
|
41547
41584
|
Chain: ChainCreateNestedOneWithoutTokenInput
|
41548
41585
|
Campaigns?: CampaignCreateNestedManyWithoutRewardTokenInput
|
@@ -41562,6 +41599,7 @@ export namespace Prisma {
|
|
41562
41599
|
icon: string
|
41563
41600
|
verified?: boolean
|
41564
41601
|
isTest?: boolean
|
41602
|
+
isNative?: boolean
|
41565
41603
|
price?: number | null
|
41566
41604
|
Campaigns?: CampaignUncheckedCreateNestedManyWithoutRewardTokenInput
|
41567
41605
|
Reward?: RewardUncheckedCreateNestedManyWithoutRewardTokenInput
|
@@ -43508,6 +43546,7 @@ export namespace Prisma {
|
|
43508
43546
|
icon: string
|
43509
43547
|
verified?: boolean
|
43510
43548
|
isTest?: boolean
|
43549
|
+
isNative?: boolean
|
43511
43550
|
price?: number | null
|
43512
43551
|
Chain: ChainCreateNestedOneWithoutTokenInput
|
43513
43552
|
Opportunity?: OpportunityCreateNestedManyWithoutTokensInput
|
@@ -43527,6 +43566,7 @@ export namespace Prisma {
|
|
43527
43566
|
icon: string
|
43528
43567
|
verified?: boolean
|
43529
43568
|
isTest?: boolean
|
43569
|
+
isNative?: boolean
|
43530
43570
|
price?: number | null
|
43531
43571
|
Opportunity?: OpportunityUncheckedCreateNestedManyWithoutTokensInput
|
43532
43572
|
Campaigns?: CampaignUncheckedCreateNestedManyWithoutRewardTokenInput
|
@@ -43643,6 +43683,7 @@ export namespace Prisma {
|
|
43643
43683
|
icon?: StringFieldUpdateOperationsInput | string
|
43644
43684
|
verified?: BoolFieldUpdateOperationsInput | boolean
|
43645
43685
|
isTest?: BoolFieldUpdateOperationsInput | boolean
|
43686
|
+
isNative?: BoolFieldUpdateOperationsInput | boolean
|
43646
43687
|
price?: NullableFloatFieldUpdateOperationsInput | number | null
|
43647
43688
|
Chain?: ChainUpdateOneRequiredWithoutTokenNestedInput
|
43648
43689
|
Opportunity?: OpportunityUpdateManyWithoutTokensNestedInput
|
@@ -43662,6 +43703,7 @@ export namespace Prisma {
|
|
43662
43703
|
icon?: StringFieldUpdateOperationsInput | string
|
43663
43704
|
verified?: BoolFieldUpdateOperationsInput | boolean
|
43664
43705
|
isTest?: BoolFieldUpdateOperationsInput | boolean
|
43706
|
+
isNative?: BoolFieldUpdateOperationsInput | boolean
|
43665
43707
|
price?: NullableFloatFieldUpdateOperationsInput | number | null
|
43666
43708
|
Opportunity?: OpportunityUncheckedUpdateManyWithoutTokensNestedInput
|
43667
43709
|
Campaigns?: CampaignUncheckedUpdateManyWithoutRewardTokenNestedInput
|
@@ -44182,6 +44224,7 @@ export namespace Prisma {
|
|
44182
44224
|
icon: string
|
44183
44225
|
verified?: boolean
|
44184
44226
|
isTest?: boolean
|
44227
|
+
isNative?: boolean
|
44185
44228
|
price?: number | null
|
44186
44229
|
Chain: ChainCreateNestedOneWithoutTokenInput
|
44187
44230
|
Opportunity?: OpportunityCreateNestedManyWithoutTokensInput
|
@@ -44201,6 +44244,7 @@ export namespace Prisma {
|
|
44201
44244
|
icon: string
|
44202
44245
|
verified?: boolean
|
44203
44246
|
isTest?: boolean
|
44247
|
+
isNative?: boolean
|
44204
44248
|
price?: number | null
|
44205
44249
|
Opportunity?: OpportunityUncheckedCreateNestedManyWithoutTokensInput
|
44206
44250
|
Campaigns?: CampaignUncheckedCreateNestedManyWithoutRewardTokenInput
|
@@ -44223,6 +44267,7 @@ export namespace Prisma {
|
|
44223
44267
|
icon: string
|
44224
44268
|
verified?: boolean
|
44225
44269
|
isTest?: boolean
|
44270
|
+
isNative?: boolean
|
44226
44271
|
price?: number | null
|
44227
44272
|
Chain: ChainCreateNestedOneWithoutTokenInput
|
44228
44273
|
Opportunity?: OpportunityCreateNestedManyWithoutTokensInput
|
@@ -44242,6 +44287,7 @@ export namespace Prisma {
|
|
44242
44287
|
icon: string
|
44243
44288
|
verified?: boolean
|
44244
44289
|
isTest?: boolean
|
44290
|
+
isNative?: boolean
|
44245
44291
|
price?: number | null
|
44246
44292
|
Opportunity?: OpportunityUncheckedCreateNestedManyWithoutTokensInput
|
44247
44293
|
Campaigns?: CampaignUncheckedCreateNestedManyWithoutRewardTokenInput
|
@@ -44312,6 +44358,7 @@ export namespace Prisma {
|
|
44312
44358
|
icon?: StringFieldUpdateOperationsInput | string
|
44313
44359
|
verified?: BoolFieldUpdateOperationsInput | boolean
|
44314
44360
|
isTest?: BoolFieldUpdateOperationsInput | boolean
|
44361
|
+
isNative?: BoolFieldUpdateOperationsInput | boolean
|
44315
44362
|
price?: NullableFloatFieldUpdateOperationsInput | number | null
|
44316
44363
|
Chain?: ChainUpdateOneRequiredWithoutTokenNestedInput
|
44317
44364
|
Opportunity?: OpportunityUpdateManyWithoutTokensNestedInput
|
@@ -44331,6 +44378,7 @@ export namespace Prisma {
|
|
44331
44378
|
icon?: StringFieldUpdateOperationsInput | string
|
44332
44379
|
verified?: BoolFieldUpdateOperationsInput | boolean
|
44333
44380
|
isTest?: BoolFieldUpdateOperationsInput | boolean
|
44381
|
+
isNative?: BoolFieldUpdateOperationsInput | boolean
|
44334
44382
|
price?: NullableFloatFieldUpdateOperationsInput | number | null
|
44335
44383
|
Opportunity?: OpportunityUncheckedUpdateManyWithoutTokensNestedInput
|
44336
44384
|
Campaigns?: CampaignUncheckedUpdateManyWithoutRewardTokenNestedInput
|
@@ -44359,6 +44407,7 @@ export namespace Prisma {
|
|
44359
44407
|
icon?: StringFieldUpdateOperationsInput | string
|
44360
44408
|
verified?: BoolFieldUpdateOperationsInput | boolean
|
44361
44409
|
isTest?: BoolFieldUpdateOperationsInput | boolean
|
44410
|
+
isNative?: BoolFieldUpdateOperationsInput | boolean
|
44362
44411
|
price?: NullableFloatFieldUpdateOperationsInput | number | null
|
44363
44412
|
Chain?: ChainUpdateOneRequiredWithoutTokenNestedInput
|
44364
44413
|
Opportunity?: OpportunityUpdateManyWithoutTokensNestedInput
|
@@ -44378,6 +44427,7 @@ export namespace Prisma {
|
|
44378
44427
|
icon?: StringFieldUpdateOperationsInput | string
|
44379
44428
|
verified?: BoolFieldUpdateOperationsInput | boolean
|
44380
44429
|
isTest?: BoolFieldUpdateOperationsInput | boolean
|
44430
|
+
isNative?: BoolFieldUpdateOperationsInput | boolean
|
44381
44431
|
price?: NullableFloatFieldUpdateOperationsInput | number | null
|
44382
44432
|
Opportunity?: OpportunityUncheckedUpdateManyWithoutTokensNestedInput
|
44383
44433
|
Campaigns?: CampaignUncheckedUpdateManyWithoutRewardTokenNestedInput
|
@@ -44578,6 +44628,7 @@ export namespace Prisma {
|
|
44578
44628
|
icon: string
|
44579
44629
|
verified?: boolean
|
44580
44630
|
isTest?: boolean
|
44631
|
+
isNative?: boolean
|
44581
44632
|
price?: number | null
|
44582
44633
|
}
|
44583
44634
|
|
@@ -44766,6 +44817,7 @@ export namespace Prisma {
|
|
44766
44817
|
icon?: StringFieldUpdateOperationsInput | string
|
44767
44818
|
verified?: BoolFieldUpdateOperationsInput | boolean
|
44768
44819
|
isTest?: BoolFieldUpdateOperationsInput | boolean
|
44820
|
+
isNative?: BoolFieldUpdateOperationsInput | boolean
|
44769
44821
|
price?: NullableFloatFieldUpdateOperationsInput | number | null
|
44770
44822
|
Opportunity?: OpportunityUpdateManyWithoutTokensNestedInput
|
44771
44823
|
Campaigns?: CampaignUpdateManyWithoutRewardTokenNestedInput
|
@@ -44784,6 +44836,7 @@ export namespace Prisma {
|
|
44784
44836
|
icon?: StringFieldUpdateOperationsInput | string
|
44785
44837
|
verified?: BoolFieldUpdateOperationsInput | boolean
|
44786
44838
|
isTest?: BoolFieldUpdateOperationsInput | boolean
|
44839
|
+
isNative?: BoolFieldUpdateOperationsInput | boolean
|
44787
44840
|
price?: NullableFloatFieldUpdateOperationsInput | number | null
|
44788
44841
|
Opportunity?: OpportunityUncheckedUpdateManyWithoutTokensNestedInput
|
44789
44842
|
Campaigns?: CampaignUncheckedUpdateManyWithoutRewardTokenNestedInput
|
@@ -44802,6 +44855,7 @@ export namespace Prisma {
|
|
44802
44855
|
icon?: StringFieldUpdateOperationsInput | string
|
44803
44856
|
verified?: BoolFieldUpdateOperationsInput | boolean
|
44804
44857
|
isTest?: BoolFieldUpdateOperationsInput | boolean
|
44858
|
+
isNative?: BoolFieldUpdateOperationsInput | boolean
|
44805
44859
|
price?: NullableFloatFieldUpdateOperationsInput | number | null
|
44806
44860
|
}
|
44807
44861
|
|
@@ -44986,6 +45040,7 @@ export namespace Prisma {
|
|
44986
45040
|
icon?: StringFieldUpdateOperationsInput | string
|
44987
45041
|
verified?: BoolFieldUpdateOperationsInput | boolean
|
44988
45042
|
isTest?: BoolFieldUpdateOperationsInput | boolean
|
45043
|
+
isNative?: BoolFieldUpdateOperationsInput | boolean
|
44989
45044
|
price?: NullableFloatFieldUpdateOperationsInput | number | null
|
44990
45045
|
Chain?: ChainUpdateOneRequiredWithoutTokenNestedInput
|
44991
45046
|
Campaigns?: CampaignUpdateManyWithoutRewardTokenNestedInput
|
@@ -45005,6 +45060,7 @@ export namespace Prisma {
|
|
45005
45060
|
icon?: StringFieldUpdateOperationsInput | string
|
45006
45061
|
verified?: BoolFieldUpdateOperationsInput | boolean
|
45007
45062
|
isTest?: BoolFieldUpdateOperationsInput | boolean
|
45063
|
+
isNative?: BoolFieldUpdateOperationsInput | boolean
|
45008
45064
|
price?: NullableFloatFieldUpdateOperationsInput | number | null
|
45009
45065
|
Campaigns?: CampaignUncheckedUpdateManyWithoutRewardTokenNestedInput
|
45010
45066
|
Reward?: RewardUncheckedUpdateManyWithoutRewardTokenNestedInput
|
@@ -45023,6 +45079,7 @@ export namespace Prisma {
|
|
45023
45079
|
icon?: StringFieldUpdateOperationsInput | string
|
45024
45080
|
verified?: BoolFieldUpdateOperationsInput | boolean
|
45025
45081
|
isTest?: BoolFieldUpdateOperationsInput | boolean
|
45082
|
+
isNative?: BoolFieldUpdateOperationsInput | boolean
|
45026
45083
|
price?: NullableFloatFieldUpdateOperationsInput | number | null
|
45027
45084
|
}
|
45028
45085
|
|