mirror of
https://github.com/XRPLF/clio.git
synced 2026-07-23 15:10:23 +00:00
17 lines
341 B
C++
17 lines
341 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);
|
|
|
|
xrpl::uint256
|
|
binaryStringToUint256(std::string const& bin);
|
|
|
|
std::string
|
|
ledgerHeaderToBinaryString(xrpl::LedgerHeader const& info);
|