commonMain.fr.acinq.lightning.utils.time.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lightning-kmp-jvm Show documentation
Show all versions of lightning-kmp-jvm Show documentation
A Kotlin Multiplatform implementation of the Lightning Network
package fr.acinq.lightning.utils
import kotlinx.datetime.Clock
fun currentTimestampMillis(): Long = Clock.System.now().toEpochMilliseconds()
fun currentTimestampSeconds(): Long = currentTimestampMillis() / 1000
© 2015 - 2024 Weber Informatics LLC | Privacy Policy