@bbachain/spl-token-swap
Version:
JavaScript/TypeScript bindings for the Solana Program Library (SPL) Token Swap program.
17 lines • 418 B
TypeScript
import * as beet from '@bbachain/beet';
import { Fees } from './Fees';
import { SwapCurve } from './SwapCurve';
/**
* Initialize instruction arguments
*
* @category userTypes
*/
export type InitializeArgs = {
fees: Fees;
swapCurve: SwapCurve;
};
/**
* @category userTypes
*/
export declare const initializeArgsBeet: beet.FixableBeetArgsStruct<InitializeArgs>;
//# sourceMappingURL=InitializeArgs.d.ts.map