btclock_v3/lib/btclock/utils.hpp

14 lines
308 B
C++
Raw Normal View History

#pragma once
2023-11-28 01:30:36 +01:00
#include <string>
#include <cmath>
2023-11-28 02:05:04 +01:00
#include <cstdint>
#include <sstream>
#include <iomanip>
int modulo(int x,int N);
2023-11-28 02:05:04 +01:00
double getSupplyAtBlock(std::uint32_t blockNr);
2024-08-24 15:27:55 +02:00
std::string formatNumberWithSuffix(std::uint64_t num, int numCharacters = 4);
int64_t getAmountInSatoshis(std::string bolt11);