Files
solana/web3.js/src/timing.js
2020-06-19 15:25:41 +08:00

26 lines
410 B
JavaScript

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