mango-v4-ui/utils/governance/types.ts

10 lines
211 B
TypeScript

import { Connection } from '@solana/web3.js'
export type EndpointTypes = 'mainnet' | 'devnet' | 'localnet'
export type ConnectionContext = {
cluster: EndpointTypes
current: Connection
endpoint: string
}