2025-08-05 14:06:07 -07:00
|
|
|
import waku/waku_core
|
2025-08-22 18:45:55 -07:00
|
|
|
import std/[macros, random, times]
|
2025-07-05 14:54:19 -07:00
|
|
|
import crypto
|
|
|
|
|
import blake2
|
2025-07-14 19:39:21 -07:00
|
|
|
import strutils
|
2025-08-05 14:06:07 -07:00
|
|
|
|
|
|
|
|
proc getTimestamp*(): Timestamp =
|
|
|
|
|
result = waku_core.getNanosecondTime(getTime().toUnix())
|
2025-07-05 14:54:19 -07:00
|
|
|
|
|
|
|
|
|
2025-07-11 15:43:19 -07:00
|
|
|
proc hash_func*(s: string): string =
|
|
|
|
|
# This should be Blake2s but it does not exist so substituting with Blake2b
|
|
|
|
|
result = getBlake2b(s, 4, "")
|
|
|
|
|
|
2025-07-16 16:17:22 -07:00
|
|
|
proc bytesToHex*[T](bytes: openarray[T], lowercase: bool = false): string =
|
|
|
|
|
## Convert bytes to hex string with case option
|
|
|
|
|
result = ""
|
|
|
|
|
for b in bytes:
|
|
|
|
|
let hex = b.toHex(2)
|
|
|
|
|
result.add(if lowercase: hex.toLower() else: hex)
|
|
|
|
|
|
|
|
|
|
proc get_addr*(pubkey: PublicKey): string =
|
|
|
|
|
# TODO: Needs Spec
|
|
|
|
|
result = hash_func(pubkey.bytes().bytesToHex())
|
2025-07-11 15:43:19 -07:00
|
|
|
|
2025-08-15 07:31:19 -07:00
|
|
|
proc toBytes*(s: string): seq[byte] =
|
|
|
|
|
result = cast[seq[byte]](s)
|
|
|
|
|
|
|
|
|
|
proc toUtfString*(b: seq[byte]): string =
|
|
|
|
|
result = cast[string](b)
|
2025-08-22 18:45:55 -07:00
|
|
|
|
|
|
|
|
macro panic*(reason: string): untyped =
|
|
|
|
|
result = quote do:
|
|
|
|
|
let pos = instantiationInfo()
|
|
|
|
|
echo `reason` & " ($1:$2)" % [
|
|
|
|
|
pos.filename, $pos.line]
|
|
|
|
|
echo "traceback:\n", getStackTrace()
|
|
|
|
|
quit(1)
|