mirror of
https://github.com/kremalicious/asi-calculator.git
synced 2024-12-22 09:23:16 +01:00
Matthias Kretschmann
436babf4ba
* add CUDOS calculations * content updates * token order switch * uniswap quote fix * list & link community proposals * migration tool scenario simplification * rename Uniswap label * ratio harmonization * buy ratio fix * copy updates * copy updates * default to 1000 CUDOS
28 lines
1.0 KiB
TypeScript
28 lines
1.0 KiB
TypeScript
import type { Token } from '@/types'
|
|
import { Hanken_Grotesk } from 'next/font/google'
|
|
|
|
export const title = 'ASI Calculator'
|
|
export const description =
|
|
'See how much ASI you get for your OCEAN, AGIX, CUDOS, or FET.'
|
|
export const liveUrl = 'https://asi.kremalicious.com'
|
|
export const repoUrl = 'https://github.com/kremalicious/asi-calculator'
|
|
|
|
export const ratioOceanToAsi = 0.43322638231018
|
|
export const ratioAgixToAsi = 0.43335018345744
|
|
export const ratioCudosToAsi = 1 / 118.344 // 112.427 + 5% fee
|
|
export const ratioFetToAsi = 1
|
|
|
|
export const tokens: Token[] = [
|
|
{ symbol: 'OCEAN', address: '0x967da4048cd07ab37855c090aaf366e4ce1b9f48' },
|
|
{ symbol: 'FET', address: '0xaea46a60368a7bd060eec7df8cba43b7ef41ad85' },
|
|
{ symbol: 'AGIX', address: '0x5b7533812759b45c2b44c19e320ba2cd2681b542' },
|
|
{ symbol: 'CUDOS', address: '0x817bbdbc3e8a1204f3691d14bb44992841e3db35' }
|
|
]
|
|
|
|
export const font = Hanken_Grotesk({
|
|
subsets: ['latin'],
|
|
variable: '--font-hanken-grotesk'
|
|
})
|
|
|
|
export const isProduction = process.env.NODE_ENV === 'production'
|