@bbachain/spl-token-swap
Version:
JavaScript/TypeScript bindings for the Solana Program Library (SPL) Token Swap program.
16 lines • 398 B
TypeScript
import * as beet from '@bbachain/beet';
import { CurveType } from './CurveType';
/**
* SwapCurve struct containing curve type and calculator
*
* @category userTypes
*/
export type SwapCurve = {
curveType: CurveType;
calculator: number[];
};
/**
* @category userTypes
*/
export declare const swapCurveBeet: beet.FixableBeetArgsStruct<SwapCurve>;
//# sourceMappingURL=SwapCurve.d.ts.map