mirror of
https://git.btclock.dev/btclock/btclock_v3
synced 2025-04-19 13:21:18 +00:00
11 lines
199 B
C++
11 lines
199 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <cmath>
|
|
#include <cstdint>
|
|
|
|
int modulo(int x,int N);
|
|
|
|
double getSupplyAtBlock(std::uint32_t blockNr);
|
|
|
|
std::string formatNumberWithSuffix(std::uint64_t num); |