btclock_v3/lib/btclock/utils.hpp

13 lines
259 B
C++
Raw Normal View History

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