UNPKG

test-raydium-sdk-v2

Version:

An SDK for building applications on top of Raydium.

14 lines (11 loc) 356 B
import { PublicKey } from '@solana/web3.js'; import { SerumVersion } from './type.js'; declare const SERUM_PROGRAMID_TO_VERSION: { [key: string]: SerumVersion; }; declare const SERUM_VERSION_TO_PROGRAMID: { [key in SerumVersion]?: PublicKey; } & { [K: number]: PublicKey; }; export { SERUM_PROGRAMID_TO_VERSION, SERUM_VERSION_TO_PROGRAMID };