test-rrr-sdk
Version:
An SDK for building applications on top of Raydium.
14 lines (11 loc) • 356 B
TypeScript
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 };