commit 2e93ff4b95263d9b3d8f55bea1b677814c793127 Author: wilsonianb Date: Thu Jun 7 13:40:14 2018 -0500 first commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fa4575e --- /dev/null +++ b/.gitignore @@ -0,0 +1,36 @@ +# Compiled Object files +*.slo +*.lo +*.o +*.obj + +# Precompiled Headers +*.gch +*.pch + +# Compiled Dynamic libraries +*.so +*.dylib +*.dll + +# Fortran module files +*.mod +*.smod + +# Compiled Static libraries +*.lai +*.la +*.a +*.lib + +# Executables +*.exe +*.out +*.app + +# Ignore build files +build + +privkeys.txt +pubkeys.txt +ephkey*.txt diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..2c1763e --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "extras/ripple-libpp"] + path = extras/ripple-libpp + url = https://github.com/ripple/ripple-libpp.git diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..3ec5d8c --- /dev/null +++ b/LICENSE @@ -0,0 +1,77 @@ +The accompanying files under various copyrights. + +Copyright (c) 2018 Ripple Labs Inc. + +Permission to use, copy, modify, and distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +The accompanying files incorporate work covered by the following copyright +and previous license notice: + +Copyright (c) 2011 Arthur Britto, David Schwartz, Jed McCaleb, +Vinnie Falco, Bob Way, Eric Lombrozo, Nikolaos D. Bougalis, Howard Hinnant + +Some code from Raw Material Software, Ltd., provided under the terms of the + ISC License. See the corresponding source files for more details. + Copyright (c) 2013 - Raw Material Software Ltd. + Please visit http://www.juce.com + +Some code from ASIO examples: +// Copyright (c) 2003-2011 Christopher M. Kohlhoff (chris at kohlhoff dot com) +// +// Distributed under the Boost Software License, Version 1.0. (See accompanying +// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) + +Some code from Bitcoin: +// Copyright (c) 2009-2010 Satoshi Nakamoto +// Copyright (c) 2011 The Bitcoin developers +// Distributed under the MIT/X11 software license, see the accompanying +// file license.txt or http://www.opensource.org/licenses/mit-license.php. + +Some code from Tom Wu: +This software is covered under the following copyright: + +/* + * Copyright (c) 2003-2005 Tom Wu + * All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining + * a copy of this software and associated documentation files (the + * "Software"), to deal in the Software without restriction, including + * without limitation the rights to use, copy, modify, merge, publish, + * distribute, sublicense, and/or sell copies of the Software, and to + * permit persons to whom the Software is furnished to do so, subject to + * the following conditions: + * + * The above copyright notice and this permission notice shall be + * included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, + * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY + * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. + * + * IN NO EVENT SHALL TOM WU BE LIABLE FOR ANY SPECIAL, INCIDENTAL, + * INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER + * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF + * THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT + * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + * + * In addition, the following condition applies: + * + * All redistributions must retain an intact copy of this copyright notice + * and disclaimer. + */ + +Address all questions regarding this license to: + + Tom Wu + tjw@cs.Stanford.EDU diff --git a/README.md b/README.md new file mode 100644 index 0000000..895e990 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# validator-list + +XRP Ledger validator list generation tool diff --git a/extras/ripple-libpp b/extras/ripple-libpp new file mode 160000 index 0000000..4c1d252 --- /dev/null +++ b/extras/ripple-libpp @@ -0,0 +1 @@ +Subproject commit 4c1d252da51670b6d0978c7212ed23a61cdf1132