Change currency constants
This commit is contained in:
parent
f4c7148e7e
commit
14864a9f7e
|
@ -10,8 +10,9 @@ import {
|
|||
import { User } from './user'
|
||||
import { LiquidityProvision } from './liquidity-provision'
|
||||
import { noFees } from './fees'
|
||||
import { ENV_CONFIG } from './envs/constants'
|
||||
|
||||
export const FIXED_ANTE = 100
|
||||
export const FIXED_ANTE = ENV_CONFIG.fixedAnte ?? 10
|
||||
|
||||
// deprecated
|
||||
export const PHANTOM_ANTE = 0.001
|
||||
|
|
|
@ -20,8 +20,9 @@ export const ATLAS_CONFIG: EnvConfig = {
|
|||
},
|
||||
adminEmails: [...PROD_CONFIG.adminEmails],
|
||||
whitelistEmail: '',
|
||||
moneyMoniker: 'A$',
|
||||
startingBalance: 5000,
|
||||
moneyMoniker: '📎',
|
||||
fixedAnte: 10,
|
||||
startingBalance: 500,
|
||||
visibility: 'PRIVATE',
|
||||
// faviconPath: '/atlas/atlas-favicon.png',
|
||||
navbarLogoPath: '/atlas/atlas-logo-white.svg',
|
||||
|
|
|
@ -19,6 +19,9 @@ export type EnvConfig = {
|
|||
faviconPath?: string // Should be a file in /public
|
||||
navbarLogoPath?: string
|
||||
newQuestionPlaceholders: string[]
|
||||
|
||||
// Currency controls
|
||||
fixedAnte?: number
|
||||
startingBalance?: number
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user