Files
memecoin-botV2/.pnpm-store/v10/files/2c/49dded5b9f9bc85be0ea7e395a6dc311282311af1823e001e194360b345dcc1e60e174401d42d6f411fb4880c31f9d97384de644bb084d57d862121bc8ab95

24 lines
408 B
Plaintext

// TODO: These constants should be removed in favor of reading them out of a
// Syscall account
/**
* @internal
*/
export const NUM_TICKS_PER_SECOND = 160;
/**
* @internal
*/
export const DEFAULT_TICKS_PER_SLOT = 64;
/**
* @internal
*/
export const NUM_SLOTS_PER_SECOND =
NUM_TICKS_PER_SECOND / DEFAULT_TICKS_PER_SLOT;
/**
* @internal
*/
export const MS_PER_SLOT = 1000 / NUM_SLOTS_PER_SECOND;