├── .gitignore ├── .gitlab-ci.yml ├── .travis.yml ├── CMakeLists.txt ├── CONTRIBUTING.md ├── COPYING ├── INSTALL.md ├── Jenkinsfile ├── Jenkinsfile.gitian ├── Makefile.am ├── README.md ├── autogen.sh ├── ci ├── Dockerfile.builder ├── Dockerfile.gitian-builder ├── build_depends.sh ├── build_src.sh ├── matrix.sh ├── test_integrationtests.sh └── test_unittests.sh ├── configure.ac ├── contrib ├── README.md ├── auto_gdb │ ├── README.md │ ├── common_helpers.py │ ├── debug.gdb │ ├── log_size.py │ ├── neoxa_dbg.sh │ ├── raptoreum_dbg.sh │ ├── simple_class_obj.py │ ├── stl_containers.py │ ├── test_used_size.gdb │ └── used_size.py ├── debian │ ├── README.md │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── neoxa-qt.desktop │ ├── neoxa-qt.install │ ├── neoxa-qt.lintian-overrides │ ├── neoxa-qt.manpages │ ├── neoxa-qt.protocol │ ├── neoxa-tx.bash-completion │ ├── neoxa-tx.install │ ├── neoxa-tx.manpages │ ├── neoxad.bash-completion │ ├── neoxad.examples │ ├── neoxad.install │ ├── neoxad.lintian-overrides │ ├── neoxad.manpages │ ├── patches │ │ ├── README │ │ └── series │ ├── rules │ ├── source │ │ └── format │ └── watch ├── devtools │ ├── README.md │ ├── check-doc.py │ ├── check-rpc-mappings.py │ ├── circular-dependencies.py │ ├── clang-format-diff.py │ ├── commit-script-check.sh │ ├── copyright_header.py │ ├── gen-manpages.sh │ ├── git-subtree-check.sh │ ├── github-merge.py │ ├── lint-all.sh │ ├── lint-whitespace.sh │ ├── optimize-pngs.py │ ├── security-check.py │ ├── split-debug.sh.in │ ├── symbol-check.py │ ├── test-security-check.py │ ├── update-css-files.py │ └── update-translations.py ├── filter-lcov.py ├── gitian-build.py ├── gitian-descriptors │ ├── README.md │ ├── gitian-linux.yml │ ├── gitian-osx-signer.yml │ ├── gitian-osx.yml │ ├── gitian-win-signer.yml │ └── gitian-win.yml ├── gitian-keys │ ├── README.md │ ├── codablock.pgp │ ├── gladcow.pgp │ ├── nmarley.pgp │ ├── pasta.pgp │ ├── schinzelh.pgp │ └── udjinm6.pgp ├── init │ ├── README.md │ ├── neoxad.init │ ├── neoxad.openrc │ ├── neoxad.openrcconf │ ├── neoxad.service │ └── org.neoxa.dashd.plist ├── linearize │ ├── README.md │ ├── example-linearize-testnet.cfg │ ├── example-linearize.cfg │ ├── linearize-data.py │ └── linearize-hashes.py ├── macdeploy │ ├── LICENSE │ ├── README.md │ ├── background.svg │ ├── custom_dsstore.py │ ├── detached-sig-apply.sh │ ├── detached-sig-create.sh │ ├── extract-osx-sdk.sh │ ├── fancy.plist │ └── macdeployqtplus ├── neoxa-cli.bash-completion ├── neoxa-qt.pro ├── neoxa-tx.bash-completion ├── neoxad.bash-completion ├── qos │ ├── README.md │ └── tc.sh ├── seeds │ ├── README.md │ ├── generate-seeds.py │ ├── makeseeds.py │ ├── nodes_main.txt │ ├── nodes_test.txt │ └── protx.json ├── testgen │ ├── README.md │ ├── base58.py │ └── gen_base58_test_vectors.py ├── tidy_datadir.sh ├── valgrind.supp ├── verify-commits │ ├── README.md │ ├── allow-revsig-commits │ ├── gpg.sh │ ├── pre-push-hook.sh │ ├── trusted-git-root │ ├── trusted-keys │ ├── trusted-sha512-root-commit │ └── verify-commits.sh ├── verifybinaries │ ├── README.md │ └── verify.sh ├── windeploy │ ├── detached-sig-create.sh │ └── win-codesign.cert └── zmq │ ├── zmq_sub.py │ └── zmq_sub3.4.py ├── depends ├── .gitignore ├── Makefile ├── README.md ├── builders │ ├── darwin.mk │ ├── default.mk │ └── linux.mk ├── config.guess ├── config.site.in ├── config.sub ├── description.md ├── funcs.mk ├── hosts │ ├── darwin.mk │ ├── default.mk │ ├── linux.mk │ └── mingw32.mk ├── packages.md ├── packages │ ├── backtrace.mk │ ├── bdb.mk │ ├── bls-dash.mk │ ├── boost.mk │ ├── chia_bls.mk │ ├── cmake.mk │ ├── dbus.mk │ ├── expat.mk │ ├── fontconfig.mk │ ├── freetype.mk │ ├── gmp.mk │ ├── libICE.mk │ ├── libSM.mk │ ├── libX11.mk │ ├── libXau.mk │ ├── libXext.mk │ ├── libevent.mk │ ├── libxcb.mk │ ├── miniupnpc.mk │ ├── native_biplist.mk │ ├── native_cctools.mk │ ├── native_cdrkit.mk │ ├── native_ds_store.mk │ ├── native_libdmg-hfsplus.mk │ ├── native_mac_alias.mk │ ├── native_protobuf.mk │ ├── openssl.mk │ ├── packages.mk │ ├── protobuf.mk │ ├── qrencode.mk │ ├── qt.mk │ ├── xcb_proto.mk │ ├── xextproto.mk │ ├── xproto.mk │ ├── xtrans.mk │ ├── zeromq.mk │ └── zlib.mk └── patches │ ├── native_biplist │ └── sorted_list.patch │ ├── native_cdrkit │ └── cdrkit-deterministic.patch │ ├── native_mac_alias │ └── python3.patch │ ├── openssl │ └── 0001-Add-OpenSSL-termios-fix-for-musl-libc.patch │ ├── qt │ ├── fix-cocoahelpers-macos.patch │ ├── fix-xcb-include-order.patch │ ├── fix_configure_mac.patch │ ├── fix_no_printer.patch │ ├── fix_qt_configure.patch │ ├── fix_qt_pkgconfig.patch │ ├── fix_rcc_determinism.patch │ ├── mac-qmake.conf │ ├── mingw-uuidof.patch │ ├── no-xlib.patch │ ├── pidlist_absolute.patch │ ├── qfixed-coretext.patch │ └── xkb-default.patch │ ├── xextproto │ └── fix-config.patch │ └── zeromq │ ├── 0001-fix-build-with-older-mingw64.patch │ ├── 0002-disable-pthread_set_name_np.patch │ ├── 9114d3957725acd34aa8b8d011585812f3369411.patch │ └── 9e6745c12e0b100cd38acecc16ce7db02905e27c.patch ├── doc ├── .gitignore ├── Doxyfile.in ├── README.md ├── README_osx.md ├── README_windows.txt ├── REST-interface.md ├── assets-attribution.md ├── benchmarking.md ├── bips.md ├── bitcoin_logo_doxygen.png ├── build-cross.md ├── build-generic.md ├── build-osx.md ├── build-unix.md ├── build-windows.md ├── developer-notes.md ├── dnsseed-policy.md ├── files.md ├── fuzzing.md ├── gitian-building.md ├── gitian-building │ ├── all_files_in_one_partition.png │ ├── create_new_vm.png │ ├── create_vm_file_location_size.png │ ├── create_vm_hard_disk.png │ ├── create_vm_hard_disk_file_type.png │ ├── create_vm_memsize.png │ ├── create_vm_storage_physical_hard_disk.png │ ├── debian_install_10_configure_clock.png │ ├── debian_install_11_partition_disks.png │ ├── debian_install_12_choose_disk.png │ ├── debian_install_14_finish.png │ ├── debian_install_15_write_changes.png │ ├── debian_install_16_choose_a_mirror.png │ ├── debian_install_18_proxy_settings.png │ ├── debian_install_19_software_selection.png │ ├── debian_install_1_boot_menu.png │ ├── debian_install_20_install_grub.png │ ├── debian_install_21_install_grub_bootloader.png │ ├── debian_install_22_finish_installation.png │ ├── debian_install_2_select_a_language.png │ ├── debian_install_3_select_location.png │ ├── debian_install_4_configure_keyboard.png │ ├── debian_install_5_configure_the_network.png │ ├── debian_install_6_domain_name.png │ ├── debian_install_6a_set_up_root_password.png │ ├── debian_install_7_set_up_user_fullname.png │ ├── debian_install_8_set_up_username.png │ ├── debian_install_9_user_password.png │ ├── debian_root_login.png │ ├── network_settings.png │ ├── port_forwarding_rules.png │ ├── select_startup_disk.png │ └── system_settings.png ├── init.md ├── instantsend.md ├── keepass.md ├── man │ ├── Makefile.am │ ├── neoxa-cli.1 │ ├── neoxa-qt.1 │ ├── neoxa-tx.1 │ └── neoxad.1 ├── reduce-traffic.md ├── release-notes.md ├── release-process.md ├── shared-libraries.md ├── smartnode-budget.md ├── tor.md ├── translation_process.md ├── translation_strings_policy.md ├── travis-ci.md └── zmq.md ├── docker ├── Dockerfile ├── Dockerfile.GitHubActions ├── README.md ├── build-docker.sh ├── docker-entrypoint.sh └── push-docker.sh ├── libneoxaconsensus.pc.in ├── share ├── certs │ ├── BitcoinFoundation_Apple_Cert.pem │ ├── BitcoinFoundation_Comodo_Cert.pem │ └── PrivateKeyNotes.md ├── genbuild.sh ├── pixmaps │ ├── bitcoin.ico │ ├── dash-HighContrast-128.png │ ├── dash-HighContrast-16.png │ ├── dash-HighContrast-22.png │ ├── dash-HighContrast-24.png │ ├── dash-HighContrast-256.png │ ├── dash-HighContrast-32.png │ ├── dash-HighContrast-48.png │ ├── dash-HighContrast-scalable.svg │ ├── dash-hicolor-scalable.svg │ ├── dash.ico │ ├── favicon.ico │ ├── favicon.png │ ├── nsis-wizard.bmp │ ├── raptoreum16.png │ └── spinner.png ├── qt │ ├── Info.plist.in │ └── extract_strings_qt.py ├── rpcauth │ └── README.md ├── rpcuser │ ├── README.md │ └── rpcuser.py └── setup.nsi.in ├── src ├── .clang-format ├── LibBoolEE.cpp ├── LibBoolEE.h ├── Makefile.am ├── Makefile.bench.include ├── Makefile.leveldb.include ├── Makefile.qt.include ├── Makefile.qttest.include ├── Makefile.test.include ├── addrdb.cpp ├── addrdb.h ├── addressindex.h ├── addrman.cpp ├── addrman.h ├── amount.h ├── arith_uint256.cpp ├── arith_uint256.h ├── assets │ ├── assetdb.cpp │ ├── assetdb.h │ ├── assets.cpp │ ├── assets.h │ ├── assetsnapshotdb.cpp │ ├── assetsnapshotdb.h │ ├── assettypes.cpp │ ├── assettypes.h │ ├── messages.cpp │ ├── messages.h │ ├── myassetsdb.cpp │ ├── myassetsdb.h │ ├── restricteddb.cpp │ ├── restricteddb.h │ ├── rewards.cpp │ ├── rewards.h │ ├── snapshotrequestdb.cpp │ └── snapshotrequestdb.h ├── base58.cpp ├── base58.h ├── batchedlogger.cpp ├── batchedlogger.h ├── bench │ ├── .gitignore │ ├── Examples.cpp │ ├── base58.cpp │ ├── bench.cpp │ ├── bench.h │ ├── bench_neoxa.cpp │ ├── bls.cpp │ ├── bls_dkg.cpp │ ├── ccoins_caching.cpp │ ├── chacha20.cpp │ ├── chacha_poly_aead.cpp │ ├── checkblock.cpp │ ├── checkqueue.cpp │ ├── coin_selection.cpp │ ├── crypto_hash.cpp │ ├── data │ │ └── block813851.raw │ ├── ecdsa.cpp │ ├── lockedpool.cpp │ ├── mempool_eviction.cpp │ ├── merkle_root.cpp │ ├── perf.cpp │ ├── perf.h │ ├── poly1305.cpp │ ├── prevector.cpp │ ├── rollingbloom.cpp │ └── string_cast.cpp ├── bip39.cpp ├── bip39.h ├── bip39_english.h ├── blockencodings.cpp ├── blockencodings.h ├── bloom.cpp ├── bloom.h ├── bls │ ├── bls.cpp │ ├── bls.h │ ├── bls_batchverifier.h │ ├── bls_ies.cpp │ ├── bls_ies.h │ ├── bls_worker.cpp │ └── bls_worker.h ├── cachemap.h ├── cachemultimap.h ├── chain.cpp ├── chain.h ├── chainparams.cpp ├── chainparams.h ├── chainparamsbase.cpp ├── chainparamsbase.h ├── chainparamsseeds.h ├── checkpoints.cpp ├── checkpoints.h ├── checkqueue.h ├── clientversion.cpp ├── clientversion.h ├── coins.cpp ├── coins.h ├── compat.h ├── compat │ ├── byteswap.h │ ├── endian.h │ ├── glibc_compat.cpp │ ├── glibc_sanity.cpp │ ├── glibcxx_sanity.cpp │ ├── sanity.h │ └── strnlen.cpp ├── compressor.cpp ├── compressor.h ├── config │ └── .empty ├── consensus │ ├── consensus.cpp │ ├── consensus.h │ ├── merkle.cpp │ ├── merkle.h │ ├── params.h │ ├── tx_verify.cpp │ ├── tx_verify.h │ └── validation.h ├── core_io.h ├── core_memusage.h ├── core_read.cpp ├── core_write.cpp ├── crypto │ ├── aes.cpp │ ├── aes.h │ ├── aes_helper.c │ ├── blake.c │ ├── bmw.c │ ├── chacha20.cpp │ ├── chacha20.h │ ├── chacha_poly_aead.cpp │ ├── chacha_poly_aead.h │ ├── common.h │ ├── ctaes │ │ ├── COPYING │ │ ├── README.md │ │ ├── bench.c │ │ ├── ctaes.c │ │ ├── ctaes.h │ │ └── test.c │ ├── cubehash.c │ ├── echo.c │ ├── ethash │ │ ├── helpers.hpp │ │ ├── include │ │ │ └── ethash │ │ │ │ ├── ethash.h │ │ │ │ ├── ethash.hpp │ │ │ │ ├── hash_types.h │ │ │ │ ├── hash_types.hpp │ │ │ │ ├── keccak.h │ │ │ │ ├── keccak.hpp │ │ │ │ ├── progpow.hpp │ │ │ │ └── version.h │ │ ├── lib │ │ │ ├── ethash │ │ │ │ ├── bit_manipulation.h │ │ │ │ ├── builtins.h │ │ │ │ ├── endianness.hpp │ │ │ │ ├── ethash-internal.hpp │ │ │ │ ├── ethash.cpp │ │ │ │ ├── kiss99.hpp │ │ │ │ ├── managed.cpp │ │ │ │ ├── primes.c │ │ │ │ ├── primes.h │ │ │ │ └── progpow.cpp │ │ │ ├── keccak │ │ │ │ ├── keccak.c │ │ │ │ ├── keccakf1600.c │ │ │ │ └── keccakf800.c │ │ │ └── support │ │ │ │ └── attributes.h │ │ └── progpow_test_vectors.hpp │ ├── groestl.c │ ├── hmac_sha256.cpp │ ├── hmac_sha256.h │ ├── hmac_sha512.cpp │ ├── hmac_sha512.h │ ├── jh.c │ ├── keccak.c │ ├── luffa.c │ ├── md_helper.c │ ├── poly1305.cpp │ ├── poly1305.h │ ├── ripemd160.cpp │ ├── ripemd160.h │ ├── sha1.cpp │ ├── sha1.h │ ├── sha2.c │ ├── sha256.cpp │ ├── sha256.h │ ├── sha256_avx2.cpp │ ├── sha256_shani.cpp │ ├── sha256_sse4.cpp │ ├── sha256_sse41.cpp │ ├── sha512.cpp │ ├── sha512.h │ ├── shavite.c │ ├── simd.c │ ├── skein.c │ ├── sph_blake.h │ ├── sph_bmw.h │ ├── sph_cubehash.h │ ├── sph_echo.h │ ├── sph_fugue.c │ ├── sph_fugue.h │ ├── sph_groestl.h │ ├── sph_hamsi.c │ ├── sph_hamsi.h │ ├── sph_hamsi_helper.c │ ├── sph_jh.h │ ├── sph_keccak.h │ ├── sph_luffa.h │ ├── sph_sha2.c │ ├── sph_sha2.h │ ├── sph_sha512.c │ ├── sph_shabal.c │ ├── sph_shabal.h │ ├── sph_shavite.h │ ├── sph_simd.h │ ├── sph_skein.h │ ├── sph_types.h │ ├── sph_whirlpool.c │ ├── sph_whirlpool.h │ ├── whirlpool.c │ └── whirlpoolx.c ├── cryptonote │ ├── aesb.c │ ├── c_blake256.c │ ├── c_blake256.h │ ├── c_groestl.c │ ├── c_groestl.h │ ├── c_jh.c │ ├── c_jh.h │ ├── c_keccak.c │ ├── c_keccak.h │ ├── c_skein.c │ ├── c_skein.h │ ├── cn_values │ │ ├── account.cpp │ │ ├── account.h │ │ ├── cryptonote_basic_impl.cpp │ │ ├── cryptonote_basic_impl.h │ │ ├── cryptonote_format_utils.cpp │ │ ├── cryptonote_format_utils.h │ │ └── cryptonote_protocol_defs.h │ ├── crypto.h │ ├── groestl_tables.h │ ├── hash-ops.c │ ├── hash-ops.h │ ├── int-util.h │ ├── oaes_config.h │ ├── oaes_lib.c │ ├── oaes_lib.h │ ├── skein_port.h │ ├── slow-hash.c │ ├── slow-hash.h │ ├── variant2_int_sqrt.h │ ├── variant4_random_math.h │ ├── warnings.h │ ├── wild_keccak.cpp │ └── wild_keccak.h ├── ctpl.h ├── cuckoocache.h ├── cxxtimer.hpp ├── dbwrapper.cpp ├── dbwrapper.h ├── dsnotificationinterface.cpp ├── dsnotificationinterface.h ├── evo │ ├── cbtx.cpp │ ├── cbtx.h │ ├── deterministicmns.cpp │ ├── deterministicmns.h │ ├── evodb.cpp │ ├── evodb.h │ ├── mnauth.cpp │ ├── mnauth.h │ ├── providertx.cpp │ ├── providertx.h │ ├── simplifiedmns.cpp │ ├── simplifiedmns.h │ ├── specialtx.cpp │ └── specialtx.h ├── flat-database.h ├── founder_payment.cpp ├── founder_payment.h ├── fs.cpp ├── fs.h ├── governance │ ├── governance-classes.cpp │ ├── governance-classes.h │ ├── governance-exceptions.h │ ├── governance-object.cpp │ ├── governance-object.h │ ├── governance-validators.cpp │ ├── governance-validators.h │ ├── governance-vote.cpp │ ├── governance-vote.h │ ├── governance-votedb.cpp │ ├── governance-votedb.h │ ├── governance.cpp │ └── governance.h ├── hash.cpp ├── hash.h ├── hash_selection.cpp ├── hash_selection.h ├── hdchain.cpp ├── hdchain.h ├── httprpc.cpp ├── httprpc.h ├── httpserver.cpp ├── httpserver.h ├── immer │ ├── algorithm.hpp │ ├── array.hpp │ ├── array_transient.hpp │ ├── atom.hpp │ ├── box.hpp │ ├── config.hpp │ ├── detail │ │ ├── arrays │ │ │ ├── no_capacity.hpp │ │ │ ├── node.hpp │ │ │ └── with_capacity.hpp │ │ ├── combine_standard_layout.hpp │ │ ├── hamts │ │ │ ├── bits.hpp │ │ │ ├── champ.hpp │ │ │ ├── champ_iterator.hpp │ │ │ └── node.hpp │ │ ├── iterator_facade.hpp │ │ ├── rbts │ │ │ ├── bits.hpp │ │ │ ├── node.hpp │ │ │ ├── operations.hpp │ │ │ ├── position.hpp │ │ │ ├── rbtree.hpp │ │ │ ├── rbtree_iterator.hpp │ │ │ ├── rrbtree.hpp │ │ │ ├── rrbtree_iterator.hpp │ │ │ └── visitor.hpp │ │ ├── ref_count_base.hpp │ │ ├── type_traits.hpp │ │ └── util.hpp │ ├── experimental │ │ ├── detail │ │ │ └── dvektor_impl.hpp │ │ └── dvektor.hpp │ ├── flex_vector.hpp │ ├── flex_vector_transient.hpp │ ├── heap │ │ ├── cpp_heap.hpp │ │ ├── debug_size_heap.hpp │ │ ├── free_list_heap.hpp │ │ ├── free_list_node.hpp │ │ ├── gc_heap.hpp │ │ ├── heap_policy.hpp │ │ ├── identity_heap.hpp │ │ ├── malloc_heap.hpp │ │ ├── split_heap.hpp │ │ ├── tags.hpp │ │ ├── thread_local_free_list_heap.hpp │ │ ├── unsafe_free_list_heap.hpp │ │ └── with_data.hpp │ ├── map.hpp │ ├── map_transient.hpp │ ├── memory_policy.hpp │ ├── refcount │ │ ├── enable_intrusive_ptr.hpp │ │ ├── no_refcount_policy.hpp │ │ ├── refcount_policy.hpp │ │ └── unsafe_refcount_policy.hpp │ ├── set.hpp │ ├── set_transient.hpp │ ├── transience │ │ ├── gc_transience_policy.hpp │ │ └── no_transience_policy.hpp │ ├── vector.hpp │ └── vector_transient.hpp ├── indirectmap.h ├── init.cpp ├── init.h ├── keepass.cpp ├── keepass.h ├── key.cpp ├── key.h ├── keystore.cpp ├── keystore.h ├── leveldb │ ├── .gitignore │ ├── .travis.yml │ ├── AUTHORS │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── Makefile │ ├── NEWS │ ├── README.md │ ├── TODO │ ├── WINDOWS.md │ ├── build_detect_platform │ ├── db │ │ ├── autocompact_test.cc │ │ ├── builder.cc │ │ ├── builder.h │ │ ├── c.cc │ │ ├── c_test.c │ │ ├── corruption_test.cc │ │ ├── db_bench.cc │ │ ├── db_impl.cc │ │ ├── db_impl.h │ │ ├── db_iter.cc │ │ ├── db_iter.h │ │ ├── db_test.cc │ │ ├── dbformat.cc │ │ ├── dbformat.h │ │ ├── dbformat_test.cc │ │ ├── dumpfile.cc │ │ ├── fault_injection_test.cc │ │ ├── filename.cc │ │ ├── filename.h │ │ ├── filename_test.cc │ │ ├── leveldbutil.cc │ │ ├── log_format.h │ │ ├── log_reader.cc │ │ ├── log_reader.h │ │ ├── log_test.cc │ │ ├── log_writer.cc │ │ ├── log_writer.h │ │ ├── memtable.cc │ │ ├── memtable.h │ │ ├── recovery_test.cc │ │ ├── repair.cc │ │ ├── skiplist.h │ │ ├── skiplist_test.cc │ │ ├── snapshot.h │ │ ├── table_cache.cc │ │ ├── table_cache.h │ │ ├── version_edit.cc │ │ ├── version_edit.h │ │ ├── version_edit_test.cc │ │ ├── version_set.cc │ │ ├── version_set.h │ │ ├── version_set_test.cc │ │ ├── write_batch.cc │ │ ├── write_batch_internal.h │ │ └── write_batch_test.cc │ ├── doc │ │ ├── bench │ │ │ ├── db_bench_sqlite3.cc │ │ │ └── db_bench_tree_db.cc │ │ ├── benchmark.html │ │ ├── impl.md │ │ ├── index.md │ │ ├── log_format.md │ │ └── table_format.md │ ├── helpers │ │ └── memenv │ │ │ ├── memenv.cc │ │ │ ├── memenv.h │ │ │ └── memenv_test.cc │ ├── include │ │ └── leveldb │ │ │ ├── c.h │ │ │ ├── cache.h │ │ │ ├── comparator.h │ │ │ ├── db.h │ │ │ ├── dumpfile.h │ │ │ ├── env.h │ │ │ ├── filter_policy.h │ │ │ ├── iterator.h │ │ │ ├── options.h │ │ │ ├── slice.h │ │ │ ├── status.h │ │ │ ├── table.h │ │ │ ├── table_builder.h │ │ │ └── write_batch.h │ ├── issues │ │ ├── issue178_test.cc │ │ └── issue200_test.cc │ ├── port │ │ ├── README │ │ ├── atomic_pointer.h │ │ ├── port.h │ │ ├── port_example.h │ │ ├── port_posix.cc │ │ ├── port_posix.h │ │ ├── port_posix_sse.cc │ │ ├── port_win.cc │ │ ├── port_win.h │ │ ├── thread_annotations.h │ │ └── win │ │ │ └── stdint.h │ ├── table │ │ ├── block.cc │ │ ├── block.h │ │ ├── block_builder.cc │ │ ├── block_builder.h │ │ ├── filter_block.cc │ │ ├── filter_block.h │ │ ├── filter_block_test.cc │ │ ├── format.cc │ │ ├── format.h │ │ ├── iterator.cc │ │ ├── iterator_wrapper.h │ │ ├── merger.cc │ │ ├── merger.h │ │ ├── table.cc │ │ ├── table_builder.cc │ │ ├── table_test.cc │ │ ├── two_level_iterator.cc │ │ └── two_level_iterator.h │ └── util │ │ ├── arena.cc │ │ ├── arena.h │ │ ├── arena_test.cc │ │ ├── bloom.cc │ │ ├── bloom_test.cc │ │ ├── cache.cc │ │ ├── cache_test.cc │ │ ├── coding.cc │ │ ├── coding.h │ │ ├── coding_test.cc │ │ ├── comparator.cc │ │ ├── crc32c.cc │ │ ├── crc32c.h │ │ ├── crc32c_test.cc │ │ ├── env.cc │ │ ├── env_posix.cc │ │ ├── env_posix_test.cc │ │ ├── env_posix_test_helper.h │ │ ├── env_test.cc │ │ ├── env_win.cc │ │ ├── filter_policy.cc │ │ ├── hash.cc │ │ ├── hash.h │ │ ├── hash_test.cc │ │ ├── histogram.cc │ │ ├── histogram.h │ │ ├── logging.cc │ │ ├── logging.h │ │ ├── mutexlock.h │ │ ├── options.cc │ │ ├── posix_logger.h │ │ ├── random.h │ │ ├── status.cc │ │ ├── testharness.cc │ │ ├── testharness.h │ │ ├── testutil.cc │ │ └── testutil.h ├── limitedmap.h ├── llmq │ ├── quorums.cpp │ ├── quorums.h │ ├── quorums_blockprocessor.cpp │ ├── quorums_blockprocessor.h │ ├── quorums_chainlocks.cpp │ ├── quorums_chainlocks.h │ ├── quorums_commitment.cpp │ ├── quorums_commitment.h │ ├── quorums_debug.cpp │ ├── quorums_debug.h │ ├── quorums_dkgsession.cpp │ ├── quorums_dkgsession.h │ ├── quorums_dkgsessionhandler.cpp │ ├── quorums_dkgsessionhandler.h │ ├── quorums_dkgsessionmgr.cpp │ ├── quorums_dkgsessionmgr.h │ ├── quorums_init.cpp │ ├── quorums_init.h │ ├── quorums_instantsend.cpp │ ├── quorums_instantsend.h │ ├── quorums_signing.cpp │ ├── quorums_signing.h │ ├── quorums_signing_shares.cpp │ ├── quorums_signing_shares.h │ ├── quorums_utils.cpp │ └── quorums_utils.h ├── memusage.h ├── merkleblock.cpp ├── merkleblock.h ├── messagesigner.cpp ├── messagesigner.h ├── miner.cpp ├── miner.h ├── neoxa-cli-res.rc ├── neoxa-cli.cpp ├── neoxa-tx-res.rc ├── neoxa-tx.cpp ├── neoxad-res.rc ├── neoxad.cpp ├── net.cpp ├── net.h ├── net_processing.cpp ├── net_processing.h ├── netaddress.cpp ├── netaddress.h ├── netbase.cpp ├── netbase.h ├── netfulfilledman.cpp ├── netfulfilledman.h ├── netmessagemaker.h ├── noui.cpp ├── noui.h ├── obj-test │ └── .gitignore ├── obj │ └── .gitignore ├── policy │ ├── feerate.cpp │ ├── feerate.h │ ├── fees.cpp │ ├── fees.h │ ├── policy.cpp │ └── policy.h ├── pow.cpp ├── pow.h ├── prevector.h ├── primitives │ ├── block.cpp │ ├── block.h │ ├── transaction.cpp │ └── transaction.h ├── privatesend │ ├── privatesend-client.cpp │ ├── privatesend-client.h │ ├── privatesend-server.cpp │ ├── privatesend-server.h │ ├── privatesend-util.cpp │ ├── privatesend-util.h │ ├── privatesend.cpp │ └── privatesend.h ├── protocol.cpp ├── protocol.h ├── pubkey.cpp ├── pubkey.h ├── qt │ ├── addressbookpage.cpp │ ├── addressbookpage.h │ ├── addresstablemodel.cpp │ ├── addresstablemodel.h │ ├── askpassphrasedialog.cpp │ ├── askpassphrasedialog.h │ ├── assetcontroldialog.cpp │ ├── assetcontroldialog.h │ ├── assetcontroltreewidget.cpp │ ├── assetcontroltreewidget.h │ ├── assetfilterproxy.cpp │ ├── assetfilterproxy.h │ ├── assetrecord.h │ ├── assetsdialog.cpp │ ├── assetsdialog.h │ ├── assettablemodel.cpp │ ├── assettablemodel.h │ ├── bantablemodel.cpp │ ├── bantablemodel.h │ ├── bitcoinaddressvalidator.cpp │ ├── bitcoinaddressvalidator.h │ ├── bitcoinamountfield.cpp │ ├── bitcoinamountfield.h │ ├── bitcoingui.cpp │ ├── bitcoingui.h │ ├── bitcoinunits.cpp │ ├── bitcoinunits.h │ ├── callback.h │ ├── clientmodel.cpp │ ├── clientmodel.h │ ├── coincontroldialog.cpp │ ├── coincontroldialog.h │ ├── coincontroltreewidget.cpp │ ├── coincontroltreewidget.h │ ├── createassetdialog.cpp │ ├── createassetdialog.h │ ├── csvmodelwriter.cpp │ ├── csvmodelwriter.h │ ├── editaddressdialog.cpp │ ├── editaddressdialog.h │ ├── forms │ │ ├── addressbookpage.ui │ │ ├── askpassphrasedialog.ui │ │ ├── assetcontroldialog.ui │ │ ├── assetsdialog.ui │ │ ├── coincontroldialog.ui │ │ ├── createassetdialog.ui │ │ ├── debugwindow.ui │ │ ├── editaddressdialog.ui │ │ ├── helpmessagedialog.ui │ │ ├── intro.ui │ │ ├── mnemonicdialog.ui │ │ ├── modaloverlay.ui │ │ ├── openuridialog.ui │ │ ├── optionsdialog.ui │ │ ├── overviewpage.ui │ │ ├── qrdialog.ui │ │ ├── receivecoinsdialog.ui │ │ ├── receiverequestdialog.ui │ │ ├── reissueassetdialog.ui │ │ ├── restrictedassetsdialog.ui │ │ ├── restrictedassignqualifier.ui │ │ ├── restrictedfreezeaddress.ui │ │ ├── sendassetsentry.ui │ │ ├── sendcoinsdialog.ui │ │ ├── sendcoinsentry.ui │ │ ├── signverifymessagedialog.ui │ │ ├── smartnodelist.ui │ │ └── transactiondescdialog.ui │ ├── guiconstants.h │ ├── guiutil.cpp │ ├── guiutil.h │ ├── intro.cpp │ ├── intro.h │ ├── locale │ │ ├── neoxa_ar.ts │ │ ├── neoxa_bg.ts │ │ ├── neoxa_de.ts │ │ ├── neoxa_en.ts │ │ ├── neoxa_es.ts │ │ ├── neoxa_fi.ts │ │ ├── neoxa_fr.ts │ │ ├── neoxa_it.ts │ │ ├── neoxa_ja.ts │ │ ├── neoxa_ko.ts │ │ ├── neoxa_nl.ts │ │ ├── neoxa_pl.ts │ │ ├── neoxa_pt.ts │ │ ├── neoxa_ro.ts │ │ ├── neoxa_ru.ts │ │ ├── neoxa_sk.ts │ │ ├── neoxa_th.ts │ │ ├── neoxa_tr.ts │ │ ├── neoxa_vi.ts │ │ ├── neoxa_zh_CN.ts │ │ └── neoxa_zh_TW.ts │ ├── macdockiconhandler.h │ ├── macdockiconhandler.mm │ ├── macnotificationhandler.h │ ├── macnotificationhandler.mm │ ├── macos_appnap.h │ ├── macos_appnap.mm │ ├── mnemonicdialog.cpp │ ├── mnemonicdialog.h │ ├── modaloverlay.cpp │ ├── modaloverlay.h │ ├── myrestrictedassetrecord.cpp │ ├── myrestrictedassetrecord.h │ ├── myrestrictedassettablemodel.cpp │ ├── myrestrictedassettablemodel.h │ ├── neoxa.cpp │ ├── neoxa.qrc │ ├── neoxa_locale.qrc │ ├── neoxastrings.cpp │ ├── networkstyle.cpp │ ├── networkstyle.h │ ├── notificator.cpp │ ├── notificator.h │ ├── openuridialog.cpp │ ├── openuridialog.h │ ├── optionsdialog.cpp │ ├── optionsdialog.h │ ├── optionsmodel.cpp │ ├── optionsmodel.h │ ├── overviewpage.cpp │ ├── overviewpage.h │ ├── paymentrequest.proto │ ├── paymentrequestplus.cpp │ ├── paymentrequestplus.h │ ├── paymentserver.cpp │ ├── paymentserver.h │ ├── peertablemodel.cpp │ ├── peertablemodel.h │ ├── platformstyle.cpp │ ├── platformstyle.h │ ├── qrdialog.cpp │ ├── qrdialog.h │ ├── qvalidatedlineedit.cpp │ ├── qvalidatedlineedit.h │ ├── qvaluecombobox.cpp │ ├── qvaluecombobox.h │ ├── receivecoinsdialog.cpp │ ├── receivecoinsdialog.h │ ├── receiverequestdialog.cpp │ ├── receiverequestdialog.h │ ├── recentrequeststablemodel.cpp │ ├── recentrequeststablemodel.h │ ├── reissueassetdialog.cpp │ ├── reissueassetdialog.h │ ├── res │ │ ├── css │ │ │ ├── dark.css │ │ │ ├── general.css │ │ │ ├── light.css │ │ │ ├── scrollbars.css │ │ │ ├── trad.css │ │ │ └── traditional.css │ │ ├── fonts │ │ │ └── Montserrat │ │ │ │ ├── Montserrat-Black.otf │ │ │ │ ├── Montserrat-BlackItalic.otf │ │ │ │ ├── Montserrat-Bold.otf │ │ │ │ ├── Montserrat-BoldItalic.otf │ │ │ │ ├── Montserrat-ExtraBold.otf │ │ │ │ ├── Montserrat-ExtraBoldItalic.otf │ │ │ │ ├── Montserrat-ExtraLight.otf │ │ │ │ ├── Montserrat-ExtraLightItalic.otf │ │ │ │ ├── Montserrat-Italic.otf │ │ │ │ ├── Montserrat-Light.otf │ │ │ │ ├── Montserrat-LightItalic.otf │ │ │ │ ├── Montserrat-Medium.otf │ │ │ │ ├── Montserrat-MediumItalic.otf │ │ │ │ ├── Montserrat-Regular.otf │ │ │ │ ├── Montserrat-SemiBold.otf │ │ │ │ ├── Montserrat-SemiBoldItalic.otf │ │ │ │ ├── Montserrat-Thin.otf │ │ │ │ ├── Montserrat-ThinItalic.otf │ │ │ │ ├── OFL.txt │ │ │ │ └── SIL_Open_Font_License.txt │ │ ├── icons │ │ │ ├── about.png │ │ │ ├── about_qt.png │ │ │ ├── add.png │ │ │ ├── address-book.png │ │ │ ├── addressbook.png │ │ │ ├── arrow_left.png │ │ │ ├── arrow_right.png │ │ │ ├── asset_administrator.png │ │ │ ├── asset_administrator_dark.png │ │ │ ├── asset_create.png │ │ │ ├── asset_create_selected.png │ │ │ ├── asset_manage.png │ │ │ ├── asset_manage_selected.png │ │ │ ├── asset_restricted.png │ │ │ ├── asset_restricted_selected.png │ │ │ ├── asset_transfer.png │ │ │ ├── asset_transfer_selected.png │ │ │ ├── bitcoin.icns │ │ │ ├── bitcoin.ico │ │ │ ├── bitcoin.png │ │ │ ├── bitcoin_testnet.ico │ │ │ ├── bitcoin_testnet.png │ │ │ ├── browse.png │ │ │ ├── chevron.png │ │ │ ├── clock1.png │ │ │ ├── clock2.png │ │ │ ├── clock3.png │ │ │ ├── clock4.png │ │ │ ├── clock5.png │ │ │ ├── configure.png │ │ │ ├── connect0.png │ │ │ ├── connect0_16.png │ │ │ ├── connect1.png │ │ │ ├── connect1_16.png │ │ │ ├── connect2.png │ │ │ ├── connect2_16.png │ │ │ ├── connect3.png │ │ │ ├── connect3_16.png │ │ │ ├── connect4.png │ │ │ ├── connect4_16.png │ │ │ ├── console_remove.png │ │ │ ├── copypaste.png │ │ │ ├── debugwindow.png │ │ │ ├── edit.png │ │ │ ├── editcopy.png │ │ │ ├── editpaste.png │ │ │ ├── export.png │ │ │ ├── external_link.png │ │ │ ├── external_link_dark.png │ │ │ ├── eye.png │ │ │ ├── eye_minus.png │ │ │ ├── eye_plus.png │ │ │ ├── filesave.png │ │ │ ├── fontbigger.png │ │ │ ├── fontsmaller.png │ │ │ ├── hd_disabled.png │ │ │ ├── hd_enabled.png │ │ │ ├── hd_enabled_44.png │ │ │ ├── history.png │ │ │ ├── history_selected.png │ │ │ ├── info.png │ │ │ ├── key.png │ │ │ ├── lock_closed.png │ │ │ ├── lock_open.png │ │ │ ├── lockclosed.png │ │ │ ├── lockopen.png │ │ │ ├── messageing.png │ │ │ ├── messageing_selected.png │ │ │ ├── neoxa.icns │ │ │ ├── neoxa.ico │ │ │ ├── neoxa.png │ │ │ ├── neoxa_large.png │ │ │ ├── neoxa_testnet.ico │ │ │ ├── neoxa_testnet.png │ │ │ ├── neoxacointext.png │ │ │ ├── network_disabled.png │ │ │ ├── notsynced.png │ │ │ ├── open.png │ │ │ ├── overview.png │ │ │ ├── overview_selected.png │ │ │ ├── quit.png │ │ │ ├── raptoreumcointext.png │ │ │ ├── receive.png │ │ │ ├── receive2.png │ │ │ ├── receive_selected.png │ │ │ ├── refresh.png │ │ │ ├── remove.png │ │ │ ├── send.png │ │ │ ├── send_selected.png │ │ │ ├── synced.png │ │ │ ├── synced2.png │ │ │ ├── transaction0.png │ │ │ ├── transaction2.png │ │ │ ├── transaction_abandoned.png │ │ │ ├── transaction_conflicted.png │ │ │ ├── transaction_locked.png │ │ │ ├── tx_asset_input.png │ │ │ ├── tx_asset_output.png │ │ │ ├── tx_inout.png │ │ │ ├── tx_input.png │ │ │ ├── tx_mined.png │ │ │ ├── tx_output.png │ │ │ ├── verify.png │ │ │ ├── voting.png │ │ │ ├── voting_selected.png │ │ │ └── warning.png │ │ ├── images │ │ │ ├── arrow_down.png │ │ │ ├── arrow_down_dark.png │ │ │ ├── arrow_down_light.png │ │ │ ├── arrow_down_small.png │ │ │ ├── arrow_left_dark.png │ │ │ ├── arrow_left_light.png │ │ │ ├── arrow_left_small.png │ │ │ ├── arrow_light_down_hover.png │ │ │ ├── arrow_light_down_normal.png │ │ │ ├── arrow_light_left_hover.png │ │ │ ├── arrow_light_left_normal.png │ │ │ ├── arrow_light_right_hover.png │ │ │ ├── arrow_light_right_normal.png │ │ │ ├── arrow_light_up_hover.png │ │ │ ├── arrow_light_up_normal.png │ │ │ ├── arrow_right_dark.png │ │ │ ├── arrow_right_light.png │ │ │ ├── arrow_right_small.png │ │ │ ├── arrow_up_dark.png │ │ │ ├── arrow_up_light.png │ │ │ ├── arrow_up_small.png │ │ │ ├── checkbox_checked_dark.png │ │ │ ├── checkbox_checked_disabled_dark.png │ │ │ ├── checkbox_checked_disabled_light.png │ │ │ ├── checkbox_checked_hover_dark.png │ │ │ ├── checkbox_checked_hover_light.png │ │ │ ├── checkbox_checked_light.png │ │ │ ├── checkbox_normal_dark.png │ │ │ ├── checkbox_normal_disabled_dark.png │ │ │ ├── checkbox_normal_disabled_light.png │ │ │ ├── checkbox_normal_hover_dark.png │ │ │ ├── checkbox_normal_hover_light.png │ │ │ ├── checkbox_normal_light.png │ │ │ ├── checkbox_partly_checked_dark.png │ │ │ ├── checkbox_partly_checked_disabled_dark.png │ │ │ ├── checkbox_partly_checked_disabled_light.png │ │ │ ├── checkbox_partly_checked_hover_dark.png │ │ │ ├── checkbox_partly_checked_hover_light.png │ │ │ ├── checkbox_partly_checked_light.png │ │ │ ├── checked.png │ │ │ ├── neoxa-t.png │ │ │ ├── neoxa_bkgrnd.png │ │ │ ├── neoxa_logo_horizontal-black - Copy.png │ │ │ ├── neoxa_logo_horizontal-black.png │ │ │ ├── neoxa_logo_horizontal.png │ │ │ ├── neoxa_logo_horizontal0.png │ │ │ ├── neoxa_logo_logo_toolbar.png │ │ │ ├── neoxa_logo_logo_toolbar_blue.png │ │ │ ├── neoxa_logo_toolbar-black.png │ │ │ ├── neoxa_logo_toolbar.png │ │ │ ├── neoxa_logo_toolbar0.png │ │ │ ├── neoxa_logo_toolbar_blue.png │ │ │ ├── qtreeview_selected.png │ │ │ ├── qtreeview_selected_white arrow.png │ │ │ ├── radio_checked_dark.png │ │ │ ├── radio_checked_disabled_dark.png │ │ │ ├── radio_checked_disabled_light.png │ │ │ ├── radio_checked_hover_dark.png │ │ │ ├── radio_checked_hover_light.png │ │ │ ├── radio_checked_light.png │ │ │ ├── radio_normal_dark.png │ │ │ ├── radio_normal_disabled_dark.png │ │ │ ├── radio_normal_disabled_light.png │ │ │ ├── radio_normal_hover_dark.png │ │ │ ├── radio_normal_hover_light.png │ │ │ ├── radio_normal_light.png │ │ │ ├── splash_neoxa.png │ │ │ ├── splash_neoxa.xcf │ │ │ └── unchecked.png │ │ ├── movies │ │ │ ├── makespinner.sh │ │ │ ├── spinner-000.png │ │ │ ├── spinner-001.png │ │ │ ├── spinner-002.png │ │ │ ├── spinner-003.png │ │ │ ├── spinner-004.png │ │ │ ├── spinner-005.png │ │ │ ├── spinner-006.png │ │ │ ├── spinner-007.png │ │ │ ├── spinner-008.png │ │ │ ├── spinner-009.png │ │ │ ├── spinner-010.png │ │ │ ├── spinner-011.png │ │ │ ├── spinner-012.png │ │ │ ├── spinner-013.png │ │ │ ├── spinner-014.png │ │ │ ├── spinner-015.png │ │ │ ├── spinner-016.png │ │ │ ├── spinner-017.png │ │ │ ├── spinner-018.png │ │ │ ├── spinner-019.png │ │ │ ├── spinner-020.png │ │ │ ├── spinner-021.png │ │ │ ├── spinner-022.png │ │ │ ├── spinner-023.png │ │ │ ├── spinner-024.png │ │ │ ├── spinner-025.png │ │ │ ├── spinner-026.png │ │ │ ├── spinner-027.png │ │ │ ├── spinner-028.png │ │ │ ├── spinner-029.png │ │ │ ├── spinner-030.png │ │ │ ├── spinner-031.png │ │ │ ├── spinner-032.png │ │ │ ├── spinner-033.png │ │ │ ├── spinner-034.png │ │ │ ├── spinner-035.png │ │ │ ├── spinner-036.png │ │ │ ├── spinner-037.png │ │ │ ├── spinner-038.png │ │ │ ├── spinner-039.png │ │ │ ├── spinner-040.png │ │ │ ├── spinner-041.png │ │ │ ├── spinner-042.png │ │ │ ├── spinner-043.png │ │ │ ├── spinner-044.png │ │ │ ├── spinner-045.png │ │ │ ├── spinner-046.png │ │ │ ├── spinner-047.png │ │ │ ├── spinner-048.png │ │ │ ├── spinner-049.png │ │ │ ├── spinner-050.png │ │ │ ├── spinner-051.png │ │ │ ├── spinner-052.png │ │ │ ├── spinner-053.png │ │ │ ├── spinner-054.png │ │ │ ├── spinner-055.png │ │ │ ├── spinner-056.png │ │ │ ├── spinner-057.png │ │ │ ├── spinner-058.png │ │ │ ├── spinner-059.png │ │ │ ├── spinner-060.png │ │ │ ├── spinner-061.png │ │ │ ├── spinner-062.png │ │ │ ├── spinner-063.png │ │ │ ├── spinner-064.png │ │ │ ├── spinner-065.png │ │ │ ├── spinner-066.png │ │ │ ├── spinner-067.png │ │ │ ├── spinner-068.png │ │ │ ├── spinner-069.png │ │ │ ├── spinner-070.png │ │ │ ├── spinner-071.png │ │ │ ├── spinner-072.png │ │ │ ├── spinner-073.png │ │ │ ├── spinner-074.png │ │ │ ├── spinner-075.png │ │ │ ├── spinner-076.png │ │ │ ├── spinner-077.png │ │ │ ├── spinner-078.png │ │ │ ├── spinner-079.png │ │ │ ├── spinner-080.png │ │ │ ├── spinner-081.png │ │ │ ├── spinner-082.png │ │ │ ├── spinner-083.png │ │ │ ├── spinner-084.png │ │ │ ├── spinner-085.png │ │ │ ├── spinner-086.png │ │ │ ├── spinner-087.png │ │ │ ├── spinner-088.png │ │ │ └── spinner-089.png │ │ ├── neoxa-qt-res.rc │ │ └── src │ │ │ ├── bitcoin.svg │ │ │ ├── clock_0.svg │ │ │ ├── clock_1.svg │ │ │ ├── clock_2.svg │ │ │ ├── clock_3.svg │ │ │ ├── clock_4.svg │ │ │ ├── connect-0.svg │ │ │ ├── connect-1.svg │ │ │ ├── connect-2.svg │ │ │ ├── connect-3.svg │ │ │ ├── connect-4.svg │ │ │ ├── hd_disabled.svg │ │ │ ├── hd_enabled.svg │ │ │ ├── mine.svg │ │ │ ├── network_disabled.svg │ │ │ ├── qt.svg │ │ │ ├── spinner.png │ │ │ ├── transaction0.svg │ │ │ ├── tx_in.svg │ │ │ ├── tx_inout.svg │ │ │ └── verify.svg │ ├── restrictedassetsdialog.cpp │ ├── restrictedassetsdialog.h │ ├── restrictedassignqualifier.cpp │ ├── restrictedassignqualifier.h │ ├── restrictedfreezeaddress.cpp │ ├── restrictedfreezeaddress.h │ ├── rpcconsole.cpp │ ├── rpcconsole.h │ ├── sendassetsentry.cpp │ ├── sendassetsentry.h │ ├── sendcoinsdialog.cpp │ ├── sendcoinsdialog.h │ ├── sendcoinsentry.cpp │ ├── sendcoinsentry.h │ ├── signverifymessagedialog.cpp │ ├── signverifymessagedialog.h │ ├── smartnodelist.cpp │ ├── smartnodelist.h │ ├── splashscreen.cpp │ ├── splashscreen.h │ ├── test │ │ ├── compattests.cpp │ │ ├── compattests.h │ │ ├── paymentrequestdata.h │ │ ├── paymentservertests.cpp │ │ ├── paymentservertests.h │ │ ├── rpcnestedtests.cpp │ │ ├── rpcnestedtests.h │ │ ├── test_main.cpp │ │ ├── trafficgraphdatatests.cpp │ │ ├── trafficgraphdatatests.h │ │ ├── uritests.cpp │ │ ├── uritests.h │ │ ├── wallettests.cpp │ │ └── wallettests.h │ ├── trafficgraphdata.cpp │ ├── trafficgraphdata.h │ ├── trafficgraphwidget.cpp │ ├── trafficgraphwidget.h │ ├── transactiondesc.cpp │ ├── transactiondesc.h │ ├── transactiondescdialog.cpp │ ├── transactiondescdialog.h │ ├── transactionfilterproxy.cpp │ ├── transactionfilterproxy.h │ ├── transactionrecord.cpp │ ├── transactionrecord.h │ ├── transactiontablemodel.cpp │ ├── transactiontablemodel.h │ ├── transactionview.cpp │ ├── transactionview.h │ ├── utilitydialog.cpp │ ├── utilitydialog.h │ ├── walletframe.cpp │ ├── walletframe.h │ ├── walletmodel.cpp │ ├── walletmodel.h │ ├── walletmodeltransaction.cpp │ ├── walletmodeltransaction.h │ ├── walletview.cpp │ ├── walletview.h │ ├── winshutdownmonitor.cpp │ └── winshutdownmonitor.h ├── random.cpp ├── random.h ├── rest.cpp ├── reverse_iterator.h ├── reverselock.h ├── rpc │ ├── assets.cpp │ ├── blockchain.cpp │ ├── blockchain.h │ ├── client.cpp │ ├── client.h │ ├── governance.cpp │ ├── messages.cpp │ ├── mining.cpp │ ├── mining.h │ ├── misc.cpp │ ├── net.cpp │ ├── privatesend.cpp │ ├── protocol.cpp │ ├── protocol.h │ ├── rawtransaction.cpp │ ├── register.h │ ├── rewards.cpp │ ├── rpcevo.cpp │ ├── rpcquorums.cpp │ ├── server.cpp │ ├── server.h │ └── smartnode.cpp ├── saltedhasher.cpp ├── saltedhasher.h ├── scheduler.cpp ├── scheduler.h ├── script │ ├── interpreter.cpp │ ├── interpreter.h │ ├── ismine.cpp │ ├── ismine.h │ ├── neoxaconsensus.cpp │ ├── neoxaconsensus.h │ ├── script.cpp │ ├── script.h │ ├── script_error.cpp │ ├── script_error.h │ ├── sigcache.cpp │ ├── sigcache.h │ ├── sign.cpp │ ├── sign.h │ ├── standard.cpp │ └── standard.h ├── secp256k1 │ ├── .gitignore │ ├── .travis.yml │ ├── COPYING │ ├── Makefile.am │ ├── README.md │ ├── TODO │ ├── autogen.sh │ ├── build-aux │ │ └── m4 │ │ │ ├── ax_jni_include_dir.m4 │ │ │ ├── ax_prog_cc_for_build.m4 │ │ │ └── bitcoin_secp.m4 │ ├── configure.ac │ ├── contrib │ │ ├── lax_der_parsing.c │ │ ├── lax_der_parsing.h │ │ ├── lax_der_privatekey_parsing.c │ │ └── lax_der_privatekey_parsing.h │ ├── include │ │ ├── secp256k1.h │ │ ├── secp256k1_ecdh.h │ │ └── secp256k1_recovery.h │ ├── libsecp256k1.pc.in │ ├── obj │ │ └── .gitignore │ ├── sage │ │ ├── group_prover.sage │ │ ├── secp256k1.sage │ │ └── weierstrass_prover.sage │ └── src │ │ ├── asm │ │ └── field_10x26_arm.s │ │ ├── basic-config.h │ │ ├── bench.h │ │ ├── bench_ecdh.c │ │ ├── bench_internal.c │ │ ├── bench_recover.c │ │ ├── bench_sign.c │ │ ├── bench_verify.c │ │ ├── ecdsa.h │ │ ├── ecdsa_impl.h │ │ ├── eckey.h │ │ ├── eckey_impl.h │ │ ├── ecmult.h │ │ ├── ecmult_const.h │ │ ├── ecmult_const_impl.h │ │ ├── ecmult_gen.h │ │ ├── ecmult_gen_impl.h │ │ ├── ecmult_impl.h │ │ ├── field.h │ │ ├── field_10x26.h │ │ ├── field_10x26_impl.h │ │ ├── field_5x52.h │ │ ├── field_5x52_asm_impl.h │ │ ├── field_5x52_impl.h │ │ ├── field_5x52_int128_impl.h │ │ ├── field_impl.h │ │ ├── gen_context.c │ │ ├── group.h │ │ ├── group_impl.h │ │ ├── hash.h │ │ ├── hash_impl.h │ │ ├── java │ │ ├── org │ │ │ └── bitcoin │ │ │ │ ├── NativeSecp256k1.java │ │ │ │ ├── NativeSecp256k1Test.java │ │ │ │ ├── NativeSecp256k1Util.java │ │ │ │ └── Secp256k1Context.java │ │ ├── org_bitcoin_NativeSecp256k1.c │ │ ├── org_bitcoin_NativeSecp256k1.h │ │ ├── org_bitcoin_Secp256k1Context.c │ │ └── org_bitcoin_Secp256k1Context.h │ │ ├── modules │ │ ├── ecdh │ │ │ ├── Makefile.am.include │ │ │ ├── main_impl.h │ │ │ └── tests_impl.h │ │ └── recovery │ │ │ ├── Makefile.am.include │ │ │ ├── main_impl.h │ │ │ └── tests_impl.h │ │ ├── num.h │ │ ├── num_gmp.h │ │ ├── num_gmp_impl.h │ │ ├── num_impl.h │ │ ├── scalar.h │ │ ├── scalar_4x64.h │ │ ├── scalar_4x64_impl.h │ │ ├── scalar_8x32.h │ │ ├── scalar_8x32_impl.h │ │ ├── scalar_impl.h │ │ ├── scalar_low.h │ │ ├── scalar_low_impl.h │ │ ├── secp256k1.c │ │ ├── testrand.h │ │ ├── testrand_impl.h │ │ ├── tests.c │ │ ├── tests_exhaustive.c │ │ └── util.h ├── serialize.h ├── smartnode │ ├── activesmartnode.cpp │ ├── activesmartnode.h │ ├── smartnode-collaterals.cpp │ ├── smartnode-collaterals.h │ ├── smartnode-meta.cpp │ ├── smartnode-meta.h │ ├── smartnode-payments.cpp │ ├── smartnode-payments.h │ ├── smartnode-sync.cpp │ ├── smartnode-sync.h │ ├── smartnode-utils.cpp │ └── smartnode-utils.h ├── spentindex.h ├── spork.cpp ├── spork.h ├── stacktraces.cpp ├── stacktraces.h ├── streams.h ├── support │ ├── allocators │ │ ├── mt_pooled_secure.h │ │ ├── pooled_secure.h │ │ ├── secure.h │ │ └── zeroafterfree.h │ ├── cleanse.cpp │ ├── cleanse.h │ ├── events.h │ ├── lockedpool.cpp │ └── lockedpool.h ├── sync.cpp ├── sync.h ├── test │ ├── DoS_tests.cpp │ ├── README.md │ ├── addrman_tests.cpp │ ├── allocator_tests.cpp │ ├── amount_tests.cpp │ ├── arith_uint256_tests.cpp │ ├── assets │ │ ├── asset_reissue_tests.cpp │ │ ├── asset_tests.cpp │ │ ├── asset_tx_tests.cpp │ │ ├── cache_tests.cpp │ │ ├── messaging_tests.cpp │ │ ├── null_asset_data_tests.cpp │ │ ├── qualifier_tests.cpp │ │ ├── restricted_tests.cpp │ │ ├── serialization_tests.cpp │ │ ├── unique_tests.cpp │ │ └── verifier_string_tests.cpp │ ├── base32_tests.cpp │ ├── base58_tests.cpp │ ├── base64_tests.cpp │ ├── bip32_tests.cpp │ ├── bip39_tests.cpp │ ├── blockencodings_tests.cpp │ ├── bloom_tests.cpp │ ├── bls_tests.cpp │ ├── bswap_tests.cpp │ ├── cachemap_tests.cpp │ ├── cachemultimap_tests.cpp │ ├── checkqueue_tests.cpp │ ├── coins_tests.cpp │ ├── compress_tests.cpp │ ├── crypto_tests.cpp │ ├── cuckoocache_tests.cpp │ ├── data │ │ ├── README.md │ │ ├── base58_encode_decode.json │ │ ├── base58_keys_invalid.json │ │ ├── base58_keys_valid.json │ │ ├── bip39_vectors.json │ │ ├── proposals_invalid.json │ │ ├── proposals_valid.json │ │ ├── script_tests.json │ │ ├── sighash.json │ │ ├── tx_invalid.json │ │ └── tx_valid.json │ ├── dbwrapper_tests.cpp │ ├── evo_deterministicmns_tests.cpp │ ├── evo_simplifiedmns_tests.cpp │ ├── getarg_tests.cpp │ ├── governance_validators_tests.cpp │ ├── hash_tests.cpp │ ├── key_tests.cpp │ ├── limitedmap_tests.cpp │ ├── main_tests.cpp │ ├── mempool_tests.cpp │ ├── merkle_tests.cpp │ ├── miner_tests.cpp │ ├── multisig_tests.cpp │ ├── net_tests.cpp │ ├── netbase_tests.cpp │ ├── pmt_tests.cpp │ ├── policyestimator_tests.cpp │ ├── pow_tests.cpp │ ├── prevector_tests.cpp │ ├── raii_event_tests.cpp │ ├── random_tests.cpp │ ├── ratecheck_tests.cpp │ ├── reverselock_tests.cpp │ ├── rpc_tests.cpp │ ├── sanity_tests.cpp │ ├── scheduler_tests.cpp │ ├── script_P2PKH_tests.cpp │ ├── script_P2PK_tests.cpp │ ├── script_P2SH_tests.cpp │ ├── script_standard_tests.cpp │ ├── script_tests.cpp │ ├── scriptnum10.h │ ├── scriptnum_tests.cpp │ ├── serialize_tests.cpp │ ├── sighash_tests.cpp │ ├── sigopcount_tests.cpp │ ├── skiplist_tests.cpp │ ├── streams_tests.cpp │ ├── subsidy_tests.cpp │ ├── test_neoxa.cpp │ ├── test_neoxa.h │ ├── test_neoxa_fuzzy.cpp │ ├── test_neoxa_main.cpp │ ├── timedata_tests.cpp │ ├── torcontrol_tests.cpp │ ├── transaction_tests.cpp │ ├── txvalidationcache_tests.cpp │ ├── uint256_tests.cpp │ ├── univalue_tests.cpp │ ├── util_tests.cpp │ └── versionbits_tests.cpp ├── threadinterrupt.cpp ├── threadinterrupt.h ├── threadsafety.h ├── timedata.cpp ├── timedata.h ├── tinyformat.h ├── torcontrol.cpp ├── torcontrol.h ├── txdb.cpp ├── txdb.h ├── txmempool.cpp ├── txmempool.h ├── ui_interface.cpp ├── ui_interface.h ├── uint256.cpp ├── uint256.h ├── undo.h ├── univalue │ ├── .gitignore │ ├── .travis.yml │ ├── COPYING │ ├── Makefile.am │ ├── README │ ├── TODO │ ├── autogen.sh │ ├── build-aux │ │ └── m4 │ │ │ └── .gitignore │ ├── configure.ac │ ├── include │ │ └── univalue.h │ ├── lib │ │ ├── .gitignore │ │ ├── univalue.cpp │ │ ├── univalue_escapes.h │ │ ├── univalue_read.cpp │ │ ├── univalue_utffilter.h │ │ └── univalue_write.cpp │ ├── pc │ │ ├── libunivalue-uninstalled.pc.in │ │ └── libunivalue.pc.in │ └── test │ │ ├── .gitignore │ │ ├── fail1.json │ │ ├── fail10.json │ │ ├── fail11.json │ │ ├── fail12.json │ │ ├── fail13.json │ │ ├── fail14.json │ │ ├── fail15.json │ │ ├── fail16.json │ │ ├── fail17.json │ │ ├── fail18.json │ │ ├── fail19.json │ │ ├── fail2.json │ │ ├── fail20.json │ │ ├── fail21.json │ │ ├── fail22.json │ │ ├── fail23.json │ │ ├── fail24.json │ │ ├── fail25.json │ │ ├── fail26.json │ │ ├── fail27.json │ │ ├── fail28.json │ │ ├── fail29.json │ │ ├── fail3.json │ │ ├── fail30.json │ │ ├── fail31.json │ │ ├── fail32.json │ │ ├── fail33.json │ │ ├── fail34.json │ │ ├── fail35.json │ │ ├── fail36.json │ │ ├── fail37.json │ │ ├── fail38.json │ │ ├── fail39.json │ │ ├── fail4.json │ │ ├── fail40.json │ │ ├── fail41.json │ │ ├── fail5.json │ │ ├── fail6.json │ │ ├── fail7.json │ │ ├── fail8.json │ │ ├── fail9.json │ │ ├── pass1.json │ │ ├── pass2.json │ │ ├── pass3.json │ │ ├── round1.json │ │ ├── round2.json │ │ └── unitester.cpp ├── unordered_lru_cache.h ├── util.cpp ├── util.h ├── utilmoneystr.cpp ├── utilmoneystr.h ├── utilstrencodings.cpp ├── utilstrencodings.h ├── utiltime.cpp ├── utiltime.h ├── validation.cpp ├── validation.h ├── validationinterface.cpp ├── validationinterface.h ├── version.h ├── versionbits.cpp ├── versionbits.h ├── wallet │ ├── coincontrol.h │ ├── crypter.cpp │ ├── crypter.h │ ├── db.cpp │ ├── db.h │ ├── rpcdump.cpp │ ├── rpcwallet.cpp │ ├── rpcwallet.h │ ├── test │ │ ├── accounting_tests.cpp │ │ ├── crypto_tests.cpp │ │ ├── wallet_test_fixture.cpp │ │ ├── wallet_test_fixture.h │ │ └── wallet_tests.cpp │ ├── wallet.cpp │ ├── wallet.h │ ├── walletdb.cpp │ └── walletdb.h ├── warnings.cpp ├── warnings.h └── zmq │ ├── zmqabstractnotifier.cpp │ ├── zmqabstractnotifier.h │ ├── zmqconfig.h │ ├── zmqnotificationinterface.cpp │ ├── zmqnotificationinterface.h │ ├── zmqpublishnotifier.cpp │ └── zmqpublishnotifier.h ├── test ├── README.md ├── config.ini.in ├── functional │ ├── .gitignore │ ├── README.md │ ├── abandonconflict.py │ ├── addressindex.py │ ├── assumevalid.py │ ├── bip65-cltv-p2p.py │ ├── bip68-112-113-p2p.py │ ├── bip68-sequence.py │ ├── bip9-softforks.py │ ├── bipdersig-p2p.py │ ├── bitcoin_cli.py │ ├── blockchain.py │ ├── combine_logs.py │ ├── combined_log_template.html │ ├── conf_args.py │ ├── create_cache.py │ ├── data │ │ └── rpc_getblockstats.json │ ├── dbcrash.py │ ├── decodescript.py │ ├── deprecated_rpc.py │ ├── dip3-deterministicmns.py │ ├── dip4-coinbasemerkleroots.py │ ├── disablewallet.py │ ├── disconnect_ban.py │ ├── example_test.py │ ├── feature_addressindex.py │ ├── feature_assumevalid.py │ ├── feature_bip68_sequence.py │ ├── feature_block.py │ ├── feature_block_reward_reallocation.py │ ├── feature_blocksdir.py │ ├── feature_cltv.py │ ├── feature_config_args.py │ ├── feature_csv_activation.py │ ├── feature_dbcrash.py │ ├── feature_dersig.py │ ├── feature_dip0020_activation.py │ ├── feature_dip3_deterministicmns.py │ ├── feature_dip4_coinbasemerkleroots.py │ ├── feature_fee_estimation.py │ ├── feature_governance_objects.py │ ├── feature_help.py │ ├── feature_llmq_chainlocks.py │ ├── feature_llmq_connections.py │ ├── feature_llmq_data_recovery.py │ ├── feature_llmq_dkgerrors.py │ ├── feature_llmq_is_cl_conflicts.py │ ├── feature_llmq_is_retroactive.py │ ├── feature_llmq_signing.py │ ├── feature_llmq_simplepose.py │ ├── feature_logging.py │ ├── feature_maxuploadtarget.py │ ├── feature_minchainwork.py │ ├── feature_multikeysporks.py │ ├── feature_new_quorum_type_activation.py │ ├── feature_notifications.py │ ├── feature_nulldummy.py │ ├── feature_proxy.py │ ├── feature_pruning.py │ ├── feature_reindex.py │ ├── feature_shutdown.py │ ├── feature_spentindex.py │ ├── feature_sporks.py │ ├── feature_timestampindex.py │ ├── feature_txindex.py │ ├── feature_uacomment.py │ ├── feature_versionbits_warning.py │ ├── forknotify.py │ ├── fundrawtransaction-hd.py │ ├── fundrawtransaction.py │ ├── getblocktemplate_longpoll.py │ ├── getchaintips.py │ ├── httpbasics.py │ ├── import-rescan.py │ ├── importmulti.py │ ├── importprunedfunds.py │ ├── interface_bitcoin_cli.py │ ├── interface_http.py │ ├── interface_rest.py │ ├── interface_zmq.py │ ├── interface_zmq_dash.py │ ├── invalidateblock.py │ ├── invalidblockrequest.py │ ├── invalidtxrequest.py │ ├── keypool-hd.py │ ├── keypool-topup.py │ ├── keypool.py │ ├── listsinceblock.py │ ├── listtransactions.py │ ├── llmq-chainlocks.py │ ├── llmq-connections.py │ ├── llmq-dkgerrors.py │ ├── llmq-is-cl-conflicts.py │ ├── llmq-is-retroactive.py │ ├── llmq-signing.py │ ├── llmq-simplepose.py │ ├── maxuploadtarget.py │ ├── mempool_limit.py │ ├── mempool_packages.py │ ├── mempool_persist.py │ ├── mempool_reorg.py │ ├── mempool_resurrect.py │ ├── mempool_resurrect_test.py │ ├── mempool_spend_coinbase.py │ ├── mempool_spendcoinbase.py │ ├── merkle_blocks.py │ ├── minchainwork.py │ ├── mining.py │ ├── mining_basic.py │ ├── mining_getblocktemplate_longpoll.py │ ├── mining_prioritisetransaction.py │ ├── multi_rpc.py │ ├── multikeysporks.py │ ├── multiwallet.py │ ├── net.py │ ├── node_network_limited.py │ ├── notifications.py │ ├── nulldummy.py │ ├── p2p-acceptblock.py │ ├── p2p-compactblocks.py │ ├── p2p-fingerprint.py │ ├── p2p-fullblocktest.py │ ├── p2p-instantsend.py │ ├── p2p-leaktests.py │ ├── p2p-mempool.py │ ├── p2p-timeouts.py │ ├── p2p-versionbits-warning.py │ ├── p2p_compactblocks.py │ ├── p2p_connect_to_devnet.py │ ├── p2p_disconnect_ban.py │ ├── p2p_fingerprint.py │ ├── p2p_instantsend.py │ ├── p2p_invalid_block.py │ ├── p2p_invalid_tx.py │ ├── p2p_leak.py │ ├── p2p_mempool.py │ ├── p2p_node_network_limited.py │ ├── p2p_quorum_data.py │ ├── p2p_sendheaders.py │ ├── p2p_timeouts.py │ ├── p2p_unrequested_blocks.py │ ├── preciousblock.py │ ├── prioritise_transaction.py │ ├── privatesend.py │ ├── proxy_test.py │ ├── pruning.py │ ├── rawtransactions.py │ ├── receivedby.py │ ├── reindex.py │ ├── resendwallettransactions.py │ ├── rest.py │ ├── rpc_bind.py │ ├── rpc_blockchain.py │ ├── rpc_coinjoin.py │ ├── rpc_decodescript.py │ ├── rpc_deprecated.py │ ├── rpc_fundrawtransaction.py │ ├── rpc_fundrawtransaction_hd.py │ ├── rpc_getblockstats.py │ ├── rpc_getchaintips.py │ ├── rpc_invalidateblock.py │ ├── rpc_masternode.py │ ├── rpc_mnauth.py │ ├── rpc_named_arguments.py │ ├── rpc_net.py │ ├── rpc_platform_filter.py │ ├── rpc_preciousblock.py │ ├── rpc_rawtransaction.py │ ├── rpc_signmessage.py │ ├── rpc_signrawtransaction.py │ ├── rpc_txoutproof.py │ ├── rpc_uptime.py │ ├── rpc_users.py │ ├── rpc_verifychainlock.py │ ├── rpc_verifyislock.py │ ├── rpc_zmq.py │ ├── rpcbind_test.py │ ├── rpcnamedargs.py │ ├── sendheaders.py │ ├── signmessages.py │ ├── signrawtransactions.py │ ├── smartfees.py │ ├── spentindex.py │ ├── sporks.py │ ├── test_framework │ │ ├── __init__.py │ │ ├── authproxy.py │ │ ├── bignum.py │ │ ├── blockstore.py │ │ ├── blocktools.py │ │ ├── comptool.py │ │ ├── coverage.py │ │ ├── key.py │ │ ├── messages.py │ │ ├── mininode.py │ │ ├── netutil.py │ │ ├── script.py │ │ ├── siphash.py │ │ ├── socks5.py │ │ ├── test_framework.py │ │ ├── test_node.py │ │ └── util.py │ ├── test_runner.py │ ├── timestampindex.py │ ├── txindex.py │ ├── txn_clone.py │ ├── txn_doublespend.py │ ├── uacomment.py │ ├── uptime.py │ ├── wallet-accounts.py │ ├── wallet-dump.py │ ├── wallet-encryption.py │ ├── wallet-hd.py │ ├── wallet.py │ ├── wallet_abandonconflict.py │ ├── wallet_backup.py │ ├── wallet_basic.py │ ├── wallet_disable.py │ ├── wallet_dump.py │ ├── wallet_encryption.py │ ├── wallet_hd.py │ ├── wallet_import_rescan.py │ ├── wallet_importmulti.py │ ├── wallet_importprunedfunds.py │ ├── wallet_keypool.py │ ├── wallet_keypool_hd.py │ ├── wallet_keypool_topup.py │ ├── wallet_labels.py │ ├── wallet_listreceivedby.py │ ├── wallet_listsinceblock.py │ ├── wallet_listtransactions.py │ ├── wallet_multiwallet.py │ ├── wallet_resendwallettransactions.py │ ├── wallet_txn_clone.py │ ├── wallet_txn_doublespend.py │ ├── wallet_upgradetohd.py │ ├── wallet_zapwallettxes.py │ ├── walletbackup.py │ ├── zapwallettxes.py │ └── zmq_test.py ├── lint │ ├── README.md │ ├── check-doc.py │ ├── check-rpc-mappings.py │ ├── commit-script-check.sh │ ├── git-subtree-check.sh │ ├── lint-all.sh │ ├── lint-circular-dependencies.sh │ ├── lint-filenames.sh │ ├── lint-format-strings.py │ ├── lint-format-strings.sh │ ├── lint-include-guards.sh │ ├── lint-includes.sh │ ├── lint-locale-dependence.sh │ ├── lint-logs.sh │ ├── lint-python-shebang.sh │ ├── lint-python-utf8-encoding.sh │ ├── lint-python.sh │ ├── lint-shell-locale.sh │ ├── lint-shell.sh │ ├── lint-tests.sh │ └── lint-whitespace.sh └── util │ ├── bitcoin-util-test.py │ ├── data │ ├── bitcoin-util-test.json │ ├── blanktxv1.hex │ ├── blanktxv1.json │ ├── blanktxv2.hex │ ├── blanktxv2.json │ ├── tt-delin1-out.hex │ ├── tt-delin1-out.json │ ├── tt-delout1-out.hex │ ├── tt-delout1-out.json │ ├── tt-locktime317000-out.hex │ ├── tt-locktime317000-out.json │ ├── tx394b54bb.hex │ ├── txcreate1.hex │ ├── txcreate1.json │ ├── txcreate2.hex │ ├── txcreate2.json │ ├── txcreatedata1.hex │ ├── txcreatedata1.json │ ├── txcreatedata2.hex │ ├── txcreatedata2.json │ ├── txcreatedata_seq0.hex │ ├── txcreatedata_seq0.json │ ├── txcreatedata_seq1.hex │ ├── txcreatedata_seq1.json │ ├── txcreatemultisig1.hex │ ├── txcreatemultisig1.json │ ├── txcreatemultisig2.hex │ ├── txcreatemultisig2.json │ ├── txcreateoutpubkey1.hex │ ├── txcreateoutpubkey1.json │ ├── txcreatescript1.hex │ ├── txcreatescript1.json │ ├── txcreatescript2.hex │ ├── txcreatescript2.json │ ├── txcreatesignv1.hex │ ├── txcreatesignv1.json │ └── txcreatesignv2.hex │ └── rpcauth-test.py └── utils ├── build-debian-package.sh ├── build.sh ├── clean.sh ├── cleanup-tags.sh ├── distclean.sh └── fetch-params.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/COPYING -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/INSTALL.md -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /Jenkinsfile.gitian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/Jenkinsfile.gitian -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/README.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/autogen.sh -------------------------------------------------------------------------------- /ci/Dockerfile.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/ci/Dockerfile.builder -------------------------------------------------------------------------------- /ci/Dockerfile.gitian-builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/ci/Dockerfile.gitian-builder -------------------------------------------------------------------------------- /ci/build_depends.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/ci/build_depends.sh -------------------------------------------------------------------------------- /ci/build_src.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/ci/build_src.sh -------------------------------------------------------------------------------- /ci/matrix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/ci/matrix.sh -------------------------------------------------------------------------------- /ci/test_integrationtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/ci/test_integrationtests.sh -------------------------------------------------------------------------------- /ci/test_unittests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/ci/test_unittests.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/configure.ac -------------------------------------------------------------------------------- /contrib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/contrib/README.md -------------------------------------------------------------------------------- /contrib/auto_gdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/contrib/auto_gdb/README.md -------------------------------------------------------------------------------- /contrib/auto_gdb/debug.gdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/contrib/auto_gdb/debug.gdb -------------------------------------------------------------------------------- /contrib/auto_gdb/log_size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/contrib/auto_gdb/log_size.py -------------------------------------------------------------------------------- /contrib/debian/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/contrib/debian/README.md -------------------------------------------------------------------------------- /contrib/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/contrib/debian/changelog -------------------------------------------------------------------------------- /contrib/debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /contrib/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/contrib/debian/control -------------------------------------------------------------------------------- /contrib/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/contrib/debian/copyright -------------------------------------------------------------------------------- /contrib/debian/neoxa-qt.manpages: -------------------------------------------------------------------------------- 1 | doc/man/neoxa-qt.1 2 | -------------------------------------------------------------------------------- /contrib/debian/neoxa-tx.manpages: -------------------------------------------------------------------------------- 1 | doc/man/neoxa-tx.1 2 | -------------------------------------------------------------------------------- /contrib/debian/neoxad.examples: -------------------------------------------------------------------------------- 1 | debian/examples/neoxa.conf 2 | -------------------------------------------------------------------------------- /contrib/debian/patches/series: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /contrib/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/contrib/debian/rules -------------------------------------------------------------------------------- /contrib/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /contrib/debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/contrib/debian/watch -------------------------------------------------------------------------------- /contrib/devtools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/contrib/devtools/README.md -------------------------------------------------------------------------------- /contrib/devtools/lint-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/contrib/devtools/lint-all.sh -------------------------------------------------------------------------------- /contrib/filter-lcov.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/contrib/filter-lcov.py -------------------------------------------------------------------------------- /contrib/gitian-build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/contrib/gitian-build.py -------------------------------------------------------------------------------- /contrib/init/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/contrib/init/README.md -------------------------------------------------------------------------------- /contrib/init/neoxad.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/contrib/init/neoxad.init -------------------------------------------------------------------------------- /contrib/init/neoxad.openrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/contrib/init/neoxad.openrc -------------------------------------------------------------------------------- /contrib/init/neoxad.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/contrib/init/neoxad.service -------------------------------------------------------------------------------- /contrib/linearize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/contrib/linearize/README.md -------------------------------------------------------------------------------- /contrib/macdeploy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/contrib/macdeploy/LICENSE -------------------------------------------------------------------------------- /contrib/macdeploy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/contrib/macdeploy/README.md -------------------------------------------------------------------------------- /contrib/neoxa-qt.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/contrib/neoxa-qt.pro -------------------------------------------------------------------------------- /contrib/qos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/contrib/qos/README.md -------------------------------------------------------------------------------- /contrib/qos/tc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/contrib/qos/tc.sh -------------------------------------------------------------------------------- /contrib/seeds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/contrib/seeds/README.md -------------------------------------------------------------------------------- /contrib/seeds/makeseeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/contrib/seeds/makeseeds.py -------------------------------------------------------------------------------- /contrib/seeds/nodes_main.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/contrib/seeds/nodes_main.txt -------------------------------------------------------------------------------- /contrib/seeds/nodes_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/contrib/seeds/nodes_test.txt -------------------------------------------------------------------------------- /contrib/seeds/protx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/contrib/seeds/protx.json -------------------------------------------------------------------------------- /contrib/testgen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/contrib/testgen/README.md -------------------------------------------------------------------------------- /contrib/testgen/base58.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/contrib/testgen/base58.py -------------------------------------------------------------------------------- /contrib/tidy_datadir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/contrib/tidy_datadir.sh -------------------------------------------------------------------------------- /contrib/valgrind.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/contrib/valgrind.supp -------------------------------------------------------------------------------- /contrib/verify-commits/allow-revsig-commits: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/verify-commits/trusted-git-root: -------------------------------------------------------------------------------- 1 | 82bcf405f6db1d55b684a1f63a4aabad376cdad7 2 | -------------------------------------------------------------------------------- /contrib/verify-commits/trusted-sha512-root-commit: -------------------------------------------------------------------------------- 1 | 309bf16257b2395ce502017be627186b749ee749 2 | -------------------------------------------------------------------------------- /contrib/zmq/zmq_sub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/contrib/zmq/zmq_sub.py -------------------------------------------------------------------------------- /contrib/zmq/zmq_sub3.4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/contrib/zmq/zmq_sub3.4.py -------------------------------------------------------------------------------- /depends/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/depends/.gitignore -------------------------------------------------------------------------------- /depends/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/depends/Makefile -------------------------------------------------------------------------------- /depends/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/depends/README.md -------------------------------------------------------------------------------- /depends/builders/darwin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/depends/builders/darwin.mk -------------------------------------------------------------------------------- /depends/builders/default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/depends/builders/default.mk -------------------------------------------------------------------------------- /depends/builders/linux.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/depends/builders/linux.mk -------------------------------------------------------------------------------- /depends/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/depends/config.guess -------------------------------------------------------------------------------- /depends/config.site.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/depends/config.site.in -------------------------------------------------------------------------------- /depends/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/depends/config.sub -------------------------------------------------------------------------------- /depends/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/depends/description.md -------------------------------------------------------------------------------- /depends/funcs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/depends/funcs.mk -------------------------------------------------------------------------------- /depends/hosts/darwin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/depends/hosts/darwin.mk -------------------------------------------------------------------------------- /depends/hosts/default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/depends/hosts/default.mk -------------------------------------------------------------------------------- /depends/hosts/linux.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/depends/hosts/linux.mk -------------------------------------------------------------------------------- /depends/hosts/mingw32.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/depends/hosts/mingw32.mk -------------------------------------------------------------------------------- /depends/packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/depends/packages.md -------------------------------------------------------------------------------- /depends/packages/bdb.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/depends/packages/bdb.mk -------------------------------------------------------------------------------- /depends/packages/bls-dash.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/depends/packages/bls-dash.mk -------------------------------------------------------------------------------- /depends/packages/boost.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/depends/packages/boost.mk -------------------------------------------------------------------------------- /depends/packages/chia_bls.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/depends/packages/chia_bls.mk -------------------------------------------------------------------------------- /depends/packages/cmake.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/depends/packages/cmake.mk -------------------------------------------------------------------------------- /depends/packages/dbus.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/depends/packages/dbus.mk -------------------------------------------------------------------------------- /depends/packages/expat.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/depends/packages/expat.mk -------------------------------------------------------------------------------- /depends/packages/freetype.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/depends/packages/freetype.mk -------------------------------------------------------------------------------- /depends/packages/gmp.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/depends/packages/gmp.mk -------------------------------------------------------------------------------- /depends/packages/libICE.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/depends/packages/libICE.mk -------------------------------------------------------------------------------- /depends/packages/libSM.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/depends/packages/libSM.mk -------------------------------------------------------------------------------- /depends/packages/libX11.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/depends/packages/libX11.mk -------------------------------------------------------------------------------- /depends/packages/libXau.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/depends/packages/libXau.mk -------------------------------------------------------------------------------- /depends/packages/libXext.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/depends/packages/libXext.mk -------------------------------------------------------------------------------- /depends/packages/libevent.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/depends/packages/libevent.mk -------------------------------------------------------------------------------- /depends/packages/libxcb.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/depends/packages/libxcb.mk -------------------------------------------------------------------------------- /depends/packages/openssl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/depends/packages/openssl.mk -------------------------------------------------------------------------------- /depends/packages/packages.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/depends/packages/packages.mk -------------------------------------------------------------------------------- /depends/packages/protobuf.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/depends/packages/protobuf.mk -------------------------------------------------------------------------------- /depends/packages/qrencode.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/depends/packages/qrencode.mk -------------------------------------------------------------------------------- /depends/packages/qt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/depends/packages/qt.mk -------------------------------------------------------------------------------- /depends/packages/xproto.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/depends/packages/xproto.mk -------------------------------------------------------------------------------- /depends/packages/xtrans.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/depends/packages/xtrans.mk -------------------------------------------------------------------------------- /depends/packages/zeromq.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/depends/packages/zeromq.mk -------------------------------------------------------------------------------- /depends/packages/zlib.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/depends/packages/zlib.mk -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- 1 | Doxyfile 2 | -------------------------------------------------------------------------------- /doc/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/doc/Doxyfile.in -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/README_osx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/doc/README_osx.md -------------------------------------------------------------------------------- /doc/README_windows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/doc/README_windows.txt -------------------------------------------------------------------------------- /doc/REST-interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/doc/REST-interface.md -------------------------------------------------------------------------------- /doc/assets-attribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/doc/assets-attribution.md -------------------------------------------------------------------------------- /doc/benchmarking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/doc/benchmarking.md -------------------------------------------------------------------------------- /doc/bips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/doc/bips.md -------------------------------------------------------------------------------- /doc/bitcoin_logo_doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/doc/bitcoin_logo_doxygen.png -------------------------------------------------------------------------------- /doc/build-cross.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/doc/build-cross.md -------------------------------------------------------------------------------- /doc/build-generic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/doc/build-generic.md -------------------------------------------------------------------------------- /doc/build-osx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/doc/build-osx.md -------------------------------------------------------------------------------- /doc/build-unix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/doc/build-unix.md -------------------------------------------------------------------------------- /doc/build-windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/doc/build-windows.md -------------------------------------------------------------------------------- /doc/developer-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/doc/developer-notes.md -------------------------------------------------------------------------------- /doc/dnsseed-policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/doc/dnsseed-policy.md -------------------------------------------------------------------------------- /doc/files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/doc/files.md -------------------------------------------------------------------------------- /doc/fuzzing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/doc/fuzzing.md -------------------------------------------------------------------------------- /doc/gitian-building.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/doc/gitian-building.md -------------------------------------------------------------------------------- /doc/init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/doc/init.md -------------------------------------------------------------------------------- /doc/instantsend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/doc/instantsend.md -------------------------------------------------------------------------------- /doc/keepass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/doc/keepass.md -------------------------------------------------------------------------------- /doc/man/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/doc/man/Makefile.am -------------------------------------------------------------------------------- /doc/man/neoxa-cli.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/doc/man/neoxa-cli.1 -------------------------------------------------------------------------------- /doc/man/neoxa-qt.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/doc/man/neoxa-qt.1 -------------------------------------------------------------------------------- /doc/man/neoxa-tx.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/doc/man/neoxa-tx.1 -------------------------------------------------------------------------------- /doc/man/neoxad.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/doc/man/neoxad.1 -------------------------------------------------------------------------------- /doc/reduce-traffic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/doc/reduce-traffic.md -------------------------------------------------------------------------------- /doc/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/doc/release-notes.md -------------------------------------------------------------------------------- /doc/release-process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/doc/release-process.md -------------------------------------------------------------------------------- /doc/shared-libraries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/doc/shared-libraries.md -------------------------------------------------------------------------------- /doc/smartnode-budget.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/doc/smartnode-budget.md -------------------------------------------------------------------------------- /doc/tor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/doc/tor.md -------------------------------------------------------------------------------- /doc/translation_process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/doc/translation_process.md -------------------------------------------------------------------------------- /doc/travis-ci.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/doc/travis-ci.md -------------------------------------------------------------------------------- /doc/zmq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/doc/zmq.md -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/build-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/docker/build-docker.sh -------------------------------------------------------------------------------- /docker/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/docker/docker-entrypoint.sh -------------------------------------------------------------------------------- /docker/push-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/docker/push-docker.sh -------------------------------------------------------------------------------- /libneoxaconsensus.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/libneoxaconsensus.pc.in -------------------------------------------------------------------------------- /share/genbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/share/genbuild.sh -------------------------------------------------------------------------------- /share/pixmaps/bitcoin.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/share/pixmaps/bitcoin.ico -------------------------------------------------------------------------------- /share/pixmaps/dash.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/share/pixmaps/dash.ico -------------------------------------------------------------------------------- /share/pixmaps/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/share/pixmaps/favicon.ico -------------------------------------------------------------------------------- /share/pixmaps/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/share/pixmaps/favicon.png -------------------------------------------------------------------------------- /share/pixmaps/spinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/share/pixmaps/spinner.png -------------------------------------------------------------------------------- /share/qt/Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/share/qt/Info.plist.in -------------------------------------------------------------------------------- /share/rpcauth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/share/rpcauth/README.md -------------------------------------------------------------------------------- /share/rpcuser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/share/rpcuser/README.md -------------------------------------------------------------------------------- /share/rpcuser/rpcuser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/share/rpcuser/rpcuser.py -------------------------------------------------------------------------------- /share/setup.nsi.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/share/setup.nsi.in -------------------------------------------------------------------------------- /src/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/.clang-format -------------------------------------------------------------------------------- /src/LibBoolEE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/LibBoolEE.cpp -------------------------------------------------------------------------------- /src/LibBoolEE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/LibBoolEE.h -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/Makefile.bench.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/Makefile.bench.include -------------------------------------------------------------------------------- /src/Makefile.leveldb.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/Makefile.leveldb.include -------------------------------------------------------------------------------- /src/Makefile.qt.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/Makefile.qt.include -------------------------------------------------------------------------------- /src/Makefile.qttest.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/Makefile.qttest.include -------------------------------------------------------------------------------- /src/Makefile.test.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/Makefile.test.include -------------------------------------------------------------------------------- /src/addrdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/addrdb.cpp -------------------------------------------------------------------------------- /src/addrdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/addrdb.h -------------------------------------------------------------------------------- /src/addressindex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/addressindex.h -------------------------------------------------------------------------------- /src/addrman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/addrman.cpp -------------------------------------------------------------------------------- /src/addrman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/addrman.h -------------------------------------------------------------------------------- /src/amount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/amount.h -------------------------------------------------------------------------------- /src/arith_uint256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/arith_uint256.cpp -------------------------------------------------------------------------------- /src/arith_uint256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/arith_uint256.h -------------------------------------------------------------------------------- /src/assets/assetdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/assets/assetdb.cpp -------------------------------------------------------------------------------- /src/assets/assetdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/assets/assetdb.h -------------------------------------------------------------------------------- /src/assets/assets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/assets/assets.cpp -------------------------------------------------------------------------------- /src/assets/assets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/assets/assets.h -------------------------------------------------------------------------------- /src/assets/assetsnapshotdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/assets/assetsnapshotdb.h -------------------------------------------------------------------------------- /src/assets/assettypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/assets/assettypes.cpp -------------------------------------------------------------------------------- /src/assets/assettypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/assets/assettypes.h -------------------------------------------------------------------------------- /src/assets/messages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/assets/messages.cpp -------------------------------------------------------------------------------- /src/assets/messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/assets/messages.h -------------------------------------------------------------------------------- /src/assets/myassetsdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/assets/myassetsdb.cpp -------------------------------------------------------------------------------- /src/assets/myassetsdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/assets/myassetsdb.h -------------------------------------------------------------------------------- /src/assets/restricteddb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/assets/restricteddb.cpp -------------------------------------------------------------------------------- /src/assets/restricteddb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/assets/restricteddb.h -------------------------------------------------------------------------------- /src/assets/rewards.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/assets/rewards.cpp -------------------------------------------------------------------------------- /src/assets/rewards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/assets/rewards.h -------------------------------------------------------------------------------- /src/base58.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/base58.cpp -------------------------------------------------------------------------------- /src/base58.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/base58.h -------------------------------------------------------------------------------- /src/batchedlogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/batchedlogger.cpp -------------------------------------------------------------------------------- /src/batchedlogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/batchedlogger.h -------------------------------------------------------------------------------- /src/bench/.gitignore: -------------------------------------------------------------------------------- 1 | bench_neoxa 2 | -------------------------------------------------------------------------------- /src/bench/Examples.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/bench/Examples.cpp -------------------------------------------------------------------------------- /src/bench/base58.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/bench/base58.cpp -------------------------------------------------------------------------------- /src/bench/bench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/bench/bench.cpp -------------------------------------------------------------------------------- /src/bench/bench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/bench/bench.h -------------------------------------------------------------------------------- /src/bench/bench_neoxa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/bench/bench_neoxa.cpp -------------------------------------------------------------------------------- /src/bench/bls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/bench/bls.cpp -------------------------------------------------------------------------------- /src/bench/bls_dkg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/bench/bls_dkg.cpp -------------------------------------------------------------------------------- /src/bench/ccoins_caching.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/bench/ccoins_caching.cpp -------------------------------------------------------------------------------- /src/bench/chacha20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/bench/chacha20.cpp -------------------------------------------------------------------------------- /src/bench/checkblock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/bench/checkblock.cpp -------------------------------------------------------------------------------- /src/bench/checkqueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/bench/checkqueue.cpp -------------------------------------------------------------------------------- /src/bench/coin_selection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/bench/coin_selection.cpp -------------------------------------------------------------------------------- /src/bench/crypto_hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/bench/crypto_hash.cpp -------------------------------------------------------------------------------- /src/bench/ecdsa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/bench/ecdsa.cpp -------------------------------------------------------------------------------- /src/bench/lockedpool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/bench/lockedpool.cpp -------------------------------------------------------------------------------- /src/bench/merkle_root.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/bench/merkle_root.cpp -------------------------------------------------------------------------------- /src/bench/perf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/bench/perf.cpp -------------------------------------------------------------------------------- /src/bench/perf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/bench/perf.h -------------------------------------------------------------------------------- /src/bench/poly1305.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/bench/poly1305.cpp -------------------------------------------------------------------------------- /src/bench/prevector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/bench/prevector.cpp -------------------------------------------------------------------------------- /src/bench/rollingbloom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/bench/rollingbloom.cpp -------------------------------------------------------------------------------- /src/bench/string_cast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/bench/string_cast.cpp -------------------------------------------------------------------------------- /src/bip39.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/bip39.cpp -------------------------------------------------------------------------------- /src/bip39.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/bip39.h -------------------------------------------------------------------------------- /src/bip39_english.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/bip39_english.h -------------------------------------------------------------------------------- /src/blockencodings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/blockencodings.cpp -------------------------------------------------------------------------------- /src/blockencodings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/blockencodings.h -------------------------------------------------------------------------------- /src/bloom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/bloom.cpp -------------------------------------------------------------------------------- /src/bloom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/bloom.h -------------------------------------------------------------------------------- /src/bls/bls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/bls/bls.cpp -------------------------------------------------------------------------------- /src/bls/bls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/bls/bls.h -------------------------------------------------------------------------------- /src/bls/bls_batchverifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/bls/bls_batchverifier.h -------------------------------------------------------------------------------- /src/bls/bls_ies.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/bls/bls_ies.cpp -------------------------------------------------------------------------------- /src/bls/bls_ies.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/bls/bls_ies.h -------------------------------------------------------------------------------- /src/bls/bls_worker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/bls/bls_worker.cpp -------------------------------------------------------------------------------- /src/bls/bls_worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/bls/bls_worker.h -------------------------------------------------------------------------------- /src/cachemap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/cachemap.h -------------------------------------------------------------------------------- /src/cachemultimap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/cachemultimap.h -------------------------------------------------------------------------------- /src/chain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/chain.cpp -------------------------------------------------------------------------------- /src/chain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/chain.h -------------------------------------------------------------------------------- /src/chainparams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/chainparams.cpp -------------------------------------------------------------------------------- /src/chainparams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/chainparams.h -------------------------------------------------------------------------------- /src/chainparamsbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/chainparamsbase.cpp -------------------------------------------------------------------------------- /src/chainparamsbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/chainparamsbase.h -------------------------------------------------------------------------------- /src/chainparamsseeds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/chainparamsseeds.h -------------------------------------------------------------------------------- /src/checkpoints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/checkpoints.cpp -------------------------------------------------------------------------------- /src/checkpoints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/checkpoints.h -------------------------------------------------------------------------------- /src/checkqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/checkqueue.h -------------------------------------------------------------------------------- /src/clientversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/clientversion.cpp -------------------------------------------------------------------------------- /src/clientversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/clientversion.h -------------------------------------------------------------------------------- /src/coins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/coins.cpp -------------------------------------------------------------------------------- /src/coins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/coins.h -------------------------------------------------------------------------------- /src/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/compat.h -------------------------------------------------------------------------------- /src/compat/byteswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/compat/byteswap.h -------------------------------------------------------------------------------- /src/compat/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/compat/endian.h -------------------------------------------------------------------------------- /src/compat/glibc_compat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/compat/glibc_compat.cpp -------------------------------------------------------------------------------- /src/compat/glibc_sanity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/compat/glibc_sanity.cpp -------------------------------------------------------------------------------- /src/compat/sanity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/compat/sanity.h -------------------------------------------------------------------------------- /src/compat/strnlen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/compat/strnlen.cpp -------------------------------------------------------------------------------- /src/compressor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/compressor.cpp -------------------------------------------------------------------------------- /src/compressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/compressor.h -------------------------------------------------------------------------------- /src/config/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/consensus/consensus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/consensus/consensus.cpp -------------------------------------------------------------------------------- /src/consensus/consensus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/consensus/consensus.h -------------------------------------------------------------------------------- /src/consensus/merkle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/consensus/merkle.cpp -------------------------------------------------------------------------------- /src/consensus/merkle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/consensus/merkle.h -------------------------------------------------------------------------------- /src/consensus/params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/consensus/params.h -------------------------------------------------------------------------------- /src/consensus/tx_verify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/consensus/tx_verify.cpp -------------------------------------------------------------------------------- /src/consensus/tx_verify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/consensus/tx_verify.h -------------------------------------------------------------------------------- /src/consensus/validation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/consensus/validation.h -------------------------------------------------------------------------------- /src/core_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/core_io.h -------------------------------------------------------------------------------- /src/core_memusage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/core_memusage.h -------------------------------------------------------------------------------- /src/core_read.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/core_read.cpp -------------------------------------------------------------------------------- /src/core_write.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/core_write.cpp -------------------------------------------------------------------------------- /src/crypto/aes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/aes.cpp -------------------------------------------------------------------------------- /src/crypto/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/aes.h -------------------------------------------------------------------------------- /src/crypto/aes_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/aes_helper.c -------------------------------------------------------------------------------- /src/crypto/blake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/blake.c -------------------------------------------------------------------------------- /src/crypto/bmw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/bmw.c -------------------------------------------------------------------------------- /src/crypto/chacha20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/chacha20.cpp -------------------------------------------------------------------------------- /src/crypto/chacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/chacha20.h -------------------------------------------------------------------------------- /src/crypto/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/common.h -------------------------------------------------------------------------------- /src/crypto/ctaes/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/ctaes/COPYING -------------------------------------------------------------------------------- /src/crypto/ctaes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/ctaes/README.md -------------------------------------------------------------------------------- /src/crypto/ctaes/bench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/ctaes/bench.c -------------------------------------------------------------------------------- /src/crypto/ctaes/ctaes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/ctaes/ctaes.c -------------------------------------------------------------------------------- /src/crypto/ctaes/ctaes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/ctaes/ctaes.h -------------------------------------------------------------------------------- /src/crypto/ctaes/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/ctaes/test.c -------------------------------------------------------------------------------- /src/crypto/cubehash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/cubehash.c -------------------------------------------------------------------------------- /src/crypto/echo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/echo.c -------------------------------------------------------------------------------- /src/crypto/groestl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/groestl.c -------------------------------------------------------------------------------- /src/crypto/hmac_sha256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/hmac_sha256.cpp -------------------------------------------------------------------------------- /src/crypto/hmac_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/hmac_sha256.h -------------------------------------------------------------------------------- /src/crypto/hmac_sha512.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/hmac_sha512.cpp -------------------------------------------------------------------------------- /src/crypto/hmac_sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/hmac_sha512.h -------------------------------------------------------------------------------- /src/crypto/jh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/jh.c -------------------------------------------------------------------------------- /src/crypto/keccak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/keccak.c -------------------------------------------------------------------------------- /src/crypto/luffa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/luffa.c -------------------------------------------------------------------------------- /src/crypto/md_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/md_helper.c -------------------------------------------------------------------------------- /src/crypto/poly1305.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/poly1305.cpp -------------------------------------------------------------------------------- /src/crypto/poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/poly1305.h -------------------------------------------------------------------------------- /src/crypto/ripemd160.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/ripemd160.cpp -------------------------------------------------------------------------------- /src/crypto/ripemd160.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/ripemd160.h -------------------------------------------------------------------------------- /src/crypto/sha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/sha1.cpp -------------------------------------------------------------------------------- /src/crypto/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/sha1.h -------------------------------------------------------------------------------- /src/crypto/sha2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/sha2.c -------------------------------------------------------------------------------- /src/crypto/sha256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/sha256.cpp -------------------------------------------------------------------------------- /src/crypto/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/sha256.h -------------------------------------------------------------------------------- /src/crypto/sha256_avx2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/sha256_avx2.cpp -------------------------------------------------------------------------------- /src/crypto/sha256_shani.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/sha256_shani.cpp -------------------------------------------------------------------------------- /src/crypto/sha256_sse4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/sha256_sse4.cpp -------------------------------------------------------------------------------- /src/crypto/sha256_sse41.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/sha256_sse41.cpp -------------------------------------------------------------------------------- /src/crypto/sha512.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/sha512.cpp -------------------------------------------------------------------------------- /src/crypto/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/sha512.h -------------------------------------------------------------------------------- /src/crypto/shavite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/shavite.c -------------------------------------------------------------------------------- /src/crypto/simd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/simd.c -------------------------------------------------------------------------------- /src/crypto/skein.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/skein.c -------------------------------------------------------------------------------- /src/crypto/sph_blake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/sph_blake.h -------------------------------------------------------------------------------- /src/crypto/sph_bmw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/sph_bmw.h -------------------------------------------------------------------------------- /src/crypto/sph_cubehash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/sph_cubehash.h -------------------------------------------------------------------------------- /src/crypto/sph_echo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/sph_echo.h -------------------------------------------------------------------------------- /src/crypto/sph_fugue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/sph_fugue.c -------------------------------------------------------------------------------- /src/crypto/sph_fugue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/sph_fugue.h -------------------------------------------------------------------------------- /src/crypto/sph_groestl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/sph_groestl.h -------------------------------------------------------------------------------- /src/crypto/sph_hamsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/sph_hamsi.c -------------------------------------------------------------------------------- /src/crypto/sph_hamsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/sph_hamsi.h -------------------------------------------------------------------------------- /src/crypto/sph_jh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/sph_jh.h -------------------------------------------------------------------------------- /src/crypto/sph_keccak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/sph_keccak.h -------------------------------------------------------------------------------- /src/crypto/sph_luffa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/sph_luffa.h -------------------------------------------------------------------------------- /src/crypto/sph_sha2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/sph_sha2.c -------------------------------------------------------------------------------- /src/crypto/sph_sha2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/sph_sha2.h -------------------------------------------------------------------------------- /src/crypto/sph_sha512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/sph_sha512.c -------------------------------------------------------------------------------- /src/crypto/sph_shabal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/sph_shabal.c -------------------------------------------------------------------------------- /src/crypto/sph_shabal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/sph_shabal.h -------------------------------------------------------------------------------- /src/crypto/sph_shavite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/sph_shavite.h -------------------------------------------------------------------------------- /src/crypto/sph_simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/sph_simd.h -------------------------------------------------------------------------------- /src/crypto/sph_skein.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/sph_skein.h -------------------------------------------------------------------------------- /src/crypto/sph_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/sph_types.h -------------------------------------------------------------------------------- /src/crypto/sph_whirlpool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/sph_whirlpool.c -------------------------------------------------------------------------------- /src/crypto/sph_whirlpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/sph_whirlpool.h -------------------------------------------------------------------------------- /src/crypto/whirlpool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/whirlpool.c -------------------------------------------------------------------------------- /src/crypto/whirlpoolx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/crypto/whirlpoolx.c -------------------------------------------------------------------------------- /src/cryptonote/aesb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/cryptonote/aesb.c -------------------------------------------------------------------------------- /src/cryptonote/c_blake256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/cryptonote/c_blake256.c -------------------------------------------------------------------------------- /src/cryptonote/c_blake256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/cryptonote/c_blake256.h -------------------------------------------------------------------------------- /src/cryptonote/c_groestl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/cryptonote/c_groestl.c -------------------------------------------------------------------------------- /src/cryptonote/c_groestl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/cryptonote/c_groestl.h -------------------------------------------------------------------------------- /src/cryptonote/c_jh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/cryptonote/c_jh.c -------------------------------------------------------------------------------- /src/cryptonote/c_jh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/cryptonote/c_jh.h -------------------------------------------------------------------------------- /src/cryptonote/c_keccak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/cryptonote/c_keccak.c -------------------------------------------------------------------------------- /src/cryptonote/c_keccak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/cryptonote/c_keccak.h -------------------------------------------------------------------------------- /src/cryptonote/c_skein.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/cryptonote/c_skein.c -------------------------------------------------------------------------------- /src/cryptonote/c_skein.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/cryptonote/c_skein.h -------------------------------------------------------------------------------- /src/cryptonote/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/cryptonote/crypto.h -------------------------------------------------------------------------------- /src/cryptonote/hash-ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/cryptonote/hash-ops.c -------------------------------------------------------------------------------- /src/cryptonote/hash-ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/cryptonote/hash-ops.h -------------------------------------------------------------------------------- /src/cryptonote/int-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/cryptonote/int-util.h -------------------------------------------------------------------------------- /src/cryptonote/oaes_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/cryptonote/oaes_config.h -------------------------------------------------------------------------------- /src/cryptonote/oaes_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/cryptonote/oaes_lib.c -------------------------------------------------------------------------------- /src/cryptonote/oaes_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/cryptonote/oaes_lib.h -------------------------------------------------------------------------------- /src/cryptonote/skein_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/cryptonote/skein_port.h -------------------------------------------------------------------------------- /src/cryptonote/slow-hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/cryptonote/slow-hash.c -------------------------------------------------------------------------------- /src/cryptonote/slow-hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/cryptonote/slow-hash.h -------------------------------------------------------------------------------- /src/cryptonote/warnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/cryptonote/warnings.h -------------------------------------------------------------------------------- /src/cryptonote/wild_keccak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/cryptonote/wild_keccak.h -------------------------------------------------------------------------------- /src/ctpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/ctpl.h -------------------------------------------------------------------------------- /src/cuckoocache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/cuckoocache.h -------------------------------------------------------------------------------- /src/cxxtimer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/cxxtimer.hpp -------------------------------------------------------------------------------- /src/dbwrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/dbwrapper.cpp -------------------------------------------------------------------------------- /src/dbwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/dbwrapper.h -------------------------------------------------------------------------------- /src/evo/cbtx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/evo/cbtx.cpp -------------------------------------------------------------------------------- /src/evo/cbtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/evo/cbtx.h -------------------------------------------------------------------------------- /src/evo/deterministicmns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/evo/deterministicmns.cpp -------------------------------------------------------------------------------- /src/evo/deterministicmns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/evo/deterministicmns.h -------------------------------------------------------------------------------- /src/evo/evodb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/evo/evodb.cpp -------------------------------------------------------------------------------- /src/evo/evodb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/evo/evodb.h -------------------------------------------------------------------------------- /src/evo/mnauth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/evo/mnauth.cpp -------------------------------------------------------------------------------- /src/evo/mnauth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/evo/mnauth.h -------------------------------------------------------------------------------- /src/evo/providertx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/evo/providertx.cpp -------------------------------------------------------------------------------- /src/evo/providertx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/evo/providertx.h -------------------------------------------------------------------------------- /src/evo/simplifiedmns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/evo/simplifiedmns.cpp -------------------------------------------------------------------------------- /src/evo/simplifiedmns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/evo/simplifiedmns.h -------------------------------------------------------------------------------- /src/evo/specialtx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/evo/specialtx.cpp -------------------------------------------------------------------------------- /src/evo/specialtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/evo/specialtx.h -------------------------------------------------------------------------------- /src/flat-database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/flat-database.h -------------------------------------------------------------------------------- /src/founder_payment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/founder_payment.cpp -------------------------------------------------------------------------------- /src/founder_payment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/founder_payment.h -------------------------------------------------------------------------------- /src/fs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/fs.cpp -------------------------------------------------------------------------------- /src/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/fs.h -------------------------------------------------------------------------------- /src/governance/governance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/governance/governance.h -------------------------------------------------------------------------------- /src/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/hash.cpp -------------------------------------------------------------------------------- /src/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/hash.h -------------------------------------------------------------------------------- /src/hash_selection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/hash_selection.cpp -------------------------------------------------------------------------------- /src/hash_selection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/hash_selection.h -------------------------------------------------------------------------------- /src/hdchain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/hdchain.cpp -------------------------------------------------------------------------------- /src/hdchain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/hdchain.h -------------------------------------------------------------------------------- /src/httprpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/httprpc.cpp -------------------------------------------------------------------------------- /src/httprpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/httprpc.h -------------------------------------------------------------------------------- /src/httpserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/httpserver.cpp -------------------------------------------------------------------------------- /src/httpserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/httpserver.h -------------------------------------------------------------------------------- /src/immer/algorithm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/immer/algorithm.hpp -------------------------------------------------------------------------------- /src/immer/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/immer/array.hpp -------------------------------------------------------------------------------- /src/immer/atom.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/immer/atom.hpp -------------------------------------------------------------------------------- /src/immer/box.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/immer/box.hpp -------------------------------------------------------------------------------- /src/immer/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/immer/config.hpp -------------------------------------------------------------------------------- /src/immer/detail/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/immer/detail/util.hpp -------------------------------------------------------------------------------- /src/immer/flex_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/immer/flex_vector.hpp -------------------------------------------------------------------------------- /src/immer/heap/cpp_heap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/immer/heap/cpp_heap.hpp -------------------------------------------------------------------------------- /src/immer/heap/gc_heap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/immer/heap/gc_heap.hpp -------------------------------------------------------------------------------- /src/immer/heap/tags.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/immer/heap/tags.hpp -------------------------------------------------------------------------------- /src/immer/heap/with_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/immer/heap/with_data.hpp -------------------------------------------------------------------------------- /src/immer/map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/immer/map.hpp -------------------------------------------------------------------------------- /src/immer/map_transient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/immer/map_transient.hpp -------------------------------------------------------------------------------- /src/immer/memory_policy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/immer/memory_policy.hpp -------------------------------------------------------------------------------- /src/immer/set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/immer/set.hpp -------------------------------------------------------------------------------- /src/immer/set_transient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/immer/set_transient.hpp -------------------------------------------------------------------------------- /src/immer/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/immer/vector.hpp -------------------------------------------------------------------------------- /src/indirectmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/indirectmap.h -------------------------------------------------------------------------------- /src/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/init.cpp -------------------------------------------------------------------------------- /src/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/init.h -------------------------------------------------------------------------------- /src/keepass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/keepass.cpp -------------------------------------------------------------------------------- /src/keepass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/keepass.h -------------------------------------------------------------------------------- /src/key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/key.cpp -------------------------------------------------------------------------------- /src/key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/key.h -------------------------------------------------------------------------------- /src/keystore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/keystore.cpp -------------------------------------------------------------------------------- /src/keystore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/keystore.h -------------------------------------------------------------------------------- /src/leveldb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/.gitignore -------------------------------------------------------------------------------- /src/leveldb/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/.travis.yml -------------------------------------------------------------------------------- /src/leveldb/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/AUTHORS -------------------------------------------------------------------------------- /src/leveldb/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/leveldb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/LICENSE -------------------------------------------------------------------------------- /src/leveldb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/Makefile -------------------------------------------------------------------------------- /src/leveldb/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/NEWS -------------------------------------------------------------------------------- /src/leveldb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/README.md -------------------------------------------------------------------------------- /src/leveldb/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/TODO -------------------------------------------------------------------------------- /src/leveldb/WINDOWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/WINDOWS.md -------------------------------------------------------------------------------- /src/leveldb/db/builder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/db/builder.cc -------------------------------------------------------------------------------- /src/leveldb/db/builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/db/builder.h -------------------------------------------------------------------------------- /src/leveldb/db/c.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/db/c.cc -------------------------------------------------------------------------------- /src/leveldb/db/c_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/db/c_test.c -------------------------------------------------------------------------------- /src/leveldb/db/db_bench.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/db/db_bench.cc -------------------------------------------------------------------------------- /src/leveldb/db/db_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/db/db_impl.cc -------------------------------------------------------------------------------- /src/leveldb/db/db_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/db/db_impl.h -------------------------------------------------------------------------------- /src/leveldb/db/db_iter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/db/db_iter.cc -------------------------------------------------------------------------------- /src/leveldb/db/db_iter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/db/db_iter.h -------------------------------------------------------------------------------- /src/leveldb/db/db_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/db/db_test.cc -------------------------------------------------------------------------------- /src/leveldb/db/dbformat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/db/dbformat.cc -------------------------------------------------------------------------------- /src/leveldb/db/dbformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/db/dbformat.h -------------------------------------------------------------------------------- /src/leveldb/db/dumpfile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/db/dumpfile.cc -------------------------------------------------------------------------------- /src/leveldb/db/filename.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/db/filename.cc -------------------------------------------------------------------------------- /src/leveldb/db/filename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/db/filename.h -------------------------------------------------------------------------------- /src/leveldb/db/log_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/db/log_format.h -------------------------------------------------------------------------------- /src/leveldb/db/log_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/db/log_reader.cc -------------------------------------------------------------------------------- /src/leveldb/db/log_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/db/log_reader.h -------------------------------------------------------------------------------- /src/leveldb/db/log_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/db/log_test.cc -------------------------------------------------------------------------------- /src/leveldb/db/log_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/db/log_writer.cc -------------------------------------------------------------------------------- /src/leveldb/db/log_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/db/log_writer.h -------------------------------------------------------------------------------- /src/leveldb/db/memtable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/db/memtable.cc -------------------------------------------------------------------------------- /src/leveldb/db/memtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/db/memtable.h -------------------------------------------------------------------------------- /src/leveldb/db/repair.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/db/repair.cc -------------------------------------------------------------------------------- /src/leveldb/db/skiplist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/db/skiplist.h -------------------------------------------------------------------------------- /src/leveldb/db/snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/db/snapshot.h -------------------------------------------------------------------------------- /src/leveldb/db/table_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/db/table_cache.h -------------------------------------------------------------------------------- /src/leveldb/db/version_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/db/version_set.h -------------------------------------------------------------------------------- /src/leveldb/doc/impl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/doc/impl.md -------------------------------------------------------------------------------- /src/leveldb/doc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/doc/index.md -------------------------------------------------------------------------------- /src/leveldb/port/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/port/README -------------------------------------------------------------------------------- /src/leveldb/port/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/port/port.h -------------------------------------------------------------------------------- /src/leveldb/port/port_win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/port/port_win.cc -------------------------------------------------------------------------------- /src/leveldb/port/port_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/port/port_win.h -------------------------------------------------------------------------------- /src/leveldb/table/block.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/table/block.cc -------------------------------------------------------------------------------- /src/leveldb/table/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/table/block.h -------------------------------------------------------------------------------- /src/leveldb/table/format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/table/format.cc -------------------------------------------------------------------------------- /src/leveldb/table/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/table/format.h -------------------------------------------------------------------------------- /src/leveldb/table/merger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/table/merger.cc -------------------------------------------------------------------------------- /src/leveldb/table/merger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/table/merger.h -------------------------------------------------------------------------------- /src/leveldb/table/table.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/table/table.cc -------------------------------------------------------------------------------- /src/leveldb/util/arena.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/util/arena.cc -------------------------------------------------------------------------------- /src/leveldb/util/arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/util/arena.h -------------------------------------------------------------------------------- /src/leveldb/util/bloom.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/util/bloom.cc -------------------------------------------------------------------------------- /src/leveldb/util/cache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/util/cache.cc -------------------------------------------------------------------------------- /src/leveldb/util/coding.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/util/coding.cc -------------------------------------------------------------------------------- /src/leveldb/util/coding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/util/coding.h -------------------------------------------------------------------------------- /src/leveldb/util/crc32c.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/util/crc32c.cc -------------------------------------------------------------------------------- /src/leveldb/util/crc32c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/util/crc32c.h -------------------------------------------------------------------------------- /src/leveldb/util/env.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/util/env.cc -------------------------------------------------------------------------------- /src/leveldb/util/env_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/util/env_test.cc -------------------------------------------------------------------------------- /src/leveldb/util/env_win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/util/env_win.cc -------------------------------------------------------------------------------- /src/leveldb/util/hash.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/util/hash.cc -------------------------------------------------------------------------------- /src/leveldb/util/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/util/hash.h -------------------------------------------------------------------------------- /src/leveldb/util/histogram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/util/histogram.h -------------------------------------------------------------------------------- /src/leveldb/util/logging.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/util/logging.cc -------------------------------------------------------------------------------- /src/leveldb/util/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/util/logging.h -------------------------------------------------------------------------------- /src/leveldb/util/mutexlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/util/mutexlock.h -------------------------------------------------------------------------------- /src/leveldb/util/options.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/util/options.cc -------------------------------------------------------------------------------- /src/leveldb/util/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/util/random.h -------------------------------------------------------------------------------- /src/leveldb/util/status.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/util/status.cc -------------------------------------------------------------------------------- /src/leveldb/util/testutil.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/util/testutil.cc -------------------------------------------------------------------------------- /src/leveldb/util/testutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/leveldb/util/testutil.h -------------------------------------------------------------------------------- /src/limitedmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/limitedmap.h -------------------------------------------------------------------------------- /src/llmq/quorums.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/llmq/quorums.cpp -------------------------------------------------------------------------------- /src/llmq/quorums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/llmq/quorums.h -------------------------------------------------------------------------------- /src/llmq/quorums_debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/llmq/quorums_debug.cpp -------------------------------------------------------------------------------- /src/llmq/quorums_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/llmq/quorums_debug.h -------------------------------------------------------------------------------- /src/llmq/quorums_init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/llmq/quorums_init.cpp -------------------------------------------------------------------------------- /src/llmq/quorums_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/llmq/quorums_init.h -------------------------------------------------------------------------------- /src/llmq/quorums_signing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/llmq/quorums_signing.cpp -------------------------------------------------------------------------------- /src/llmq/quorums_signing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/llmq/quorums_signing.h -------------------------------------------------------------------------------- /src/llmq/quorums_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/llmq/quorums_utils.cpp -------------------------------------------------------------------------------- /src/llmq/quorums_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/llmq/quorums_utils.h -------------------------------------------------------------------------------- /src/memusage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/memusage.h -------------------------------------------------------------------------------- /src/merkleblock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/merkleblock.cpp -------------------------------------------------------------------------------- /src/merkleblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/merkleblock.h -------------------------------------------------------------------------------- /src/messagesigner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/messagesigner.cpp -------------------------------------------------------------------------------- /src/messagesigner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/messagesigner.h -------------------------------------------------------------------------------- /src/miner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/miner.cpp -------------------------------------------------------------------------------- /src/miner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/miner.h -------------------------------------------------------------------------------- /src/neoxa-cli-res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/neoxa-cli-res.rc -------------------------------------------------------------------------------- /src/neoxa-cli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/neoxa-cli.cpp -------------------------------------------------------------------------------- /src/neoxa-tx-res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/neoxa-tx-res.rc -------------------------------------------------------------------------------- /src/neoxa-tx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/neoxa-tx.cpp -------------------------------------------------------------------------------- /src/neoxad-res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/neoxad-res.rc -------------------------------------------------------------------------------- /src/neoxad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/neoxad.cpp -------------------------------------------------------------------------------- /src/net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/net.cpp -------------------------------------------------------------------------------- /src/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/net.h -------------------------------------------------------------------------------- /src/net_processing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/net_processing.cpp -------------------------------------------------------------------------------- /src/net_processing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/net_processing.h -------------------------------------------------------------------------------- /src/netaddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/netaddress.cpp -------------------------------------------------------------------------------- /src/netaddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/netaddress.h -------------------------------------------------------------------------------- /src/netbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/netbase.cpp -------------------------------------------------------------------------------- /src/netbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/netbase.h -------------------------------------------------------------------------------- /src/netfulfilledman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/netfulfilledman.cpp -------------------------------------------------------------------------------- /src/netfulfilledman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/netfulfilledman.h -------------------------------------------------------------------------------- /src/netmessagemaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/netmessagemaker.h -------------------------------------------------------------------------------- /src/noui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/noui.cpp -------------------------------------------------------------------------------- /src/noui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/noui.h -------------------------------------------------------------------------------- /src/obj-test/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /src/obj/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /src/policy/feerate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/policy/feerate.cpp -------------------------------------------------------------------------------- /src/policy/feerate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/policy/feerate.h -------------------------------------------------------------------------------- /src/policy/fees.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/policy/fees.cpp -------------------------------------------------------------------------------- /src/policy/fees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/policy/fees.h -------------------------------------------------------------------------------- /src/policy/policy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/policy/policy.cpp -------------------------------------------------------------------------------- /src/policy/policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/policy/policy.h -------------------------------------------------------------------------------- /src/pow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/pow.cpp -------------------------------------------------------------------------------- /src/pow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/pow.h -------------------------------------------------------------------------------- /src/prevector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/prevector.h -------------------------------------------------------------------------------- /src/primitives/block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/primitives/block.cpp -------------------------------------------------------------------------------- /src/primitives/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/primitives/block.h -------------------------------------------------------------------------------- /src/primitives/transaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/primitives/transaction.h -------------------------------------------------------------------------------- /src/protocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/protocol.cpp -------------------------------------------------------------------------------- /src/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/protocol.h -------------------------------------------------------------------------------- /src/pubkey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/pubkey.cpp -------------------------------------------------------------------------------- /src/pubkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/pubkey.h -------------------------------------------------------------------------------- /src/qt/addressbookpage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/addressbookpage.cpp -------------------------------------------------------------------------------- /src/qt/addressbookpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/addressbookpage.h -------------------------------------------------------------------------------- /src/qt/addresstablemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/addresstablemodel.cpp -------------------------------------------------------------------------------- /src/qt/addresstablemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/addresstablemodel.h -------------------------------------------------------------------------------- /src/qt/askpassphrasedialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/askpassphrasedialog.h -------------------------------------------------------------------------------- /src/qt/assetcontroldialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/assetcontroldialog.h -------------------------------------------------------------------------------- /src/qt/assetfilterproxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/assetfilterproxy.cpp -------------------------------------------------------------------------------- /src/qt/assetfilterproxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/assetfilterproxy.h -------------------------------------------------------------------------------- /src/qt/assetrecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/assetrecord.h -------------------------------------------------------------------------------- /src/qt/assetsdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/assetsdialog.cpp -------------------------------------------------------------------------------- /src/qt/assetsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/assetsdialog.h -------------------------------------------------------------------------------- /src/qt/assettablemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/assettablemodel.cpp -------------------------------------------------------------------------------- /src/qt/assettablemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/assettablemodel.h -------------------------------------------------------------------------------- /src/qt/bantablemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/bantablemodel.cpp -------------------------------------------------------------------------------- /src/qt/bantablemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/bantablemodel.h -------------------------------------------------------------------------------- /src/qt/bitcoinamountfield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/bitcoinamountfield.h -------------------------------------------------------------------------------- /src/qt/bitcoingui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/bitcoingui.cpp -------------------------------------------------------------------------------- /src/qt/bitcoingui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/bitcoingui.h -------------------------------------------------------------------------------- /src/qt/bitcoinunits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/bitcoinunits.cpp -------------------------------------------------------------------------------- /src/qt/bitcoinunits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/bitcoinunits.h -------------------------------------------------------------------------------- /src/qt/callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/callback.h -------------------------------------------------------------------------------- /src/qt/clientmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/clientmodel.cpp -------------------------------------------------------------------------------- /src/qt/clientmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/clientmodel.h -------------------------------------------------------------------------------- /src/qt/coincontroldialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/coincontroldialog.cpp -------------------------------------------------------------------------------- /src/qt/coincontroldialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/coincontroldialog.h -------------------------------------------------------------------------------- /src/qt/createassetdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/createassetdialog.cpp -------------------------------------------------------------------------------- /src/qt/createassetdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/createassetdialog.h -------------------------------------------------------------------------------- /src/qt/csvmodelwriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/csvmodelwriter.cpp -------------------------------------------------------------------------------- /src/qt/csvmodelwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/csvmodelwriter.h -------------------------------------------------------------------------------- /src/qt/editaddressdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/editaddressdialog.cpp -------------------------------------------------------------------------------- /src/qt/editaddressdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/editaddressdialog.h -------------------------------------------------------------------------------- /src/qt/forms/assetsdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/forms/assetsdialog.ui -------------------------------------------------------------------------------- /src/qt/forms/debugwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/forms/debugwindow.ui -------------------------------------------------------------------------------- /src/qt/forms/intro.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/forms/intro.ui -------------------------------------------------------------------------------- /src/qt/forms/modaloverlay.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/forms/modaloverlay.ui -------------------------------------------------------------------------------- /src/qt/forms/overviewpage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/forms/overviewpage.ui -------------------------------------------------------------------------------- /src/qt/forms/qrdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/forms/qrdialog.ui -------------------------------------------------------------------------------- /src/qt/guiconstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/guiconstants.h -------------------------------------------------------------------------------- /src/qt/guiutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/guiutil.cpp -------------------------------------------------------------------------------- /src/qt/guiutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/guiutil.h -------------------------------------------------------------------------------- /src/qt/intro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/intro.cpp -------------------------------------------------------------------------------- /src/qt/intro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/intro.h -------------------------------------------------------------------------------- /src/qt/locale/neoxa_ar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/locale/neoxa_ar.ts -------------------------------------------------------------------------------- /src/qt/locale/neoxa_bg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/locale/neoxa_bg.ts -------------------------------------------------------------------------------- /src/qt/locale/neoxa_de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/locale/neoxa_de.ts -------------------------------------------------------------------------------- /src/qt/locale/neoxa_en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/locale/neoxa_en.ts -------------------------------------------------------------------------------- /src/qt/locale/neoxa_es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/locale/neoxa_es.ts -------------------------------------------------------------------------------- /src/qt/locale/neoxa_fi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/locale/neoxa_fi.ts -------------------------------------------------------------------------------- /src/qt/locale/neoxa_fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/locale/neoxa_fr.ts -------------------------------------------------------------------------------- /src/qt/locale/neoxa_it.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/locale/neoxa_it.ts -------------------------------------------------------------------------------- /src/qt/locale/neoxa_ja.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/locale/neoxa_ja.ts -------------------------------------------------------------------------------- /src/qt/locale/neoxa_ko.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/locale/neoxa_ko.ts -------------------------------------------------------------------------------- /src/qt/locale/neoxa_nl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/locale/neoxa_nl.ts -------------------------------------------------------------------------------- /src/qt/locale/neoxa_pl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/locale/neoxa_pl.ts -------------------------------------------------------------------------------- /src/qt/locale/neoxa_pt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/locale/neoxa_pt.ts -------------------------------------------------------------------------------- /src/qt/locale/neoxa_ro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/locale/neoxa_ro.ts -------------------------------------------------------------------------------- /src/qt/locale/neoxa_ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/locale/neoxa_ru.ts -------------------------------------------------------------------------------- /src/qt/locale/neoxa_sk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/locale/neoxa_sk.ts -------------------------------------------------------------------------------- /src/qt/locale/neoxa_th.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/locale/neoxa_th.ts -------------------------------------------------------------------------------- /src/qt/locale/neoxa_tr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/locale/neoxa_tr.ts -------------------------------------------------------------------------------- /src/qt/locale/neoxa_vi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/locale/neoxa_vi.ts -------------------------------------------------------------------------------- /src/qt/locale/neoxa_zh_CN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/locale/neoxa_zh_CN.ts -------------------------------------------------------------------------------- /src/qt/locale/neoxa_zh_TW.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/locale/neoxa_zh_TW.ts -------------------------------------------------------------------------------- /src/qt/macdockiconhandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/macdockiconhandler.h -------------------------------------------------------------------------------- /src/qt/macdockiconhandler.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/macdockiconhandler.mm -------------------------------------------------------------------------------- /src/qt/macos_appnap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/macos_appnap.h -------------------------------------------------------------------------------- /src/qt/macos_appnap.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/macos_appnap.mm -------------------------------------------------------------------------------- /src/qt/mnemonicdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/mnemonicdialog.cpp -------------------------------------------------------------------------------- /src/qt/mnemonicdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/mnemonicdialog.h -------------------------------------------------------------------------------- /src/qt/modaloverlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/modaloverlay.cpp -------------------------------------------------------------------------------- /src/qt/modaloverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/modaloverlay.h -------------------------------------------------------------------------------- /src/qt/neoxa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/neoxa.cpp -------------------------------------------------------------------------------- /src/qt/neoxa.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/neoxa.qrc -------------------------------------------------------------------------------- /src/qt/neoxa_locale.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/neoxa_locale.qrc -------------------------------------------------------------------------------- /src/qt/neoxastrings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/neoxastrings.cpp -------------------------------------------------------------------------------- /src/qt/networkstyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/networkstyle.cpp -------------------------------------------------------------------------------- /src/qt/networkstyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/networkstyle.h -------------------------------------------------------------------------------- /src/qt/notificator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/notificator.cpp -------------------------------------------------------------------------------- /src/qt/notificator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/notificator.h -------------------------------------------------------------------------------- /src/qt/openuridialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/openuridialog.cpp -------------------------------------------------------------------------------- /src/qt/openuridialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/openuridialog.h -------------------------------------------------------------------------------- /src/qt/optionsdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/optionsdialog.cpp -------------------------------------------------------------------------------- /src/qt/optionsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/optionsdialog.h -------------------------------------------------------------------------------- /src/qt/optionsmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/optionsmodel.cpp -------------------------------------------------------------------------------- /src/qt/optionsmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/optionsmodel.h -------------------------------------------------------------------------------- /src/qt/overviewpage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/overviewpage.cpp -------------------------------------------------------------------------------- /src/qt/overviewpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/overviewpage.h -------------------------------------------------------------------------------- /src/qt/paymentrequest.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/paymentrequest.proto -------------------------------------------------------------------------------- /src/qt/paymentrequestplus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/paymentrequestplus.h -------------------------------------------------------------------------------- /src/qt/paymentserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/paymentserver.cpp -------------------------------------------------------------------------------- /src/qt/paymentserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/paymentserver.h -------------------------------------------------------------------------------- /src/qt/peertablemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/peertablemodel.cpp -------------------------------------------------------------------------------- /src/qt/peertablemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/peertablemodel.h -------------------------------------------------------------------------------- /src/qt/platformstyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/platformstyle.cpp -------------------------------------------------------------------------------- /src/qt/platformstyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/platformstyle.h -------------------------------------------------------------------------------- /src/qt/qrdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/qrdialog.cpp -------------------------------------------------------------------------------- /src/qt/qrdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/qrdialog.h -------------------------------------------------------------------------------- /src/qt/qvalidatedlineedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/qvalidatedlineedit.h -------------------------------------------------------------------------------- /src/qt/qvaluecombobox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/qvaluecombobox.cpp -------------------------------------------------------------------------------- /src/qt/qvaluecombobox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/qvaluecombobox.h -------------------------------------------------------------------------------- /src/qt/receivecoinsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/receivecoinsdialog.h -------------------------------------------------------------------------------- /src/qt/reissueassetdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/reissueassetdialog.h -------------------------------------------------------------------------------- /src/qt/res/css/dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/res/css/dark.css -------------------------------------------------------------------------------- /src/qt/res/css/general.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/res/css/general.css -------------------------------------------------------------------------------- /src/qt/res/css/light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/res/css/light.css -------------------------------------------------------------------------------- /src/qt/res/css/trad.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/res/css/trad.css -------------------------------------------------------------------------------- /src/qt/res/icons/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/res/icons/about.png -------------------------------------------------------------------------------- /src/qt/res/icons/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/res/icons/add.png -------------------------------------------------------------------------------- /src/qt/res/icons/bitcoin.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/res/icons/bitcoin.ico -------------------------------------------------------------------------------- /src/qt/res/icons/bitcoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/res/icons/bitcoin.png -------------------------------------------------------------------------------- /src/qt/res/icons/browse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/res/icons/browse.png -------------------------------------------------------------------------------- /src/qt/res/icons/chevron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/res/icons/chevron.png -------------------------------------------------------------------------------- /src/qt/res/icons/clock1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/res/icons/clock1.png -------------------------------------------------------------------------------- /src/qt/res/icons/clock2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/res/icons/clock2.png -------------------------------------------------------------------------------- /src/qt/res/icons/clock3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/res/icons/clock3.png -------------------------------------------------------------------------------- /src/qt/res/icons/clock4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/res/icons/clock4.png -------------------------------------------------------------------------------- /src/qt/res/icons/clock5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/res/icons/clock5.png -------------------------------------------------------------------------------- /src/qt/res/icons/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/res/icons/edit.png -------------------------------------------------------------------------------- /src/qt/res/icons/export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/res/icons/export.png -------------------------------------------------------------------------------- /src/qt/res/icons/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/res/icons/eye.png -------------------------------------------------------------------------------- /src/qt/res/icons/history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/res/icons/history.png -------------------------------------------------------------------------------- /src/qt/res/icons/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/res/icons/info.png -------------------------------------------------------------------------------- /src/qt/res/icons/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/res/icons/key.png -------------------------------------------------------------------------------- /src/qt/res/icons/neoxa.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/res/icons/neoxa.icns -------------------------------------------------------------------------------- /src/qt/res/icons/neoxa.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/res/icons/neoxa.ico -------------------------------------------------------------------------------- /src/qt/res/icons/neoxa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/res/icons/neoxa.png -------------------------------------------------------------------------------- /src/qt/res/icons/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/res/icons/open.png -------------------------------------------------------------------------------- /src/qt/res/icons/quit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/res/icons/quit.png -------------------------------------------------------------------------------- /src/qt/res/icons/receive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/res/icons/receive.png -------------------------------------------------------------------------------- /src/qt/res/icons/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/res/icons/refresh.png -------------------------------------------------------------------------------- /src/qt/res/icons/remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/res/icons/remove.png -------------------------------------------------------------------------------- /src/qt/res/icons/send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/res/icons/send.png -------------------------------------------------------------------------------- /src/qt/res/icons/synced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/res/icons/synced.png -------------------------------------------------------------------------------- /src/qt/res/icons/synced2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/res/icons/synced2.png -------------------------------------------------------------------------------- /src/qt/res/icons/verify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/res/icons/verify.png -------------------------------------------------------------------------------- /src/qt/res/icons/voting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/res/icons/voting.png -------------------------------------------------------------------------------- /src/qt/res/icons/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/res/icons/warning.png -------------------------------------------------------------------------------- /src/qt/res/neoxa-qt-res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/res/neoxa-qt-res.rc -------------------------------------------------------------------------------- /src/qt/res/src/bitcoin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/res/src/bitcoin.svg -------------------------------------------------------------------------------- /src/qt/res/src/mine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/res/src/mine.svg -------------------------------------------------------------------------------- /src/qt/res/src/qt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/res/src/qt.svg -------------------------------------------------------------------------------- /src/qt/res/src/tx_in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/res/src/tx_in.svg -------------------------------------------------------------------------------- /src/qt/res/src/verify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/res/src/verify.svg -------------------------------------------------------------------------------- /src/qt/rpcconsole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/rpcconsole.cpp -------------------------------------------------------------------------------- /src/qt/rpcconsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/rpcconsole.h -------------------------------------------------------------------------------- /src/qt/sendassetsentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/sendassetsentry.h -------------------------------------------------------------------------------- /src/qt/sendcoinsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/sendcoinsdialog.h -------------------------------------------------------------------------------- /src/qt/sendcoinsentry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/sendcoinsentry.cpp -------------------------------------------------------------------------------- /src/qt/sendcoinsentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/sendcoinsentry.h -------------------------------------------------------------------------------- /src/qt/smartnodelist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/smartnodelist.cpp -------------------------------------------------------------------------------- /src/qt/smartnodelist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/smartnodelist.h -------------------------------------------------------------------------------- /src/qt/splashscreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/splashscreen.cpp -------------------------------------------------------------------------------- /src/qt/splashscreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/splashscreen.h -------------------------------------------------------------------------------- /src/qt/test/compattests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/test/compattests.h -------------------------------------------------------------------------------- /src/qt/test/test_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/test/test_main.cpp -------------------------------------------------------------------------------- /src/qt/test/uritests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/test/uritests.cpp -------------------------------------------------------------------------------- /src/qt/test/uritests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/test/uritests.h -------------------------------------------------------------------------------- /src/qt/test/wallettests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/test/wallettests.h -------------------------------------------------------------------------------- /src/qt/trafficgraphdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/trafficgraphdata.h -------------------------------------------------------------------------------- /src/qt/transactiondesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/transactiondesc.h -------------------------------------------------------------------------------- /src/qt/transactionview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/transactionview.h -------------------------------------------------------------------------------- /src/qt/utilitydialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/utilitydialog.cpp -------------------------------------------------------------------------------- /src/qt/utilitydialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/utilitydialog.h -------------------------------------------------------------------------------- /src/qt/walletframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/walletframe.cpp -------------------------------------------------------------------------------- /src/qt/walletframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/walletframe.h -------------------------------------------------------------------------------- /src/qt/walletmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/walletmodel.cpp -------------------------------------------------------------------------------- /src/qt/walletmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/walletmodel.h -------------------------------------------------------------------------------- /src/qt/walletview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/walletview.cpp -------------------------------------------------------------------------------- /src/qt/walletview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/qt/walletview.h -------------------------------------------------------------------------------- /src/random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/random.cpp -------------------------------------------------------------------------------- /src/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/random.h -------------------------------------------------------------------------------- /src/rest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/rest.cpp -------------------------------------------------------------------------------- /src/reverse_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/reverse_iterator.h -------------------------------------------------------------------------------- /src/reverselock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/reverselock.h -------------------------------------------------------------------------------- /src/rpc/assets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/rpc/assets.cpp -------------------------------------------------------------------------------- /src/rpc/blockchain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/rpc/blockchain.cpp -------------------------------------------------------------------------------- /src/rpc/blockchain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/rpc/blockchain.h -------------------------------------------------------------------------------- /src/rpc/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/rpc/client.cpp -------------------------------------------------------------------------------- /src/rpc/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/rpc/client.h -------------------------------------------------------------------------------- /src/rpc/governance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/rpc/governance.cpp -------------------------------------------------------------------------------- /src/rpc/messages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/rpc/messages.cpp -------------------------------------------------------------------------------- /src/rpc/mining.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/rpc/mining.cpp -------------------------------------------------------------------------------- /src/rpc/mining.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/rpc/mining.h -------------------------------------------------------------------------------- /src/rpc/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/rpc/misc.cpp -------------------------------------------------------------------------------- /src/rpc/net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/rpc/net.cpp -------------------------------------------------------------------------------- /src/rpc/privatesend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/rpc/privatesend.cpp -------------------------------------------------------------------------------- /src/rpc/protocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/rpc/protocol.cpp -------------------------------------------------------------------------------- /src/rpc/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/rpc/protocol.h -------------------------------------------------------------------------------- /src/rpc/register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/rpc/register.h -------------------------------------------------------------------------------- /src/rpc/rewards.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/rpc/rewards.cpp -------------------------------------------------------------------------------- /src/rpc/rpcevo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/rpc/rpcevo.cpp -------------------------------------------------------------------------------- /src/rpc/rpcquorums.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/rpc/rpcquorums.cpp -------------------------------------------------------------------------------- /src/rpc/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/rpc/server.cpp -------------------------------------------------------------------------------- /src/rpc/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/rpc/server.h -------------------------------------------------------------------------------- /src/rpc/smartnode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/rpc/smartnode.cpp -------------------------------------------------------------------------------- /src/saltedhasher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/saltedhasher.cpp -------------------------------------------------------------------------------- /src/saltedhasher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/saltedhasher.h -------------------------------------------------------------------------------- /src/scheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/scheduler.cpp -------------------------------------------------------------------------------- /src/scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/scheduler.h -------------------------------------------------------------------------------- /src/script/interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/script/interpreter.h -------------------------------------------------------------------------------- /src/script/ismine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/script/ismine.cpp -------------------------------------------------------------------------------- /src/script/ismine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/script/ismine.h -------------------------------------------------------------------------------- /src/script/script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/script/script.cpp -------------------------------------------------------------------------------- /src/script/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/script/script.h -------------------------------------------------------------------------------- /src/script/script_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/script/script_error.h -------------------------------------------------------------------------------- /src/script/sigcache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/script/sigcache.cpp -------------------------------------------------------------------------------- /src/script/sigcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/script/sigcache.h -------------------------------------------------------------------------------- /src/script/sign.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/script/sign.cpp -------------------------------------------------------------------------------- /src/script/sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/script/sign.h -------------------------------------------------------------------------------- /src/script/standard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/script/standard.cpp -------------------------------------------------------------------------------- /src/script/standard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/script/standard.h -------------------------------------------------------------------------------- /src/secp256k1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/secp256k1/.gitignore -------------------------------------------------------------------------------- /src/secp256k1/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/secp256k1/.travis.yml -------------------------------------------------------------------------------- /src/secp256k1/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/secp256k1/COPYING -------------------------------------------------------------------------------- /src/secp256k1/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/secp256k1/Makefile.am -------------------------------------------------------------------------------- /src/secp256k1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/secp256k1/README.md -------------------------------------------------------------------------------- /src/secp256k1/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/secp256k1/TODO -------------------------------------------------------------------------------- /src/secp256k1/autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | autoreconf -if --warnings=all 4 | -------------------------------------------------------------------------------- /src/secp256k1/obj/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/secp256k1/src/bench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/secp256k1/src/bench.h -------------------------------------------------------------------------------- /src/secp256k1/src/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/secp256k1/src/ecdsa.h -------------------------------------------------------------------------------- /src/secp256k1/src/eckey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/secp256k1/src/eckey.h -------------------------------------------------------------------------------- /src/secp256k1/src/field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/secp256k1/src/field.h -------------------------------------------------------------------------------- /src/secp256k1/src/group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/secp256k1/src/group.h -------------------------------------------------------------------------------- /src/secp256k1/src/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/secp256k1/src/hash.h -------------------------------------------------------------------------------- /src/secp256k1/src/num.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/secp256k1/src/num.h -------------------------------------------------------------------------------- /src/secp256k1/src/tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/secp256k1/src/tests.c -------------------------------------------------------------------------------- /src/secp256k1/src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/secp256k1/src/util.h -------------------------------------------------------------------------------- /src/serialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/serialize.h -------------------------------------------------------------------------------- /src/spentindex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/spentindex.h -------------------------------------------------------------------------------- /src/spork.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/spork.cpp -------------------------------------------------------------------------------- /src/spork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/spork.h -------------------------------------------------------------------------------- /src/stacktraces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/stacktraces.cpp -------------------------------------------------------------------------------- /src/stacktraces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/stacktraces.h -------------------------------------------------------------------------------- /src/streams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/streams.h -------------------------------------------------------------------------------- /src/support/cleanse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/support/cleanse.cpp -------------------------------------------------------------------------------- /src/support/cleanse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/support/cleanse.h -------------------------------------------------------------------------------- /src/support/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/support/events.h -------------------------------------------------------------------------------- /src/support/lockedpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/support/lockedpool.h -------------------------------------------------------------------------------- /src/sync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/sync.cpp -------------------------------------------------------------------------------- /src/sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/sync.h -------------------------------------------------------------------------------- /src/test/DoS_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/test/DoS_tests.cpp -------------------------------------------------------------------------------- /src/test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/test/README.md -------------------------------------------------------------------------------- /src/test/amount_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/test/amount_tests.cpp -------------------------------------------------------------------------------- /src/test/base32_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/test/base32_tests.cpp -------------------------------------------------------------------------------- /src/test/base58_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/test/base58_tests.cpp -------------------------------------------------------------------------------- /src/test/base64_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/test/base64_tests.cpp -------------------------------------------------------------------------------- /src/test/bip32_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/test/bip32_tests.cpp -------------------------------------------------------------------------------- /src/test/bip39_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/test/bip39_tests.cpp -------------------------------------------------------------------------------- /src/test/bloom_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/test/bloom_tests.cpp -------------------------------------------------------------------------------- /src/test/bls_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/test/bls_tests.cpp -------------------------------------------------------------------------------- /src/test/bswap_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/test/bswap_tests.cpp -------------------------------------------------------------------------------- /src/test/coins_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/test/coins_tests.cpp -------------------------------------------------------------------------------- /src/test/crypto_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/test/crypto_tests.cpp -------------------------------------------------------------------------------- /src/test/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/test/data/README.md -------------------------------------------------------------------------------- /src/test/getarg_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/test/getarg_tests.cpp -------------------------------------------------------------------------------- /src/test/hash_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/test/hash_tests.cpp -------------------------------------------------------------------------------- /src/test/key_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/test/key_tests.cpp -------------------------------------------------------------------------------- /src/test/main_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/test/main_tests.cpp -------------------------------------------------------------------------------- /src/test/merkle_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/test/merkle_tests.cpp -------------------------------------------------------------------------------- /src/test/miner_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/test/miner_tests.cpp -------------------------------------------------------------------------------- /src/test/net_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/test/net_tests.cpp -------------------------------------------------------------------------------- /src/test/pmt_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/test/pmt_tests.cpp -------------------------------------------------------------------------------- /src/test/pow_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/test/pow_tests.cpp -------------------------------------------------------------------------------- /src/test/random_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/test/random_tests.cpp -------------------------------------------------------------------------------- /src/test/rpc_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/test/rpc_tests.cpp -------------------------------------------------------------------------------- /src/test/sanity_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/test/sanity_tests.cpp -------------------------------------------------------------------------------- /src/test/script_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/test/script_tests.cpp -------------------------------------------------------------------------------- /src/test/scriptnum10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/test/scriptnum10.h -------------------------------------------------------------------------------- /src/test/test_neoxa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/test/test_neoxa.cpp -------------------------------------------------------------------------------- /src/test/test_neoxa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/test/test_neoxa.h -------------------------------------------------------------------------------- /src/test/util_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/test/util_tests.cpp -------------------------------------------------------------------------------- /src/threadinterrupt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/threadinterrupt.cpp -------------------------------------------------------------------------------- /src/threadinterrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/threadinterrupt.h -------------------------------------------------------------------------------- /src/threadsafety.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/threadsafety.h -------------------------------------------------------------------------------- /src/timedata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/timedata.cpp -------------------------------------------------------------------------------- /src/timedata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/timedata.h -------------------------------------------------------------------------------- /src/tinyformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/tinyformat.h -------------------------------------------------------------------------------- /src/torcontrol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/torcontrol.cpp -------------------------------------------------------------------------------- /src/torcontrol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/torcontrol.h -------------------------------------------------------------------------------- /src/txdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/txdb.cpp -------------------------------------------------------------------------------- /src/txdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/txdb.h -------------------------------------------------------------------------------- /src/txmempool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/txmempool.cpp -------------------------------------------------------------------------------- /src/txmempool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/txmempool.h -------------------------------------------------------------------------------- /src/ui_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/ui_interface.cpp -------------------------------------------------------------------------------- /src/ui_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/ui_interface.h -------------------------------------------------------------------------------- /src/uint256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/uint256.cpp -------------------------------------------------------------------------------- /src/uint256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/uint256.h -------------------------------------------------------------------------------- /src/undo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/undo.h -------------------------------------------------------------------------------- /src/univalue/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/univalue/.gitignore -------------------------------------------------------------------------------- /src/univalue/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/univalue/.travis.yml -------------------------------------------------------------------------------- /src/univalue/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/univalue/COPYING -------------------------------------------------------------------------------- /src/univalue/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/univalue/Makefile.am -------------------------------------------------------------------------------- /src/univalue/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/univalue/README -------------------------------------------------------------------------------- /src/univalue/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/univalue/TODO -------------------------------------------------------------------------------- /src/univalue/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/univalue/autogen.sh -------------------------------------------------------------------------------- /src/univalue/build-aux/m4/.gitignore: -------------------------------------------------------------------------------- 1 | /*.m4 2 | -------------------------------------------------------------------------------- /src/univalue/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/univalue/configure.ac -------------------------------------------------------------------------------- /src/univalue/lib/.gitignore: -------------------------------------------------------------------------------- 1 | gen 2 | .libs 3 | -------------------------------------------------------------------------------- /src/univalue/test/.gitignore: -------------------------------------------------------------------------------- 1 | unitester 2 | 3 | *.trs 4 | *.log 5 | -------------------------------------------------------------------------------- /src/univalue/test/fail1.json: -------------------------------------------------------------------------------- 1 | "A JSON payload should be an object or array, not a string." -------------------------------------------------------------------------------- /src/univalue/test/fail11.json: -------------------------------------------------------------------------------- 1 | {"Illegal expression": 1 + 2} -------------------------------------------------------------------------------- /src/univalue/test/fail12.json: -------------------------------------------------------------------------------- 1 | {"Illegal invocation": alert()} -------------------------------------------------------------------------------- /src/univalue/test/fail13.json: -------------------------------------------------------------------------------- 1 | {"Numbers cannot have leading zeroes": 013} -------------------------------------------------------------------------------- /src/univalue/test/fail14.json: -------------------------------------------------------------------------------- 1 | {"Numbers cannot be hex": 0x14} -------------------------------------------------------------------------------- /src/univalue/test/fail15.json: -------------------------------------------------------------------------------- 1 | ["Illegal backslash escape: \x15"] -------------------------------------------------------------------------------- /src/univalue/test/fail16.json: -------------------------------------------------------------------------------- 1 | [\naked] -------------------------------------------------------------------------------- /src/univalue/test/fail17.json: -------------------------------------------------------------------------------- 1 | ["Illegal backslash escape: \017"] -------------------------------------------------------------------------------- /src/univalue/test/fail19.json: -------------------------------------------------------------------------------- 1 | {"Missing colon" null} -------------------------------------------------------------------------------- /src/univalue/test/fail2.json: -------------------------------------------------------------------------------- 1 | ["Unclosed array" -------------------------------------------------------------------------------- /src/univalue/test/fail20.json: -------------------------------------------------------------------------------- 1 | {"Double colon":: null} -------------------------------------------------------------------------------- /src/univalue/test/fail21.json: -------------------------------------------------------------------------------- 1 | {"Comma instead of colon", null} -------------------------------------------------------------------------------- /src/univalue/test/fail22.json: -------------------------------------------------------------------------------- 1 | ["Colon instead of comma": false] -------------------------------------------------------------------------------- /src/univalue/test/fail23.json: -------------------------------------------------------------------------------- 1 | ["Bad value", truth] -------------------------------------------------------------------------------- /src/univalue/test/fail24.json: -------------------------------------------------------------------------------- 1 | ['single quote'] -------------------------------------------------------------------------------- /src/univalue/test/fail25.json: -------------------------------------------------------------------------------- 1 | [" tab character in string "] -------------------------------------------------------------------------------- /src/univalue/test/fail27.json: -------------------------------------------------------------------------------- 1 | ["line 2 | break"] -------------------------------------------------------------------------------- /src/univalue/test/fail28.json: -------------------------------------------------------------------------------- 1 | ["line\ 2 | break"] -------------------------------------------------------------------------------- /src/univalue/test/fail29.json: -------------------------------------------------------------------------------- 1 | [0e] -------------------------------------------------------------------------------- /src/univalue/test/fail30.json: -------------------------------------------------------------------------------- 1 | [0e+] -------------------------------------------------------------------------------- /src/univalue/test/fail31.json: -------------------------------------------------------------------------------- 1 | [0e+-1] -------------------------------------------------------------------------------- /src/univalue/test/fail32.json: -------------------------------------------------------------------------------- 1 | {"Comma instead if closing brace": true, -------------------------------------------------------------------------------- /src/univalue/test/fail33.json: -------------------------------------------------------------------------------- 1 | ["mismatch"} -------------------------------------------------------------------------------- /src/univalue/test/fail34.json: -------------------------------------------------------------------------------- 1 | {} garbage -------------------------------------------------------------------------------- /src/univalue/test/fail36.json: -------------------------------------------------------------------------------- 1 | {"a":} 2 | -------------------------------------------------------------------------------- /src/univalue/test/fail37.json: -------------------------------------------------------------------------------- 1 | {"a":1 "b":2} 2 | -------------------------------------------------------------------------------- /src/univalue/test/fail38.json: -------------------------------------------------------------------------------- 1 | ["\ud834"] 2 | -------------------------------------------------------------------------------- /src/univalue/test/fail39.json: -------------------------------------------------------------------------------- 1 | ["\udd61"] 2 | -------------------------------------------------------------------------------- /src/univalue/test/fail4.json: -------------------------------------------------------------------------------- 1 | ["extra comma",] -------------------------------------------------------------------------------- /src/univalue/test/fail5.json: -------------------------------------------------------------------------------- 1 | ["double extra comma",,] -------------------------------------------------------------------------------- /src/univalue/test/fail6.json: -------------------------------------------------------------------------------- 1 | [ , "<-- missing value"] -------------------------------------------------------------------------------- /src/univalue/test/fail7.json: -------------------------------------------------------------------------------- 1 | ["Comma after the close"], -------------------------------------------------------------------------------- /src/univalue/test/fail8.json: -------------------------------------------------------------------------------- 1 | ["Extra close"]] -------------------------------------------------------------------------------- /src/univalue/test/fail9.json: -------------------------------------------------------------------------------- 1 | {"Extra comma": true,} -------------------------------------------------------------------------------- /src/univalue/test/round2.json: -------------------------------------------------------------------------------- 1 | ["a§■𐎒𝅘𝅥𝅯"] 2 | -------------------------------------------------------------------------------- /src/unordered_lru_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/unordered_lru_cache.h -------------------------------------------------------------------------------- /src/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/util.cpp -------------------------------------------------------------------------------- /src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/util.h -------------------------------------------------------------------------------- /src/utilmoneystr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/utilmoneystr.cpp -------------------------------------------------------------------------------- /src/utilmoneystr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/utilmoneystr.h -------------------------------------------------------------------------------- /src/utilstrencodings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/utilstrencodings.cpp -------------------------------------------------------------------------------- /src/utilstrencodings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/utilstrencodings.h -------------------------------------------------------------------------------- /src/utiltime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/utiltime.cpp -------------------------------------------------------------------------------- /src/utiltime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/utiltime.h -------------------------------------------------------------------------------- /src/validation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/validation.cpp -------------------------------------------------------------------------------- /src/validation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/validation.h -------------------------------------------------------------------------------- /src/validationinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/validationinterface.h -------------------------------------------------------------------------------- /src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/version.h -------------------------------------------------------------------------------- /src/versionbits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/versionbits.cpp -------------------------------------------------------------------------------- /src/versionbits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/versionbits.h -------------------------------------------------------------------------------- /src/wallet/coincontrol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/wallet/coincontrol.h -------------------------------------------------------------------------------- /src/wallet/crypter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/wallet/crypter.cpp -------------------------------------------------------------------------------- /src/wallet/crypter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/wallet/crypter.h -------------------------------------------------------------------------------- /src/wallet/db.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/wallet/db.cpp -------------------------------------------------------------------------------- /src/wallet/db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/wallet/db.h -------------------------------------------------------------------------------- /src/wallet/rpcdump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/wallet/rpcdump.cpp -------------------------------------------------------------------------------- /src/wallet/rpcwallet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/wallet/rpcwallet.cpp -------------------------------------------------------------------------------- /src/wallet/rpcwallet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/wallet/rpcwallet.h -------------------------------------------------------------------------------- /src/wallet/wallet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/wallet/wallet.cpp -------------------------------------------------------------------------------- /src/wallet/wallet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/wallet/wallet.h -------------------------------------------------------------------------------- /src/wallet/walletdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/wallet/walletdb.cpp -------------------------------------------------------------------------------- /src/wallet/walletdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/wallet/walletdb.h -------------------------------------------------------------------------------- /src/warnings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/warnings.cpp -------------------------------------------------------------------------------- /src/warnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/warnings.h -------------------------------------------------------------------------------- /src/zmq/zmqconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/src/zmq/zmqconfig.h -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/test/README.md -------------------------------------------------------------------------------- /test/config.ini.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/test/config.ini.in -------------------------------------------------------------------------------- /test/functional/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | cache 3 | -------------------------------------------------------------------------------- /test/functional/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/test/functional/README.md -------------------------------------------------------------------------------- /test/functional/mining.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/test/functional/mining.py -------------------------------------------------------------------------------- /test/functional/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/test/functional/net.py -------------------------------------------------------------------------------- /test/functional/rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/test/functional/rest.py -------------------------------------------------------------------------------- /test/functional/sporks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/test/functional/sporks.py -------------------------------------------------------------------------------- /test/functional/test_framework/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/functional/uptime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/test/functional/uptime.py -------------------------------------------------------------------------------- /test/functional/wallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/test/functional/wallet.py -------------------------------------------------------------------------------- /test/lint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/test/lint/README.md -------------------------------------------------------------------------------- /test/lint/check-doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/test/lint/check-doc.py -------------------------------------------------------------------------------- /test/lint/lint-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/test/lint/lint-all.sh -------------------------------------------------------------------------------- /test/lint/lint-logs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/test/lint/lint-logs.sh -------------------------------------------------------------------------------- /test/lint/lint-python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/test/lint/lint-python.sh -------------------------------------------------------------------------------- /test/lint/lint-shell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/test/lint/lint-shell.sh -------------------------------------------------------------------------------- /test/lint/lint-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/test/lint/lint-tests.sh -------------------------------------------------------------------------------- /test/util/rpcauth-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/test/util/rpcauth-test.py -------------------------------------------------------------------------------- /utils/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/utils/build.sh -------------------------------------------------------------------------------- /utils/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/utils/clean.sh -------------------------------------------------------------------------------- /utils/cleanup-tags.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/utils/cleanup-tags.sh -------------------------------------------------------------------------------- /utils/distclean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/utils/distclean.sh -------------------------------------------------------------------------------- /utils/fetch-params.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoxaChain/Neoxa/HEAD/utils/fetch-params.sh --------------------------------------------------------------------------------