├── CMakeLists.txt ├── CMakeLists_IOS.txt ├── Dockerfile ├── Doxyfile ├── LICENSE ├── Makefile ├── README.md ├── cmake ├── 32-bit-toolchain.cmake ├── 64-bit-toolchain.cmake ├── CheckLinkerFlag.c ├── CheckLinkerFlag.cmake ├── CheckTrezor.cmake ├── Doxyfile.in ├── Doxygen.extra.css.in ├── FindBacktrace.cmake ├── FindCcache.cmake ├── FindHIDAPI.cmake ├── FindLibUSB.cmake ├── FindLibunwind.cmake ├── FindMiniupnpc.cmake ├── FindReadline.cmake ├── FindSodium.cmake ├── FindUnbound.cmake ├── GitVersion.cmake ├── SetClangTidy.cmake ├── Version.cmake ├── test-libusb-version.c ├── test-protobuf.cpp ├── test-protobuf.proto ├── test-static-assert.c └── test-static-assert.cpp ├── contrib ├── CMakeLists.txt ├── brew │ └── Brewfile ├── depends │ ├── Makefile │ ├── README.md │ ├── builders │ │ ├── darwin.mk │ │ ├── default.mk │ │ └── linux.mk │ ├── config.guess │ ├── config.sub │ ├── description.md │ ├── funcs.mk │ ├── hosts │ │ ├── android.mk │ │ ├── darwin.mk │ │ ├── default.mk │ │ ├── freebsd.mk │ │ ├── linux.mk │ │ └── mingw32.mk │ ├── packages.md │ ├── packages │ │ ├── android_ndk.mk │ │ ├── boost.mk │ │ ├── darwin_sdk.mk │ │ ├── eudev.mk │ │ ├── expat.mk │ │ ├── freebsd_base.mk │ │ ├── gtest.mk │ │ ├── hidapi.mk │ │ ├── libusb.mk │ │ ├── native_cctools.mk │ │ ├── native_clang.mk │ │ ├── native_libtapi.mk │ │ ├── native_protobuf.mk │ │ ├── ncurses.mk │ │ ├── openssl.mk │ │ ├── packages.mk │ │ ├── protobuf.mk │ │ ├── readline.mk │ │ ├── sodium.mk │ │ ├── unbound.mk │ │ └── zeromq.mk │ ├── patches │ │ ├── android_ndk │ │ │ └── api_definition.patch │ │ ├── boost │ │ │ ├── fix_arm_arch.patch │ │ │ └── fix_aroptions.patch │ │ ├── hidapi │ │ │ └── missing_win_include.patch │ │ ├── ncurses │ │ │ └── fallback.c │ │ ├── sodium │ │ │ ├── disable-glibc-getrandom-getentropy.patch │ │ │ └── fix-whitespace.patch │ │ └── unbound │ │ │ └── disable-glibc-reallocarray.patch │ └── toolchain.cmake.in ├── epee │ ├── CMakeLists.txt │ ├── LICENSE.txt │ ├── README.md │ ├── include │ │ ├── byte_slice.h │ │ ├── byte_stream.h │ │ ├── console_handler.h │ │ ├── file_io_utils.h │ │ ├── fnv1.h │ │ ├── hex.h │ │ ├── include_base_utils.h │ │ ├── int-util.h │ │ ├── math_helper.h │ │ ├── md5_l.h │ │ ├── md5_l.inl │ │ ├── md5global.h │ │ ├── memwipe.h │ │ ├── misc_language.h │ │ ├── misc_log_ex.h │ │ ├── mlocker.h │ │ ├── net │ │ │ ├── abstract_http_client.h │ │ │ ├── abstract_tcp_server2.h │ │ │ ├── abstract_tcp_server2.inl │ │ │ ├── buffer.h │ │ │ ├── connection_basic.hpp │ │ │ ├── enums.h │ │ │ ├── http_auth.h │ │ │ ├── http_base.h │ │ │ ├── http_client.h │ │ │ ├── http_client_base.h │ │ │ ├── http_protocol_handler.h │ │ │ ├── http_protocol_handler.inl │ │ │ ├── http_server_handlers_map2.h │ │ │ ├── http_server_impl_base.h │ │ │ ├── jsonrpc_structs.h │ │ │ ├── levin_base.h │ │ │ ├── levin_protocol_handler_async.h │ │ │ ├── local_ip.h │ │ │ ├── net_helper.h │ │ │ ├── net_parse_helpers.h │ │ │ ├── net_ssl.h │ │ │ ├── net_utils_base.h │ │ │ ├── network_throttle-detail.hpp │ │ │ └── network_throttle.hpp │ │ ├── profile_tools.h │ │ ├── readline_buffer.h │ │ ├── reg_exp_definer.h │ │ ├── rolling_median.h │ │ ├── serialization │ │ │ ├── keyvalue_serialization.h │ │ │ ├── keyvalue_serialization_overloads.h │ │ │ ├── wire.h │ │ │ └── wire │ │ │ │ ├── adapted │ │ │ │ ├── list.h │ │ │ │ └── vector.h │ │ │ │ ├── error.h │ │ │ │ ├── field.h │ │ │ │ ├── fwd.h │ │ │ │ ├── traits.h │ │ │ │ ├── wrapper │ │ │ │ └── defaulted.h │ │ │ │ └── write.h │ │ ├── span.h │ │ ├── stats.h │ │ ├── stats.inl │ │ ├── storages │ │ │ ├── http_abstract_invoke.h │ │ │ ├── levin_abstract_invoke2.h │ │ │ ├── parserse_base_utils.h │ │ │ ├── portable_storage.h │ │ │ ├── portable_storage_base.h │ │ │ ├── portable_storage_bin_utils.h │ │ │ ├── portable_storage_from_bin.h │ │ │ ├── portable_storage_from_json.h │ │ │ ├── portable_storage_template_helper.h │ │ │ ├── portable_storage_to_bin.h │ │ │ ├── portable_storage_to_json.h │ │ │ └── portable_storage_val_converters.h │ │ ├── string_coding.h │ │ ├── string_tools.h │ │ ├── string_tools_lexical.h │ │ ├── syncobj.h │ │ ├── time_helper.h │ │ ├── warnings.h │ │ └── wipeable_string.h │ └── src │ │ ├── CMakeLists.txt │ │ ├── abstract_http_client.cpp │ │ ├── buffer.cpp │ │ ├── byte_slice.cpp │ │ ├── byte_stream.cpp │ │ ├── connection_basic.cpp │ │ ├── file_io_utils.cpp │ │ ├── hex.cpp │ │ ├── http_auth.cpp │ │ ├── int-util.cpp │ │ ├── levin_base.cpp │ │ ├── memwipe.c │ │ ├── misc_language.cpp │ │ ├── mlocker.cpp │ │ ├── mlog.cpp │ │ ├── net_helper.cpp │ │ ├── net_parse_helpers.cpp │ │ ├── net_ssl.cpp │ │ ├── net_utils_base.cpp │ │ ├── network_throttle-detail.cpp │ │ ├── network_throttle.cpp │ │ ├── parserse_base_utils.cpp │ │ ├── portable_storage.cpp │ │ ├── readline_buffer.cpp │ │ ├── string_tools.cpp │ │ └── wipeable_string.cpp ├── fuzz_testing │ └── fuzz.sh ├── gitian │ ├── DOCKRUN.md │ ├── README.md │ ├── dockrun.sh │ ├── gitian-android.yml │ ├── gitian-build.py │ ├── gitian-freebsd.yml │ ├── gitian-linux.yml │ ├── gitian-osx.yml │ └── gitian-win.yml ├── lsan │ └── lsan.supp ├── rlwrap │ ├── monerocommands_bitmonerod.txt │ └── monerocommands_monero-wallet-cli.txt ├── tor │ └── monero-over-tor.sh └── valgrind │ └── monero.supp ├── docs ├── ANONYMITY_NETWORKS.md ├── COMPILING_DEBUGGING_TESTING.md ├── CONTRIBUTING.md ├── LEVIN_PROTOCOL.md ├── PORTABLE_STORAGE.md ├── README.i18n.md ├── RELEASE_CHECKLIST.md └── ZMQ.md ├── external ├── CMakeLists.txt ├── boost │ └── archive │ │ ├── portable_binary_archive.hpp │ │ ├── portable_binary_iarchive.hpp │ │ └── portable_binary_oarchive.hpp ├── db_drivers │ ├── CMakeLists.txt │ └── liblmdb │ │ ├── CHANGES │ │ ├── CMakeLists.txt │ │ ├── COPYRIGHT │ │ ├── Doxyfile │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── intro.doc │ │ ├── lmdb.h │ │ ├── mdb.c │ │ ├── mdb_copy.1 │ │ ├── mdb_copy.c │ │ ├── mdb_drop.1 │ │ ├── mdb_drop.c │ │ ├── mdb_dump.1 │ │ ├── mdb_dump.c │ │ ├── mdb_load.1 │ │ ├── mdb_load.c │ │ ├── mdb_stat.1 │ │ ├── mdb_stat.c │ │ ├── midl.c │ │ ├── midl.h │ │ ├── mtest.c │ │ ├── mtest2.c │ │ ├── mtest3.c │ │ ├── mtest4.c │ │ ├── mtest5.c │ │ ├── mtest6.c │ │ ├── sample-bdb.txt │ │ ├── sample-mdb.txt │ │ └── tooltag ├── easylogging++ │ ├── CMakeLists.txt │ ├── ea_config.h │ ├── easylogging++.cc │ └── easylogging++.h └── qrcodegen │ ├── CMakeLists.txt │ ├── QrCode.cpp │ └── QrCode.hpp ├── src ├── CMakeLists.txt ├── blockchain_db │ ├── CMakeLists.txt │ ├── blockchain_db.cpp │ ├── blockchain_db.h │ ├── lmdb │ │ ├── db_lmdb.cpp │ │ └── db_lmdb.h │ ├── locked_txn.h │ └── testdb.h ├── blockchain_utilities │ ├── CMakeLists.txt │ ├── README.md │ ├── blockchain-stats-readme.md │ ├── blockchain_ancestry.cpp │ ├── blockchain_blackball.cpp │ ├── blockchain_depth.cpp │ ├── blockchain_export.cpp │ ├── blockchain_import.cpp │ ├── blockchain_prune.cpp │ ├── blockchain_prune_known_spent_data.cpp │ ├── blockchain_stats.cpp │ ├── blockchain_usage.cpp │ ├── blockchain_utilities.h │ ├── blocksdat_file.cpp │ ├── blocksdat_file.h │ ├── bootstrap_file.cpp │ ├── bootstrap_file.h │ └── bootstrap_serialization.h ├── blocks │ ├── CMakeLists.txt │ ├── blocks.cpp │ ├── blocks.h │ ├── checkpoints.dat │ ├── stagenet_blocks.dat │ └── testnet_blocks.dat ├── checkpoints │ ├── CMakeLists.txt │ ├── checkpoints.cpp │ └── checkpoints.h ├── common │ ├── CMakeLists.txt │ ├── aligned.c │ ├── aligned.h │ ├── apply_permutation.h │ ├── base58.cpp │ ├── base58.h │ ├── combinator.cpp │ ├── combinator.h │ ├── command_line.cpp │ ├── command_line.h │ ├── common_fwd.h │ ├── compat │ │ └── glibc_compat.cpp │ ├── container_helpers.h │ ├── data_cache.h │ ├── dns_utils.cpp │ ├── dns_utils.h │ ├── download.cpp │ ├── download.h │ ├── error.cpp │ ├── error.h │ ├── expect.cpp │ ├── expect.h │ ├── http_connection.h │ ├── i18n.cpp │ ├── i18n.h │ ├── json_util.h │ ├── notify.cpp │ ├── notify.h │ ├── password.cpp │ ├── password.h │ ├── perf_timer.cpp │ ├── perf_timer.h │ ├── pod-class.h │ ├── powerof.h │ ├── pruning.cpp │ ├── pruning.h │ ├── rpc_client.h │ ├── scoped_message_writer.h │ ├── sfinae_helpers.h │ ├── spawn.cpp │ ├── spawn.h │ ├── stack_trace.cpp │ ├── stack_trace.h │ ├── threadpool.cpp │ ├── threadpool.h │ ├── timings.cc │ ├── timings.h │ ├── unordered_containers_boost_serialization.h │ ├── updates.cpp │ ├── updates.h │ ├── utf8.h │ ├── util.cpp │ ├── util.h │ ├── variant.h │ └── varint.h ├── crypto │ ├── CMakeLists.txt │ ├── CryptonightR_JIT.c │ ├── CryptonightR_JIT.h │ ├── CryptonightR_template.S │ ├── CryptonightR_template.h │ ├── aesb.c │ ├── blake256.c │ ├── blake256.h │ ├── c_threads.h │ ├── chacha.c │ ├── chacha.h │ ├── crypto-ops-data.c │ ├── crypto-ops.c │ ├── crypto-ops.h │ ├── crypto.cpp │ ├── crypto.h │ ├── crypto_ops_builder │ │ ├── Makefile │ │ ├── README.md │ │ ├── api.h │ │ ├── crypto-ops-data.c │ │ ├── crypto-ops-old.c │ │ ├── crypto-ops.h │ │ ├── crypto_int32.h │ │ ├── crypto_sign.h │ │ ├── crypto_uint32.h │ │ ├── crypto_verify_32.h │ │ ├── ietf.txt │ │ ├── include │ │ │ ├── Makefile.am │ │ │ ├── libsodium_LICENSE │ │ │ ├── sodium.h │ │ │ └── sodium │ │ │ │ ├── crypto_int32.h │ │ │ │ ├── crypto_int64.h │ │ │ │ ├── crypto_uint16.h │ │ │ │ ├── crypto_uint32.h │ │ │ │ ├── crypto_uint64.h │ │ │ │ ├── crypto_uint8.h │ │ │ │ ├── crypto_verify_32.h │ │ │ │ └── randombytes.h │ │ ├── randombytes.c │ │ ├── ref10 │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── api.h │ │ │ ├── base.h │ │ │ ├── base.py │ │ │ ├── base2.h │ │ │ ├── base2.py │ │ │ ├── d.h │ │ │ ├── d.py │ │ │ ├── d2.h │ │ │ ├── d2.py │ │ │ ├── description │ │ │ ├── designers │ │ │ ├── fe.h │ │ │ ├── fe_0.c │ │ │ ├── fe_1.c │ │ │ ├── fe_add.c │ │ │ ├── fe_cmov.c │ │ │ ├── fe_copy.c │ │ │ ├── fe_frombytes.c │ │ │ ├── fe_invert.c │ │ │ ├── fe_isnegative.c │ │ │ ├── fe_isnonzero.c │ │ │ ├── fe_mul.c │ │ │ ├── fe_neg.c │ │ │ ├── fe_pow22523.c │ │ │ ├── fe_sq.c │ │ │ ├── fe_sq2.c │ │ │ ├── fe_sub.c │ │ │ ├── fe_tobytes.c │ │ │ ├── ge.h │ │ │ ├── ge_add.c │ │ │ ├── ge_add.h │ │ │ ├── ge_add.q │ │ │ ├── ge_double_scalarmult.c │ │ │ ├── ge_frombytes.c │ │ │ ├── ge_madd.c │ │ │ ├── ge_madd.h │ │ │ ├── ge_madd.q │ │ │ ├── ge_msub.c │ │ │ ├── ge_msub.h │ │ │ ├── ge_msub.q │ │ │ ├── ge_p1p1_to_p2.c │ │ │ ├── ge_p1p1_to_p3.c │ │ │ ├── ge_p2_0.c │ │ │ ├── ge_p2_dbl.c │ │ │ ├── ge_p2_dbl.h │ │ │ ├── ge_p2_dbl.q │ │ │ ├── ge_p3_0.c │ │ │ ├── ge_p3_dbl.c │ │ │ ├── ge_p3_to_cached.c │ │ │ ├── ge_p3_to_p2.c │ │ │ ├── ge_p3_tobytes.c │ │ │ ├── ge_precomp_0.c │ │ │ ├── ge_scalarmult_base.c │ │ │ ├── ge_sub.c │ │ │ ├── ge_sub.h │ │ │ ├── ge_sub.q │ │ │ ├── ge_tobytes.c │ │ │ ├── keypair.c │ │ │ ├── open.c │ │ │ ├── pow22523.h │ │ │ ├── pow22523.q │ │ │ ├── pow225521.h │ │ │ ├── pow225521.q │ │ │ ├── q2h.sh │ │ │ ├── sc.h │ │ │ ├── sc_muladd.c │ │ │ ├── sc_reduce.c │ │ │ ├── sign.c │ │ │ ├── sqrtm1.h │ │ │ └── sqrtm1.py │ │ ├── ref10CommentedCombined │ │ │ ├── MakeCryptoOps.py │ │ │ ├── api.h │ │ │ ├── base.h │ │ │ ├── base.py │ │ │ ├── base2.h │ │ │ ├── base2.py │ │ │ ├── crypto-ops.h │ │ │ ├── d.h │ │ │ ├── d.py │ │ │ ├── d2.h │ │ │ ├── d2.py │ │ │ ├── description │ │ │ ├── designers │ │ │ ├── fe.h │ │ │ ├── fe_0.c │ │ │ ├── fe_1.c │ │ │ ├── fe_add.c │ │ │ ├── fe_cmov.c │ │ │ ├── fe_copy.c │ │ │ ├── fe_frombytes.c │ │ │ ├── fe_invert.c │ │ │ ├── fe_isnegative.c │ │ │ ├── fe_isnonzero.c │ │ │ ├── fe_mul.c │ │ │ ├── fe_neg.c │ │ │ ├── fe_pow22523.c │ │ │ ├── fe_sq.c │ │ │ ├── fe_sq2.c │ │ │ ├── fe_sub.c │ │ │ ├── fe_tobytes.c │ │ │ ├── ge.h │ │ │ ├── ge_add.c │ │ │ ├── ge_add.h │ │ │ ├── ge_add.q │ │ │ ├── ge_double_scalarmult.c │ │ │ ├── ge_frombytes.c │ │ │ ├── ge_madd.c │ │ │ ├── ge_madd.h │ │ │ ├── ge_madd.q │ │ │ ├── ge_msub.c │ │ │ ├── ge_msub.h │ │ │ ├── ge_msub.q │ │ │ ├── ge_p1p1_to_p2.c │ │ │ ├── ge_p1p1_to_p3.c │ │ │ ├── ge_p2_0.c │ │ │ ├── ge_p2_dbl.c │ │ │ ├── ge_p2_dbl.h │ │ │ ├── ge_p2_dbl.q │ │ │ ├── ge_p3_0.c │ │ │ ├── ge_p3_dbl.c │ │ │ ├── ge_p3_to_cached.c │ │ │ ├── ge_p3_to_p2.c │ │ │ ├── ge_p3_tobytes.c │ │ │ ├── ge_precomp_0.c │ │ │ ├── ge_scalarmult_base.c │ │ │ ├── ge_sub.c │ │ │ ├── ge_sub.h │ │ │ ├── ge_sub.q │ │ │ ├── ge_tobytes.c │ │ │ ├── keypair.c │ │ │ ├── open.c │ │ │ ├── pow22523.h │ │ │ ├── pow22523.q │ │ │ ├── pow225521.h │ │ │ ├── pow225521.q │ │ │ ├── q2h.sh │ │ │ ├── sc.h │ │ │ ├── sc_muladd.c │ │ │ ├── sc_reduce.c │ │ │ ├── sc_sub.xmr.c │ │ │ ├── scrap.txt │ │ │ ├── sign.c │ │ │ ├── sqrtm1.h │ │ │ ├── sqrtm1.py │ │ │ ├── test.py │ │ │ └── xmrSpecificOld.c │ │ ├── sha512-blocks.c │ │ ├── sha512-hash.c │ │ ├── sha512.h │ │ └── verify.c │ ├── duration.h │ ├── generators.cpp │ ├── generators.h │ ├── generic-ops.h │ ├── groestl.c │ ├── groestl.h │ ├── groestl_tables.h │ ├── hash-extra-blake.c │ ├── hash-extra-groestl.c │ ├── hash-extra-jh.c │ ├── hash-extra-skein.c │ ├── hash-ops.h │ ├── hash.c │ ├── hash.h │ ├── hmac-keccak.c │ ├── hmac-keccak.h │ ├── initializer.h │ ├── jh.c │ ├── jh.h │ ├── keccak.c │ ├── keccak.h │ ├── oaes_config.h │ ├── oaes_lib.c │ ├── oaes_lib.h │ ├── random.c │ ├── random.h │ ├── rx-slow-hash.c │ ├── skein.c │ ├── skein.h │ ├── skein_port.h │ ├── slow-hash.c │ ├── tree-hash.c │ ├── variant2_int_sqrt.h │ ├── variant4_random_math.h │ └── wallet │ │ ├── CMakeLists.txt │ │ ├── crypto.h │ │ └── empty.h.in ├── cryptonote_basic │ ├── CMakeLists.txt │ ├── account.cpp │ ├── account.h │ ├── account_boost_serialization.h │ ├── account_generators.h │ ├── blobdatatype.h │ ├── connection_context.cpp │ ├── connection_context.h │ ├── cryptonote_basic.h │ ├── cryptonote_basic_impl.cpp │ ├── cryptonote_basic_impl.h │ ├── cryptonote_boost_serialization.h │ ├── cryptonote_format_utils.cpp │ ├── cryptonote_format_utils.h │ ├── cryptonote_format_utils_basic.cpp │ ├── difficulty.cpp │ ├── difficulty.h │ ├── events.h │ ├── fwd.h │ ├── hardfork.cpp │ ├── hardfork.h │ ├── merge_mining.cpp │ ├── merge_mining.h │ ├── miner.cpp │ ├── miner.h │ ├── subaddress_index.h │ ├── tx_extra.h │ └── verification_context.h ├── cryptonote_config.h ├── cryptonote_core │ ├── CMakeLists.txt │ ├── blockchain.cpp │ ├── blockchain.h │ ├── blockchain_and_pool.h │ ├── blockchain_storage_boost_serialization.h │ ├── cryptonote_core.cpp │ ├── cryptonote_core.h │ ├── cryptonote_tx_utils.cpp │ ├── cryptonote_tx_utils.h │ ├── i_core_events.h │ ├── tx_pool.cpp │ ├── tx_pool.h │ ├── tx_sanity_check.cpp │ ├── tx_sanity_check.h │ ├── tx_verification_utils.cpp │ └── tx_verification_utils.h ├── cryptonote_protocol │ ├── CMakeLists.txt │ ├── block_queue.cpp │ ├── block_queue.h │ ├── cryptonote_protocol_defs.h │ ├── cryptonote_protocol_handler-base.cpp │ ├── cryptonote_protocol_handler.h │ ├── cryptonote_protocol_handler.inl │ ├── cryptonote_protocol_handler_common.h │ ├── enums.h │ ├── fwd.h │ ├── levin_notify.cpp │ └── levin_notify.h ├── daemon │ ├── CMakeLists.txt │ ├── command_line_args.h │ ├── command_parser_executor.cpp │ ├── command_parser_executor.h │ ├── command_server.cpp │ ├── command_server.h │ ├── core.h │ ├── daemon.cpp │ ├── daemon.h │ ├── executor.cpp │ ├── executor.h │ ├── main.cpp │ ├── p2p.h │ ├── protocol.h │ ├── rpc.h │ ├── rpc_command_executor.cpp │ └── rpc_command_executor.h ├── daemonizer │ ├── CMakeLists.txt │ ├── daemonizer.h │ ├── posix_daemonizer.inl │ ├── posix_fork.cpp │ ├── posix_fork.h │ ├── windows_daemonizer.inl │ ├── windows_service.cpp │ ├── windows_service.h │ └── windows_service_runner.h ├── debug_utilities │ ├── CMakeLists.txt │ ├── cn_deserialize.cpp │ ├── dns_checks.cpp │ └── object_sizes.cpp ├── device │ ├── CMakeLists.txt │ ├── device.cpp │ ├── device.hpp │ ├── device_cold.hpp │ ├── device_default.cpp │ ├── device_default.hpp │ ├── device_io.hpp │ ├── device_io_hid.cpp │ ├── device_io_hid.hpp │ ├── device_ledger.cpp │ ├── device_ledger.hpp │ ├── log.cpp │ └── log.hpp ├── device_trezor │ ├── CMakeLists.txt │ ├── README.md │ ├── device_trezor.cpp │ ├── device_trezor.hpp │ ├── device_trezor_base.cpp │ ├── device_trezor_base.hpp │ ├── trezor.hpp │ └── trezor │ │ ├── debug_link.cpp │ │ ├── debug_link.hpp │ │ ├── exceptions.hpp │ │ ├── messages_map.cpp │ │ ├── messages_map.hpp │ │ ├── protocol.cpp │ │ ├── protocol.hpp │ │ ├── tools │ │ ├── README.md │ │ ├── build_protob.py │ │ ├── pb2cpp.py │ │ └── py2backports │ │ │ ├── __init__.py │ │ │ ├── tempfile.py │ │ │ └── weakref.py │ │ ├── transport.cpp │ │ ├── transport.hpp │ │ └── trezor_defs.hpp ├── gen_multisig │ ├── CMakeLists.txt │ └── gen_multisig.cpp ├── gen_ssl_cert │ ├── CMakeLists.txt │ └── gen_ssl_cert.cpp ├── hardforks │ ├── CMakeLists.txt │ ├── hardforks.cpp │ └── hardforks.h ├── lmdb │ ├── CMakeLists.txt │ ├── database.cpp │ ├── database.h │ ├── error.cpp │ ├── error.h │ ├── key_stream.h │ ├── table.cpp │ ├── table.h │ ├── transaction.h │ ├── util.h │ ├── value_stream.cpp │ └── value_stream.h ├── mnemonics │ ├── CMakeLists.txt │ ├── chinese_simplified.h │ ├── dutch.h │ ├── electrum-words.cpp │ ├── electrum-words.h │ ├── english.h │ ├── english_old.h │ ├── esperanto.h │ ├── french.h │ ├── german.h │ ├── italian.h │ ├── japanese.h │ ├── language_base.h │ ├── lojban.h │ ├── portuguese.h │ ├── russian.h │ ├── singleton.h │ └── spanish.h ├── multisig │ ├── CMakeLists.txt │ ├── multisig.cpp │ ├── multisig.h │ ├── multisig_account.cpp │ ├── multisig_account.h │ ├── multisig_account_kex_impl.cpp │ ├── multisig_clsag_context.cpp │ ├── multisig_clsag_context.h │ ├── multisig_kex_msg.cpp │ ├── multisig_kex_msg.h │ ├── multisig_kex_msg_serialization.h │ ├── multisig_tx_builder_ringct.cpp │ └── multisig_tx_builder_ringct.h ├── net │ ├── CMakeLists.txt │ ├── dandelionpp.cpp │ ├── dandelionpp.h │ ├── error.cpp │ ├── error.h │ ├── fwd.h │ ├── http.cpp │ ├── http.h │ ├── i2p_address.cpp │ ├── i2p_address.h │ ├── parse.cpp │ ├── parse.h │ ├── resolve.cpp │ ├── resolve.h │ ├── socks.cpp │ ├── socks.h │ ├── socks_connect.cpp │ ├── socks_connect.h │ ├── tor_address.cpp │ ├── tor_address.h │ ├── zmq.cpp │ └── zmq.h ├── oracle │ ├── CMakeLists.txt │ ├── asset_types.h │ ├── pricing_record.cpp │ └── pricing_record.h ├── p2p │ ├── CMakeLists.txt │ ├── net_node.cpp │ ├── net_node.h │ ├── net_node.inl │ ├── net_node_common.h │ ├── net_peerlist.cpp │ ├── net_peerlist.h │ ├── net_peerlist_boost_serialization.h │ └── p2p_protocol_defs.h ├── ringct │ ├── CMakeLists.txt │ ├── bulletproofs.cc │ ├── bulletproofs.h │ ├── bulletproofs_plus.cc │ ├── bulletproofs_plus.h │ ├── multiexp.cc │ ├── multiexp.h │ ├── rctCryptoOps.c │ ├── rctCryptoOps.h │ ├── rctOps.cpp │ ├── rctOps.h │ ├── rctSigs.cpp │ ├── rctSigs.h │ ├── rctTypes.cpp │ └── rctTypes.h ├── rpc │ ├── CMakeLists.txt │ ├── bootstrap_daemon.cpp │ ├── bootstrap_daemon.h │ ├── bootstrap_node_selector.cpp │ ├── bootstrap_node_selector.h │ ├── core_rpc_server.cpp │ ├── core_rpc_server.h │ ├── core_rpc_server_commands_defs.h │ ├── core_rpc_server_error_codes.h │ ├── daemon_handler.cpp │ ├── daemon_handler.h │ ├── daemon_messages.cpp │ ├── daemon_messages.h │ ├── daemon_rpc_version.h │ ├── fwd.h │ ├── instanciations.cpp │ ├── message.cpp │ ├── message.h │ ├── message_data_structs.h │ ├── rpc_args.cpp │ ├── rpc_args.h │ ├── rpc_handler.cpp │ ├── rpc_handler.h │ ├── rpc_payment.cpp │ ├── rpc_payment.h │ ├── rpc_payment_costs.h │ ├── rpc_payment_signature.cpp │ ├── rpc_payment_signature.h │ ├── rpc_version_str.cpp │ ├── rpc_version_str.h │ ├── zmq_pub.cpp │ ├── zmq_pub.h │ ├── zmq_server.cpp │ └── zmq_server.h ├── seraphis_crypto │ ├── CMakeLists.txt │ ├── dummy.cpp │ └── sp_transcript.h ├── serialization │ ├── CMakeLists.txt │ ├── binary_archive.h │ ├── binary_utils.h │ ├── container.h │ ├── containers.h │ ├── crypto.h │ ├── debug_archive.h │ ├── difficulty_type.h │ ├── json_archive.h │ ├── json_object.cpp │ ├── json_object.h │ ├── pair.h │ ├── pricing_record.h │ ├── serialization.h │ ├── string.h │ ├── tuple.h │ └── variant.h ├── simplewallet │ ├── CMakeLists.txt │ ├── simplewallet.cpp │ └── simplewallet.h ├── version.cpp.in ├── version.h └── wallet │ ├── CMakeLists.txt │ ├── api │ ├── CMakeLists.txt │ ├── address_book.cpp │ ├── address_book.h │ ├── common_defines.h │ ├── pending_transaction.cpp │ ├── pending_transaction.h │ ├── subaddress.cpp │ ├── subaddress.h │ ├── subaddress_account.cpp │ ├── subaddress_account.h │ ├── transaction_history.cpp │ ├── transaction_history.h │ ├── transaction_info.cpp │ ├── transaction_info.h │ ├── unsigned_transaction.cpp │ ├── unsigned_transaction.h │ ├── utils.cpp │ ├── wallet.cpp │ ├── wallet.h │ ├── wallet2_api.h │ ├── wallet_manager.cpp │ └── wallet_manager.h │ ├── message_store.cpp │ ├── message_store.h │ ├── message_transporter.cpp │ ├── message_transporter.h │ ├── node_rpc_proxy.cpp │ ├── node_rpc_proxy.h │ ├── ringdb.cpp │ ├── ringdb.h │ ├── wallet2.cpp │ ├── wallet2.h │ ├── wallet_args.cpp │ ├── wallet_args.h │ ├── wallet_errors.h │ ├── wallet_rpc_server.cpp │ ├── wallet_rpc_server.h │ ├── wallet_rpc_server_commands_defs.h │ └── wallet_rpc_server_error_codes.h ├── tests ├── CMakeLists.txt ├── README.md ├── benchmark.cpp ├── benchmark.h.in ├── block_weight │ ├── CMakeLists.txt │ ├── block_weight.cpp │ ├── block_weight.py │ └── compare.py ├── core_tests │ ├── CMakeLists.txt │ ├── block_reward.cpp │ ├── block_reward.h │ ├── block_validation.cpp │ ├── block_validation.h │ ├── bulletproof_plus.cpp │ ├── bulletproof_plus.h │ ├── bulletproofs.cpp │ ├── bulletproofs.h │ ├── chain_split_1.cpp │ ├── chain_split_1.h │ ├── chain_switch_1.cpp │ ├── chain_switch_1.h │ ├── chaingen.cpp │ ├── chaingen.h │ ├── chaingen001.cpp │ ├── chaingen_main.cpp │ ├── chaingen_serialization.h │ ├── chaingen_tests_list.h │ ├── double_spend.cpp │ ├── double_spend.h │ ├── double_spend.inl │ ├── integer_overflow.cpp │ ├── integer_overflow.h │ ├── multisig.cpp │ ├── multisig.h │ ├── rct.cpp │ ├── rct.h │ ├── rct2.cpp │ ├── rct2.h │ ├── ring_signature_1.cpp │ ├── ring_signature_1.h │ ├── transaction_tests.cpp │ ├── transaction_tests.h │ ├── tx_pool.cpp │ ├── tx_pool.h │ ├── tx_validation.cpp │ ├── tx_validation.h │ ├── v2_tests.cpp │ ├── v2_tests.h │ ├── wallet_tools.cpp │ └── wallet_tools.h ├── crypto │ ├── CMakeLists.txt │ ├── cnv4-jit.c │ ├── crypto-ops-data.c │ ├── crypto-ops.c │ ├── crypto-tests.h │ ├── crypto.cpp │ ├── hash.c │ ├── main.cpp │ ├── random.c │ └── tests.txt ├── data │ ├── account-002bee2f8e16f5de4db0d3b8ce9227c8c0b7f9688348b028e022cb43f210968b40a69cdc8531fd4a2e7c9e144eec48bb477733d70ce5f9b85338a07cb10b849ad8fb │ ├── account-007af2d7c5ffd8f69005debae820207820805e28c7d7a16714591143f56fb51e2b91ad0c1a535567e6292b321773df5e5aaace00fe767c4f09de452838575357ca9f │ ├── account-009b82d66dfaaba55a581913fa09d6c5bebe179cd73731781265c96e9e630dcd27fd5d20e7f1d0fa42619de9ca8fe4c0659f6959b2bebb15079cdaed07a442a78486 │ ├── account-00aff84db50d6a54dd56051379f6c336fdd330d1cb11e7523bbf71f30b1ae760fa47ace8679b6486f79429980fd2331715a631f5729db284eb1fc6f108aeb7a7f4fe │ ├── fuzz │ │ ├── base58 │ │ │ ├── ENC1 │ │ │ └── ENC2 │ │ ├── block │ │ │ ├── BLOCK1 │ │ │ └── BLOCK2 │ │ ├── bulletproof │ │ │ └── BP0 │ │ ├── cold-outputs │ │ │ ├── out-all-6 │ │ │ └── out-none-6 │ │ ├── cold-transaction │ │ │ └── CTX1 │ │ ├── http-client │ │ │ └── RESP1 │ │ ├── levin │ │ │ └── LEVIN1 │ │ ├── load-from-binary │ │ │ └── BINARY1 │ │ ├── load-from-json │ │ │ └── JSON1 │ │ ├── parse-url │ │ │ ├── URL1 │ │ │ └── URL2 │ │ ├── signature │ │ │ ├── SIG1 │ │ │ └── SIG2 │ │ ├── transaction │ │ │ ├── TX1 │ │ │ └── TX2 │ │ ├── tx-extra │ │ │ ├── TXEXTRA1 │ │ │ └── TXEXTRA2 │ │ └── utf8 │ │ │ ├── UTF8_1 │ │ │ └── UTF8_2 │ ├── outputs │ ├── sha256sum │ │ ├── CLSAG.pdf │ │ ├── empty.txt │ │ └── small_file.txt │ ├── signed_monero_tx │ ├── txs │ │ └── bpp_tx_e89415.bin │ ├── unsigned_monero_tx │ ├── wallet_00fd416a │ ├── wallet_00fd416a.keys │ ├── wallet_9svHk1 │ └── wallet_9svHk1.keys ├── difficulty │ ├── CMakeLists.txt │ ├── data.txt │ ├── difficulty.cpp │ ├── gen_wide_data.py │ ├── generate-data │ └── wide_difficulty.py ├── functional_tests │ ├── CMakeLists.txt │ ├── address_book.py │ ├── bans.py │ ├── blockchain.py │ ├── check_missing_rpc_methods.py │ ├── cold_signing.py │ ├── cpu_power_test.cpp │ ├── daemon_info.py │ ├── functional_tests_rpc.py │ ├── get_output_distribution.py │ ├── integrated_address.py │ ├── k_anonymity.py │ ├── main.cpp │ ├── make_test_signature.cc │ ├── mining.py │ ├── multisig.py │ ├── p2p.py │ ├── proofs.py │ ├── rpc_payment.py │ ├── sign_message.py │ ├── speed.py │ ├── transactions_flow_test.cpp │ ├── transactions_flow_test.h │ ├── transactions_generation_from_blockchain.cpp │ ├── transactions_generation_from_blockchain.h │ ├── transfer.py │ ├── txpool.py │ ├── uri.py │ ├── util_resources.py │ ├── validate_address.py │ └── wallet.py ├── fuzz │ ├── CMakeLists.txt │ ├── base58.cpp │ ├── block.cpp │ ├── bulletproof.cpp │ ├── cold-outputs.cpp │ ├── cold-transaction.cpp │ ├── fuzzer.cpp │ ├── fuzzer.h │ ├── http-client.cpp │ ├── levin.cpp │ ├── load_from_binary.cpp │ ├── load_from_json.cpp │ ├── parse_url.cpp │ ├── signature.cpp │ ├── transaction.cpp │ ├── tx-extra.cpp │ └── utf8.cpp ├── gtest │ ├── CHANGES │ ├── CMakeLists.txt │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── README.md │ ├── cmake │ │ └── internal_utils.cmake │ ├── include │ │ └── gtest │ │ │ ├── gtest-death-test.h │ │ │ ├── gtest-message.h │ │ │ ├── gtest-param-test.h │ │ │ ├── gtest-param-test.h.pump │ │ │ ├── gtest-printers.h │ │ │ ├── gtest-spi.h │ │ │ ├── gtest-test-part.h │ │ │ ├── gtest-typed-test.h │ │ │ ├── gtest.h │ │ │ ├── gtest_pred_impl.h │ │ │ ├── gtest_prod.h │ │ │ └── internal │ │ │ ├── custom │ │ │ ├── gtest-port.h │ │ │ ├── gtest-printers.h │ │ │ └── gtest.h │ │ │ ├── gtest-death-test-internal.h │ │ │ ├── gtest-filepath.h │ │ │ ├── gtest-internal.h │ │ │ ├── gtest-linked_ptr.h │ │ │ ├── gtest-param-util-generated.h │ │ │ ├── gtest-param-util-generated.h.pump │ │ │ ├── gtest-param-util.h │ │ │ ├── gtest-port-arch.h │ │ │ ├── gtest-port.h │ │ │ ├── gtest-string.h │ │ │ ├── gtest-tuple.h │ │ │ ├── gtest-tuple.h.pump │ │ │ ├── gtest-type-util.h │ │ │ └── gtest-type-util.h.pump │ └── src │ │ ├── gtest-all.cc │ │ ├── gtest-death-test.cc │ │ ├── gtest-filepath.cc │ │ ├── gtest-internal-inl.h │ │ ├── gtest-port.cc │ │ ├── gtest-printers.cc │ │ ├── gtest-test-part.cc │ │ ├── gtest-typed-test.cc │ │ ├── gtest.cc │ │ └── gtest_main.cc ├── hash-target.cpp ├── hash │ ├── CMakeLists.txt │ ├── main.cpp │ ├── tests-blake2b.txt │ ├── tests-extra-blake.txt │ ├── tests-extra-groestl.txt │ ├── tests-extra-jh.txt │ ├── tests-extra-skein.txt │ ├── tests-fast.txt │ ├── tests-slow-1.txt │ ├── tests-slow-2.txt │ ├── tests-slow-4.txt │ ├── tests-slow.txt │ └── tests-tree.txt ├── io.h ├── libwallet_api_tests │ ├── CMakeLists.txt │ ├── main.cpp │ └── scripts │ │ ├── README.md │ │ ├── create_wallets.sh │ │ ├── mining_start.sh │ │ ├── mining_stop.sh │ │ ├── open_wallet_1.sh │ │ ├── open_wallet_2.sh │ │ ├── open_wallet_3.sh │ │ ├── open_wallet_4.sh │ │ ├── open_wallet_5.sh │ │ ├── open_wallet_miner.sh │ │ └── send_funds.sh ├── net_load_tests │ ├── CMakeLists.txt │ ├── clt.cpp │ ├── net_load_tests.h │ └── srv.cpp ├── performance_tests │ ├── CMakeLists.txt │ ├── bulletproof.h │ ├── bulletproof_plus.h │ ├── check_hash.h │ ├── check_tx_signature.h │ ├── cn_fast_hash.h │ ├── cn_slow_hash.h │ ├── construct_tx.h │ ├── crypto_ops.h │ ├── derive_public_key.h │ ├── derive_secret_key.h │ ├── derive_view_tag.h │ ├── equality.h │ ├── ge_frombytes_vartime.h │ ├── ge_tobytes.h │ ├── generate_key_derivation.h │ ├── generate_key_image.h │ ├── generate_key_image_helper.h │ ├── generate_keypair.h │ ├── is_out_to_acc.h │ ├── main.cpp │ ├── multi_tx_test_base.h │ ├── multiexp.h │ ├── out_can_be_to_acc.h │ ├── performance_tests.h │ ├── performance_utils.h │ ├── range_proof.h │ ├── rct_mlsag.h │ ├── sc_check.h │ ├── sc_reduce32.h │ ├── sig_clsag.h │ ├── sig_mlsag.h │ ├── signature.h │ ├── single_tx_test_base.h │ └── subaddress_expand.h ├── trezor │ ├── CMakeLists.txt │ ├── daemon.cpp │ ├── daemon.h │ ├── tools.cpp │ ├── tools.h │ ├── trezor_tests.cpp │ └── trezor_tests.h └── unit_tests │ ├── CMakeLists.txt │ ├── account.cpp │ ├── address_from_url.cpp │ ├── aligned.cpp │ ├── apply_permutation.cpp │ ├── base58.cpp │ ├── block_queue.cpp │ ├── block_reward.cpp │ ├── blockchain_db.cpp │ ├── bootstrap_node_selector.cpp │ ├── bulletproofs.cpp │ ├── bulletproofs_plus.cpp │ ├── canonical_amounts.cpp │ ├── chacha.cpp │ ├── checkpoints.cpp │ ├── command_line.cpp │ ├── conversion.cpp │ ├── crypto.cpp │ ├── decompose_amount_into_digits.cpp │ ├── device.cpp │ ├── difficulty.cpp │ ├── dns_resolver.cpp │ ├── epee_boosted_tcp_server.cpp │ ├── epee_levin_protocol_handler_async.cpp │ ├── epee_serialization.cpp │ ├── epee_utils.cpp │ ├── expect.cpp │ ├── fee.cpp │ ├── get_tx_asset_types.cpp │ ├── get_xtype_from_string.cpp │ ├── hardfork.cpp │ ├── hashchain.cpp │ ├── hmac_keccak.cpp │ ├── http.cpp │ ├── is_hdd.cpp │ ├── json_serialization.cpp │ ├── json_serialization.h │ ├── keccak.cpp │ ├── levin.cpp │ ├── lmdb.cpp │ ├── logging.cpp │ ├── long_term_block_weight.cpp │ ├── main.cpp │ ├── memwipe.cpp │ ├── mlocker.cpp │ ├── mnemonics.cpp │ ├── mul_div.cpp │ ├── multiexp.cpp │ ├── multisig.cpp │ ├── net.cpp │ ├── node_server.cpp │ ├── notify.cpp │ ├── oracle.cpp │ ├── output_distribution.cpp │ ├── output_selection.cpp │ ├── parse_amount.cpp │ ├── pruning.cpp │ ├── random.cpp │ ├── reserve.cpp │ ├── ringct.cpp │ ├── ringdb.cpp │ ├── rolling_median.cpp │ ├── rpc_version_str.cpp │ ├── scaling_2021.cpp │ ├── serialization.cpp │ ├── sha256.cpp │ ├── slow_memmem.cpp │ ├── subaddress.cpp │ ├── test_notifier.cpp │ ├── test_peerlist.cpp │ ├── test_protocol_pack.cpp │ ├── test_tx_utils.cpp │ ├── threadpool.cpp │ ├── tx_proof.cpp │ ├── unbound.cpp │ ├── unit_tests_utils.h │ ├── uri.cpp │ ├── util.cpp │ ├── variant.cpp │ ├── varint.cpp │ ├── ver_rct_non_semantics_simple_cached.cpp │ ├── vercmp.cpp │ ├── wallet_storage.cpp │ ├── wipeable_string.cpp │ └── zmq_rpc.cpp ├── translations ├── CMakeLists.txt ├── generate_translations_header.c ├── monero.ts ├── monero_ar.ts ├── monero_bg.ts ├── monero_bn.ts ├── monero_cat.ts ├── monero_cs.ts ├── monero_da.ts ├── monero_de.ts ├── monero_el.ts ├── monero_eo.ts ├── monero_es.ts ├── monero_fa.ts ├── monero_fi.ts ├── monero_fr.ts ├── monero_ga.ts ├── monero_he.ts ├── monero_hi.ts ├── monero_hr.ts ├── monero_hu.ts ├── monero_id.ts ├── monero_is.ts ├── monero_it.ts ├── monero_ja.ts ├── monero_kmr.ts ├── monero_ko.ts ├── monero_lt.ts ├── monero_nb_NO.ts ├── monero_ne.ts ├── monero_nl.ts ├── monero_pl.ts ├── monero_prt.ts ├── monero_pt-br.ts ├── monero_pt-pt.ts ├── monero_ro.ts ├── monero_ru.ts ├── monero_sk.ts ├── monero_sl.ts ├── monero_sr.ts ├── monero_sv.ts ├── monero_tr.ts ├── monero_uk.ts ├── monero_ur.ts ├── monero_zh-cn.ts ├── monero_zh-tw.ts ├── monero_zu.ts ├── monero_zu.ts.ts └── ready └── utils ├── conf └── monerod.conf ├── doxygen-publish.sh ├── fish ├── README.md ├── monero-wallet-cli.fish ├── monero-wallet-rpc.fish └── monerod.fish ├── gpg_keys ├── anon.asc ├── anonimal.asc ├── binaryfate.asc ├── erciccione.asc ├── fluffypony.asc ├── guzzi.asc ├── hyc.asc ├── iDunk.asc ├── jaquee.asc ├── jeffro256.asc ├── kenshi84.asc ├── luigi1111.asc ├── mikezackles.asc ├── mishi_choudhary.asc ├── mj-xmr.asc ├── moneromooo.asc ├── nanoakron.asc ├── oranjuice.asc ├── rbrunner7.asc ├── sarang.asc ├── selsta.asc ├── snipa.asc ├── stoffu.asc ├── tewinget.asc ├── thecharlatan.asc ├── tomerkon.asc ├── warptangent.asc └── xiphon.asc ├── health ├── README.md ├── build-scripts │ └── clang-build-time-analyzer-clone-build.sh ├── clang-build-time-analyzer-run.sh ├── clang-include-what-you-use-run.sh ├── clang-tidy-run-cc.sh ├── clang-tidy-run-common.sh ├── clang-tidy-run-cpp.sh └── valgrind-tests.sh ├── logs └── levin-traffic.awk ├── python-rpc ├── console ├── console.py └── framework │ ├── __init__.py │ ├── daemon.py │ ├── rpc.py │ ├── wallet.py │ └── zmq.py ├── systemd └── monerod.service └── translations ├── build-translations.sh └── update-translations.sh /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakeLists_IOS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/CMakeLists_IOS.txt -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/Dockerfile -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/Doxyfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/README.md -------------------------------------------------------------------------------- /cmake/32-bit-toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/cmake/32-bit-toolchain.cmake -------------------------------------------------------------------------------- /cmake/64-bit-toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/cmake/64-bit-toolchain.cmake -------------------------------------------------------------------------------- /cmake/CheckLinkerFlag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/cmake/CheckLinkerFlag.c -------------------------------------------------------------------------------- /cmake/CheckLinkerFlag.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/cmake/CheckLinkerFlag.cmake -------------------------------------------------------------------------------- /cmake/CheckTrezor.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/cmake/CheckTrezor.cmake -------------------------------------------------------------------------------- /cmake/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/cmake/Doxyfile.in -------------------------------------------------------------------------------- /cmake/Doxygen.extra.css.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/cmake/Doxygen.extra.css.in -------------------------------------------------------------------------------- /cmake/FindBacktrace.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/cmake/FindBacktrace.cmake -------------------------------------------------------------------------------- /cmake/FindCcache.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/cmake/FindCcache.cmake -------------------------------------------------------------------------------- /cmake/FindHIDAPI.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/cmake/FindHIDAPI.cmake -------------------------------------------------------------------------------- /cmake/FindLibUSB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/cmake/FindLibUSB.cmake -------------------------------------------------------------------------------- /cmake/FindLibunwind.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/cmake/FindLibunwind.cmake -------------------------------------------------------------------------------- /cmake/FindMiniupnpc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/cmake/FindMiniupnpc.cmake -------------------------------------------------------------------------------- /cmake/FindReadline.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/cmake/FindReadline.cmake -------------------------------------------------------------------------------- /cmake/FindSodium.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/cmake/FindSodium.cmake -------------------------------------------------------------------------------- /cmake/FindUnbound.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/cmake/FindUnbound.cmake -------------------------------------------------------------------------------- /cmake/GitVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/cmake/GitVersion.cmake -------------------------------------------------------------------------------- /cmake/SetClangTidy.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/cmake/SetClangTidy.cmake -------------------------------------------------------------------------------- /cmake/Version.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/cmake/Version.cmake -------------------------------------------------------------------------------- /cmake/test-libusb-version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/cmake/test-libusb-version.c -------------------------------------------------------------------------------- /cmake/test-protobuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/cmake/test-protobuf.cpp -------------------------------------------------------------------------------- /cmake/test-protobuf.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/cmake/test-protobuf.proto -------------------------------------------------------------------------------- /cmake/test-static-assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/cmake/test-static-assert.c -------------------------------------------------------------------------------- /cmake/test-static-assert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/cmake/test-static-assert.cpp -------------------------------------------------------------------------------- /contrib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/brew/Brewfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/brew/Brewfile -------------------------------------------------------------------------------- /contrib/depends/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/depends/Makefile -------------------------------------------------------------------------------- /contrib/depends/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/depends/README.md -------------------------------------------------------------------------------- /contrib/depends/builders/darwin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/depends/builders/darwin.mk -------------------------------------------------------------------------------- /contrib/depends/builders/default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/depends/builders/default.mk -------------------------------------------------------------------------------- /contrib/depends/builders/linux.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/depends/builders/linux.mk -------------------------------------------------------------------------------- /contrib/depends/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/depends/config.guess -------------------------------------------------------------------------------- /contrib/depends/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/depends/config.sub -------------------------------------------------------------------------------- /contrib/depends/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/depends/description.md -------------------------------------------------------------------------------- /contrib/depends/funcs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/depends/funcs.mk -------------------------------------------------------------------------------- /contrib/depends/hosts/android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/depends/hosts/android.mk -------------------------------------------------------------------------------- /contrib/depends/hosts/darwin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/depends/hosts/darwin.mk -------------------------------------------------------------------------------- /contrib/depends/hosts/default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/depends/hosts/default.mk -------------------------------------------------------------------------------- /contrib/depends/hosts/freebsd.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/depends/hosts/freebsd.mk -------------------------------------------------------------------------------- /contrib/depends/hosts/linux.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/depends/hosts/linux.mk -------------------------------------------------------------------------------- /contrib/depends/hosts/mingw32.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/depends/hosts/mingw32.mk -------------------------------------------------------------------------------- /contrib/depends/packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/depends/packages.md -------------------------------------------------------------------------------- /contrib/depends/packages/boost.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/depends/packages/boost.mk -------------------------------------------------------------------------------- /contrib/depends/packages/darwin_sdk.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/depends/packages/darwin_sdk.mk -------------------------------------------------------------------------------- /contrib/depends/packages/eudev.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/depends/packages/eudev.mk -------------------------------------------------------------------------------- /contrib/depends/packages/expat.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/depends/packages/expat.mk -------------------------------------------------------------------------------- /contrib/depends/packages/gtest.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/depends/packages/gtest.mk -------------------------------------------------------------------------------- /contrib/depends/packages/hidapi.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/depends/packages/hidapi.mk -------------------------------------------------------------------------------- /contrib/depends/packages/libusb.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/depends/packages/libusb.mk -------------------------------------------------------------------------------- /contrib/depends/packages/ncurses.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/depends/packages/ncurses.mk -------------------------------------------------------------------------------- /contrib/depends/packages/openssl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/depends/packages/openssl.mk -------------------------------------------------------------------------------- /contrib/depends/packages/packages.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/depends/packages/packages.mk -------------------------------------------------------------------------------- /contrib/depends/packages/protobuf.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/depends/packages/protobuf.mk -------------------------------------------------------------------------------- /contrib/depends/packages/readline.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/depends/packages/readline.mk -------------------------------------------------------------------------------- /contrib/depends/packages/sodium.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/depends/packages/sodium.mk -------------------------------------------------------------------------------- /contrib/depends/packages/unbound.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/depends/packages/unbound.mk -------------------------------------------------------------------------------- /contrib/depends/packages/zeromq.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/depends/packages/zeromq.mk -------------------------------------------------------------------------------- /contrib/depends/toolchain.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/depends/toolchain.cmake.in -------------------------------------------------------------------------------- /contrib/epee/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/epee/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/LICENSE.txt -------------------------------------------------------------------------------- /contrib/epee/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/README.md -------------------------------------------------------------------------------- /contrib/epee/include/byte_slice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/include/byte_slice.h -------------------------------------------------------------------------------- /contrib/epee/include/byte_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/include/byte_stream.h -------------------------------------------------------------------------------- /contrib/epee/include/console_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/include/console_handler.h -------------------------------------------------------------------------------- /contrib/epee/include/file_io_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/include/file_io_utils.h -------------------------------------------------------------------------------- /contrib/epee/include/fnv1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/include/fnv1.h -------------------------------------------------------------------------------- /contrib/epee/include/hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/include/hex.h -------------------------------------------------------------------------------- /contrib/epee/include/int-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/include/int-util.h -------------------------------------------------------------------------------- /contrib/epee/include/math_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/include/math_helper.h -------------------------------------------------------------------------------- /contrib/epee/include/md5_l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/include/md5_l.h -------------------------------------------------------------------------------- /contrib/epee/include/md5_l.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/include/md5_l.inl -------------------------------------------------------------------------------- /contrib/epee/include/md5global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/include/md5global.h -------------------------------------------------------------------------------- /contrib/epee/include/memwipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/include/memwipe.h -------------------------------------------------------------------------------- /contrib/epee/include/misc_language.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/include/misc_language.h -------------------------------------------------------------------------------- /contrib/epee/include/misc_log_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/include/misc_log_ex.h -------------------------------------------------------------------------------- /contrib/epee/include/mlocker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/include/mlocker.h -------------------------------------------------------------------------------- /contrib/epee/include/net/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/include/net/buffer.h -------------------------------------------------------------------------------- /contrib/epee/include/net/enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/include/net/enums.h -------------------------------------------------------------------------------- /contrib/epee/include/net/http_auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/include/net/http_auth.h -------------------------------------------------------------------------------- /contrib/epee/include/net/http_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/include/net/http_base.h -------------------------------------------------------------------------------- /contrib/epee/include/net/http_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/include/net/http_client.h -------------------------------------------------------------------------------- /contrib/epee/include/net/levin_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/include/net/levin_base.h -------------------------------------------------------------------------------- /contrib/epee/include/net/local_ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/include/net/local_ip.h -------------------------------------------------------------------------------- /contrib/epee/include/net/net_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/include/net/net_helper.h -------------------------------------------------------------------------------- /contrib/epee/include/net/net_ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/include/net/net_ssl.h -------------------------------------------------------------------------------- /contrib/epee/include/profile_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/include/profile_tools.h -------------------------------------------------------------------------------- /contrib/epee/include/readline_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/include/readline_buffer.h -------------------------------------------------------------------------------- /contrib/epee/include/reg_exp_definer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/include/reg_exp_definer.h -------------------------------------------------------------------------------- /contrib/epee/include/rolling_median.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/include/rolling_median.h -------------------------------------------------------------------------------- /contrib/epee/include/span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/include/span.h -------------------------------------------------------------------------------- /contrib/epee/include/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/include/stats.h -------------------------------------------------------------------------------- /contrib/epee/include/stats.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/include/stats.inl -------------------------------------------------------------------------------- /contrib/epee/include/string_coding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/include/string_coding.h -------------------------------------------------------------------------------- /contrib/epee/include/string_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/include/string_tools.h -------------------------------------------------------------------------------- /contrib/epee/include/syncobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/include/syncobj.h -------------------------------------------------------------------------------- /contrib/epee/include/time_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/include/time_helper.h -------------------------------------------------------------------------------- /contrib/epee/include/warnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/include/warnings.h -------------------------------------------------------------------------------- /contrib/epee/include/wipeable_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/include/wipeable_string.h -------------------------------------------------------------------------------- /contrib/epee/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/src/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/epee/src/buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/src/buffer.cpp -------------------------------------------------------------------------------- /contrib/epee/src/byte_slice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/src/byte_slice.cpp -------------------------------------------------------------------------------- /contrib/epee/src/byte_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/src/byte_stream.cpp -------------------------------------------------------------------------------- /contrib/epee/src/connection_basic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/src/connection_basic.cpp -------------------------------------------------------------------------------- /contrib/epee/src/file_io_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/src/file_io_utils.cpp -------------------------------------------------------------------------------- /contrib/epee/src/hex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/src/hex.cpp -------------------------------------------------------------------------------- /contrib/epee/src/http_auth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/src/http_auth.cpp -------------------------------------------------------------------------------- /contrib/epee/src/int-util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/src/int-util.cpp -------------------------------------------------------------------------------- /contrib/epee/src/levin_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/src/levin_base.cpp -------------------------------------------------------------------------------- /contrib/epee/src/memwipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/src/memwipe.c -------------------------------------------------------------------------------- /contrib/epee/src/misc_language.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/src/misc_language.cpp -------------------------------------------------------------------------------- /contrib/epee/src/mlocker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/src/mlocker.cpp -------------------------------------------------------------------------------- /contrib/epee/src/mlog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/src/mlog.cpp -------------------------------------------------------------------------------- /contrib/epee/src/net_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/src/net_helper.cpp -------------------------------------------------------------------------------- /contrib/epee/src/net_parse_helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/src/net_parse_helpers.cpp -------------------------------------------------------------------------------- /contrib/epee/src/net_ssl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/src/net_ssl.cpp -------------------------------------------------------------------------------- /contrib/epee/src/net_utils_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/src/net_utils_base.cpp -------------------------------------------------------------------------------- /contrib/epee/src/network_throttle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/src/network_throttle.cpp -------------------------------------------------------------------------------- /contrib/epee/src/portable_storage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/src/portable_storage.cpp -------------------------------------------------------------------------------- /contrib/epee/src/readline_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/src/readline_buffer.cpp -------------------------------------------------------------------------------- /contrib/epee/src/string_tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/src/string_tools.cpp -------------------------------------------------------------------------------- /contrib/epee/src/wipeable_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/epee/src/wipeable_string.cpp -------------------------------------------------------------------------------- /contrib/fuzz_testing/fuzz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/fuzz_testing/fuzz.sh -------------------------------------------------------------------------------- /contrib/gitian/DOCKRUN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/gitian/DOCKRUN.md -------------------------------------------------------------------------------- /contrib/gitian/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/gitian/README.md -------------------------------------------------------------------------------- /contrib/gitian/dockrun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/gitian/dockrun.sh -------------------------------------------------------------------------------- /contrib/gitian/gitian-android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/gitian/gitian-android.yml -------------------------------------------------------------------------------- /contrib/gitian/gitian-build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/gitian/gitian-build.py -------------------------------------------------------------------------------- /contrib/gitian/gitian-freebsd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/gitian/gitian-freebsd.yml -------------------------------------------------------------------------------- /contrib/gitian/gitian-linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/gitian/gitian-linux.yml -------------------------------------------------------------------------------- /contrib/gitian/gitian-osx.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/gitian/gitian-osx.yml -------------------------------------------------------------------------------- /contrib/gitian/gitian-win.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/gitian/gitian-win.yml -------------------------------------------------------------------------------- /contrib/lsan/lsan.supp: -------------------------------------------------------------------------------- 1 | leak:slow_hash_allocate_state 2 | -------------------------------------------------------------------------------- /contrib/tor/monero-over-tor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/tor/monero-over-tor.sh -------------------------------------------------------------------------------- /contrib/valgrind/monero.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/contrib/valgrind/monero.supp -------------------------------------------------------------------------------- /docs/ANONYMITY_NETWORKS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/docs/ANONYMITY_NETWORKS.md -------------------------------------------------------------------------------- /docs/COMPILING_DEBUGGING_TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/docs/COMPILING_DEBUGGING_TESTING.md -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/LEVIN_PROTOCOL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/docs/LEVIN_PROTOCOL.md -------------------------------------------------------------------------------- /docs/PORTABLE_STORAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/docs/PORTABLE_STORAGE.md -------------------------------------------------------------------------------- /docs/README.i18n.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/docs/README.i18n.md -------------------------------------------------------------------------------- /docs/RELEASE_CHECKLIST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/docs/RELEASE_CHECKLIST.md -------------------------------------------------------------------------------- /docs/ZMQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/docs/ZMQ.md -------------------------------------------------------------------------------- /external/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/external/CMakeLists.txt -------------------------------------------------------------------------------- /external/db_drivers/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/external/db_drivers/CMakeLists.txt -------------------------------------------------------------------------------- /external/db_drivers/liblmdb/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/external/db_drivers/liblmdb/CHANGES -------------------------------------------------------------------------------- /external/db_drivers/liblmdb/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/external/db_drivers/liblmdb/COPYRIGHT -------------------------------------------------------------------------------- /external/db_drivers/liblmdb/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/external/db_drivers/liblmdb/Doxyfile -------------------------------------------------------------------------------- /external/db_drivers/liblmdb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/external/db_drivers/liblmdb/LICENSE -------------------------------------------------------------------------------- /external/db_drivers/liblmdb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/external/db_drivers/liblmdb/Makefile -------------------------------------------------------------------------------- /external/db_drivers/liblmdb/intro.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/external/db_drivers/liblmdb/intro.doc -------------------------------------------------------------------------------- /external/db_drivers/liblmdb/lmdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/external/db_drivers/liblmdb/lmdb.h -------------------------------------------------------------------------------- /external/db_drivers/liblmdb/mdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/external/db_drivers/liblmdb/mdb.c -------------------------------------------------------------------------------- /external/db_drivers/liblmdb/mdb_copy.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/external/db_drivers/liblmdb/mdb_copy.1 -------------------------------------------------------------------------------- /external/db_drivers/liblmdb/mdb_copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/external/db_drivers/liblmdb/mdb_copy.c -------------------------------------------------------------------------------- /external/db_drivers/liblmdb/mdb_drop.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/external/db_drivers/liblmdb/mdb_drop.1 -------------------------------------------------------------------------------- /external/db_drivers/liblmdb/mdb_drop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/external/db_drivers/liblmdb/mdb_drop.c -------------------------------------------------------------------------------- /external/db_drivers/liblmdb/mdb_dump.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/external/db_drivers/liblmdb/mdb_dump.1 -------------------------------------------------------------------------------- /external/db_drivers/liblmdb/mdb_dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/external/db_drivers/liblmdb/mdb_dump.c -------------------------------------------------------------------------------- /external/db_drivers/liblmdb/mdb_load.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/external/db_drivers/liblmdb/mdb_load.1 -------------------------------------------------------------------------------- /external/db_drivers/liblmdb/mdb_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/external/db_drivers/liblmdb/mdb_load.c -------------------------------------------------------------------------------- /external/db_drivers/liblmdb/mdb_stat.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/external/db_drivers/liblmdb/mdb_stat.1 -------------------------------------------------------------------------------- /external/db_drivers/liblmdb/mdb_stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/external/db_drivers/liblmdb/mdb_stat.c -------------------------------------------------------------------------------- /external/db_drivers/liblmdb/midl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/external/db_drivers/liblmdb/midl.c -------------------------------------------------------------------------------- /external/db_drivers/liblmdb/midl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/external/db_drivers/liblmdb/midl.h -------------------------------------------------------------------------------- /external/db_drivers/liblmdb/mtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/external/db_drivers/liblmdb/mtest.c -------------------------------------------------------------------------------- /external/db_drivers/liblmdb/mtest2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/external/db_drivers/liblmdb/mtest2.c -------------------------------------------------------------------------------- /external/db_drivers/liblmdb/mtest3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/external/db_drivers/liblmdb/mtest3.c -------------------------------------------------------------------------------- /external/db_drivers/liblmdb/mtest4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/external/db_drivers/liblmdb/mtest4.c -------------------------------------------------------------------------------- /external/db_drivers/liblmdb/mtest5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/external/db_drivers/liblmdb/mtest5.c -------------------------------------------------------------------------------- /external/db_drivers/liblmdb/mtest6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/external/db_drivers/liblmdb/mtest6.c -------------------------------------------------------------------------------- /external/db_drivers/liblmdb/tooltag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/external/db_drivers/liblmdb/tooltag -------------------------------------------------------------------------------- /external/easylogging++/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/external/easylogging++/CMakeLists.txt -------------------------------------------------------------------------------- /external/easylogging++/ea_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/external/easylogging++/ea_config.h -------------------------------------------------------------------------------- /external/qrcodegen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/external/qrcodegen/CMakeLists.txt -------------------------------------------------------------------------------- /external/qrcodegen/QrCode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/external/qrcodegen/QrCode.cpp -------------------------------------------------------------------------------- /external/qrcodegen/QrCode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/external/qrcodegen/QrCode.hpp -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/blockchain_db/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/blockchain_db/CMakeLists.txt -------------------------------------------------------------------------------- /src/blockchain_db/blockchain_db.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/blockchain_db/blockchain_db.cpp -------------------------------------------------------------------------------- /src/blockchain_db/blockchain_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/blockchain_db/blockchain_db.h -------------------------------------------------------------------------------- /src/blockchain_db/lmdb/db_lmdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/blockchain_db/lmdb/db_lmdb.cpp -------------------------------------------------------------------------------- /src/blockchain_db/lmdb/db_lmdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/blockchain_db/lmdb/db_lmdb.h -------------------------------------------------------------------------------- /src/blockchain_db/locked_txn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/blockchain_db/locked_txn.h -------------------------------------------------------------------------------- /src/blockchain_db/testdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/blockchain_db/testdb.h -------------------------------------------------------------------------------- /src/blockchain_utilities/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/blockchain_utilities/README.md -------------------------------------------------------------------------------- /src/blocks/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/blocks/CMakeLists.txt -------------------------------------------------------------------------------- /src/blocks/blocks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/blocks/blocks.cpp -------------------------------------------------------------------------------- /src/blocks/blocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/blocks/blocks.h -------------------------------------------------------------------------------- /src/blocks/checkpoints.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/blocks/checkpoints.dat -------------------------------------------------------------------------------- /src/blocks/stagenet_blocks.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/blocks/testnet_blocks.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/checkpoints/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/checkpoints/CMakeLists.txt -------------------------------------------------------------------------------- /src/checkpoints/checkpoints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/checkpoints/checkpoints.cpp -------------------------------------------------------------------------------- /src/checkpoints/checkpoints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/checkpoints/checkpoints.h -------------------------------------------------------------------------------- /src/common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/common/CMakeLists.txt -------------------------------------------------------------------------------- /src/common/aligned.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/common/aligned.c -------------------------------------------------------------------------------- /src/common/aligned.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/common/aligned.h -------------------------------------------------------------------------------- /src/common/apply_permutation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/common/apply_permutation.h -------------------------------------------------------------------------------- /src/common/base58.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/common/base58.cpp -------------------------------------------------------------------------------- /src/common/base58.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/common/base58.h -------------------------------------------------------------------------------- /src/common/combinator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/common/combinator.cpp -------------------------------------------------------------------------------- /src/common/combinator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/common/combinator.h -------------------------------------------------------------------------------- /src/common/command_line.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/common/command_line.cpp -------------------------------------------------------------------------------- /src/common/command_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/common/command_line.h -------------------------------------------------------------------------------- /src/common/common_fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/common/common_fwd.h -------------------------------------------------------------------------------- /src/common/compat/glibc_compat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/common/compat/glibc_compat.cpp -------------------------------------------------------------------------------- /src/common/container_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/common/container_helpers.h -------------------------------------------------------------------------------- /src/common/data_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/common/data_cache.h -------------------------------------------------------------------------------- /src/common/dns_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/common/dns_utils.cpp -------------------------------------------------------------------------------- /src/common/dns_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/common/dns_utils.h -------------------------------------------------------------------------------- /src/common/download.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/common/download.cpp -------------------------------------------------------------------------------- /src/common/download.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/common/download.h -------------------------------------------------------------------------------- /src/common/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/common/error.cpp -------------------------------------------------------------------------------- /src/common/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/common/error.h -------------------------------------------------------------------------------- /src/common/expect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/common/expect.cpp -------------------------------------------------------------------------------- /src/common/expect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/common/expect.h -------------------------------------------------------------------------------- /src/common/http_connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/common/http_connection.h -------------------------------------------------------------------------------- /src/common/i18n.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/common/i18n.cpp -------------------------------------------------------------------------------- /src/common/i18n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/common/i18n.h -------------------------------------------------------------------------------- /src/common/json_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/common/json_util.h -------------------------------------------------------------------------------- /src/common/notify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/common/notify.cpp -------------------------------------------------------------------------------- /src/common/notify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/common/notify.h -------------------------------------------------------------------------------- /src/common/password.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/common/password.cpp -------------------------------------------------------------------------------- /src/common/password.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/common/password.h -------------------------------------------------------------------------------- /src/common/perf_timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/common/perf_timer.cpp -------------------------------------------------------------------------------- /src/common/perf_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/common/perf_timer.h -------------------------------------------------------------------------------- /src/common/pod-class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/common/pod-class.h -------------------------------------------------------------------------------- /src/common/powerof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/common/powerof.h -------------------------------------------------------------------------------- /src/common/pruning.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/common/pruning.cpp -------------------------------------------------------------------------------- /src/common/pruning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/common/pruning.h -------------------------------------------------------------------------------- /src/common/rpc_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/common/rpc_client.h -------------------------------------------------------------------------------- /src/common/scoped_message_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/common/scoped_message_writer.h -------------------------------------------------------------------------------- /src/common/sfinae_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/common/sfinae_helpers.h -------------------------------------------------------------------------------- /src/common/spawn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/common/spawn.cpp -------------------------------------------------------------------------------- /src/common/spawn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/common/spawn.h -------------------------------------------------------------------------------- /src/common/stack_trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/common/stack_trace.cpp -------------------------------------------------------------------------------- /src/common/stack_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/common/stack_trace.h -------------------------------------------------------------------------------- /src/common/threadpool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/common/threadpool.cpp -------------------------------------------------------------------------------- /src/common/threadpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/common/threadpool.h -------------------------------------------------------------------------------- /src/common/timings.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/common/timings.cc -------------------------------------------------------------------------------- /src/common/timings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/common/timings.h -------------------------------------------------------------------------------- /src/common/updates.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/common/updates.cpp -------------------------------------------------------------------------------- /src/common/updates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/common/updates.h -------------------------------------------------------------------------------- /src/common/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/common/utf8.h -------------------------------------------------------------------------------- /src/common/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/common/util.cpp -------------------------------------------------------------------------------- /src/common/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/common/util.h -------------------------------------------------------------------------------- /src/common/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/common/variant.h -------------------------------------------------------------------------------- /src/common/varint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/common/varint.h -------------------------------------------------------------------------------- /src/crypto/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/crypto/CMakeLists.txt -------------------------------------------------------------------------------- /src/crypto/CryptonightR_JIT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/crypto/CryptonightR_JIT.c -------------------------------------------------------------------------------- /src/crypto/CryptonightR_JIT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/crypto/CryptonightR_JIT.h -------------------------------------------------------------------------------- /src/crypto/CryptonightR_template.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/crypto/CryptonightR_template.S -------------------------------------------------------------------------------- /src/crypto/CryptonightR_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/crypto/CryptonightR_template.h -------------------------------------------------------------------------------- /src/crypto/aesb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/crypto/aesb.c -------------------------------------------------------------------------------- /src/crypto/blake256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/crypto/blake256.c -------------------------------------------------------------------------------- /src/crypto/blake256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/crypto/blake256.h -------------------------------------------------------------------------------- /src/crypto/c_threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/crypto/c_threads.h -------------------------------------------------------------------------------- /src/crypto/chacha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/crypto/chacha.c -------------------------------------------------------------------------------- /src/crypto/chacha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/crypto/chacha.h -------------------------------------------------------------------------------- /src/crypto/crypto-ops-data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/crypto/crypto-ops-data.c -------------------------------------------------------------------------------- /src/crypto/crypto-ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/crypto/crypto-ops.c -------------------------------------------------------------------------------- /src/crypto/crypto-ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/crypto/crypto-ops.h -------------------------------------------------------------------------------- /src/crypto/crypto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/crypto/crypto.cpp -------------------------------------------------------------------------------- /src/crypto/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/crypto/crypto.h -------------------------------------------------------------------------------- /src/crypto/crypto_ops_builder/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/crypto/crypto_ops_builder/api.h -------------------------------------------------------------------------------- /src/crypto/duration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/crypto/duration.h -------------------------------------------------------------------------------- /src/crypto/generators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/crypto/generators.cpp -------------------------------------------------------------------------------- /src/crypto/generators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/crypto/generators.h -------------------------------------------------------------------------------- /src/crypto/generic-ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/crypto/generic-ops.h -------------------------------------------------------------------------------- /src/crypto/groestl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/crypto/groestl.c -------------------------------------------------------------------------------- /src/crypto/groestl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/crypto/groestl.h -------------------------------------------------------------------------------- /src/crypto/groestl_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/crypto/groestl_tables.h -------------------------------------------------------------------------------- /src/crypto/hash-extra-blake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/crypto/hash-extra-blake.c -------------------------------------------------------------------------------- /src/crypto/hash-extra-groestl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/crypto/hash-extra-groestl.c -------------------------------------------------------------------------------- /src/crypto/hash-extra-jh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/crypto/hash-extra-jh.c -------------------------------------------------------------------------------- /src/crypto/hash-extra-skein.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/crypto/hash-extra-skein.c -------------------------------------------------------------------------------- /src/crypto/hash-ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/crypto/hash-ops.h -------------------------------------------------------------------------------- /src/crypto/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/crypto/hash.c -------------------------------------------------------------------------------- /src/crypto/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/crypto/hash.h -------------------------------------------------------------------------------- /src/crypto/hmac-keccak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/crypto/hmac-keccak.c -------------------------------------------------------------------------------- /src/crypto/hmac-keccak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/crypto/hmac-keccak.h -------------------------------------------------------------------------------- /src/crypto/initializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/crypto/initializer.h -------------------------------------------------------------------------------- /src/crypto/jh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/crypto/jh.c -------------------------------------------------------------------------------- /src/crypto/jh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/crypto/jh.h -------------------------------------------------------------------------------- /src/crypto/keccak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/crypto/keccak.c -------------------------------------------------------------------------------- /src/crypto/keccak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/crypto/keccak.h -------------------------------------------------------------------------------- /src/crypto/oaes_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/crypto/oaes_config.h -------------------------------------------------------------------------------- /src/crypto/oaes_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/crypto/oaes_lib.c -------------------------------------------------------------------------------- /src/crypto/oaes_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/crypto/oaes_lib.h -------------------------------------------------------------------------------- /src/crypto/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/crypto/random.c -------------------------------------------------------------------------------- /src/crypto/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/crypto/random.h -------------------------------------------------------------------------------- /src/crypto/rx-slow-hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/crypto/rx-slow-hash.c -------------------------------------------------------------------------------- /src/crypto/skein.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/crypto/skein.c -------------------------------------------------------------------------------- /src/crypto/skein.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/crypto/skein.h -------------------------------------------------------------------------------- /src/crypto/skein_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/crypto/skein_port.h -------------------------------------------------------------------------------- /src/crypto/slow-hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/crypto/slow-hash.c -------------------------------------------------------------------------------- /src/crypto/tree-hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/crypto/tree-hash.c -------------------------------------------------------------------------------- /src/crypto/variant2_int_sqrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/crypto/variant2_int_sqrt.h -------------------------------------------------------------------------------- /src/crypto/variant4_random_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/crypto/variant4_random_math.h -------------------------------------------------------------------------------- /src/crypto/wallet/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/crypto/wallet/CMakeLists.txt -------------------------------------------------------------------------------- /src/crypto/wallet/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/crypto/wallet/crypto.h -------------------------------------------------------------------------------- /src/crypto/wallet/empty.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/crypto/wallet/empty.h.in -------------------------------------------------------------------------------- /src/cryptonote_basic/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/cryptonote_basic/CMakeLists.txt -------------------------------------------------------------------------------- /src/cryptonote_basic/account.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/cryptonote_basic/account.cpp -------------------------------------------------------------------------------- /src/cryptonote_basic/account.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/cryptonote_basic/account.h -------------------------------------------------------------------------------- /src/cryptonote_basic/blobdatatype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/cryptonote_basic/blobdatatype.h -------------------------------------------------------------------------------- /src/cryptonote_basic/difficulty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/cryptonote_basic/difficulty.cpp -------------------------------------------------------------------------------- /src/cryptonote_basic/difficulty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/cryptonote_basic/difficulty.h -------------------------------------------------------------------------------- /src/cryptonote_basic/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/cryptonote_basic/events.h -------------------------------------------------------------------------------- /src/cryptonote_basic/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/cryptonote_basic/fwd.h -------------------------------------------------------------------------------- /src/cryptonote_basic/hardfork.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/cryptonote_basic/hardfork.cpp -------------------------------------------------------------------------------- /src/cryptonote_basic/hardfork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/cryptonote_basic/hardfork.h -------------------------------------------------------------------------------- /src/cryptonote_basic/merge_mining.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/cryptonote_basic/merge_mining.h -------------------------------------------------------------------------------- /src/cryptonote_basic/miner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/cryptonote_basic/miner.cpp -------------------------------------------------------------------------------- /src/cryptonote_basic/miner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/cryptonote_basic/miner.h -------------------------------------------------------------------------------- /src/cryptonote_basic/tx_extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/cryptonote_basic/tx_extra.h -------------------------------------------------------------------------------- /src/cryptonote_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/cryptonote_config.h -------------------------------------------------------------------------------- /src/cryptonote_core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/cryptonote_core/CMakeLists.txt -------------------------------------------------------------------------------- /src/cryptonote_core/blockchain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/cryptonote_core/blockchain.cpp -------------------------------------------------------------------------------- /src/cryptonote_core/blockchain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/cryptonote_core/blockchain.h -------------------------------------------------------------------------------- /src/cryptonote_core/i_core_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/cryptonote_core/i_core_events.h -------------------------------------------------------------------------------- /src/cryptonote_core/tx_pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/cryptonote_core/tx_pool.cpp -------------------------------------------------------------------------------- /src/cryptonote_core/tx_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/cryptonote_core/tx_pool.h -------------------------------------------------------------------------------- /src/cryptonote_protocol/enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/cryptonote_protocol/enums.h -------------------------------------------------------------------------------- /src/cryptonote_protocol/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/cryptonote_protocol/fwd.h -------------------------------------------------------------------------------- /src/daemon/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/daemon/CMakeLists.txt -------------------------------------------------------------------------------- /src/daemon/command_line_args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/daemon/command_line_args.h -------------------------------------------------------------------------------- /src/daemon/command_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/daemon/command_server.cpp -------------------------------------------------------------------------------- /src/daemon/command_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/daemon/command_server.h -------------------------------------------------------------------------------- /src/daemon/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/daemon/core.h -------------------------------------------------------------------------------- /src/daemon/daemon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/daemon/daemon.cpp -------------------------------------------------------------------------------- /src/daemon/daemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/daemon/daemon.h -------------------------------------------------------------------------------- /src/daemon/executor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/daemon/executor.cpp -------------------------------------------------------------------------------- /src/daemon/executor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/daemon/executor.h -------------------------------------------------------------------------------- /src/daemon/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/daemon/main.cpp -------------------------------------------------------------------------------- /src/daemon/p2p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/daemon/p2p.h -------------------------------------------------------------------------------- /src/daemon/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/daemon/protocol.h -------------------------------------------------------------------------------- /src/daemon/rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/daemon/rpc.h -------------------------------------------------------------------------------- /src/daemon/rpc_command_executor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/daemon/rpc_command_executor.cpp -------------------------------------------------------------------------------- /src/daemon/rpc_command_executor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/daemon/rpc_command_executor.h -------------------------------------------------------------------------------- /src/daemonizer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/daemonizer/CMakeLists.txt -------------------------------------------------------------------------------- /src/daemonizer/daemonizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/daemonizer/daemonizer.h -------------------------------------------------------------------------------- /src/daemonizer/posix_daemonizer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/daemonizer/posix_daemonizer.inl -------------------------------------------------------------------------------- /src/daemonizer/posix_fork.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/daemonizer/posix_fork.cpp -------------------------------------------------------------------------------- /src/daemonizer/posix_fork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/daemonizer/posix_fork.h -------------------------------------------------------------------------------- /src/daemonizer/windows_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/daemonizer/windows_service.cpp -------------------------------------------------------------------------------- /src/daemonizer/windows_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/daemonizer/windows_service.h -------------------------------------------------------------------------------- /src/debug_utilities/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/debug_utilities/CMakeLists.txt -------------------------------------------------------------------------------- /src/debug_utilities/dns_checks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/debug_utilities/dns_checks.cpp -------------------------------------------------------------------------------- /src/device/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/device/CMakeLists.txt -------------------------------------------------------------------------------- /src/device/device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/device/device.cpp -------------------------------------------------------------------------------- /src/device/device.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/device/device.hpp -------------------------------------------------------------------------------- /src/device/device_cold.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/device/device_cold.hpp -------------------------------------------------------------------------------- /src/device/device_default.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/device/device_default.cpp -------------------------------------------------------------------------------- /src/device/device_default.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/device/device_default.hpp -------------------------------------------------------------------------------- /src/device/device_io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/device/device_io.hpp -------------------------------------------------------------------------------- /src/device/device_io_hid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/device/device_io_hid.cpp -------------------------------------------------------------------------------- /src/device/device_io_hid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/device/device_io_hid.hpp -------------------------------------------------------------------------------- /src/device/device_ledger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/device/device_ledger.cpp -------------------------------------------------------------------------------- /src/device/device_ledger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/device/device_ledger.hpp -------------------------------------------------------------------------------- /src/device/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/device/log.cpp -------------------------------------------------------------------------------- /src/device/log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/device/log.hpp -------------------------------------------------------------------------------- /src/device_trezor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/device_trezor/CMakeLists.txt -------------------------------------------------------------------------------- /src/device_trezor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/device_trezor/README.md -------------------------------------------------------------------------------- /src/device_trezor/device_trezor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/device_trezor/device_trezor.cpp -------------------------------------------------------------------------------- /src/device_trezor/device_trezor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/device_trezor/device_trezor.hpp -------------------------------------------------------------------------------- /src/device_trezor/trezor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/device_trezor/trezor.hpp -------------------------------------------------------------------------------- /src/device_trezor/trezor/tools/py2backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/gen_multisig/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/gen_multisig/CMakeLists.txt -------------------------------------------------------------------------------- /src/gen_multisig/gen_multisig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/gen_multisig/gen_multisig.cpp -------------------------------------------------------------------------------- /src/gen_ssl_cert/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/gen_ssl_cert/CMakeLists.txt -------------------------------------------------------------------------------- /src/gen_ssl_cert/gen_ssl_cert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/gen_ssl_cert/gen_ssl_cert.cpp -------------------------------------------------------------------------------- /src/hardforks/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/hardforks/CMakeLists.txt -------------------------------------------------------------------------------- /src/hardforks/hardforks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/hardforks/hardforks.cpp -------------------------------------------------------------------------------- /src/hardforks/hardforks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/hardforks/hardforks.h -------------------------------------------------------------------------------- /src/lmdb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/lmdb/CMakeLists.txt -------------------------------------------------------------------------------- /src/lmdb/database.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/lmdb/database.cpp -------------------------------------------------------------------------------- /src/lmdb/database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/lmdb/database.h -------------------------------------------------------------------------------- /src/lmdb/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/lmdb/error.cpp -------------------------------------------------------------------------------- /src/lmdb/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/lmdb/error.h -------------------------------------------------------------------------------- /src/lmdb/key_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/lmdb/key_stream.h -------------------------------------------------------------------------------- /src/lmdb/table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/lmdb/table.cpp -------------------------------------------------------------------------------- /src/lmdb/table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/lmdb/table.h -------------------------------------------------------------------------------- /src/lmdb/transaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/lmdb/transaction.h -------------------------------------------------------------------------------- /src/lmdb/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/lmdb/util.h -------------------------------------------------------------------------------- /src/lmdb/value_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/lmdb/value_stream.cpp -------------------------------------------------------------------------------- /src/lmdb/value_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/lmdb/value_stream.h -------------------------------------------------------------------------------- /src/mnemonics/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/mnemonics/CMakeLists.txt -------------------------------------------------------------------------------- /src/mnemonics/chinese_simplified.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/mnemonics/chinese_simplified.h -------------------------------------------------------------------------------- /src/mnemonics/dutch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/mnemonics/dutch.h -------------------------------------------------------------------------------- /src/mnemonics/electrum-words.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/mnemonics/electrum-words.cpp -------------------------------------------------------------------------------- /src/mnemonics/electrum-words.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/mnemonics/electrum-words.h -------------------------------------------------------------------------------- /src/mnemonics/english.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/mnemonics/english.h -------------------------------------------------------------------------------- /src/mnemonics/english_old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/mnemonics/english_old.h -------------------------------------------------------------------------------- /src/mnemonics/esperanto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/mnemonics/esperanto.h -------------------------------------------------------------------------------- /src/mnemonics/french.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/mnemonics/french.h -------------------------------------------------------------------------------- /src/mnemonics/german.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/mnemonics/german.h -------------------------------------------------------------------------------- /src/mnemonics/italian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/mnemonics/italian.h -------------------------------------------------------------------------------- /src/mnemonics/japanese.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/mnemonics/japanese.h -------------------------------------------------------------------------------- /src/mnemonics/language_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/mnemonics/language_base.h -------------------------------------------------------------------------------- /src/mnemonics/lojban.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/mnemonics/lojban.h -------------------------------------------------------------------------------- /src/mnemonics/portuguese.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/mnemonics/portuguese.h -------------------------------------------------------------------------------- /src/mnemonics/russian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/mnemonics/russian.h -------------------------------------------------------------------------------- /src/mnemonics/singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/mnemonics/singleton.h -------------------------------------------------------------------------------- /src/mnemonics/spanish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/mnemonics/spanish.h -------------------------------------------------------------------------------- /src/multisig/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/multisig/CMakeLists.txt -------------------------------------------------------------------------------- /src/multisig/multisig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/multisig/multisig.cpp -------------------------------------------------------------------------------- /src/multisig/multisig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/multisig/multisig.h -------------------------------------------------------------------------------- /src/multisig/multisig_account.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/multisig/multisig_account.cpp -------------------------------------------------------------------------------- /src/multisig/multisig_account.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/multisig/multisig_account.h -------------------------------------------------------------------------------- /src/multisig/multisig_kex_msg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/multisig/multisig_kex_msg.cpp -------------------------------------------------------------------------------- /src/multisig/multisig_kex_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/multisig/multisig_kex_msg.h -------------------------------------------------------------------------------- /src/net/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/net/CMakeLists.txt -------------------------------------------------------------------------------- /src/net/dandelionpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/net/dandelionpp.cpp -------------------------------------------------------------------------------- /src/net/dandelionpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/net/dandelionpp.h -------------------------------------------------------------------------------- /src/net/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/net/error.cpp -------------------------------------------------------------------------------- /src/net/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/net/error.h -------------------------------------------------------------------------------- /src/net/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/net/fwd.h -------------------------------------------------------------------------------- /src/net/http.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/net/http.cpp -------------------------------------------------------------------------------- /src/net/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/net/http.h -------------------------------------------------------------------------------- /src/net/i2p_address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/net/i2p_address.cpp -------------------------------------------------------------------------------- /src/net/i2p_address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/net/i2p_address.h -------------------------------------------------------------------------------- /src/net/parse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/net/parse.cpp -------------------------------------------------------------------------------- /src/net/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/net/parse.h -------------------------------------------------------------------------------- /src/net/resolve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/net/resolve.cpp -------------------------------------------------------------------------------- /src/net/resolve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/net/resolve.h -------------------------------------------------------------------------------- /src/net/socks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/net/socks.cpp -------------------------------------------------------------------------------- /src/net/socks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/net/socks.h -------------------------------------------------------------------------------- /src/net/socks_connect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/net/socks_connect.cpp -------------------------------------------------------------------------------- /src/net/socks_connect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/net/socks_connect.h -------------------------------------------------------------------------------- /src/net/tor_address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/net/tor_address.cpp -------------------------------------------------------------------------------- /src/net/tor_address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/net/tor_address.h -------------------------------------------------------------------------------- /src/net/zmq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/net/zmq.cpp -------------------------------------------------------------------------------- /src/net/zmq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/net/zmq.h -------------------------------------------------------------------------------- /src/oracle/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/oracle/CMakeLists.txt -------------------------------------------------------------------------------- /src/oracle/asset_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/oracle/asset_types.h -------------------------------------------------------------------------------- /src/oracle/pricing_record.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/oracle/pricing_record.cpp -------------------------------------------------------------------------------- /src/oracle/pricing_record.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/oracle/pricing_record.h -------------------------------------------------------------------------------- /src/p2p/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/p2p/CMakeLists.txt -------------------------------------------------------------------------------- /src/p2p/net_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/p2p/net_node.cpp -------------------------------------------------------------------------------- /src/p2p/net_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/p2p/net_node.h -------------------------------------------------------------------------------- /src/p2p/net_node.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/p2p/net_node.inl -------------------------------------------------------------------------------- /src/p2p/net_node_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/p2p/net_node_common.h -------------------------------------------------------------------------------- /src/p2p/net_peerlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/p2p/net_peerlist.cpp -------------------------------------------------------------------------------- /src/p2p/net_peerlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/p2p/net_peerlist.h -------------------------------------------------------------------------------- /src/p2p/p2p_protocol_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/p2p/p2p_protocol_defs.h -------------------------------------------------------------------------------- /src/ringct/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/ringct/CMakeLists.txt -------------------------------------------------------------------------------- /src/ringct/bulletproofs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/ringct/bulletproofs.cc -------------------------------------------------------------------------------- /src/ringct/bulletproofs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/ringct/bulletproofs.h -------------------------------------------------------------------------------- /src/ringct/bulletproofs_plus.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/ringct/bulletproofs_plus.cc -------------------------------------------------------------------------------- /src/ringct/bulletproofs_plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/ringct/bulletproofs_plus.h -------------------------------------------------------------------------------- /src/ringct/multiexp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/ringct/multiexp.cc -------------------------------------------------------------------------------- /src/ringct/multiexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/ringct/multiexp.h -------------------------------------------------------------------------------- /src/ringct/rctCryptoOps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/ringct/rctCryptoOps.c -------------------------------------------------------------------------------- /src/ringct/rctCryptoOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/ringct/rctCryptoOps.h -------------------------------------------------------------------------------- /src/ringct/rctOps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/ringct/rctOps.cpp -------------------------------------------------------------------------------- /src/ringct/rctOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/ringct/rctOps.h -------------------------------------------------------------------------------- /src/ringct/rctSigs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/ringct/rctSigs.cpp -------------------------------------------------------------------------------- /src/ringct/rctSigs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/ringct/rctSigs.h -------------------------------------------------------------------------------- /src/ringct/rctTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/ringct/rctTypes.cpp -------------------------------------------------------------------------------- /src/ringct/rctTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/ringct/rctTypes.h -------------------------------------------------------------------------------- /src/rpc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/rpc/CMakeLists.txt -------------------------------------------------------------------------------- /src/rpc/bootstrap_daemon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/rpc/bootstrap_daemon.cpp -------------------------------------------------------------------------------- /src/rpc/bootstrap_daemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/rpc/bootstrap_daemon.h -------------------------------------------------------------------------------- /src/rpc/bootstrap_node_selector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/rpc/bootstrap_node_selector.cpp -------------------------------------------------------------------------------- /src/rpc/bootstrap_node_selector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/rpc/bootstrap_node_selector.h -------------------------------------------------------------------------------- /src/rpc/core_rpc_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/rpc/core_rpc_server.cpp -------------------------------------------------------------------------------- /src/rpc/core_rpc_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/rpc/core_rpc_server.h -------------------------------------------------------------------------------- /src/rpc/daemon_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/rpc/daemon_handler.cpp -------------------------------------------------------------------------------- /src/rpc/daemon_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/rpc/daemon_handler.h -------------------------------------------------------------------------------- /src/rpc/daemon_messages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/rpc/daemon_messages.cpp -------------------------------------------------------------------------------- /src/rpc/daemon_messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/rpc/daemon_messages.h -------------------------------------------------------------------------------- /src/rpc/daemon_rpc_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/rpc/daemon_rpc_version.h -------------------------------------------------------------------------------- /src/rpc/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/rpc/fwd.h -------------------------------------------------------------------------------- /src/rpc/instanciations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/rpc/instanciations.cpp -------------------------------------------------------------------------------- /src/rpc/message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/rpc/message.cpp -------------------------------------------------------------------------------- /src/rpc/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/rpc/message.h -------------------------------------------------------------------------------- /src/rpc/message_data_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/rpc/message_data_structs.h -------------------------------------------------------------------------------- /src/rpc/rpc_args.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/rpc/rpc_args.cpp -------------------------------------------------------------------------------- /src/rpc/rpc_args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/rpc/rpc_args.h -------------------------------------------------------------------------------- /src/rpc/rpc_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/rpc/rpc_handler.cpp -------------------------------------------------------------------------------- /src/rpc/rpc_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/rpc/rpc_handler.h -------------------------------------------------------------------------------- /src/rpc/rpc_payment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/rpc/rpc_payment.cpp -------------------------------------------------------------------------------- /src/rpc/rpc_payment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/rpc/rpc_payment.h -------------------------------------------------------------------------------- /src/rpc/rpc_payment_costs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/rpc/rpc_payment_costs.h -------------------------------------------------------------------------------- /src/rpc/rpc_payment_signature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/rpc/rpc_payment_signature.cpp -------------------------------------------------------------------------------- /src/rpc/rpc_payment_signature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/rpc/rpc_payment_signature.h -------------------------------------------------------------------------------- /src/rpc/rpc_version_str.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/rpc/rpc_version_str.cpp -------------------------------------------------------------------------------- /src/rpc/rpc_version_str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/rpc/rpc_version_str.h -------------------------------------------------------------------------------- /src/rpc/zmq_pub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/rpc/zmq_pub.cpp -------------------------------------------------------------------------------- /src/rpc/zmq_pub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/rpc/zmq_pub.h -------------------------------------------------------------------------------- /src/rpc/zmq_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/rpc/zmq_server.cpp -------------------------------------------------------------------------------- /src/rpc/zmq_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/rpc/zmq_server.h -------------------------------------------------------------------------------- /src/seraphis_crypto/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/seraphis_crypto/CMakeLists.txt -------------------------------------------------------------------------------- /src/seraphis_crypto/dummy.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/seraphis_crypto/sp_transcript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/seraphis_crypto/sp_transcript.h -------------------------------------------------------------------------------- /src/serialization/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/serialization/CMakeLists.txt -------------------------------------------------------------------------------- /src/serialization/binary_archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/serialization/binary_archive.h -------------------------------------------------------------------------------- /src/serialization/binary_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/serialization/binary_utils.h -------------------------------------------------------------------------------- /src/serialization/container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/serialization/container.h -------------------------------------------------------------------------------- /src/serialization/containers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/serialization/containers.h -------------------------------------------------------------------------------- /src/serialization/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/serialization/crypto.h -------------------------------------------------------------------------------- /src/serialization/debug_archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/serialization/debug_archive.h -------------------------------------------------------------------------------- /src/serialization/difficulty_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/serialization/difficulty_type.h -------------------------------------------------------------------------------- /src/serialization/json_archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/serialization/json_archive.h -------------------------------------------------------------------------------- /src/serialization/json_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/serialization/json_object.cpp -------------------------------------------------------------------------------- /src/serialization/json_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/serialization/json_object.h -------------------------------------------------------------------------------- /src/serialization/pair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/serialization/pair.h -------------------------------------------------------------------------------- /src/serialization/pricing_record.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/serialization/pricing_record.h -------------------------------------------------------------------------------- /src/serialization/serialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/serialization/serialization.h -------------------------------------------------------------------------------- /src/serialization/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/serialization/string.h -------------------------------------------------------------------------------- /src/serialization/tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/serialization/tuple.h -------------------------------------------------------------------------------- /src/serialization/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/serialization/variant.h -------------------------------------------------------------------------------- /src/simplewallet/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/simplewallet/CMakeLists.txt -------------------------------------------------------------------------------- /src/simplewallet/simplewallet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/simplewallet/simplewallet.cpp -------------------------------------------------------------------------------- /src/simplewallet/simplewallet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/simplewallet/simplewallet.h -------------------------------------------------------------------------------- /src/version.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/version.cpp.in -------------------------------------------------------------------------------- /src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/version.h -------------------------------------------------------------------------------- /src/wallet/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/wallet/CMakeLists.txt -------------------------------------------------------------------------------- /src/wallet/api/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/wallet/api/CMakeLists.txt -------------------------------------------------------------------------------- /src/wallet/api/address_book.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/wallet/api/address_book.cpp -------------------------------------------------------------------------------- /src/wallet/api/address_book.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/wallet/api/address_book.h -------------------------------------------------------------------------------- /src/wallet/api/common_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/wallet/api/common_defines.h -------------------------------------------------------------------------------- /src/wallet/api/subaddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/wallet/api/subaddress.cpp -------------------------------------------------------------------------------- /src/wallet/api/subaddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/wallet/api/subaddress.h -------------------------------------------------------------------------------- /src/wallet/api/subaddress_account.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/wallet/api/subaddress_account.h -------------------------------------------------------------------------------- /src/wallet/api/transaction_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/wallet/api/transaction_info.cpp -------------------------------------------------------------------------------- /src/wallet/api/transaction_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/wallet/api/transaction_info.h -------------------------------------------------------------------------------- /src/wallet/api/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/wallet/api/utils.cpp -------------------------------------------------------------------------------- /src/wallet/api/wallet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/wallet/api/wallet.cpp -------------------------------------------------------------------------------- /src/wallet/api/wallet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/wallet/api/wallet.h -------------------------------------------------------------------------------- /src/wallet/api/wallet2_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/wallet/api/wallet2_api.h -------------------------------------------------------------------------------- /src/wallet/api/wallet_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/wallet/api/wallet_manager.cpp -------------------------------------------------------------------------------- /src/wallet/api/wallet_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/wallet/api/wallet_manager.h -------------------------------------------------------------------------------- /src/wallet/message_store.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/wallet/message_store.cpp -------------------------------------------------------------------------------- /src/wallet/message_store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/wallet/message_store.h -------------------------------------------------------------------------------- /src/wallet/message_transporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/wallet/message_transporter.cpp -------------------------------------------------------------------------------- /src/wallet/message_transporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/wallet/message_transporter.h -------------------------------------------------------------------------------- /src/wallet/node_rpc_proxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/wallet/node_rpc_proxy.cpp -------------------------------------------------------------------------------- /src/wallet/node_rpc_proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/wallet/node_rpc_proxy.h -------------------------------------------------------------------------------- /src/wallet/ringdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/wallet/ringdb.cpp -------------------------------------------------------------------------------- /src/wallet/ringdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/wallet/ringdb.h -------------------------------------------------------------------------------- /src/wallet/wallet2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/wallet/wallet2.cpp -------------------------------------------------------------------------------- /src/wallet/wallet2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/wallet/wallet2.h -------------------------------------------------------------------------------- /src/wallet/wallet_args.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/wallet/wallet_args.cpp -------------------------------------------------------------------------------- /src/wallet/wallet_args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/wallet/wallet_args.h -------------------------------------------------------------------------------- /src/wallet/wallet_errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/wallet/wallet_errors.h -------------------------------------------------------------------------------- /src/wallet/wallet_rpc_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/wallet/wallet_rpc_server.cpp -------------------------------------------------------------------------------- /src/wallet/wallet_rpc_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/src/wallet/wallet_rpc_server.h -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/benchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/benchmark.cpp -------------------------------------------------------------------------------- /tests/benchmark.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/benchmark.h.in -------------------------------------------------------------------------------- /tests/block_weight/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/block_weight/CMakeLists.txt -------------------------------------------------------------------------------- /tests/block_weight/block_weight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/block_weight/block_weight.cpp -------------------------------------------------------------------------------- /tests/block_weight/block_weight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/block_weight/block_weight.py -------------------------------------------------------------------------------- /tests/block_weight/compare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/block_weight/compare.py -------------------------------------------------------------------------------- /tests/core_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/core_tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/core_tests/block_reward.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/core_tests/block_reward.cpp -------------------------------------------------------------------------------- /tests/core_tests/block_reward.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/core_tests/block_reward.h -------------------------------------------------------------------------------- /tests/core_tests/block_validation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/core_tests/block_validation.h -------------------------------------------------------------------------------- /tests/core_tests/bulletproof_plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/core_tests/bulletproof_plus.h -------------------------------------------------------------------------------- /tests/core_tests/bulletproofs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/core_tests/bulletproofs.cpp -------------------------------------------------------------------------------- /tests/core_tests/bulletproofs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/core_tests/bulletproofs.h -------------------------------------------------------------------------------- /tests/core_tests/chain_split_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/core_tests/chain_split_1.cpp -------------------------------------------------------------------------------- /tests/core_tests/chain_split_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/core_tests/chain_split_1.h -------------------------------------------------------------------------------- /tests/core_tests/chain_switch_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/core_tests/chain_switch_1.cpp -------------------------------------------------------------------------------- /tests/core_tests/chain_switch_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/core_tests/chain_switch_1.h -------------------------------------------------------------------------------- /tests/core_tests/chaingen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/core_tests/chaingen.cpp -------------------------------------------------------------------------------- /tests/core_tests/chaingen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/core_tests/chaingen.h -------------------------------------------------------------------------------- /tests/core_tests/chaingen001.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/core_tests/chaingen001.cpp -------------------------------------------------------------------------------- /tests/core_tests/chaingen_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/core_tests/chaingen_main.cpp -------------------------------------------------------------------------------- /tests/core_tests/double_spend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/core_tests/double_spend.cpp -------------------------------------------------------------------------------- /tests/core_tests/double_spend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/core_tests/double_spend.h -------------------------------------------------------------------------------- /tests/core_tests/double_spend.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/core_tests/double_spend.inl -------------------------------------------------------------------------------- /tests/core_tests/integer_overflow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/core_tests/integer_overflow.h -------------------------------------------------------------------------------- /tests/core_tests/multisig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/core_tests/multisig.cpp -------------------------------------------------------------------------------- /tests/core_tests/multisig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/core_tests/multisig.h -------------------------------------------------------------------------------- /tests/core_tests/rct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/core_tests/rct.cpp -------------------------------------------------------------------------------- /tests/core_tests/rct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/core_tests/rct.h -------------------------------------------------------------------------------- /tests/core_tests/rct2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/core_tests/rct2.cpp -------------------------------------------------------------------------------- /tests/core_tests/rct2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/core_tests/rct2.h -------------------------------------------------------------------------------- /tests/core_tests/ring_signature_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/core_tests/ring_signature_1.h -------------------------------------------------------------------------------- /tests/core_tests/tx_pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/core_tests/tx_pool.cpp -------------------------------------------------------------------------------- /tests/core_tests/tx_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/core_tests/tx_pool.h -------------------------------------------------------------------------------- /tests/core_tests/tx_validation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/core_tests/tx_validation.cpp -------------------------------------------------------------------------------- /tests/core_tests/tx_validation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/core_tests/tx_validation.h -------------------------------------------------------------------------------- /tests/core_tests/v2_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/core_tests/v2_tests.cpp -------------------------------------------------------------------------------- /tests/core_tests/v2_tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/core_tests/v2_tests.h -------------------------------------------------------------------------------- /tests/core_tests/wallet_tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/core_tests/wallet_tools.cpp -------------------------------------------------------------------------------- /tests/core_tests/wallet_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/core_tests/wallet_tools.h -------------------------------------------------------------------------------- /tests/crypto/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/crypto/CMakeLists.txt -------------------------------------------------------------------------------- /tests/crypto/cnv4-jit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/crypto/cnv4-jit.c -------------------------------------------------------------------------------- /tests/crypto/crypto-ops-data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/crypto/crypto-ops-data.c -------------------------------------------------------------------------------- /tests/crypto/crypto-ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/crypto/crypto-ops.c -------------------------------------------------------------------------------- /tests/crypto/crypto-tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/crypto/crypto-tests.h -------------------------------------------------------------------------------- /tests/crypto/crypto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/crypto/crypto.cpp -------------------------------------------------------------------------------- /tests/crypto/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/crypto/hash.c -------------------------------------------------------------------------------- /tests/crypto/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/crypto/main.cpp -------------------------------------------------------------------------------- /tests/crypto/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/crypto/random.c -------------------------------------------------------------------------------- /tests/crypto/tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/crypto/tests.txt -------------------------------------------------------------------------------- /tests/data/fuzz/base58/ENC1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/fuzz/base58/ENC2: -------------------------------------------------------------------------------- 1 | 9zZBkWRgMNPEnVofRFqWK9MKBwgXNyKELBJSttxb1t2UhDM114URntt5iYcXzXusoHZygfSojsbviXZhnP9pJ4p2SDcv81L -------------------------------------------------------------------------------- /tests/data/fuzz/block/BLOCK1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/data/fuzz/block/BLOCK1 -------------------------------------------------------------------------------- /tests/data/fuzz/block/BLOCK2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/data/fuzz/block/BLOCK2 -------------------------------------------------------------------------------- /tests/data/fuzz/bulletproof/BP0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/data/fuzz/bulletproof/BP0 -------------------------------------------------------------------------------- /tests/data/fuzz/cold-outputs/out-none-6: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /tests/data/fuzz/http-client/RESP1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/data/fuzz/http-client/RESP1 -------------------------------------------------------------------------------- /tests/data/fuzz/levin/LEVIN1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/data/fuzz/levin/LEVIN1 -------------------------------------------------------------------------------- /tests/data/fuzz/load-from-binary/BINARY1: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /tests/data/fuzz/load-from-json/JSON1: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /tests/data/fuzz/parse-url/URL1: -------------------------------------------------------------------------------- 1 | 127.0.0.1 -------------------------------------------------------------------------------- /tests/data/fuzz/parse-url/URL2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/data/fuzz/parse-url/URL2 -------------------------------------------------------------------------------- /tests/data/fuzz/signature/SIG1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/fuzz/signature/SIG2: -------------------------------------------------------------------------------- 1 | SigV1WbMcLkLKXz3Su9iFUp9aYF5vSfpVetcytVWAgqhn3KNe1kidn7M2KfTRpuK8G1ba1w2u5mbyoWbkLPy2Gm97BM4W -------------------------------------------------------------------------------- /tests/data/fuzz/transaction/TX1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/data/fuzz/transaction/TX1 -------------------------------------------------------------------------------- /tests/data/fuzz/transaction/TX2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/data/fuzz/transaction/TX2 -------------------------------------------------------------------------------- /tests/data/fuzz/tx-extra/TXEXTRA1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/data/fuzz/tx-extra/TXEXTRA1 -------------------------------------------------------------------------------- /tests/data/fuzz/tx-extra/TXEXTRA2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/data/fuzz/tx-extra/TXEXTRA2 -------------------------------------------------------------------------------- /tests/data/fuzz/utf8/UTF8_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/fuzz/utf8/UTF8_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/data/fuzz/utf8/UTF8_2 -------------------------------------------------------------------------------- /tests/data/outputs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/data/outputs -------------------------------------------------------------------------------- /tests/data/sha256sum/CLSAG.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/data/sha256sum/CLSAG.pdf -------------------------------------------------------------------------------- /tests/data/sha256sum/empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/sha256sum/small_file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/data/sha256sum/small_file.txt -------------------------------------------------------------------------------- /tests/data/signed_monero_tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/data/signed_monero_tx -------------------------------------------------------------------------------- /tests/data/txs/bpp_tx_e89415.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/data/txs/bpp_tx_e89415.bin -------------------------------------------------------------------------------- /tests/data/unsigned_monero_tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/data/unsigned_monero_tx -------------------------------------------------------------------------------- /tests/data/wallet_00fd416a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/data/wallet_00fd416a -------------------------------------------------------------------------------- /tests/data/wallet_00fd416a.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/data/wallet_00fd416a.keys -------------------------------------------------------------------------------- /tests/data/wallet_9svHk1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/data/wallet_9svHk1 -------------------------------------------------------------------------------- /tests/data/wallet_9svHk1.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/data/wallet_9svHk1.keys -------------------------------------------------------------------------------- /tests/difficulty/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/difficulty/CMakeLists.txt -------------------------------------------------------------------------------- /tests/difficulty/data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/difficulty/data.txt -------------------------------------------------------------------------------- /tests/difficulty/difficulty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/difficulty/difficulty.cpp -------------------------------------------------------------------------------- /tests/difficulty/gen_wide_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/difficulty/gen_wide_data.py -------------------------------------------------------------------------------- /tests/difficulty/generate-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/difficulty/generate-data -------------------------------------------------------------------------------- /tests/difficulty/wide_difficulty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/difficulty/wide_difficulty.py -------------------------------------------------------------------------------- /tests/functional_tests/bans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/functional_tests/bans.py -------------------------------------------------------------------------------- /tests/functional_tests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/functional_tests/main.cpp -------------------------------------------------------------------------------- /tests/functional_tests/mining.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/functional_tests/mining.py -------------------------------------------------------------------------------- /tests/functional_tests/multisig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/functional_tests/multisig.py -------------------------------------------------------------------------------- /tests/functional_tests/p2p.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/functional_tests/p2p.py -------------------------------------------------------------------------------- /tests/functional_tests/proofs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/functional_tests/proofs.py -------------------------------------------------------------------------------- /tests/functional_tests/speed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/functional_tests/speed.py -------------------------------------------------------------------------------- /tests/functional_tests/transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/functional_tests/transfer.py -------------------------------------------------------------------------------- /tests/functional_tests/txpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/functional_tests/txpool.py -------------------------------------------------------------------------------- /tests/functional_tests/uri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/functional_tests/uri.py -------------------------------------------------------------------------------- /tests/functional_tests/wallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/functional_tests/wallet.py -------------------------------------------------------------------------------- /tests/fuzz/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/fuzz/CMakeLists.txt -------------------------------------------------------------------------------- /tests/fuzz/base58.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/fuzz/base58.cpp -------------------------------------------------------------------------------- /tests/fuzz/block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/fuzz/block.cpp -------------------------------------------------------------------------------- /tests/fuzz/bulletproof.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/fuzz/bulletproof.cpp -------------------------------------------------------------------------------- /tests/fuzz/cold-outputs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/fuzz/cold-outputs.cpp -------------------------------------------------------------------------------- /tests/fuzz/cold-transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/fuzz/cold-transaction.cpp -------------------------------------------------------------------------------- /tests/fuzz/fuzzer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/fuzz/fuzzer.cpp -------------------------------------------------------------------------------- /tests/fuzz/fuzzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/fuzz/fuzzer.h -------------------------------------------------------------------------------- /tests/fuzz/http-client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/fuzz/http-client.cpp -------------------------------------------------------------------------------- /tests/fuzz/levin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/fuzz/levin.cpp -------------------------------------------------------------------------------- /tests/fuzz/load_from_binary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/fuzz/load_from_binary.cpp -------------------------------------------------------------------------------- /tests/fuzz/load_from_json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/fuzz/load_from_json.cpp -------------------------------------------------------------------------------- /tests/fuzz/parse_url.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/fuzz/parse_url.cpp -------------------------------------------------------------------------------- /tests/fuzz/signature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/fuzz/signature.cpp -------------------------------------------------------------------------------- /tests/fuzz/transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/fuzz/transaction.cpp -------------------------------------------------------------------------------- /tests/fuzz/tx-extra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/fuzz/tx-extra.cpp -------------------------------------------------------------------------------- /tests/fuzz/utf8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/fuzz/utf8.cpp -------------------------------------------------------------------------------- /tests/gtest/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/gtest/CHANGES -------------------------------------------------------------------------------- /tests/gtest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/gtest/CMakeLists.txt -------------------------------------------------------------------------------- /tests/gtest/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/gtest/CONTRIBUTORS -------------------------------------------------------------------------------- /tests/gtest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/gtest/LICENSE -------------------------------------------------------------------------------- /tests/gtest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/gtest/README.md -------------------------------------------------------------------------------- /tests/gtest/include/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/gtest/include/gtest/gtest.h -------------------------------------------------------------------------------- /tests/gtest/src/gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/gtest/src/gtest-all.cc -------------------------------------------------------------------------------- /tests/gtest/src/gtest-death-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/gtest/src/gtest-death-test.cc -------------------------------------------------------------------------------- /tests/gtest/src/gtest-filepath.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/gtest/src/gtest-filepath.cc -------------------------------------------------------------------------------- /tests/gtest/src/gtest-port.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/gtest/src/gtest-port.cc -------------------------------------------------------------------------------- /tests/gtest/src/gtest-printers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/gtest/src/gtest-printers.cc -------------------------------------------------------------------------------- /tests/gtest/src/gtest-test-part.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/gtest/src/gtest-test-part.cc -------------------------------------------------------------------------------- /tests/gtest/src/gtest-typed-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/gtest/src/gtest-typed-test.cc -------------------------------------------------------------------------------- /tests/gtest/src/gtest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/gtest/src/gtest.cc -------------------------------------------------------------------------------- /tests/gtest/src/gtest_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/gtest/src/gtest_main.cc -------------------------------------------------------------------------------- /tests/hash-target.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/hash-target.cpp -------------------------------------------------------------------------------- /tests/hash/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/hash/CMakeLists.txt -------------------------------------------------------------------------------- /tests/hash/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/hash/main.cpp -------------------------------------------------------------------------------- /tests/hash/tests-blake2b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/hash/tests-blake2b.txt -------------------------------------------------------------------------------- /tests/hash/tests-extra-blake.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/hash/tests-extra-blake.txt -------------------------------------------------------------------------------- /tests/hash/tests-extra-groestl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/hash/tests-extra-groestl.txt -------------------------------------------------------------------------------- /tests/hash/tests-extra-jh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/hash/tests-extra-jh.txt -------------------------------------------------------------------------------- /tests/hash/tests-extra-skein.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/hash/tests-extra-skein.txt -------------------------------------------------------------------------------- /tests/hash/tests-fast.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/hash/tests-fast.txt -------------------------------------------------------------------------------- /tests/hash/tests-slow-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/hash/tests-slow-1.txt -------------------------------------------------------------------------------- /tests/hash/tests-slow-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/hash/tests-slow-2.txt -------------------------------------------------------------------------------- /tests/hash/tests-slow-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/hash/tests-slow-4.txt -------------------------------------------------------------------------------- /tests/hash/tests-slow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/hash/tests-slow.txt -------------------------------------------------------------------------------- /tests/hash/tests-tree.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/hash/tests-tree.txt -------------------------------------------------------------------------------- /tests/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/io.h -------------------------------------------------------------------------------- /tests/libwallet_api_tests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/libwallet_api_tests/main.cpp -------------------------------------------------------------------------------- /tests/net_load_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/net_load_tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/net_load_tests/clt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/net_load_tests/clt.cpp -------------------------------------------------------------------------------- /tests/net_load_tests/srv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/net_load_tests/srv.cpp -------------------------------------------------------------------------------- /tests/performance_tests/equality.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/performance_tests/equality.h -------------------------------------------------------------------------------- /tests/performance_tests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/performance_tests/main.cpp -------------------------------------------------------------------------------- /tests/performance_tests/multiexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/performance_tests/multiexp.h -------------------------------------------------------------------------------- /tests/performance_tests/rct_mlsag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/performance_tests/rct_mlsag.h -------------------------------------------------------------------------------- /tests/performance_tests/sc_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/performance_tests/sc_check.h -------------------------------------------------------------------------------- /tests/performance_tests/sig_clsag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/performance_tests/sig_clsag.h -------------------------------------------------------------------------------- /tests/performance_tests/sig_mlsag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/performance_tests/sig_mlsag.h -------------------------------------------------------------------------------- /tests/performance_tests/signature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/performance_tests/signature.h -------------------------------------------------------------------------------- /tests/trezor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/trezor/CMakeLists.txt -------------------------------------------------------------------------------- /tests/trezor/daemon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/trezor/daemon.cpp -------------------------------------------------------------------------------- /tests/trezor/daemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/trezor/daemon.h -------------------------------------------------------------------------------- /tests/trezor/tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/trezor/tools.cpp -------------------------------------------------------------------------------- /tests/trezor/tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/trezor/tools.h -------------------------------------------------------------------------------- /tests/trezor/trezor_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/trezor/trezor_tests.cpp -------------------------------------------------------------------------------- /tests/trezor/trezor_tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/trezor/trezor_tests.h -------------------------------------------------------------------------------- /tests/unit_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/unit_tests/account.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/account.cpp -------------------------------------------------------------------------------- /tests/unit_tests/aligned.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/aligned.cpp -------------------------------------------------------------------------------- /tests/unit_tests/base58.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/base58.cpp -------------------------------------------------------------------------------- /tests/unit_tests/block_queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/block_queue.cpp -------------------------------------------------------------------------------- /tests/unit_tests/block_reward.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/block_reward.cpp -------------------------------------------------------------------------------- /tests/unit_tests/blockchain_db.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/blockchain_db.cpp -------------------------------------------------------------------------------- /tests/unit_tests/bulletproofs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/bulletproofs.cpp -------------------------------------------------------------------------------- /tests/unit_tests/chacha.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/chacha.cpp -------------------------------------------------------------------------------- /tests/unit_tests/checkpoints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/checkpoints.cpp -------------------------------------------------------------------------------- /tests/unit_tests/command_line.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/command_line.cpp -------------------------------------------------------------------------------- /tests/unit_tests/conversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/conversion.cpp -------------------------------------------------------------------------------- /tests/unit_tests/crypto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/crypto.cpp -------------------------------------------------------------------------------- /tests/unit_tests/device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/device.cpp -------------------------------------------------------------------------------- /tests/unit_tests/difficulty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/difficulty.cpp -------------------------------------------------------------------------------- /tests/unit_tests/dns_resolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/dns_resolver.cpp -------------------------------------------------------------------------------- /tests/unit_tests/epee_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/epee_utils.cpp -------------------------------------------------------------------------------- /tests/unit_tests/expect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/expect.cpp -------------------------------------------------------------------------------- /tests/unit_tests/fee.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/fee.cpp -------------------------------------------------------------------------------- /tests/unit_tests/hardfork.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/hardfork.cpp -------------------------------------------------------------------------------- /tests/unit_tests/hashchain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/hashchain.cpp -------------------------------------------------------------------------------- /tests/unit_tests/hmac_keccak.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/hmac_keccak.cpp -------------------------------------------------------------------------------- /tests/unit_tests/http.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/http.cpp -------------------------------------------------------------------------------- /tests/unit_tests/is_hdd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/is_hdd.cpp -------------------------------------------------------------------------------- /tests/unit_tests/keccak.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/keccak.cpp -------------------------------------------------------------------------------- /tests/unit_tests/levin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/levin.cpp -------------------------------------------------------------------------------- /tests/unit_tests/lmdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/lmdb.cpp -------------------------------------------------------------------------------- /tests/unit_tests/logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/logging.cpp -------------------------------------------------------------------------------- /tests/unit_tests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/main.cpp -------------------------------------------------------------------------------- /tests/unit_tests/memwipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/memwipe.cpp -------------------------------------------------------------------------------- /tests/unit_tests/mlocker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/mlocker.cpp -------------------------------------------------------------------------------- /tests/unit_tests/mnemonics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/mnemonics.cpp -------------------------------------------------------------------------------- /tests/unit_tests/mul_div.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/mul_div.cpp -------------------------------------------------------------------------------- /tests/unit_tests/multiexp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/multiexp.cpp -------------------------------------------------------------------------------- /tests/unit_tests/multisig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/multisig.cpp -------------------------------------------------------------------------------- /tests/unit_tests/net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/net.cpp -------------------------------------------------------------------------------- /tests/unit_tests/node_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/node_server.cpp -------------------------------------------------------------------------------- /tests/unit_tests/notify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/notify.cpp -------------------------------------------------------------------------------- /tests/unit_tests/oracle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/oracle.cpp -------------------------------------------------------------------------------- /tests/unit_tests/parse_amount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/parse_amount.cpp -------------------------------------------------------------------------------- /tests/unit_tests/pruning.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/pruning.cpp -------------------------------------------------------------------------------- /tests/unit_tests/random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/random.cpp -------------------------------------------------------------------------------- /tests/unit_tests/reserve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/reserve.cpp -------------------------------------------------------------------------------- /tests/unit_tests/ringct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/ringct.cpp -------------------------------------------------------------------------------- /tests/unit_tests/ringdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/ringdb.cpp -------------------------------------------------------------------------------- /tests/unit_tests/rolling_median.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/rolling_median.cpp -------------------------------------------------------------------------------- /tests/unit_tests/scaling_2021.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/scaling_2021.cpp -------------------------------------------------------------------------------- /tests/unit_tests/serialization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/serialization.cpp -------------------------------------------------------------------------------- /tests/unit_tests/sha256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/sha256.cpp -------------------------------------------------------------------------------- /tests/unit_tests/slow_memmem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/slow_memmem.cpp -------------------------------------------------------------------------------- /tests/unit_tests/subaddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/subaddress.cpp -------------------------------------------------------------------------------- /tests/unit_tests/test_notifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/test_notifier.cpp -------------------------------------------------------------------------------- /tests/unit_tests/test_peerlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/test_peerlist.cpp -------------------------------------------------------------------------------- /tests/unit_tests/test_tx_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/test_tx_utils.cpp -------------------------------------------------------------------------------- /tests/unit_tests/threadpool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/threadpool.cpp -------------------------------------------------------------------------------- /tests/unit_tests/tx_proof.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/tx_proof.cpp -------------------------------------------------------------------------------- /tests/unit_tests/unbound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/unbound.cpp -------------------------------------------------------------------------------- /tests/unit_tests/unit_tests_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/unit_tests_utils.h -------------------------------------------------------------------------------- /tests/unit_tests/uri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/uri.cpp -------------------------------------------------------------------------------- /tests/unit_tests/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/util.cpp -------------------------------------------------------------------------------- /tests/unit_tests/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/variant.cpp -------------------------------------------------------------------------------- /tests/unit_tests/varint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/varint.cpp -------------------------------------------------------------------------------- /tests/unit_tests/vercmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/vercmp.cpp -------------------------------------------------------------------------------- /tests/unit_tests/wallet_storage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/wallet_storage.cpp -------------------------------------------------------------------------------- /tests/unit_tests/zmq_rpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/tests/unit_tests/zmq_rpc.cpp -------------------------------------------------------------------------------- /translations/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/translations/CMakeLists.txt -------------------------------------------------------------------------------- /translations/monero.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/translations/monero.ts -------------------------------------------------------------------------------- /translations/monero_ar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/translations/monero_ar.ts -------------------------------------------------------------------------------- /translations/monero_bg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/translations/monero_bg.ts -------------------------------------------------------------------------------- /translations/monero_bn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/translations/monero_bn.ts -------------------------------------------------------------------------------- /translations/monero_cat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/translations/monero_cat.ts -------------------------------------------------------------------------------- /translations/monero_cs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/translations/monero_cs.ts -------------------------------------------------------------------------------- /translations/monero_da.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/translations/monero_da.ts -------------------------------------------------------------------------------- /translations/monero_de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/translations/monero_de.ts -------------------------------------------------------------------------------- /translations/monero_el.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/translations/monero_el.ts -------------------------------------------------------------------------------- /translations/monero_eo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/translations/monero_eo.ts -------------------------------------------------------------------------------- /translations/monero_es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/translations/monero_es.ts -------------------------------------------------------------------------------- /translations/monero_fa.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/translations/monero_fa.ts -------------------------------------------------------------------------------- /translations/monero_fi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/translations/monero_fi.ts -------------------------------------------------------------------------------- /translations/monero_fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/translations/monero_fr.ts -------------------------------------------------------------------------------- /translations/monero_ga.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/translations/monero_ga.ts -------------------------------------------------------------------------------- /translations/monero_he.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/translations/monero_he.ts -------------------------------------------------------------------------------- /translations/monero_hi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/translations/monero_hi.ts -------------------------------------------------------------------------------- /translations/monero_hr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/translations/monero_hr.ts -------------------------------------------------------------------------------- /translations/monero_hu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/translations/monero_hu.ts -------------------------------------------------------------------------------- /translations/monero_id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/translations/monero_id.ts -------------------------------------------------------------------------------- /translations/monero_is.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/translations/monero_is.ts -------------------------------------------------------------------------------- /translations/monero_it.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/translations/monero_it.ts -------------------------------------------------------------------------------- /translations/monero_ja.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/translations/monero_ja.ts -------------------------------------------------------------------------------- /translations/monero_kmr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/translations/monero_kmr.ts -------------------------------------------------------------------------------- /translations/monero_ko.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/translations/monero_ko.ts -------------------------------------------------------------------------------- /translations/monero_lt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/translations/monero_lt.ts -------------------------------------------------------------------------------- /translations/monero_nb_NO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/translations/monero_nb_NO.ts -------------------------------------------------------------------------------- /translations/monero_ne.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/translations/monero_ne.ts -------------------------------------------------------------------------------- /translations/monero_nl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/translations/monero_nl.ts -------------------------------------------------------------------------------- /translations/monero_pl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/translations/monero_pl.ts -------------------------------------------------------------------------------- /translations/monero_prt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/translations/monero_prt.ts -------------------------------------------------------------------------------- /translations/monero_pt-br.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/translations/monero_pt-br.ts -------------------------------------------------------------------------------- /translations/monero_pt-pt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/translations/monero_pt-pt.ts -------------------------------------------------------------------------------- /translations/monero_ro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/translations/monero_ro.ts -------------------------------------------------------------------------------- /translations/monero_ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/translations/monero_ru.ts -------------------------------------------------------------------------------- /translations/monero_sk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/translations/monero_sk.ts -------------------------------------------------------------------------------- /translations/monero_sl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/translations/monero_sl.ts -------------------------------------------------------------------------------- /translations/monero_sr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/translations/monero_sr.ts -------------------------------------------------------------------------------- /translations/monero_sv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/translations/monero_sv.ts -------------------------------------------------------------------------------- /translations/monero_tr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/translations/monero_tr.ts -------------------------------------------------------------------------------- /translations/monero_uk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/translations/monero_uk.ts -------------------------------------------------------------------------------- /translations/monero_ur.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/translations/monero_ur.ts -------------------------------------------------------------------------------- /translations/monero_zh-cn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/translations/monero_zh-cn.ts -------------------------------------------------------------------------------- /translations/monero_zh-tw.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/translations/monero_zh-tw.ts -------------------------------------------------------------------------------- /translations/monero_zu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/translations/monero_zu.ts -------------------------------------------------------------------------------- /translations/monero_zu.ts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/translations/monero_zu.ts.ts -------------------------------------------------------------------------------- /translations/ready: -------------------------------------------------------------------------------- 1 | fr 2 | it 3 | ja 4 | sv 5 | -------------------------------------------------------------------------------- /utils/conf/monerod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/utils/conf/monerod.conf -------------------------------------------------------------------------------- /utils/doxygen-publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/utils/doxygen-publish.sh -------------------------------------------------------------------------------- /utils/fish/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/utils/fish/README.md -------------------------------------------------------------------------------- /utils/fish/monero-wallet-cli.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/utils/fish/monero-wallet-cli.fish -------------------------------------------------------------------------------- /utils/fish/monero-wallet-rpc.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/utils/fish/monero-wallet-rpc.fish -------------------------------------------------------------------------------- /utils/fish/monerod.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/utils/fish/monerod.fish -------------------------------------------------------------------------------- /utils/gpg_keys/anon.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/utils/gpg_keys/anon.asc -------------------------------------------------------------------------------- /utils/gpg_keys/anonimal.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/utils/gpg_keys/anonimal.asc -------------------------------------------------------------------------------- /utils/gpg_keys/binaryfate.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/utils/gpg_keys/binaryfate.asc -------------------------------------------------------------------------------- /utils/gpg_keys/erciccione.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/utils/gpg_keys/erciccione.asc -------------------------------------------------------------------------------- /utils/gpg_keys/fluffypony.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/utils/gpg_keys/fluffypony.asc -------------------------------------------------------------------------------- /utils/gpg_keys/guzzi.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/utils/gpg_keys/guzzi.asc -------------------------------------------------------------------------------- /utils/gpg_keys/hyc.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/utils/gpg_keys/hyc.asc -------------------------------------------------------------------------------- /utils/gpg_keys/iDunk.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/utils/gpg_keys/iDunk.asc -------------------------------------------------------------------------------- /utils/gpg_keys/jaquee.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/utils/gpg_keys/jaquee.asc -------------------------------------------------------------------------------- /utils/gpg_keys/jeffro256.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/utils/gpg_keys/jeffro256.asc -------------------------------------------------------------------------------- /utils/gpg_keys/kenshi84.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/utils/gpg_keys/kenshi84.asc -------------------------------------------------------------------------------- /utils/gpg_keys/luigi1111.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/utils/gpg_keys/luigi1111.asc -------------------------------------------------------------------------------- /utils/gpg_keys/mikezackles.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/utils/gpg_keys/mikezackles.asc -------------------------------------------------------------------------------- /utils/gpg_keys/mishi_choudhary.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/utils/gpg_keys/mishi_choudhary.asc -------------------------------------------------------------------------------- /utils/gpg_keys/mj-xmr.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/utils/gpg_keys/mj-xmr.asc -------------------------------------------------------------------------------- /utils/gpg_keys/moneromooo.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/utils/gpg_keys/moneromooo.asc -------------------------------------------------------------------------------- /utils/gpg_keys/nanoakron.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/utils/gpg_keys/nanoakron.asc -------------------------------------------------------------------------------- /utils/gpg_keys/oranjuice.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/utils/gpg_keys/oranjuice.asc -------------------------------------------------------------------------------- /utils/gpg_keys/rbrunner7.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/utils/gpg_keys/rbrunner7.asc -------------------------------------------------------------------------------- /utils/gpg_keys/sarang.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/utils/gpg_keys/sarang.asc -------------------------------------------------------------------------------- /utils/gpg_keys/selsta.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/utils/gpg_keys/selsta.asc -------------------------------------------------------------------------------- /utils/gpg_keys/snipa.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/utils/gpg_keys/snipa.asc -------------------------------------------------------------------------------- /utils/gpg_keys/stoffu.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/utils/gpg_keys/stoffu.asc -------------------------------------------------------------------------------- /utils/gpg_keys/tewinget.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/utils/gpg_keys/tewinget.asc -------------------------------------------------------------------------------- /utils/gpg_keys/thecharlatan.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/utils/gpg_keys/thecharlatan.asc -------------------------------------------------------------------------------- /utils/gpg_keys/tomerkon.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/utils/gpg_keys/tomerkon.asc -------------------------------------------------------------------------------- /utils/gpg_keys/warptangent.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/utils/gpg_keys/warptangent.asc -------------------------------------------------------------------------------- /utils/gpg_keys/xiphon.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/utils/gpg_keys/xiphon.asc -------------------------------------------------------------------------------- /utils/health/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/utils/health/README.md -------------------------------------------------------------------------------- /utils/health/clang-tidy-run-cc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/utils/health/clang-tidy-run-cc.sh -------------------------------------------------------------------------------- /utils/health/clang-tidy-run-cpp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/utils/health/clang-tidy-run-cpp.sh -------------------------------------------------------------------------------- /utils/health/valgrind-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/utils/health/valgrind-tests.sh -------------------------------------------------------------------------------- /utils/logs/levin-traffic.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/utils/logs/levin-traffic.awk -------------------------------------------------------------------------------- /utils/python-rpc/console: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | env python -i $(dirname $0)/console.py "$@" 4 | -------------------------------------------------------------------------------- /utils/python-rpc/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/utils/python-rpc/console.py -------------------------------------------------------------------------------- /utils/python-rpc/framework/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/python-rpc/framework/rpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/utils/python-rpc/framework/rpc.py -------------------------------------------------------------------------------- /utils/python-rpc/framework/zmq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/utils/python-rpc/framework/zmq.py -------------------------------------------------------------------------------- /utils/systemd/monerod.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrProtocol/zephyr/HEAD/utils/systemd/monerod.service --------------------------------------------------------------------------------