Skip to content

greg7mdp/attn_server

Repository files navigation

attn-server

Build Status Build status codecov

Attestation Server for XRPL Sidechains

Table of contents

Dependencies

rippled inclusion

This project depends on the rippled repository for core signing functionality. If you have built and installed rippled, you can point this project at your installation using CMAKE_PREFIX_PATH (if you have installed in a standard system search path, this is not needed), e.g.:

$ cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH=/path/to/rippled/installation/root ../..

Alternatively, if you do not have a local installation of rippled development files that you want to use, then this project will fetch an appropriate version of the source code using CMake's FetchContent.

Other dependencies

Build and run

For linux and other unix-like OSes, run the following commands (see note above about adding CMAKE_PREFIX_PATH as needed):

$ cd ${ATTN_SERVER_DIRECTORY}
$ mkdir -p build/gcc.release
$ cd build/gcc.release
$ cmake -DCMAKE_BUILD_TYPE=Release ../..
$ cmake --build .
$ ./attn_server

For 64-bit Windows, open a MSBuild Command Prompt for Visual Studio and run the following commands:

> cd %ATTN_SERVER_DIRECTORY%
> mkdir build
> cd build
> cmake ..
> cmake --build . --config Release
> .\Release\attn_server.exe

32-bit Windows builds are not supported.

Guide

Attestation Server Documentation

About

Attestation Server for XRPL sidechains

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published