-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtournamentDetails.js
82 lines (79 loc) · 3.06 KB
/
tournamentDetails.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
let tournament_details = [
{
"tournament_id": "kanalabs_20",
"tournament_status": "Upcoming",
"tournament_name": "kanalabs_TTS",
"tournament_mode": "Shooting/fighting",
"tournament_format": "single elimination,double elimination",
"start_date": "2023-10-08T12:00:00Z",
"end_date": "2023-11-28T18:00:00Z",
"prize_pool": 5000,
"registration_status": true,
"registration_fee": 2000,
"registration_start_date": "2023-10-01T00:00:00Z",
"registration_deadline": "2023-11-26T23:59:59Z",
"max_participants": 100,
"game_id": 789,
"tournament_winners": "First,Second,Third",
"description": "good tournament to be enjoyed and win prizes",
"total_rounds":"7"
},
{
"tournament_id": "kanalabs_20",
"tournament_status": "Upcoming",
"tournament_name": "kanalabs_TTS",
"tournament_mode": "Shooting/fighting",
"tournament_format": "single elimination,double elimination",
"start_date": "2023-10-08T12:00:00Z",
"end_date": "2023-11-28T18:00:00Z",
"prize_pool": 5000,
"registration_status": true,
"registration_fee": 2000,
"registration_start_date": "2023-10-01T00:00:00Z",
"registration_deadline": "2023-11-26T23:59:59Z",
"max_participants": 100,
"game_id": 789,
"tournament_winners": "First,Second,Third",
"description": "good tournament to be enjoyed and win prizes",
"total_rounds":"7"
},
{
"tournament_id": "kanalabs_20",
"tournament_status": "Past",
"tournament_name": "kanalabs_TTS",
"tournament_mode": "Shooting/fighting",
"tournament_format": "single elimination,double elimination",
"start_date": "2023-10-08T12:00:00Z",
"end_date": "2023-11-28T18:00:00Z",
"prize_pool": 5000,
"registration_status": true,
"registration_fee": 2000,
"registration_start_date": "2023-10-01T00:00:00Z",
"registration_deadline": "2023-11-26T23:59:59Z",
"max_participants": 100,
"game_id": 789,
"tournament_winners": "First,Second,Third",
"description": "good tournament to be enjoyed and win prizes",
"total_rounds":"7"
},
{
"tournament_id": "kanalabs_20",
"tournament_status": "Ongoing",
"tournament_name": "kanalabs_TTS",
"tournament_mode": "Shooting/fighting",
"tournament_format": "single elimination,double elimination",
"start_date": "2023-10-08T12:00:00Z",
"end_date": "2023-11-28T18:00:00Z",
"prize_pool": 5000,
"registration_status": true,
"registration_fee": 2000,
"registration_start_date": "2023-10-01T00:00:00Z",
"registration_deadline": "2023-11-26T23:59:59Z",
"max_participants": 100,
"game_id": 789,
"tournament_winners": "First,Second,Third",
"description": "good tournament to be enjoyed and win prizes",
"total_rounds":"7"
},
]
module.exports = tournament_details;