/**
 * This code was AUTOGENERATED using the Codama library.
 * Please DO NOT EDIT THIS FILE, instead use visitors
 * to add features, then rerun Codama to update it.
 *
 * @see https://github.com/codama-idl/codama
 */

import { combineCodec, getEnumDecoder, getEnumEncoder, type FixedSizeCodec, type FixedSizeDecoder, type FixedSizeEncoder } from '@solana/kit';

export enum ReferencePriceType { POOL, TWAP };

export type ReferencePriceTypeArgs = ReferencePriceType;

export function getReferencePriceTypeEncoder(): FixedSizeEncoder<ReferencePriceTypeArgs> {
    return getEnumEncoder(ReferencePriceType);
}

export function getReferencePriceTypeDecoder(): FixedSizeDecoder<ReferencePriceType> {
    return getEnumDecoder(ReferencePriceType);
}

export function getReferencePriceTypeCodec(): FixedSizeCodec<ReferencePriceTypeArgs, ReferencePriceType> {
    return combineCodec(getReferencePriceTypeEncoder(), getReferencePriceTypeDecoder());
}