mirror of
https://github.com/XRPLF/clio.git
synced 2026-04-29 15:37:53 +00:00
17 lines
345 B
C++
17 lines
345 B
C++
#pragma once
|
|
|
|
#include <xrpl/basics/base_uint.h>
|
|
#include <xrpl/protocol/LedgerHeader.h>
|
|
#include <xrpl/protocol/Protocol.h>
|
|
|
|
#include <string>
|
|
|
|
std::string
|
|
hexStringToBinaryString(std::string const& hex);
|
|
|
|
ripple::uint256
|
|
binaryStringToUint256(std::string const& bin);
|
|
|
|
std::string
|
|
ledgerHeaderToBinaryString(ripple::LedgerHeader const& info);
|