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
8 lines
182 B
TypeScript
8 lines
182 B
TypeScript
export type TokenSymbol = 'OCEAN' | 'FET' | 'AGIX' | 'CUDOS' | 'ASI'
|
|
export type TokenAddress = `0x${string}`
|
|
|
|
export type Token = {
|
|
symbol: TokenSymbol
|
|
address: `0x${string}`
|
|
}
|