-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.ts
107 lines (100 loc) · 3.14 KB
/
config.ts
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
export const SPIN_TIME = 13000;
export const DELAY_TIME = 7000;
export const API_URL = "https://api.spacerace.site"
// export const API_URL = "http://localhost:3002"
export const DEMO_WALLET =
"addr1v8kmayk5e3pp8dxgj63j82v3egp7wneye7d3lfvtah0uaxcld8p2q";
export const DUM_POLICY_ID =
"3222adc61e7488c611d4194963eb2d6a8b7cf3c87f471620b5b2422c44554d";
export const NEBULA_POLICY_ID =
"3744d5e39333c384505214958c4ed66591a052778512e56caf420f624e4542554c41";
export const KONDA_POLICY_ID =
"501dd5d2fbab6af0a26b1421076ff3afc4d5a34d6b3f9694571116ea4b4f4e4441";
export const SNEK_POLICY_ID =
"279c909f348e533da5808898f87f9a14bb2c3dfbbacccd631d927a3f534e454b";
export const CASINO_SLOGANS = [
"Double or nothing",
"Play and earn",
"Play to gain",
"Earn the bucks",
"Stay and play",
"Bet all you want",
"We aim to please",
"Live High Roller Life",
"Escape to Jackpot Joy",
"Play, Stay, Win",
"Where Fortune Awaits",
"Perfect Bet",
"Glamour, Gaming, Greatness",
"Ultimate Casino Retreat",
"Winning Luxury Getaway",
"A World of Winning",
"Luck and Luxury Combined",
"Winning Escape",
"Luxury Gaming Haven",
"Where Luck Meets Luxury",
"A Gamblers' Paradise",
"Win Big, Stay Grand",
]
export const config = {
SERVER_URL: "http://localhost:8001",
// SERVER_URL: "http://194.233.84.190:8001",
FAKE_TWITTER_ID: "@Dream",
FAKE_TWITTER_PHOTO: "",
FAKE_TWITTER_HISTORY: [
{
date: "2023-02-11T00:00:00",
action: "Tweet with hashtag #bernardboys"
},
{
date: "2023-02-11T00:00:00",
action: "Tweet with hashtag #bernardboys"
},
{
date: "2023-02-12T00:00:00",
action: "Tweet with hashtag #bernardboys"
},
{
date: "2023-02-12T00:00:00",
action: "Tweet with hashtag #bernardboys"
},
{
date: "2023-02-12T00:00:00",
action: "Tweet with hashtag #bernardboys"
},
{
date: "2023-02-13T00:00:00",
action: "Tweet with hashtag #bernardboys"
},
],
BLOCKFROST_API_URL: "https://cardano-preprod.blockfrost.io/api/v0/",
// BLOCKFROST_API_URL: "https://cardano-mainnet.blockfrost.io/api/v0/",
BLOCKFROST_API_KEY: "preprodIE7UqjY87uVTISXt4rVjuBJxRxoUjCRg",
// BLOCKFROST_API_KEY: "mainnetBarCr4bVgOBTWDFhRsmwc3VNdpSlSARz",
CARDANO_NETWORK: 0,
// CADANO_NETWORK: 1,
PREVIEW_OR_PREPROD: "Preprod",
CARDANOSCAN_URL: "https://preprod.cardanoscan.io/",
// CARDANOSCAN_URL: "https://explorer.cardano.org/en",
MNEMONIC: "leg online alien fix slim code rebel pulp marine saddle member grant roast athlete credit dance uncle suspect welcome alter victory unfold mom shadow",
OWNER_WALLET: "addr_test1qqt4szsl7kk698nawn249rt0dlnmn8nrt68fvsdewazet0ygevqhfdxcca4pdre6lus9k2ypvw0z9suxnql9xue2af7q08x8n8",
USAGE_FEE: 1.5,
OWNER_PROFIT: 1,
}
export const TOKENS = [
{
symbol: "ada",
},
{
symbol: "nebula",
},
{
symbol: "dum",
},
{
symbol: "konda",
},
{
symbol: "snek",
}
]