mango-v4-ui/types/jupiter.ts

23 lines
645 B
TypeScript
Raw Normal View History

2022-07-10 19:01:16 -07:00
import { RouteInfo } from '@jup-ag/core'
2022-09-14 03:37:45 -07:00
import Decimal from 'decimal.js'
2022-07-10 19:01:16 -07:00
export type Routes = {
routesInfos: RouteInfo[]
cached: boolean
}
export interface Token {
chainId: number // 101,
address: string // 'EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v',
2022-08-19 23:25:50 -07:00
symbol: string // e.g. 'USDC',
name: string // 'Wrapped USDC',
decimals: number // 6,
logoURI: string // 'https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/BXXkv6z8ykpG1yuvUDPgh732wzVHB69RnB9YgSYh3itW/logo.png',
tags: string[] // [ 'stablecoin' ]
2022-08-02 11:04:00 -07:00
extensions?: {
coingeckoId: string
}
2022-09-14 17:02:16 -07:00
amount?: Decimal
amountWithBorrow?: Decimal
}