Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | 2x 2x | import { EraSummary, Milliseconds } from '@cardano-sdk/core'; /** Valid at 2022-05-28 */ export const testnetEraSummaries: EraSummary[] = [ { parameters: { epochLength: 21_600, slotLength: Milliseconds(20_000) }, start: { slot: 0, time: new Date(1_563_999_616_000) } }, { parameters: { epochLength: 432_000, slotLength: Milliseconds(1000) }, start: { slot: 1_598_400, time: new Date(1_595_967_616_000) } } ]; |