status-lib/status/statusgo_backend_new/utils.nim

7 lines
237 B
Nim
Raw Normal View History

proc isWakuEnabled(): bool =
true # TODO:
proc prefix*(methodName: string, isExt:bool = true): string =
result = if isWakuEnabled(): "waku" else: "shh"
result = result & (if isExt: "ext_" else: "_")
result = result & methodName