├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .gitmodules ├── .tx └── config ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── COPYING ├── INSTALL ├── LICENSE ├── Makefile.am ├── README.md ├── autogen.sh ├── ci ├── README.md ├── test_03_before_install.sh ├── test_04_install.sh ├── test_05_before_script.sh ├── test_06_script_a.sh └── test_06_script_b.sh ├── configure.ac ├── contrib ├── Frameworks │ ├── libboost_filesystem-mt.dylib │ └── libboost_system-mt.dylib ├── GenesisH0 │ └── genesis.py ├── README.md ├── debian │ ├── README.md │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── examples │ │ └── navcoin.conf │ ├── gbp.conf │ ├── manpages │ │ ├── navcoin-cli.1 │ │ ├── navcoin-qt.1 │ │ ├── navcoin.conf.5 │ │ └── navcoind.1 │ ├── navcoin-qt.desktop │ ├── navcoin-qt.install │ ├── navcoin-qt.lintian-overrides │ ├── navcoin-qt.protocol │ ├── navcoin-tx.bash-completion │ ├── navcoin-tx.install │ ├── navcoind.bash-completion │ ├── navcoind.examples │ ├── navcoind.install │ ├── navcoind.lintian-overrides │ ├── navcoind.manpages │ ├── patches │ │ ├── README │ │ └── series │ ├── rules │ ├── source │ │ └── format │ └── watch ├── devtools │ ├── README.md │ ├── check-doc.py │ ├── clang-format-diff.py │ ├── clang-format.py │ ├── fix-copyright-headers.py │ ├── git-subtree-check.sh │ ├── github-merge.py │ ├── optimize-pngs.py │ ├── security-check.py │ ├── split-debug.sh.in │ ├── symbol-check.py │ ├── test-security-check.py │ └── update-translations.py ├── gitian-build.sh ├── 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 │ └── keys.txt ├── init │ ├── README.md │ ├── navcoind.conf │ ├── navcoind.init │ ├── navcoind.openrc │ ├── navcoind.openrcconf │ ├── navcoind.service │ └── org.navcoin.bitcoind.plist ├── linearize │ ├── README.md │ ├── example-linearize.cfg │ ├── linearize-data.py │ └── linearize-hashes.py ├── macdeploy │ ├── LICENSE │ ├── README.md │ ├── background.svg │ ├── background.tiff │ ├── background.tiff.png │ ├── background.tiff@2x.png │ ├── custom_dsstore.py │ ├── detached-sig-apply.sh │ ├── detached-sig-create.sh │ ├── extract-osx-sdk.sh │ ├── fancy.plist │ └── macdeployqtplus ├── navcoin-cli.bash-completion ├── navcoin-qt.pro ├── navcoin-tx.bash-completion ├── navcoind.bash-completion ├── qos │ ├── README.md │ └── tc.sh ├── qt_translations.py ├── rpm │ ├── README.md │ ├── navcoin.fc │ ├── navcoin.if │ ├── navcoin.spec │ └── navcoin.te ├── run_with_dots ├── seeds │ ├── README.md │ ├── generate-seeds.py │ ├── makeseeds.py │ ├── nodes_dev.txt │ ├── nodes_main.txt │ └── nodes_test.txt ├── spendfrom │ ├── README.md │ ├── setup.py │ └── spendfrom.py ├── stressor_dao.sh ├── stressor_dotnav.sh ├── stressor_token.sh ├── testgen │ ├── README.md │ ├── base58.py │ └── gen_base58_test_vectors.py ├── tidy_datadir.sh ├── verify-commits │ ├── README.md │ ├── allow-revsig-commits │ ├── gpg.sh │ ├── pre-push-hook.sh │ ├── trusted-git-root │ ├── trusted-keys │ └── verify-commits.sh ├── verifybinaries │ ├── README.md │ └── verify.sh ├── windeploy │ ├── detached-sig-create.sh │ └── win-codesign.cert └── zmq │ └── zmq_sub.py ├── depends ├── .gitignore ├── Makefile ├── README.md ├── builders │ ├── darwin.mk │ ├── default.mk │ └── linux.mk ├── config.guess ├── config.site.in ├── config.sub ├── description.md ├── funcs.mk ├── gen_id ├── hosts │ ├── android.mk │ ├── darwin.mk │ ├── default.mk │ ├── linux.mk │ └── mingw32.mk ├── packages.md ├── packages │ ├── bdb.mk │ ├── boost.mk │ ├── curl.mk │ ├── expat.mk │ ├── fontconfig.mk │ ├── freetype.mk │ ├── gmp.mk │ ├── libICE.mk │ ├── libSM.mk │ ├── libXau.mk │ ├── libcap.mk │ ├── libevent.mk │ ├── libseccomp.mk │ ├── libxcb.mk │ ├── miniupnpc.mk │ ├── native_biplist.mk │ ├── native_cctools.mk │ ├── native_cdrkit.mk │ ├── native_clang.mk │ ├── native_ds_store.mk │ ├── native_libdmg-hfsplus.mk │ ├── native_libtapi.mk │ ├── native_mac_alias.mk │ ├── openssl.mk │ ├── packages.mk │ ├── qrencode.mk │ ├── qt.mk │ ├── sodium.mk │ ├── sqlite.mk │ ├── unbound.mk │ ├── xcb_proto.mk │ ├── xextproto.mk │ ├── xproto.mk │ ├── xtrans.mk │ ├── zeromq.mk │ └── zlib.mk └── patches │ ├── curl │ └── patch_builtin_available.patch │ ├── libcap │ └── make_rules.patch │ ├── libevent │ └── reuseaddr.patch │ ├── libsodium │ ├── 1.0.15-pubkey-validation.diff │ └── 1.0.15-signature-validation.diff │ ├── mac-qmake.conf │ ├── native_biplist │ └── sorted_list.patch │ ├── native_cdrkit │ └── cdrkit-deterministic.patch │ ├── native_libdmg-hfsplus │ └── remove-libcrypto-dependency.patch │ ├── native_mac_alias │ └── python3.patch │ ├── qt │ ├── .gitmodules │ ├── configure │ ├── configure.json │ ├── fix_android_jni_static.patch │ ├── fix_android_qmake_conf.patch │ ├── fix_configure_mac.patch │ ├── fix_no_printer.patch │ ├── fix_qt_pkgconfig.patch │ ├── fix_qttools.patch │ ├── fix_rcc_determinism.patch │ ├── fix_riscv64_arch.patch │ ├── mac-qmake.conf │ ├── no-xlib.patch │ ├── qt.pro │ └── xkb-default.patch │ ├── sodium │ ├── disable-glibc-getrandom-getentropy.patch │ └── fix-whitespace.patch │ ├── unbound │ └── getentropy.patch │ └── zeromq │ ├── 0001-fix-build-with-older-mingw64.patch │ └── 0002-disable-pthread_set_name_np.patch ├── doc ├── Creating_an_OSX_DMG.md ├── Doxyfile ├── README.md ├── README_osx.md ├── README_windows.txt ├── REST-interface.md ├── assets-attribution.md ├── benchmarking.md ├── bips.md ├── build-openbsd.md ├── build-osx.md ├── build-unix.md ├── build-windows.md ├── developer-notes.md ├── dnsseed-policy.md ├── files.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 │ ├── gittian-building-mac-osx-sdk.md │ ├── network_settings.png │ ├── port_forwarding_rules.png │ └── select_startup_disk.png ├── init.md ├── multiwallet-qt.md ├── navcoin_logo_doxygen.png ├── npips.md ├── reduce-traffic.md ├── release-notes.md ├── release-notes │ ├── release-notes-4.0.0.md │ ├── release-notes-4.2.0.md │ ├── release-notes-4.2.1.md │ ├── release-notes-4.3.0.md │ ├── release-notes-4.4.0.md │ ├── release-notes-4.5.0-additional-testing-notes │ │ └── modified-coldstaking-client-notes-4.5.0.md │ ├── release-notes-4.5.0.md │ ├── release-notes-4.5.1.md │ ├── release-notes-4.5.2.md │ ├── release-notes-4.6.0.md │ ├── release-notes-4.7.0.md │ ├── release-notes-4.7.1.md │ ├── release-notes-4.7.2.md │ ├── release-notes-4.7.3.md │ ├── release-notes-5.0.0.md │ ├── release-notes-5.0.1.md │ ├── release-notes-6.0.1.md │ ├── release-notes-6.0.2.md │ ├── release-notes-6.0.md │ ├── release-notes-6.1.0.md │ └── release-notes-7.0.0.md ├── release-process.md ├── shared-libraries.md ├── tor.md ├── translation_process.md ├── translation_strings_policy.md ├── travis-ci.txt ├── unit-tests.md └── zmq.md ├── img └── logo-extended.png ├── libnavcoinconsensus.pc.in ├── share ├── certs │ ├── BitcoinFoundation_Apple_Cert.pem │ ├── BitcoinFoundation_Comodo_Cert.pem │ └── PrivateKeyNotes.md ├── genbuild.sh ├── pixmaps │ ├── navcoin.ico │ ├── navcoin128.png │ ├── navcoin128.xpm │ ├── navcoin16.png │ ├── navcoin16.xpm │ ├── navcoin256.png │ ├── navcoin256.xpm │ ├── navcoin32.png │ ├── navcoin32.xpm │ ├── navcoin64.png │ ├── navcoin64.xpm │ ├── nsis-header.bmp │ └── nsis-wizard.bmp ├── qt │ ├── Info.plist.in │ └── extract_strings_qt.py ├── rpcuser │ ├── README.md │ └── rpcuser.py └── setup.nsi.in ├── src ├── .clang-format ├── Makefile.am ├── Makefile.bench.include ├── Makefile.crc32c.include ├── Makefile.leveldb.include ├── Makefile.qt.include ├── Makefile.qttest.include ├── Makefile.test.include ├── addressindex.h ├── addrman.cpp ├── addrman.h ├── aes_helper.c ├── amount.cpp ├── amount.h ├── arith_uint256.cpp ├── arith_uint256.h ├── base58.cpp ├── base58.h ├── bench │ ├── .gitignore │ ├── Examples.cpp │ ├── base58.cpp │ ├── bench.cpp │ ├── bench.h │ ├── bench_navcoin.cpp │ ├── crypto_hash.cpp │ └── rollingbloom.cpp ├── blake.c ├── blockencodings.cpp ├── blockencodings.h ├── bloom.cpp ├── bloom.h ├── bls │ ├── .clang-format │ ├── .flake8 │ ├── .github │ │ └── workflows │ │ │ ├── build-aarch64.yml │ │ │ └── build.yml │ ├── .gitignore │ ├── .gitmodules │ ├── CMakeLists.txt │ ├── LICENSE │ ├── MANIFEST.in │ ├── README.md │ ├── build │ │ └── .empty │ ├── cmake_modules │ │ ├── Findgmp.cmake │ │ └── Findsodium.cmake │ ├── contrib │ │ └── catch │ │ │ └── catch.hpp │ ├── js-bindings │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── blsjs.d.ts │ │ ├── helpers.cpp │ │ ├── helpers.h │ │ ├── jsbindings.cpp │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── tests │ │ │ ├── AggregationInfo.spec.js │ │ │ ├── ChainCode.spec.js │ │ │ ├── ExtendedPrivateKey.spec.js │ │ │ ├── ExtendedPublicKey.spec.js │ │ │ ├── PrivateKey.spec.js │ │ │ ├── PublicKey.spec.js │ │ │ ├── Signature.spec.js │ │ │ ├── Threshold.spec.js │ │ │ ├── karma.conf.js │ │ │ ├── karma.test.js │ │ │ └── typings.spec.ts │ │ └── wrappers │ │ │ ├── AggregationInfoWrapper.cpp │ │ │ ├── AggregationInfoWrapper.h │ │ │ ├── BLSWrapper.cpp │ │ │ ├── BLSWrapper.h │ │ │ ├── ChainCodeWrapper.cpp │ │ │ ├── ChainCodeWrapper.h │ │ │ ├── ExtendedPrivateKeyWrapper.cpp │ │ │ ├── ExtendedPrivateKeyWrapper.h │ │ │ ├── ExtendedPublicKeyWrapper.cpp │ │ │ ├── ExtendedPublicKeyWrapper.h │ │ │ ├── JSWrapper.h │ │ │ ├── PrivateKeyWrapper.cpp │ │ │ ├── PrivateKeyWrapper.h │ │ │ ├── PublicKeyWrapper.cpp │ │ │ ├── PublicKeyWrapper.h │ │ │ ├── SignatureWrapper.cpp │ │ │ ├── SignatureWrapper.h │ │ │ ├── ThresholdWrapper.cpp │ │ │ └── ThresholdWrapper.h │ ├── js_build.sh │ ├── lgtm.yml │ ├── mypi.ini │ ├── pyproject.toml │ ├── python-bindings │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── pythonbindings.cpp │ │ └── test.py │ ├── python-impl │ │ ├── README.md │ │ ├── bls12381.py │ │ ├── ec.py │ │ ├── fields.py │ │ ├── hash_to_field.py │ │ ├── hd_keys.py │ │ ├── hkdf.py │ │ ├── impl-test.py │ │ ├── op_swu_g2.py │ │ ├── pairing.py │ │ ├── private_key.py │ │ ├── schemes.py │ │ └── util.py │ ├── setup.py │ └── src │ │ ├── CMakeLists.txt │ │ ├── bls.cpp │ │ ├── bls.hpp │ │ ├── elements.cpp │ │ ├── elements.hpp │ │ ├── hdkeys.hpp │ │ ├── hkdf.hpp │ │ ├── privatekey.cpp │ │ ├── privatekey.hpp │ │ ├── schemes.cpp │ │ ├── schemes.hpp │ │ ├── test-bench.cpp │ │ ├── test-utils.hpp │ │ ├── test.cpp │ │ └── util.hpp ├── blsct │ ├── aggregationsession.cpp │ ├── aggregationsession.h │ ├── bulletproofs.cpp │ ├── bulletproofs.h │ ├── ephemeralserver.cpp │ ├── ephemeralserver.h │ ├── key.h │ ├── p2pmessage.cpp │ ├── rpc.cpp │ ├── rpc.h │ ├── scalar.cpp │ ├── scalar.h │ ├── transaction.cpp │ ├── transaction.h │ ├── types.cpp │ ├── types.h │ ├── verification.cpp │ └── verification.h ├── bmw.c ├── chain.cpp ├── chain.h ├── chainparams.cpp ├── chainparams.h ├── chainparamsbase.cpp ├── chainparamsbase.h ├── chainparamsseeds.h ├── checkpoints.cpp ├── checkpoints.h ├── checkqueue.h ├── clientversion.cpp ├── clientversion.h ├── coincontrol.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.h │ ├── dao.cpp │ ├── dao.h │ ├── dao │ │ └── flags.h │ ├── daoconsensusparams.h │ ├── merkle.cpp │ ├── merkle.h │ ├── params.h │ ├── program_actions.h │ ├── programs.cpp │ ├── programs.h │ └── validation.h ├── core_io.h ├── core_memusage.h ├── core_read.cpp ├── core_write.cpp ├── crc32c │ ├── .appveyor.yml │ ├── .clang-format │ ├── .clang_complete │ ├── .gitignore │ ├── .gitmodules │ ├── .travis.yml │ ├── .ycm_extra_conf.py │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── CONTRIBUTING.md │ ├── Crc32cConfig.cmake.in │ ├── LICENSE │ ├── README.md │ ├── include │ │ └── crc32c │ │ │ └── crc32c.h │ └── src │ │ ├── crc32c.cc │ │ ├── crc32c_arm64.cc │ │ ├── crc32c_arm64.h │ │ ├── crc32c_arm64_check.h │ │ ├── crc32c_arm64_unittest.cc │ │ ├── crc32c_benchmark.cc │ │ ├── crc32c_capi_unittest.c │ │ ├── crc32c_config.h.in │ │ ├── crc32c_extend_unittests.h │ │ ├── crc32c_internal.h │ │ ├── crc32c_portable.cc │ │ ├── crc32c_portable_unittest.cc │ │ ├── crc32c_prefetch.h │ │ ├── crc32c_prefetch_unittest.cc │ │ ├── crc32c_read_le.h │ │ ├── crc32c_read_le_unittest.cc │ │ ├── crc32c_round_up.h │ │ ├── crc32c_round_up_unittest.cc │ │ ├── crc32c_sse42.cc │ │ ├── crc32c_sse42.h │ │ ├── crc32c_sse42_check.h │ │ ├── crc32c_sse42_unittest.cc │ │ ├── crc32c_test_main.cc │ │ └── crc32c_unittest.cc ├── crypto │ ├── aes.cpp │ ├── aes.h │ ├── chacha20.cpp │ ├── chacha20.h │ ├── common.h │ ├── ctaes │ │ ├── COPYING │ │ ├── README.md │ │ ├── bench.c │ │ ├── ctaes.c │ │ ├── ctaes.h │ │ └── test.c │ ├── external │ │ ├── hmac_sha256.c │ │ ├── hmac_sha256.h │ │ ├── hmac_sha512.c │ │ ├── hmac_sha512.h │ │ ├── pkcs5_pbkdf2.c │ │ ├── pkcs5_pbkdf2.h │ │ ├── sha256.c │ │ ├── sha256.h │ │ ├── sha512.c │ │ ├── sha512.h │ │ ├── zeroize.c │ │ └── zeroize.h │ ├── hmac_sha256.cpp │ ├── hmac_sha256.h │ ├── hmac_sha512.cpp │ ├── hmac_sha512.h │ ├── ripemd160.cpp │ ├── ripemd160.h │ ├── sha1.cpp │ ├── sha1.h │ ├── sha256.cpp │ ├── sha256.h │ ├── sha512.cpp │ └── sha512.h ├── ctokens │ ├── ctokens.h │ ├── tokenid.h │ └── tokenutxos.h ├── cubehash.c ├── daoversionbit.cpp ├── daoversionbit.h ├── dbwrapper.cpp ├── dbwrapper.h ├── dotnav │ ├── namedata.h │ ├── namerecord.h │ ├── names.cpp │ └── names.h ├── echo.c ├── fs.cpp ├── fs.h ├── fugue.c ├── groestl.c ├── hamsi.c ├── hamsi_helper.c ├── hash.cpp ├── hash.h ├── hashblock.h ├── httprpc.cpp ├── httprpc.h ├── httpserver.cpp ├── httpserver.h ├── icons │ └── navcoin.ico ├── indirectmap.h ├── init.cpp ├── init.h ├── jh.c ├── keccak.c ├── kernel.cpp ├── kernel.h ├── key.cpp ├── key.h ├── key_io.cpp ├── key_io.h ├── keystore.cpp ├── keystore.h ├── leveldb │ ├── .appveyor.yml │ ├── .clang-format │ ├── .gitignore │ ├── .travis.yml │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── NEWS │ ├── README.md │ ├── TODO │ ├── benchmarks │ │ ├── db_bench.cc │ │ ├── db_bench_sqlite3.cc │ │ └── db_bench_tree_db.cc │ ├── cmake │ │ └── leveldbConfig.cmake │ ├── db │ │ ├── autocompact_test.cc │ │ ├── builder.cc │ │ ├── builder.h │ │ ├── c.cc │ │ ├── c_test.c │ │ ├── corruption_test.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 │ │ ├── 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 │ │ │ ├── export.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 │ │ └── issue320_test.cc │ ├── port │ │ ├── README.md │ │ ├── port.h │ │ ├── port_config.h.in │ │ ├── port_example.h │ │ ├── port_stdcxx.h │ │ └── thread_annotations.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_windows.cc │ │ ├── env_windows_test.cc │ │ ├── env_windows_test_helper.h │ │ ├── filter_policy.cc │ │ ├── hash.cc │ │ ├── hash.h │ │ ├── hash_test.cc │ │ ├── histogram.cc │ │ ├── histogram.h │ │ ├── logging.cc │ │ ├── logging.h │ │ ├── logging_test.cc │ │ ├── mutexlock.h │ │ ├── no_destructor.h │ │ ├── no_destructor_test.cc │ │ ├── options.cc │ │ ├── posix_logger.h │ │ ├── random.h │ │ ├── status.cc │ │ ├── status_test.cc │ │ ├── testharness.cc │ │ ├── testharness.h │ │ ├── testutil.cc │ │ ├── testutil.h │ │ └── windows_logger.h ├── limitedmap.h ├── luffa.c ├── main.cpp ├── main.h ├── mcl │ ├── .gitignore │ ├── .travis.yml │ ├── CMakeLists.txt │ ├── COPYRIGHT │ ├── Makefile │ ├── api.md │ ├── bench.txt │ ├── bin │ │ └── .emptydir │ ├── build.sh │ ├── build │ │ └── .gitkeep │ ├── cmake │ │ └── FindGMP.cmake │ ├── common.mk │ ├── common.props │ ├── debug.props │ ├── ffi │ │ ├── cs │ │ │ ├── App.config │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── bn256.cs │ │ │ ├── bn256.csproj │ │ │ ├── bn256.sln │ │ │ ├── bn256_test.cs │ │ │ ├── mcl.sln │ │ │ ├── mcl │ │ │ │ ├── mcl.cs │ │ │ │ └── mcl.csproj │ │ │ ├── readme.md │ │ │ └── test │ │ │ │ ├── test.cs │ │ │ │ └── test.csproj │ │ ├── go │ │ │ └── mcl │ │ │ │ ├── init.go │ │ │ │ ├── mcl.go │ │ │ │ └── mcl_test.go │ │ ├── java │ │ │ ├── ElgamalTest.java │ │ │ ├── Makefile │ │ │ ├── MclTest.java │ │ │ ├── android │ │ │ │ └── jni │ │ │ │ │ ├── Android.mk │ │ │ │ │ └── Application.mk │ │ │ ├── com │ │ │ │ └── herumi │ │ │ │ │ └── mcl │ │ │ │ │ ├── CipherText.java │ │ │ │ │ ├── Elgamal.java │ │ │ │ │ ├── ElgamalJNI.java │ │ │ │ │ ├── Fp.java │ │ │ │ │ ├── Fr.java │ │ │ │ │ ├── G1.java │ │ │ │ │ ├── G2.java │ │ │ │ │ ├── GT.java │ │ │ │ │ ├── Mcl.java │ │ │ │ │ ├── MclConstants.java │ │ │ │ │ ├── MclJNI.java │ │ │ │ │ ├── PrivateKey.java │ │ │ │ │ ├── PublicKey.java │ │ │ │ │ └── SWIGTYPE_p_bool.java │ │ │ ├── elgamal.i │ │ │ ├── elgamal_impl.hpp │ │ │ ├── elgamal_wrap.cxx │ │ │ ├── java.md │ │ │ ├── make_wrap.bat │ │ │ ├── mcl.i │ │ │ ├── mcl_impl.hpp │ │ │ ├── mcl_wrap.cxx │ │ │ ├── run-elgamal.bat │ │ │ ├── run-mcl.bat │ │ │ └── set-java-path.bat │ │ ├── js │ │ │ ├── export-functions.py │ │ │ └── pre-mcl.js │ │ └── python │ │ │ ├── pairing.py │ │ │ └── she.py │ ├── include │ │ ├── cybozu │ │ │ ├── array.hpp │ │ │ ├── atoi.hpp │ │ │ ├── atomic.hpp │ │ │ ├── benchmark.hpp │ │ │ ├── bit_operation.hpp │ │ │ ├── critical_section.hpp │ │ │ ├── crypto.hpp │ │ │ ├── endian.hpp │ │ │ ├── exception.hpp │ │ │ ├── file.hpp │ │ │ ├── hash.hpp │ │ │ ├── inttype.hpp │ │ │ ├── itoa.hpp │ │ │ ├── link_libeay32.hpp │ │ │ ├── link_mpir.hpp │ │ │ ├── link_ssleay32.hpp │ │ │ ├── mutex.hpp │ │ │ ├── option.hpp │ │ │ ├── random_generator.hpp │ │ │ ├── serializer.hpp │ │ │ ├── sha2.hpp │ │ │ ├── socket.hpp │ │ │ ├── stream.hpp │ │ │ ├── test.hpp │ │ │ ├── time.hpp │ │ │ ├── unordered_map.hpp │ │ │ └── xorshift.hpp │ │ └── mcl │ │ │ ├── aggregate_sig.hpp │ │ │ ├── array.hpp │ │ │ ├── bls12_381.hpp │ │ │ ├── bn.h │ │ │ ├── bn.hpp │ │ │ ├── bn256.hpp │ │ │ ├── bn384.hpp │ │ │ ├── bn512.hpp │ │ │ ├── bn_c256.h │ │ │ ├── bn_c384.h │ │ │ ├── bn_c384_256.h │ │ │ ├── conversion.hpp │ │ │ ├── curve_type.h │ │ │ ├── ec.hpp │ │ │ ├── ecdsa.h │ │ │ ├── ecdsa.hpp │ │ │ ├── ecparam.hpp │ │ │ ├── elgamal.hpp │ │ │ ├── fp.hpp │ │ │ ├── fp_tower.hpp │ │ │ ├── gmp_util.hpp │ │ │ ├── impl │ │ │ └── bn_c_impl.hpp │ │ │ ├── lagrange.hpp │ │ │ ├── mapto_wb19.hpp │ │ │ ├── op.hpp │ │ │ ├── operator.hpp │ │ │ ├── paillier.hpp │ │ │ ├── randgen.hpp │ │ │ ├── she.h │ │ │ ├── she.hpp │ │ │ ├── util.hpp │ │ │ ├── vint.hpp │ │ │ └── window_method.hpp │ ├── lib │ │ └── .emptydir │ ├── mcl.sln │ ├── misc │ │ ├── Makefile │ │ ├── bench.txt │ │ ├── karatsuba.cpp │ │ ├── low_test.cpp │ │ ├── mul.cpp │ │ ├── precompute.cpp │ │ └── she │ │ │ ├── bench.sh │ │ │ ├── bench4.txt │ │ │ ├── bench6.txt │ │ │ ├── bench8.txt │ │ │ ├── memo.txt │ │ │ ├── nizkp.pdf │ │ │ ├── she-api-ja.md │ │ │ ├── she-api.md │ │ │ └── she.pdf │ ├── mk.bat │ ├── mklib.bat │ ├── obj │ │ └── .emptydir │ ├── readme.md │ ├── release.props │ ├── sample │ │ ├── CMakeLists.txt │ │ ├── bench.cpp │ │ ├── bls_sig.cpp │ │ ├── ecdh.cpp │ │ ├── large.cpp │ │ ├── multi.cpp │ │ ├── pairing.cpp │ │ ├── pairing_c.c │ │ ├── random.cpp │ │ ├── rawbench.cpp │ │ ├── she_make_dlp_table.cpp │ │ ├── she_smpl.cpp │ │ ├── tri-dh.cpp │ │ └── vote.cpp │ ├── setvar.bat │ ├── src │ │ ├── asm │ │ │ ├── aarch64.s │ │ │ ├── arm.s │ │ │ ├── low_arm.s │ │ │ ├── low_x86-64.asm │ │ │ ├── low_x86.asm │ │ │ ├── x86-64.bmi2.s │ │ │ ├── x86-64.s │ │ │ ├── x86-64mac.bmi2.s │ │ │ ├── x86-64mac.s │ │ │ ├── x86.bmi2.s │ │ │ └── x86.s │ │ ├── base32.ll │ │ ├── base64.ll │ │ ├── bn_c256.cpp │ │ ├── bn_c384.cpp │ │ ├── bn_c384_256.cpp │ │ ├── bn_c512.cpp │ │ ├── dump_code.cpp │ │ ├── ecdsa_c.cpp │ │ ├── fp.cpp │ │ ├── fp_generator.hpp │ │ ├── fp_static_code.hpp │ │ ├── gen.cpp │ │ ├── llvm_gen.hpp │ │ ├── low_func.hpp │ │ ├── low_func_llvm.hpp │ │ ├── low_func_wasm.hpp │ │ ├── proj │ │ │ └── mcl.vcxproj │ │ ├── proto.hpp │ │ ├── she_c256.cpp │ │ ├── she_c384.cpp │ │ ├── she_c384_256.cpp │ │ ├── she_c_impl.hpp │ │ └── xbyak │ │ │ ├── xbyak.h │ │ │ ├── xbyak_mnemonic.h │ │ │ └── xbyak_util.h │ └── test │ │ ├── CMakeLists.txt │ │ ├── aggregate_sig_test.cpp │ │ ├── array_test.cpp │ │ ├── base_test.cpp │ │ ├── bench.hpp │ │ ├── bls12_test.cpp │ │ ├── bn384_test.cpp │ │ ├── bn512_test.cpp │ │ ├── bn_c256_test.cpp │ │ ├── bn_c384_256_test.cpp │ │ ├── bn_c384_test.cpp │ │ ├── bn_c512_test.cpp │ │ ├── bn_c_test.hpp │ │ ├── bn_test.cpp │ │ ├── common_test.hpp │ │ ├── conversion_test.cpp │ │ ├── ec_test.cpp │ │ ├── ecdsa_c_test.cpp │ │ ├── ecdsa_test.cpp │ │ ├── elgamal_test.cpp │ │ ├── fp_generator_test.cpp │ │ ├── fp_test.cpp │ │ ├── fp_tower_test.cpp │ │ ├── fp_util_test.cpp │ │ ├── glv_test.cpp │ │ ├── gmp_test.cpp │ │ ├── low_test.cpp │ │ ├── mapto_wb19_test.cpp │ │ ├── mk32.sh │ │ ├── modp_test.cpp │ │ ├── mont_fp_test.cpp │ │ ├── paillier_test.cpp │ │ ├── proj │ │ ├── bn_test │ │ │ └── bn_test.vcxproj │ │ ├── ec_test │ │ │ └── ec_test.vcxproj │ │ ├── fp_test │ │ │ └── fp_test.vcxproj │ │ └── fp_tower_test │ │ │ └── fp_tower_test.vcxproj │ │ ├── she_c256_test.cpp │ │ ├── she_c384_256_test.cpp │ │ ├── she_c384_test.cpp │ │ ├── she_c_test.hpp │ │ ├── she_test.cpp │ │ ├── sq_test.cpp │ │ ├── static_code_test.cpp │ │ ├── vint_test.cpp │ │ └── window_method_test.cpp ├── memusage.h ├── merkleblock.cpp ├── merkleblock.h ├── miner.cpp ├── miner.h ├── mnemonic │ ├── arrayslice.h │ ├── dictionary.cpp │ ├── dictionary.h │ ├── generateseed.cpp │ ├── generateseed.h │ ├── mnemonic.cpp │ └── mnemonic.h ├── navcoin-cli-res.rc ├── navcoin-cli.cpp ├── navcoin-tx-res.rc ├── navcoin-tx.cpp ├── navcoind-res.rc ├── navcoind.cpp ├── net.cpp ├── net.h ├── netbase.cpp ├── netbase.h ├── noui.cpp ├── noui.h ├── ntpclient.cpp ├── ntpclient.h ├── obj-test │ └── .gitignore ├── obj │ └── .gitignore ├── policy │ ├── fees.cpp │ ├── fees.h │ ├── policy.cpp │ ├── policy.h │ ├── rbf.cpp │ └── rbf.h ├── pos.cpp ├── pos.h ├── pow.cpp ├── pow.h ├── prevector.h ├── primitives │ ├── block.cpp │ ├── block.h │ ├── transaction.cpp │ └── transaction.h ├── protocol.cpp ├── protocol.h ├── pubkey.cpp ├── pubkey.h ├── qt │ ├── NavCoin4.config │ ├── NavCoin4.creator │ ├── NavCoin4.files │ ├── NavCoin4.includes │ ├── addressbookpage.cpp │ ├── addressbookpage.h │ ├── addresstablemodel.cpp │ ├── addresstablemodel.h │ ├── aggregationsession.cpp │ ├── aggregationsession.h │ ├── askpassphrasedialog.cpp │ ├── askpassphrasedialog.h │ ├── bantablemodel.cpp │ ├── bantablemodel.h │ ├── clientmodel.cpp │ ├── clientmodel.h │ ├── coincontroldialog.cpp │ ├── coincontroldialog.h │ ├── coincontroltreewidget.cpp │ ├── coincontroltreewidget.h │ ├── coldstakingwizard.cpp │ ├── coldstakingwizard.h │ ├── communityfundcreatepaymentrequestdialog.cpp │ ├── communityfundcreatepaymentrequestdialog.h │ ├── communityfundcreateproposaldialog.cpp │ ├── communityfundcreateproposaldialog.h │ ├── communityfunddisplay.cpp │ ├── communityfunddisplay.h │ ├── communityfunddisplaydetailed.cpp │ ├── communityfunddisplaydetailed.h │ ├── communityfunddisplaypaymentrequest.cpp │ ├── communityfunddisplaypaymentrequest.h │ ├── communityfunddisplaypaymentrequestdetailed.cpp │ ├── communityfunddisplaypaymentrequestdetailed.h │ ├── communityfundpage.cpp │ ├── communityfundpage.h │ ├── communityfundsuccessdialog.cpp │ ├── communityfundsuccessdialog.h │ ├── csvmodelwriter.cpp │ ├── csvmodelwriter.h │ ├── daoconsultationcreate.cpp │ ├── daoconsultationcreate.h │ ├── daoconsultationvote.cpp │ ├── daoconsultationvote.h │ ├── daopage.cpp │ ├── daopage.h │ ├── daoproposeanswer.cpp │ ├── daoproposeanswer.h │ ├── daosupport.cpp │ ├── daosupport.h │ ├── editaddressdialog.cpp │ ├── editaddressdialog.h │ ├── forms │ │ ├── addressbookpage.ui │ │ ├── askpassphrasedialog.ui │ │ ├── coincontroldialog.ui │ │ ├── communityfundcreatepaymentrequestdialog.ui │ │ ├── communityfundcreateproposaldialog.ui │ │ ├── communityfunddisplay.ui │ │ ├── communityfunddisplaydetailed.ui │ │ ├── communityfunddisplaypaymentrequest.ui │ │ ├── communityfunddisplaypaymentrequestdetailed.ui │ │ ├── communityfundpage.ui │ │ ├── communityfundsuccessdialog.ui │ │ ├── debugwindow.ui │ │ ├── editaddressdialog.ui │ │ ├── getaddresstoreceive.ui │ │ ├── helpmessagedialog.ui │ │ ├── modaloverlay.ui │ │ ├── openuridialog.ui │ │ ├── optionsdialog.ui │ │ ├── overviewpage.ui │ │ ├── receivecoinsdialog.ui │ │ ├── receiverequestdialog.ui │ │ ├── sendcoinsdialog.ui │ │ ├── sendcoinsentry.ui │ │ ├── sendcommunityfunddialog.ui │ │ ├── signverifymessagedialog.ui │ │ ├── startoptions.ui │ │ ├── startoptionsdialog.ui │ │ ├── startoptionsmain.ui │ │ ├── startoptionspassword.ui │ │ ├── startoptionsrestore.ui │ │ ├── startoptionsrevealed.ui │ │ ├── startoptionssort.ui │ │ └── transactiondescdialog.ui │ ├── getaddresstoreceive.cpp │ ├── getaddresstoreceive.h │ ├── guiconstants.h │ ├── guiutil.cpp │ ├── guiutil.h │ ├── icons │ │ └── navcoin.ico │ ├── listview.h │ ├── locale │ │ ├── navcoin_af.ts │ │ ├── navcoin_af_ZA.ts │ │ ├── navcoin_ar.ts │ │ ├── navcoin_be_BY.ts │ │ ├── navcoin_bg.ts │ │ ├── navcoin_bg_BG.ts │ │ ├── navcoin_ca.ts │ │ ├── navcoin_ca@valencia.ts │ │ ├── navcoin_ca_ES.ts │ │ ├── navcoin_cs.ts │ │ ├── navcoin_cs_CZ.ts │ │ ├── navcoin_cy.ts │ │ ├── navcoin_da.ts │ │ ├── navcoin_de.ts │ │ ├── navcoin_el.ts │ │ ├── navcoin_el_GR.ts │ │ ├── navcoin_en.ts │ │ ├── navcoin_en_GB.ts │ │ ├── navcoin_eo.ts │ │ ├── navcoin_es.ts │ │ ├── navcoin_es_AR.ts │ │ ├── navcoin_es_CL.ts │ │ ├── navcoin_es_CO.ts │ │ ├── navcoin_es_DO.ts │ │ ├── navcoin_es_ES.ts │ │ ├── navcoin_es_MX.ts │ │ ├── navcoin_es_UY.ts │ │ ├── navcoin_es_VE.ts │ │ ├── navcoin_et.ts │ │ ├── navcoin_eu_ES.ts │ │ ├── navcoin_fa.ts │ │ ├── navcoin_fa_IR.ts │ │ ├── navcoin_fi.ts │ │ ├── navcoin_fr.ts │ │ ├── navcoin_fr_CA.ts │ │ ├── navcoin_fr_FR.ts │ │ ├── navcoin_gl.ts │ │ ├── navcoin_he.ts │ │ ├── navcoin_hi_IN.ts │ │ ├── navcoin_hr.ts │ │ ├── navcoin_hu.ts │ │ ├── navcoin_id_ID.ts │ │ ├── navcoin_it.ts │ │ ├── navcoin_it_IT.ts │ │ ├── navcoin_ja.ts │ │ ├── navcoin_ka.ts │ │ ├── navcoin_kk_KZ.ts │ │ ├── navcoin_ko_KR.ts │ │ ├── navcoin_ku_IQ.ts │ │ ├── navcoin_ky.ts │ │ ├── navcoin_la.ts │ │ ├── navcoin_lt.ts │ │ ├── navcoin_lv_LV.ts │ │ ├── navcoin_mk_MK.ts │ │ ├── navcoin_mn.ts │ │ ├── navcoin_ms_MY.ts │ │ ├── navcoin_nb.ts │ │ ├── navcoin_nl.ts │ │ ├── navcoin_pam.ts │ │ ├── navcoin_pl.ts │ │ ├── navcoin_pt_BR.ts │ │ ├── navcoin_pt_PT.ts │ │ ├── navcoin_ro.ts │ │ ├── navcoin_ro_RO.ts │ │ ├── navcoin_ru.ts │ │ ├── navcoin_ru_RU.ts │ │ ├── navcoin_sk.ts │ │ ├── navcoin_sl_SI.ts │ │ ├── navcoin_sq.ts │ │ ├── navcoin_sr.ts │ │ ├── navcoin_sr@latin.ts │ │ ├── navcoin_sv.ts │ │ ├── navcoin_ta.ts │ │ ├── navcoin_th_TH.ts │ │ ├── navcoin_tr.ts │ │ ├── navcoin_tr_TR.ts │ │ ├── navcoin_uk.ts │ │ ├── navcoin_ur_PK.ts │ │ ├── navcoin_uz@Cyrl.ts │ │ ├── navcoin_vi.ts │ │ ├── navcoin_vi_VN.ts │ │ ├── navcoin_zh.ts │ │ ├── navcoin_zh_CN.ts │ │ ├── navcoin_zh_HK.ts │ │ └── navcoin_zh_TW.ts │ ├── macappnapinhibitor.h │ ├── macappnapinhibitor.mm │ ├── macdockiconhandler.h │ ├── macdockiconhandler.mm │ ├── macnotificationhandler.h │ ├── macnotificationhandler.mm │ ├── modaloverlay.cpp │ ├── modaloverlay.h │ ├── navcoin-qt.dSYM │ │ └── Contents │ │ │ └── Info.plist │ ├── navcoin.cpp │ ├── navcoin.qrc │ ├── navcoin_locale.qrc │ ├── navcoinaddressvalidator.cpp │ ├── navcoinaddressvalidator.h │ ├── navcoinamountfield.cpp │ ├── navcoinamountfield.h │ ├── navcoingui.cpp │ ├── navcoingui.h │ ├── navcoinlistwidget.cpp │ ├── navcoinlistwidget.h │ ├── navcoinpushbutton.cpp │ ├── navcoinpushbutton.h │ ├── navcoinstrings.cpp │ ├── navcoinunits.cpp │ ├── navcoinunits.h │ ├── networkstyle.cpp │ ├── networkstyle.h │ ├── notificator.cpp │ ├── notificator.h │ ├── openuridialog.cpp │ ├── openuridialog.h │ ├── optionsdialog.cpp │ ├── optionsdialog.h │ ├── optionsmodel.cpp │ ├── optionsmodel.h │ ├── overviewpage.cpp │ ├── overviewpage.h │ ├── peertablemodel.cpp │ ├── peertablemodel.h │ ├── platformstyle.cpp │ ├── platformstyle.h │ ├── qjsonitem.cpp │ ├── qjsonitem.h │ ├── qjsonmodel.cpp │ ├── qjsonmodel.h │ ├── qvalidatedlineedit.cpp │ ├── qvalidatedlineedit.h │ ├── qvalidatedplaintextedit.cpp │ ├── qvalidatedplaintextedit.h │ ├── qvalidatedspinbox.cpp │ ├── qvalidatedspinbox.h │ ├── qvaluecombobox.cpp │ ├── qvaluecombobox.h │ ├── receivecoinsdialog.cpp │ ├── receivecoinsdialog.h │ ├── receiverequestdialog.cpp │ ├── receiverequestdialog.h │ ├── recentrequeststablemodel.cpp │ ├── recentrequeststablemodel.h │ ├── res │ │ ├── fonts │ │ │ ├── roboto-black.ttf │ │ │ ├── roboto-bold.ttf │ │ │ ├── roboto-medium.ttf │ │ │ ├── roboto-regular.ttf │ │ │ ├── roboto.ttf │ │ │ └── source.ttf │ │ ├── icons │ │ │ ├── about.svg │ │ │ ├── about_qt.svg │ │ │ ├── add.svg │ │ │ ├── address-book.svg │ │ │ ├── chevron.svg │ │ │ ├── clock1.svg │ │ │ ├── clock2.svg │ │ │ ├── clock3.svg │ │ │ ├── clock4.svg │ │ │ ├── clock5.svg │ │ │ ├── configure.svg │ │ │ ├── connect0.svg │ │ │ ├── connect1.svg │ │ │ ├── connect2.svg │ │ │ ├── connect3.svg │ │ │ ├── connect4.svg │ │ │ ├── connect_disabled.svg │ │ │ ├── dao.svg │ │ │ ├── debugwindow.svg │ │ │ ├── edit.svg │ │ │ ├── editcopy.svg │ │ │ ├── editpaste.svg │ │ │ ├── export.svg │ │ │ ├── eye.svg │ │ │ ├── eye_minus.svg │ │ │ ├── eye_plus.svg │ │ │ ├── filesave.svg │ │ │ ├── fontbigger.svg │ │ │ ├── fontsmaller.svg │ │ │ ├── ghost.svg │ │ │ ├── home.svg │ │ │ ├── info.svg │ │ │ ├── key.svg │ │ │ ├── lock_closed.svg │ │ │ ├── lock_open.svg │ │ │ ├── logo_n.png │ │ │ ├── logo_n.svg │ │ │ ├── mininav.svg │ │ │ ├── minixnav.svg │ │ │ ├── navcoin.icns │ │ │ ├── navcoin.ico │ │ │ ├── navcoin.png │ │ │ ├── navcoin.svg │ │ │ ├── navcoin_full.png │ │ │ ├── navcoin_full.svg │ │ │ ├── open.svg │ │ │ ├── quit.svg │ │ │ ├── receive.svg │ │ │ ├── remove.svg │ │ │ ├── send.svg │ │ │ ├── staking_off.svg │ │ │ ├── staking_on.svg │ │ │ ├── swap.png │ │ │ ├── synced.svg │ │ │ ├── transaction0.svg │ │ │ ├── transaction2.svg │ │ │ ├── transaction_abandoned.svg │ │ │ ├── transaction_conflicted.svg │ │ │ ├── transactions.svg │ │ │ ├── tx_inout.svg │ │ │ ├── tx_input.svg │ │ │ ├── tx_mined.svg │ │ │ ├── tx_output.svg │ │ │ ├── verify.svg │ │ │ ├── wallet.svg │ │ │ └── warning.svg │ │ ├── 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 │ │ ├── navcoin-qt-res.rc │ │ ├── src │ │ │ ├── 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 │ │ │ ├── mine.svg │ │ │ ├── navcoin.svg │ │ │ ├── qt.svg │ │ │ ├── spinner.png │ │ │ ├── transaction0.svg │ │ │ ├── tx_in.svg │ │ │ ├── tx_inout.svg │ │ │ └── verify.svg │ │ └── themes │ │ │ ├── app.qss │ │ │ ├── dark │ │ │ ├── icons │ │ │ │ ├── icon_branch_closed.png │ │ │ │ ├── icon_branch_end.png │ │ │ │ ├── icon_branch_more.png │ │ │ │ ├── icon_branch_open.png │ │ │ │ ├── icon_checkbox_checked.png │ │ │ │ ├── icon_checkbox_checked_disabled.png │ │ │ │ ├── icon_checkbox_checked_pressed.png │ │ │ │ ├── icon_checkbox_indeterminate.png │ │ │ │ ├── icon_checkbox_indeterminate_disabled.png │ │ │ │ ├── icon_checkbox_indeterminate_pressed.png │ │ │ │ ├── icon_checkbox_unchecked.png │ │ │ │ ├── icon_checkbox_unchecked_disabled.png │ │ │ │ ├── icon_checkbox_unchecked_pressed.png │ │ │ │ ├── icon_close.png │ │ │ │ ├── icon_radiobutton_checked.png │ │ │ │ ├── icon_radiobutton_checked_disabled.png │ │ │ │ ├── icon_radiobutton_checked_pressed.png │ │ │ │ ├── icon_radiobutton_unchecked.png │ │ │ │ ├── icon_radiobutton_unchecked_disabled.png │ │ │ │ ├── icon_radiobutton_unchecked_pressed.png │ │ │ │ ├── icon_restore.png │ │ │ │ ├── icon_undock.png │ │ │ │ └── icon_vline.png │ │ │ └── styles.qss │ │ │ ├── light │ │ │ ├── icons │ │ │ │ ├── icon_branch_closed.png │ │ │ │ ├── icon_branch_end.png │ │ │ │ ├── icon_branch_more.png │ │ │ │ ├── icon_branch_open.png │ │ │ │ ├── icon_checkbox_checked.png │ │ │ │ ├── icon_checkbox_checked_disabled.png │ │ │ │ ├── icon_checkbox_checked_pressed.png │ │ │ │ ├── icon_checkbox_indeterminate.png │ │ │ │ ├── icon_checkbox_indeterminate_disabled.png │ │ │ │ ├── icon_checkbox_indeterminate_pressed.png │ │ │ │ ├── icon_checkbox_unchecked.png │ │ │ │ ├── icon_checkbox_unchecked_disabled.png │ │ │ │ ├── icon_checkbox_unchecked_pressed.png │ │ │ │ ├── icon_close.png │ │ │ │ ├── icon_radiobutton_checked.png │ │ │ │ ├── icon_radiobutton_checked_disabled.png │ │ │ │ ├── icon_radiobutton_checked_pressed.png │ │ │ │ ├── icon_radiobutton_unchecked.png │ │ │ │ ├── icon_radiobutton_unchecked_disabled.png │ │ │ │ ├── icon_radiobutton_unchecked_pressed.png │ │ │ │ ├── icon_restore.png │ │ │ │ ├── icon_undock.png │ │ │ │ └── icon_vline.png │ │ │ └── styles.qss │ │ │ └── shared.qss │ ├── rpcconsole.cpp │ ├── rpcconsole.h │ ├── sendcoinsdialog.cpp │ ├── sendcoinsdialog.h │ ├── sendcoinsentry.cpp │ ├── sendcoinsentry.h │ ├── sendcommunityfunddialog.cpp │ ├── sendcommunityfunddialog.h │ ├── signverifymessagedialog.cpp │ ├── signverifymessagedialog.h │ ├── splashscreen.cpp │ ├── splashscreen.h │ ├── splitrewards.cpp │ ├── splitrewards.h │ ├── startoptions.cpp │ ├── startoptions.h │ ├── startoptionsdialog.cpp │ ├── startoptionsdialog.h │ ├── startoptionsmain.cpp │ ├── startoptionsmain.h │ ├── startoptionspassword.cpp │ ├── startoptionspassword.h │ ├── startoptionsrestore.cpp │ ├── startoptionsrestore.h │ ├── startoptionsrevealed.cpp │ ├── startoptionsrevealed.h │ ├── startoptionssort.cpp │ ├── startoptionssort.h │ ├── styles │ │ ├── dark.cpp │ │ ├── dark.h │ │ ├── light.cpp │ │ └── light.h │ ├── swapxnav.cpp │ ├── swapxnav.h │ ├── test │ │ ├── test_main.cpp │ │ ├── uritests.cpp │ │ └── uritests.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 ├── reverselock.h ├── rpc │ ├── blockchain.cpp │ ├── client.cpp │ ├── client.h │ ├── mining.cpp │ ├── misc.cpp │ ├── net.cpp │ ├── protocol.cpp │ ├── protocol.h │ ├── rawtransaction.cpp │ ├── register.h │ ├── server.cpp │ └── server.h ├── scheduler.cpp ├── scheduler.h ├── script │ ├── interpreter.cpp │ ├── interpreter.h │ ├── ismine.cpp │ ├── ismine.h │ ├── navcoinconsensus.cpp │ ├── navcoinconsensus.h │ ├── script.cpp │ ├── script.h │ ├── script_error.cpp │ ├── script_error.h │ ├── sigcache.cpp │ ├── sigcache.h │ ├── sign.cpp │ ├── sign.h │ ├── standard.cpp │ └── standard.h ├── secp256k1 │ ├── .cirrus.yml │ ├── .gitignore │ ├── COPYING │ ├── Makefile.am │ ├── README.md │ ├── SECURITY.md │ ├── autogen.sh │ ├── build-aux │ │ └── m4 │ │ │ ├── ax_prog_cc_for_build.m4 │ │ │ └── bitcoin_secp.m4 │ ├── ci │ │ ├── cirrus.sh │ │ └── linux-debian.Dockerfile │ ├── configure.ac │ ├── contrib │ │ ├── lax_der_parsing.c │ │ ├── lax_der_parsing.h │ │ ├── lax_der_privatekey_parsing.c │ │ └── lax_der_privatekey_parsing.h │ ├── doc │ │ └── safegcd_implementation.md │ ├── include │ │ ├── secp256k1.h │ │ ├── secp256k1_ecdh.h │ │ ├── secp256k1_extrakeys.h │ │ ├── secp256k1_preallocated.h │ │ ├── secp256k1_recovery.h │ │ └── secp256k1_schnorrsig.h │ ├── libsecp256k1.pc.in │ ├── sage │ │ ├── gen_exhaustive_groups.sage │ │ ├── gen_split_lambda_constants.sage │ │ ├── group_prover.sage │ │ ├── prove_group_implementations.sage │ │ ├── secp256k1_params.sage │ │ └── weierstrass_prover.sage │ └── src │ │ ├── asm │ │ └── field_10x26_arm.s │ │ ├── assumptions.h │ │ ├── basic-config.h │ │ ├── bench.h │ │ ├── bench_ecdh.c │ │ ├── bench_ecmult.c │ │ ├── bench_internal.c │ │ ├── bench_recover.c │ │ ├── bench_schnorrsig.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 │ │ ├── modinv32.h │ │ ├── modinv32_impl.h │ │ ├── modinv64.h │ │ ├── modinv64_impl.h │ │ ├── modules │ │ ├── ecdh │ │ │ ├── Makefile.am.include │ │ │ ├── main_impl.h │ │ │ └── tests_impl.h │ │ ├── extrakeys │ │ │ ├── Makefile.am.include │ │ │ ├── main_impl.h │ │ │ ├── tests_exhaustive_impl.h │ │ │ └── tests_impl.h │ │ ├── recovery │ │ │ ├── Makefile.am.include │ │ │ ├── main_impl.h │ │ │ ├── tests_exhaustive_impl.h │ │ │ └── tests_impl.h │ │ └── schnorrsig │ │ │ ├── Makefile.am.include │ │ │ ├── main_impl.h │ │ │ ├── tests_exhaustive_impl.h │ │ │ └── tests_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 │ │ ├── scratch.h │ │ ├── scratch_impl.h │ │ ├── secp256k1.c │ │ ├── selftest.h │ │ ├── testrand.h │ │ ├── testrand_impl.h │ │ ├── tests.c │ │ ├── tests_exhaustive.c │ │ ├── util.h │ │ └── valgrind_ctime_test.c ├── serialize.h ├── shavite.c ├── simd.c ├── skein.c ├── spentindex.h ├── sph_blake.h ├── sph_bmw.h ├── sph_cubehash.h ├── sph_echo.h ├── sph_fugue.h ├── sph_groestl.h ├── sph_hamsi.h ├── sph_jh.h ├── sph_keccak.h ├── sph_luffa.h ├── sph_shavite.h ├── sph_simd.h ├── sph_skein.h ├── sph_types.h ├── streams.h ├── support │ ├── allocators │ │ ├── secure.h │ │ └── zeroafterfree.h │ ├── cleanse.cpp │ ├── cleanse.h │ ├── pagelocker.cpp │ └── pagelocker.h ├── sync.cpp ├── sync.h ├── test │ ├── Checkpoints_tests.cpp │ ├── DoS_tests.cpp │ ├── README.md │ ├── addrman_tests.cpp │ ├── allocator_tests.cpp │ ├── amount_tests.cpp │ ├── arith_uint256_tests.cpp │ ├── base32_tests.cpp │ ├── base58_tests.cpp │ ├── base64_tests.cpp │ ├── bctest.py │ ├── bip32_tests.cpp │ ├── blockencodings_tests.cpp │ ├── bloom_tests.cpp │ ├── blsct_tests.cpp │ ├── blsct_wallet.cpp │ ├── buildenv.py.in │ ├── bulletproofsrangeproof_tests.cpp │ ├── cfund_tests.cpp │ ├── cfunddb_tests.cpp │ ├── coins_tests.cpp │ ├── compress_tests.cpp │ ├── crypto_tests.cpp │ ├── data │ │ ├── README.md │ │ ├── base58_encode_decode.json │ │ ├── base58_keys_invalid.json │ │ ├── base58_keys_valid.json │ │ ├── blanktx.hex │ │ ├── navcoin-util-test.json │ │ ├── script_tests.json │ │ ├── sighash.json │ │ ├── tt-delin1-out.hex │ │ ├── tt-delout1-out.hex │ │ ├── tt-locktime317000-out.hex │ │ ├── tx394b54bb.hex │ │ ├── tx_invalid.json │ │ ├── tx_valid.json │ │ ├── txcreate1.hex │ │ ├── txcreate2.hex │ │ ├── txcreatedata1.hex │ │ ├── txcreatedata2.hex │ │ ├── txcreatedata_seq0.hex │ │ ├── txcreatedata_seq1.hex │ │ └── txcreatesign.hex │ ├── dbwrapper_tests.cpp │ ├── getarg_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 │ ├── navcoin-util-test.py │ ├── net_tests.cpp │ ├── netbase_tests.cpp │ ├── pmt_tests.cpp │ ├── policyestimator_tests.cpp │ ├── pow_tests.cpp │ ├── prevector_tests.cpp │ ├── reverselock_tests.cpp │ ├── rpc_tests.cpp │ ├── sanity_tests.cpp │ ├── scheduler_tests.cpp │ ├── script_P2PKH_tests.cpp │ ├── script_P2SH_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 │ ├── test_navcoin.cpp │ ├── test_navcoin.h │ ├── testutil.cpp │ ├── testutil.h │ ├── timedata_tests.cpp │ ├── transaction_tests.cpp │ ├── txvalidationcache_tests.cpp │ ├── uint256_tests.cpp │ ├── univalue_tests.cpp │ ├── util_tests.cpp │ └── versionbits_tests.cpp ├── threadsafety.h ├── timedata.cpp ├── timedata.h ├── timestampindex.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.md │ ├── TODO │ ├── autogen.sh │ ├── build-aux │ │ └── m4 │ │ │ └── .gitignore │ ├── configure.ac │ ├── gen │ │ └── gen.cpp │ ├── include │ │ └── univalue.h │ ├── lib │ │ ├── .gitignore │ │ ├── univalue.cpp │ │ ├── univalue_escapes.h │ │ ├── univalue_get.cpp │ │ ├── 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 │ │ ├── fail42.json │ │ ├── fail44.json │ │ ├── fail45.json │ │ ├── fail5.json │ │ ├── fail6.json │ │ ├── fail7.json │ │ ├── fail8.json │ │ ├── fail9.json │ │ ├── no_nul.cpp │ │ ├── object.cpp │ │ ├── pass1.json │ │ ├── pass2.json │ │ ├── pass3.json │ │ ├── pass4.json │ │ ├── round1.json │ │ ├── round2.json │ │ ├── round3.json │ │ ├── round4.json │ │ ├── round5.json │ │ ├── round6.json │ │ ├── round7.json │ │ ├── test_json.cpp │ │ └── unitester.cpp ├── untar.cpp ├── untar.h ├── util.cpp ├── util.h ├── utilmoneystr.cpp ├── utilmoneystr.h ├── utils │ ├── dns_utils.cpp │ └── dns_utils.h ├── utilstrencodings.cpp ├── utilstrencodings.h ├── utiltime.cpp ├── utiltime.h ├── validationinterface.cpp ├── validationinterface.h ├── version.h ├── versionbits.cpp ├── versionbits.h ├── wallet │ ├── crypter.cpp │ ├── crypter.h │ ├── db.cpp │ ├── db.h │ ├── rpcdump.cpp │ ├── rpcwallet.cpp │ ├── rpcwallet.h │ ├── test │ │ ├── accounting_tests.cpp │ │ ├── crypto_tests.cpp │ │ ├── rpc_wallet_tests.cpp │ │ ├── wallet_test_fixture.cpp │ │ ├── wallet_test_fixture.h │ │ └── wallet_tests.cpp │ ├── wallet.cpp │ ├── wallet.h │ ├── walletdb.cpp │ └── walletdb.h └── zmq │ ├── zmqabstractnotifier.cpp │ ├── zmqabstractnotifier.h │ ├── zmqconfig.h │ ├── zmqnotificationinterface.cpp │ ├── zmqnotificationinterface.h │ ├── zmqpublishnotifier.cpp │ └── zmqpublishnotifier.h └── test ├── README.md ├── pull-tester ├── rpc-tests.py ├── run-navcoind-for-test.sh.in └── tests_config.py.in └── rpc-tests ├── .gitignore ├── README.md ├── abandonconflict.py ├── addressindex.py ├── bip65-cltv-p2p.py ├── bip65-cltv.py ├── bip68-112-113-p2p.py ├── bip68-sequence.py ├── bip9-softforks.py ├── bipdersig-p2p.py ├── bipdersig.py ├── blockchain.py ├── cfund-donate.py ├── cfund-fork-reorg-preq.py ├── cfund-fork-reorg-proposal.py ├── cfund-listproposals.py ├── cfund-paymentrequest-duplicate.py ├── cfund-paymentrequest-extract-funds.py ├── cfund-paymentrequest-hardfork-452.py ├── cfund-paymentrequest-payout.py ├── cfund-paymentrequest-state-accept-expired-proposal.py ├── cfund-paymentrequest-state-accept.py ├── cfund-paymentrequest-state-expired.py ├── cfund-paymentrequest-state-reorg.py ├── cfund-paymentrequestvotelist.py ├── cfund-proposal-state-accept.py ├── cfund-proposal-state-expired.py ├── cfund-proposalvotelist.py ├── cfund-rawtx-create-proposal.py ├── cfund-rawtx-paymentrequest-create.py ├── cfund-rawtx-paymentrequest-vote.py ├── cfund-rawtx-proposal-vote.py ├── cfund-reorg.py ├── cfund-vote.py ├── cfunddb-statehash.py ├── coldstaking_fee.py ├── coldstaking_spending.py ├── coldstaking_staking.py ├── create_cache.py ├── createrawscriptaddress.py ├── dao-consultation-consensus-cycle-length.py ├── dao-consultation-consensus.py ├── dao-consultations-staking.py ├── dao-consultations-with-answers-staking.py ├── dao-consultations.py ├── dao-light-voting-cfund.py ├── dao-light-voting-consultations.py ├── dao-light-voting-range-consultations.py ├── dao-state-consistency-staking.py ├── dao ├── 001-proposal-expired.py ├── 002-proposal-rejected.py ├── 003-proposal-accepted.py ├── 004-proposal-expired-preq.py ├── 005-proposal-rejected-preq.py ├── 006-proposal-accepted-preq.py ├── __init__.py ├── given │ ├── __init__.py │ ├── iHaveARejectedProposal.py │ ├── iHaveActivatedTheCFund.py │ ├── iHaveAnAcceptedProposal.py │ ├── iHaveAnExpiredProposal.py │ ├── iHaveCreatedANewAddress.py │ ├── iHaveCreatedAProposal.py │ ├── iHaveDonatedToTheCFund.py │ └── iHaveVotedOnTheProposal.py ├── test-plan.md ├── then │ ├── __init__.py │ ├── theProposalShouldBeAccepted.py │ ├── theProposalShouldBeExpired.py │ ├── theProposalShouldBeRejected.py │ └── theProposalShouldHavePaymentRequests.py └── when │ ├── __init__.py │ ├── iSubmitAPaymentRequest.py │ └── theVotingCycleEnds.py ├── decodescript.py ├── disablewallet.py ├── forknotify.py ├── fundrawtransaction.py ├── getblocktemplate_longpoll.py ├── getblocktemplate_proposals.py ├── getchaintips.py ├── getcoldstakingaddress.py ├── getstakereport.py ├── getstakinginfo.py ├── hardfork-451.py ├── hardfork-452.py ├── httpbasics.py ├── importaddress.py ├── importprunedfunds.py ├── invalidateblock.py ├── invalidblockrequest.py ├── invalidtxrequest.py ├── keypool.py ├── listtransactions.py ├── maxblocksinflight.py ├── maxuploadtarget.py ├── mempool_limit.py ├── mempool_packages.py ├── mempool_reorg.py ├── mempool_resurrect_test.py ├── mempool_spendcoinbase.py ├── merkle_blocks.py ├── mnemonic.py ├── multi_rpc.py ├── navcoin-nothingatstake.py ├── nodehandling.py ├── p2p-acceptblock.py ├── p2p-dandelion.py ├── p2p-feefilter.py ├── p2p-fullblocktest.py ├── p2p-mempool.py ├── p2p-segwit.py ├── p2p-versionbits-warning.py ├── prioritise_transaction.py ├── proxy_test.py ├── pruning.py ├── rawtransactions.py ├── receivedby.py ├── reindex.py ├── reject-version-bit.py ├── replace-by-fee.py ├── rest.py ├── rpc-help.py ├── rpcbind_test.py ├── segwit.py ├── sendheaders.py ├── sendtoaddress.py ├── signmessages.py ├── signrawtransactions.py ├── smartfees.py ├── spentindex.py ├── stakeimmaturebalance.py ├── staking_mininputvalue.py ├── stakingaddress.py ├── staticr-staking-amount.py ├── staticr-tx-send.py ├── test_framework ├── __init__.py ├── authproxy.py ├── bignum.py ├── blockstore.py ├── blocktools.py ├── cfund_util.py ├── comptool.py ├── coverage.py ├── hardfork_util.py ├── key.py ├── mininode.py ├── netutil.py ├── script.py ├── siphash.py ├── socks5.py ├── staticr_util.py ├── test_framework.py └── util.py ├── timestampindex.py ├── txindex.py ├── txn_clone.py ├── txn_doublespend.py ├── wallet-hd.py ├── wallet.py ├── walletbackup.py ├── zapwallettxes.py └── zmq_test.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | src/clientversion.cpp export-subst 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/.gitmodules -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/.tx/config -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/COPYING -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/README.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/autogen.sh -------------------------------------------------------------------------------- /ci/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/ci/README.md -------------------------------------------------------------------------------- /ci/test_03_before_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/ci/test_03_before_install.sh -------------------------------------------------------------------------------- /ci/test_04_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/ci/test_04_install.sh -------------------------------------------------------------------------------- /ci/test_05_before_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/ci/test_05_before_script.sh -------------------------------------------------------------------------------- /ci/test_06_script_a.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/ci/test_06_script_a.sh -------------------------------------------------------------------------------- /ci/test_06_script_b.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/ci/test_06_script_b.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/configure.ac -------------------------------------------------------------------------------- /contrib/GenesisH0/genesis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/contrib/GenesisH0/genesis.py -------------------------------------------------------------------------------- /contrib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/contrib/README.md -------------------------------------------------------------------------------- /contrib/debian/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/contrib/debian/README.md -------------------------------------------------------------------------------- /contrib/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/contrib/debian/changelog -------------------------------------------------------------------------------- /contrib/debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /contrib/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/contrib/debian/control -------------------------------------------------------------------------------- /contrib/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/contrib/debian/copyright -------------------------------------------------------------------------------- /contrib/debian/gbp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/contrib/debian/gbp.conf -------------------------------------------------------------------------------- /contrib/debian/navcoind.examples: -------------------------------------------------------------------------------- 1 | debian/examples/navcoin.conf 2 | -------------------------------------------------------------------------------- /contrib/debian/patches/series: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /contrib/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/contrib/debian/rules -------------------------------------------------------------------------------- /contrib/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /contrib/debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/contrib/debian/watch -------------------------------------------------------------------------------- /contrib/devtools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/contrib/devtools/README.md -------------------------------------------------------------------------------- /contrib/gitian-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/contrib/gitian-build.sh -------------------------------------------------------------------------------- /contrib/gitian-keys/keys.txt: -------------------------------------------------------------------------------- 1 | 937C662B825E9504 alex v (aguycalled) 2 | -------------------------------------------------------------------------------- /contrib/init/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/contrib/init/README.md -------------------------------------------------------------------------------- /contrib/init/navcoind.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/contrib/init/navcoind.conf -------------------------------------------------------------------------------- /contrib/init/navcoind.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/contrib/init/navcoind.init -------------------------------------------------------------------------------- /contrib/init/navcoind.openrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/contrib/init/navcoind.openrc -------------------------------------------------------------------------------- /contrib/linearize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/contrib/linearize/README.md -------------------------------------------------------------------------------- /contrib/macdeploy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/contrib/macdeploy/LICENSE -------------------------------------------------------------------------------- /contrib/macdeploy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/contrib/macdeploy/README.md -------------------------------------------------------------------------------- /contrib/navcoin-qt.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/contrib/navcoin-qt.pro -------------------------------------------------------------------------------- /contrib/qos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/contrib/qos/README.md -------------------------------------------------------------------------------- /contrib/qos/tc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/contrib/qos/tc.sh -------------------------------------------------------------------------------- /contrib/qt_translations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/contrib/qt_translations.py -------------------------------------------------------------------------------- /contrib/rpm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/contrib/rpm/README.md -------------------------------------------------------------------------------- /contrib/rpm/navcoin.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/contrib/rpm/navcoin.fc -------------------------------------------------------------------------------- /contrib/rpm/navcoin.if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/contrib/rpm/navcoin.if -------------------------------------------------------------------------------- /contrib/rpm/navcoin.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/contrib/rpm/navcoin.spec -------------------------------------------------------------------------------- /contrib/rpm/navcoin.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/contrib/rpm/navcoin.te -------------------------------------------------------------------------------- /contrib/run_with_dots: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/contrib/run_with_dots -------------------------------------------------------------------------------- /contrib/seeds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/contrib/seeds/README.md -------------------------------------------------------------------------------- /contrib/seeds/makeseeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/contrib/seeds/makeseeds.py -------------------------------------------------------------------------------- /contrib/seeds/nodes_dev.txt: -------------------------------------------------------------------------------- 1 | 127.0.0.1 2 | -------------------------------------------------------------------------------- /contrib/seeds/nodes_main.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/contrib/seeds/nodes_main.txt -------------------------------------------------------------------------------- /contrib/seeds/nodes_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/contrib/seeds/nodes_test.txt -------------------------------------------------------------------------------- /contrib/spendfrom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/contrib/spendfrom/README.md -------------------------------------------------------------------------------- /contrib/spendfrom/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/contrib/spendfrom/setup.py -------------------------------------------------------------------------------- /contrib/stressor_dao.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/contrib/stressor_dao.sh -------------------------------------------------------------------------------- /contrib/stressor_dotnav.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/contrib/stressor_dotnav.sh -------------------------------------------------------------------------------- /contrib/stressor_token.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/contrib/stressor_token.sh -------------------------------------------------------------------------------- /contrib/testgen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/contrib/testgen/README.md -------------------------------------------------------------------------------- /contrib/testgen/base58.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/contrib/testgen/base58.py -------------------------------------------------------------------------------- /contrib/tidy_datadir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/contrib/tidy_datadir.sh -------------------------------------------------------------------------------- /contrib/verify-commits/allow-revsig-commits: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/verify-commits/trusted-git-root: -------------------------------------------------------------------------------- 1 | 82bcf405f6db1d55b684a1f63a4aabad376cdad7 2 | -------------------------------------------------------------------------------- /contrib/zmq/zmq_sub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/contrib/zmq/zmq_sub.py -------------------------------------------------------------------------------- /depends/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/depends/.gitignore -------------------------------------------------------------------------------- /depends/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/depends/Makefile -------------------------------------------------------------------------------- /depends/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/depends/README.md -------------------------------------------------------------------------------- /depends/builders/darwin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/depends/builders/darwin.mk -------------------------------------------------------------------------------- /depends/builders/default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/depends/builders/default.mk -------------------------------------------------------------------------------- /depends/builders/linux.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/depends/builders/linux.mk -------------------------------------------------------------------------------- /depends/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/depends/config.guess -------------------------------------------------------------------------------- /depends/config.site.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/depends/config.site.in -------------------------------------------------------------------------------- /depends/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/depends/config.sub -------------------------------------------------------------------------------- /depends/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/depends/description.md -------------------------------------------------------------------------------- /depends/funcs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/depends/funcs.mk -------------------------------------------------------------------------------- /depends/gen_id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/depends/gen_id -------------------------------------------------------------------------------- /depends/hosts/android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/depends/hosts/android.mk -------------------------------------------------------------------------------- /depends/hosts/darwin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/depends/hosts/darwin.mk -------------------------------------------------------------------------------- /depends/hosts/default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/depends/hosts/default.mk -------------------------------------------------------------------------------- /depends/hosts/linux.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/depends/hosts/linux.mk -------------------------------------------------------------------------------- /depends/hosts/mingw32.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/depends/hosts/mingw32.mk -------------------------------------------------------------------------------- /depends/packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/depends/packages.md -------------------------------------------------------------------------------- /depends/packages/bdb.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/depends/packages/bdb.mk -------------------------------------------------------------------------------- /depends/packages/boost.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/depends/packages/boost.mk -------------------------------------------------------------------------------- /depends/packages/curl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/depends/packages/curl.mk -------------------------------------------------------------------------------- /depends/packages/expat.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/depends/packages/expat.mk -------------------------------------------------------------------------------- /depends/packages/freetype.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/depends/packages/freetype.mk -------------------------------------------------------------------------------- /depends/packages/gmp.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/depends/packages/gmp.mk -------------------------------------------------------------------------------- /depends/packages/libICE.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/depends/packages/libICE.mk -------------------------------------------------------------------------------- /depends/packages/libSM.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/depends/packages/libSM.mk -------------------------------------------------------------------------------- /depends/packages/libXau.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/depends/packages/libXau.mk -------------------------------------------------------------------------------- /depends/packages/libcap.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/depends/packages/libcap.mk -------------------------------------------------------------------------------- /depends/packages/libevent.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/depends/packages/libevent.mk -------------------------------------------------------------------------------- /depends/packages/libxcb.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/depends/packages/libxcb.mk -------------------------------------------------------------------------------- /depends/packages/openssl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/depends/packages/openssl.mk -------------------------------------------------------------------------------- /depends/packages/packages.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/depends/packages/packages.mk -------------------------------------------------------------------------------- /depends/packages/qrencode.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/depends/packages/qrencode.mk -------------------------------------------------------------------------------- /depends/packages/qt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/depends/packages/qt.mk -------------------------------------------------------------------------------- /depends/packages/sodium.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/depends/packages/sodium.mk -------------------------------------------------------------------------------- /depends/packages/sqlite.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/depends/packages/sqlite.mk -------------------------------------------------------------------------------- /depends/packages/unbound.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/depends/packages/unbound.mk -------------------------------------------------------------------------------- /depends/packages/xproto.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/depends/packages/xproto.mk -------------------------------------------------------------------------------- /depends/packages/xtrans.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/depends/packages/xtrans.mk -------------------------------------------------------------------------------- /depends/packages/zeromq.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/depends/packages/zeromq.mk -------------------------------------------------------------------------------- /depends/packages/zlib.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/depends/packages/zlib.mk -------------------------------------------------------------------------------- /depends/patches/qt/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/depends/patches/qt/configure -------------------------------------------------------------------------------- /depends/patches/qt/qt.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/depends/patches/qt/qt.pro -------------------------------------------------------------------------------- /doc/Creating_an_OSX_DMG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/doc/Creating_an_OSX_DMG.md -------------------------------------------------------------------------------- /doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/doc/Doxyfile -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/README_osx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/doc/README_osx.md -------------------------------------------------------------------------------- /doc/README_windows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/doc/README_windows.txt -------------------------------------------------------------------------------- /doc/REST-interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/doc/REST-interface.md -------------------------------------------------------------------------------- /doc/assets-attribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/doc/assets-attribution.md -------------------------------------------------------------------------------- /doc/benchmarking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/doc/benchmarking.md -------------------------------------------------------------------------------- /doc/bips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/doc/bips.md -------------------------------------------------------------------------------- /doc/build-openbsd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/doc/build-openbsd.md -------------------------------------------------------------------------------- /doc/build-osx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/doc/build-osx.md -------------------------------------------------------------------------------- /doc/build-unix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/doc/build-unix.md -------------------------------------------------------------------------------- /doc/build-windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/doc/build-windows.md -------------------------------------------------------------------------------- /doc/developer-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/doc/developer-notes.md -------------------------------------------------------------------------------- /doc/dnsseed-policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/doc/dnsseed-policy.md -------------------------------------------------------------------------------- /doc/files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/doc/files.md -------------------------------------------------------------------------------- /doc/gitian-building.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/doc/gitian-building.md -------------------------------------------------------------------------------- /doc/init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/doc/init.md -------------------------------------------------------------------------------- /doc/multiwallet-qt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/doc/multiwallet-qt.md -------------------------------------------------------------------------------- /doc/navcoin_logo_doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/doc/navcoin_logo_doxygen.png -------------------------------------------------------------------------------- /doc/npips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/doc/npips.md -------------------------------------------------------------------------------- /doc/reduce-traffic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/doc/reduce-traffic.md -------------------------------------------------------------------------------- /doc/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/doc/release-notes.md -------------------------------------------------------------------------------- /doc/release-process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/doc/release-process.md -------------------------------------------------------------------------------- /doc/shared-libraries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/doc/shared-libraries.md -------------------------------------------------------------------------------- /doc/tor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/doc/tor.md -------------------------------------------------------------------------------- /doc/translation_process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/doc/translation_process.md -------------------------------------------------------------------------------- /doc/travis-ci.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/doc/travis-ci.txt -------------------------------------------------------------------------------- /doc/unit-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/doc/unit-tests.md -------------------------------------------------------------------------------- /doc/zmq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/doc/zmq.md -------------------------------------------------------------------------------- /img/logo-extended.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/img/logo-extended.png -------------------------------------------------------------------------------- /libnavcoinconsensus.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/libnavcoinconsensus.pc.in -------------------------------------------------------------------------------- /share/genbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/share/genbuild.sh -------------------------------------------------------------------------------- /share/pixmaps/navcoin.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/share/pixmaps/navcoin.ico -------------------------------------------------------------------------------- /share/pixmaps/navcoin128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/share/pixmaps/navcoin128.png -------------------------------------------------------------------------------- /share/pixmaps/navcoin128.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/share/pixmaps/navcoin128.xpm -------------------------------------------------------------------------------- /share/pixmaps/navcoin16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/share/pixmaps/navcoin16.png -------------------------------------------------------------------------------- /share/pixmaps/navcoin16.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/share/pixmaps/navcoin16.xpm -------------------------------------------------------------------------------- /share/pixmaps/navcoin256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/share/pixmaps/navcoin256.png -------------------------------------------------------------------------------- /share/pixmaps/navcoin256.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/share/pixmaps/navcoin256.xpm -------------------------------------------------------------------------------- /share/pixmaps/navcoin32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/share/pixmaps/navcoin32.png -------------------------------------------------------------------------------- /share/pixmaps/navcoin32.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/share/pixmaps/navcoin32.xpm -------------------------------------------------------------------------------- /share/pixmaps/navcoin64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/share/pixmaps/navcoin64.png -------------------------------------------------------------------------------- /share/pixmaps/navcoin64.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/share/pixmaps/navcoin64.xpm -------------------------------------------------------------------------------- /share/qt/Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/share/qt/Info.plist.in -------------------------------------------------------------------------------- /share/rpcuser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/share/rpcuser/README.md -------------------------------------------------------------------------------- /share/rpcuser/rpcuser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/share/rpcuser/rpcuser.py -------------------------------------------------------------------------------- /share/setup.nsi.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/share/setup.nsi.in -------------------------------------------------------------------------------- /src/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/.clang-format -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/Makefile.bench.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/Makefile.bench.include -------------------------------------------------------------------------------- /src/Makefile.crc32c.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/Makefile.crc32c.include -------------------------------------------------------------------------------- /src/Makefile.leveldb.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/Makefile.leveldb.include -------------------------------------------------------------------------------- /src/Makefile.qt.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/Makefile.qt.include -------------------------------------------------------------------------------- /src/Makefile.qttest.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/Makefile.qttest.include -------------------------------------------------------------------------------- /src/Makefile.test.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/Makefile.test.include -------------------------------------------------------------------------------- /src/addressindex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/addressindex.h -------------------------------------------------------------------------------- /src/addrman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/addrman.cpp -------------------------------------------------------------------------------- /src/addrman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/addrman.h -------------------------------------------------------------------------------- /src/aes_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/aes_helper.c -------------------------------------------------------------------------------- /src/amount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/amount.cpp -------------------------------------------------------------------------------- /src/amount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/amount.h -------------------------------------------------------------------------------- /src/arith_uint256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/arith_uint256.cpp -------------------------------------------------------------------------------- /src/arith_uint256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/arith_uint256.h -------------------------------------------------------------------------------- /src/base58.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/base58.cpp -------------------------------------------------------------------------------- /src/base58.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/base58.h -------------------------------------------------------------------------------- /src/bench/.gitignore: -------------------------------------------------------------------------------- 1 | bench_navcoin 2 | -------------------------------------------------------------------------------- /src/bench/Examples.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/bench/Examples.cpp -------------------------------------------------------------------------------- /src/bench/base58.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/bench/base58.cpp -------------------------------------------------------------------------------- /src/bench/bench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/bench/bench.cpp -------------------------------------------------------------------------------- /src/bench/bench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/bench/bench.h -------------------------------------------------------------------------------- /src/bench/bench_navcoin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/bench/bench_navcoin.cpp -------------------------------------------------------------------------------- /src/bench/crypto_hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/bench/crypto_hash.cpp -------------------------------------------------------------------------------- /src/bench/rollingbloom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/bench/rollingbloom.cpp -------------------------------------------------------------------------------- /src/blake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/blake.c -------------------------------------------------------------------------------- /src/blockencodings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/blockencodings.cpp -------------------------------------------------------------------------------- /src/blockencodings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/blockencodings.h -------------------------------------------------------------------------------- /src/bloom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/bloom.cpp -------------------------------------------------------------------------------- /src/bloom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/bloom.h -------------------------------------------------------------------------------- /src/bls/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/bls/.clang-format -------------------------------------------------------------------------------- /src/bls/.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/bls/.flake8 -------------------------------------------------------------------------------- /src/bls/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/bls/.gitignore -------------------------------------------------------------------------------- /src/bls/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/bls/.gitmodules -------------------------------------------------------------------------------- /src/bls/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/bls/CMakeLists.txt -------------------------------------------------------------------------------- /src/bls/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/bls/LICENSE -------------------------------------------------------------------------------- /src/bls/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/bls/MANIFEST.in -------------------------------------------------------------------------------- /src/bls/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/bls/README.md -------------------------------------------------------------------------------- /src/bls/build/.empty: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/bls/js_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/bls/js_build.sh -------------------------------------------------------------------------------- /src/bls/lgtm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/bls/lgtm.yml -------------------------------------------------------------------------------- /src/bls/mypi.ini: -------------------------------------------------------------------------------- 1 | [mypy] 2 | ignore_missing_imports = True 3 | -------------------------------------------------------------------------------- /src/bls/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/bls/pyproject.toml -------------------------------------------------------------------------------- /src/bls/python-impl/ec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/bls/python-impl/ec.py -------------------------------------------------------------------------------- /src/bls/python-impl/hkdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/bls/python-impl/hkdf.py -------------------------------------------------------------------------------- /src/bls/python-impl/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/bls/python-impl/util.py -------------------------------------------------------------------------------- /src/bls/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/bls/setup.py -------------------------------------------------------------------------------- /src/bls/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/bls/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/bls/src/bls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/bls/src/bls.cpp -------------------------------------------------------------------------------- /src/bls/src/bls.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/bls/src/bls.hpp -------------------------------------------------------------------------------- /src/bls/src/elements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/bls/src/elements.cpp -------------------------------------------------------------------------------- /src/bls/src/elements.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/bls/src/elements.hpp -------------------------------------------------------------------------------- /src/bls/src/hdkeys.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/bls/src/hdkeys.hpp -------------------------------------------------------------------------------- /src/bls/src/hkdf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/bls/src/hkdf.hpp -------------------------------------------------------------------------------- /src/bls/src/privatekey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/bls/src/privatekey.cpp -------------------------------------------------------------------------------- /src/bls/src/privatekey.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/bls/src/privatekey.hpp -------------------------------------------------------------------------------- /src/bls/src/schemes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/bls/src/schemes.cpp -------------------------------------------------------------------------------- /src/bls/src/schemes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/bls/src/schemes.hpp -------------------------------------------------------------------------------- /src/bls/src/test-bench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/bls/src/test-bench.cpp -------------------------------------------------------------------------------- /src/bls/src/test-utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/bls/src/test-utils.hpp -------------------------------------------------------------------------------- /src/bls/src/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/bls/src/test.cpp -------------------------------------------------------------------------------- /src/bls/src/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/bls/src/util.hpp -------------------------------------------------------------------------------- /src/blsct/bulletproofs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/blsct/bulletproofs.cpp -------------------------------------------------------------------------------- /src/blsct/bulletproofs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/blsct/bulletproofs.h -------------------------------------------------------------------------------- /src/blsct/ephemeralserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/blsct/ephemeralserver.h -------------------------------------------------------------------------------- /src/blsct/key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/blsct/key.h -------------------------------------------------------------------------------- /src/blsct/p2pmessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/blsct/p2pmessage.cpp -------------------------------------------------------------------------------- /src/blsct/rpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/blsct/rpc.cpp -------------------------------------------------------------------------------- /src/blsct/rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/blsct/rpc.h -------------------------------------------------------------------------------- /src/blsct/scalar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/blsct/scalar.cpp -------------------------------------------------------------------------------- /src/blsct/scalar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/blsct/scalar.h -------------------------------------------------------------------------------- /src/blsct/transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/blsct/transaction.cpp -------------------------------------------------------------------------------- /src/blsct/transaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/blsct/transaction.h -------------------------------------------------------------------------------- /src/blsct/types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/blsct/types.cpp -------------------------------------------------------------------------------- /src/blsct/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/blsct/types.h -------------------------------------------------------------------------------- /src/blsct/verification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/blsct/verification.cpp -------------------------------------------------------------------------------- /src/blsct/verification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/blsct/verification.h -------------------------------------------------------------------------------- /src/bmw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/bmw.c -------------------------------------------------------------------------------- /src/chain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/chain.cpp -------------------------------------------------------------------------------- /src/chain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/chain.h -------------------------------------------------------------------------------- /src/chainparams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/chainparams.cpp -------------------------------------------------------------------------------- /src/chainparams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/chainparams.h -------------------------------------------------------------------------------- /src/chainparamsbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/chainparamsbase.cpp -------------------------------------------------------------------------------- /src/chainparamsbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/chainparamsbase.h -------------------------------------------------------------------------------- /src/chainparamsseeds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/chainparamsseeds.h -------------------------------------------------------------------------------- /src/checkpoints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/checkpoints.cpp -------------------------------------------------------------------------------- /src/checkpoints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/checkpoints.h -------------------------------------------------------------------------------- /src/checkqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/checkqueue.h -------------------------------------------------------------------------------- /src/clientversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/clientversion.cpp -------------------------------------------------------------------------------- /src/clientversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/clientversion.h -------------------------------------------------------------------------------- /src/coincontrol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/coincontrol.h -------------------------------------------------------------------------------- /src/coins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/coins.cpp -------------------------------------------------------------------------------- /src/coins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/coins.h -------------------------------------------------------------------------------- /src/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/compat.h -------------------------------------------------------------------------------- /src/compat/byteswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/compat/byteswap.h -------------------------------------------------------------------------------- /src/compat/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/compat/endian.h -------------------------------------------------------------------------------- /src/compat/glibc_compat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/compat/glibc_compat.cpp -------------------------------------------------------------------------------- /src/compat/glibc_sanity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/compat/glibc_sanity.cpp -------------------------------------------------------------------------------- /src/compat/sanity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/compat/sanity.h -------------------------------------------------------------------------------- /src/compat/strnlen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/compat/strnlen.cpp -------------------------------------------------------------------------------- /src/compressor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/compressor.cpp -------------------------------------------------------------------------------- /src/compressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/compressor.h -------------------------------------------------------------------------------- /src/config/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/consensus/consensus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/consensus/consensus.h -------------------------------------------------------------------------------- /src/consensus/dao.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/consensus/dao.cpp -------------------------------------------------------------------------------- /src/consensus/dao.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/consensus/dao.h -------------------------------------------------------------------------------- /src/consensus/dao/flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/consensus/dao/flags.h -------------------------------------------------------------------------------- /src/consensus/merkle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/consensus/merkle.cpp -------------------------------------------------------------------------------- /src/consensus/merkle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/consensus/merkle.h -------------------------------------------------------------------------------- /src/consensus/params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/consensus/params.h -------------------------------------------------------------------------------- /src/consensus/programs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/consensus/programs.cpp -------------------------------------------------------------------------------- /src/consensus/programs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/consensus/programs.h -------------------------------------------------------------------------------- /src/consensus/validation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/consensus/validation.h -------------------------------------------------------------------------------- /src/core_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/core_io.h -------------------------------------------------------------------------------- /src/core_memusage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/core_memusage.h -------------------------------------------------------------------------------- /src/core_read.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/core_read.cpp -------------------------------------------------------------------------------- /src/core_write.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/core_write.cpp -------------------------------------------------------------------------------- /src/crc32c/.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/crc32c/.appveyor.yml -------------------------------------------------------------------------------- /src/crc32c/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/crc32c/.clang-format -------------------------------------------------------------------------------- /src/crc32c/.clang_complete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/crc32c/.clang_complete -------------------------------------------------------------------------------- /src/crc32c/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/crc32c/.gitignore -------------------------------------------------------------------------------- /src/crc32c/.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/crc32c/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/crc32c/.travis.yml -------------------------------------------------------------------------------- /src/crc32c/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/crc32c/AUTHORS -------------------------------------------------------------------------------- /src/crc32c/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/crc32c/CMakeLists.txt -------------------------------------------------------------------------------- /src/crc32c/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/crc32c/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/crc32c/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/crc32c/LICENSE -------------------------------------------------------------------------------- /src/crc32c/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/crc32c/README.md -------------------------------------------------------------------------------- /src/crc32c/src/crc32c.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/crc32c/src/crc32c.cc -------------------------------------------------------------------------------- /src/crypto/aes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/crypto/aes.cpp -------------------------------------------------------------------------------- /src/crypto/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/crypto/aes.h -------------------------------------------------------------------------------- /src/crypto/chacha20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/crypto/chacha20.cpp -------------------------------------------------------------------------------- /src/crypto/chacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/crypto/chacha20.h -------------------------------------------------------------------------------- /src/crypto/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/crypto/common.h -------------------------------------------------------------------------------- /src/crypto/ctaes/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/crypto/ctaes/COPYING -------------------------------------------------------------------------------- /src/crypto/ctaes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/crypto/ctaes/README.md -------------------------------------------------------------------------------- /src/crypto/ctaes/bench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/crypto/ctaes/bench.c -------------------------------------------------------------------------------- /src/crypto/ctaes/ctaes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/crypto/ctaes/ctaes.c -------------------------------------------------------------------------------- /src/crypto/ctaes/ctaes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/crypto/ctaes/ctaes.h -------------------------------------------------------------------------------- /src/crypto/ctaes/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/crypto/ctaes/test.c -------------------------------------------------------------------------------- /src/crypto/external/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/crypto/external/sha256.c -------------------------------------------------------------------------------- /src/crypto/external/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/crypto/external/sha256.h -------------------------------------------------------------------------------- /src/crypto/external/sha512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/crypto/external/sha512.c -------------------------------------------------------------------------------- /src/crypto/external/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/crypto/external/sha512.h -------------------------------------------------------------------------------- /src/crypto/hmac_sha256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/crypto/hmac_sha256.cpp -------------------------------------------------------------------------------- /src/crypto/hmac_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/crypto/hmac_sha256.h -------------------------------------------------------------------------------- /src/crypto/hmac_sha512.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/crypto/hmac_sha512.cpp -------------------------------------------------------------------------------- /src/crypto/hmac_sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/crypto/hmac_sha512.h -------------------------------------------------------------------------------- /src/crypto/ripemd160.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/crypto/ripemd160.cpp -------------------------------------------------------------------------------- /src/crypto/ripemd160.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/crypto/ripemd160.h -------------------------------------------------------------------------------- /src/crypto/sha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/crypto/sha1.cpp -------------------------------------------------------------------------------- /src/crypto/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/crypto/sha1.h -------------------------------------------------------------------------------- /src/crypto/sha256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/crypto/sha256.cpp -------------------------------------------------------------------------------- /src/crypto/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/crypto/sha256.h -------------------------------------------------------------------------------- /src/crypto/sha512.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/crypto/sha512.cpp -------------------------------------------------------------------------------- /src/crypto/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/crypto/sha512.h -------------------------------------------------------------------------------- /src/ctokens/ctokens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/ctokens/ctokens.h -------------------------------------------------------------------------------- /src/ctokens/tokenid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/ctokens/tokenid.h -------------------------------------------------------------------------------- /src/ctokens/tokenutxos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/ctokens/tokenutxos.h -------------------------------------------------------------------------------- /src/cubehash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/cubehash.c -------------------------------------------------------------------------------- /src/daoversionbit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/daoversionbit.cpp -------------------------------------------------------------------------------- /src/daoversionbit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/daoversionbit.h -------------------------------------------------------------------------------- /src/dbwrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/dbwrapper.cpp -------------------------------------------------------------------------------- /src/dbwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/dbwrapper.h -------------------------------------------------------------------------------- /src/dotnav/namedata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/dotnav/namedata.h -------------------------------------------------------------------------------- /src/dotnav/namerecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/dotnav/namerecord.h -------------------------------------------------------------------------------- /src/dotnav/names.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/dotnav/names.cpp -------------------------------------------------------------------------------- /src/dotnav/names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/dotnav/names.h -------------------------------------------------------------------------------- /src/echo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/echo.c -------------------------------------------------------------------------------- /src/fs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/fs.cpp -------------------------------------------------------------------------------- /src/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/fs.h -------------------------------------------------------------------------------- /src/fugue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/fugue.c -------------------------------------------------------------------------------- /src/groestl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/groestl.c -------------------------------------------------------------------------------- /src/hamsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/hamsi.c -------------------------------------------------------------------------------- /src/hamsi_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/hamsi_helper.c -------------------------------------------------------------------------------- /src/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/hash.cpp -------------------------------------------------------------------------------- /src/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/hash.h -------------------------------------------------------------------------------- /src/hashblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/hashblock.h -------------------------------------------------------------------------------- /src/httprpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/httprpc.cpp -------------------------------------------------------------------------------- /src/httprpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/httprpc.h -------------------------------------------------------------------------------- /src/httpserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/httpserver.cpp -------------------------------------------------------------------------------- /src/httpserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/httpserver.h -------------------------------------------------------------------------------- /src/icons/navcoin.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/icons/navcoin.ico -------------------------------------------------------------------------------- /src/indirectmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/indirectmap.h -------------------------------------------------------------------------------- /src/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/init.cpp -------------------------------------------------------------------------------- /src/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/init.h -------------------------------------------------------------------------------- /src/jh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/jh.c -------------------------------------------------------------------------------- /src/keccak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/keccak.c -------------------------------------------------------------------------------- /src/kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/kernel.cpp -------------------------------------------------------------------------------- /src/kernel.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/key.cpp -------------------------------------------------------------------------------- /src/key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/key.h -------------------------------------------------------------------------------- /src/key_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/key_io.cpp -------------------------------------------------------------------------------- /src/key_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/key_io.h -------------------------------------------------------------------------------- /src/keystore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/keystore.cpp -------------------------------------------------------------------------------- /src/keystore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/keystore.h -------------------------------------------------------------------------------- /src/leveldb/.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/.appveyor.yml -------------------------------------------------------------------------------- /src/leveldb/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/.clang-format -------------------------------------------------------------------------------- /src/leveldb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/.gitignore -------------------------------------------------------------------------------- /src/leveldb/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/.travis.yml -------------------------------------------------------------------------------- /src/leveldb/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/AUTHORS -------------------------------------------------------------------------------- /src/leveldb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/CMakeLists.txt -------------------------------------------------------------------------------- /src/leveldb/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/leveldb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/LICENSE -------------------------------------------------------------------------------- /src/leveldb/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/NEWS -------------------------------------------------------------------------------- /src/leveldb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/README.md -------------------------------------------------------------------------------- /src/leveldb/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/TODO -------------------------------------------------------------------------------- /src/leveldb/cmake/leveldbConfig.cmake: -------------------------------------------------------------------------------- 1 | include("${CMAKE_CURRENT_LIST_DIR}/leveldbTargets.cmake") 2 | -------------------------------------------------------------------------------- /src/leveldb/db/builder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/db/builder.cc -------------------------------------------------------------------------------- /src/leveldb/db/builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/db/builder.h -------------------------------------------------------------------------------- /src/leveldb/db/c.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/db/c.cc -------------------------------------------------------------------------------- /src/leveldb/db/c_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/db/c_test.c -------------------------------------------------------------------------------- /src/leveldb/db/db_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/db/db_impl.cc -------------------------------------------------------------------------------- /src/leveldb/db/db_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/db/db_impl.h -------------------------------------------------------------------------------- /src/leveldb/db/db_iter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/db/db_iter.cc -------------------------------------------------------------------------------- /src/leveldb/db/db_iter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/db/db_iter.h -------------------------------------------------------------------------------- /src/leveldb/db/db_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/db/db_test.cc -------------------------------------------------------------------------------- /src/leveldb/db/dbformat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/db/dbformat.cc -------------------------------------------------------------------------------- /src/leveldb/db/dbformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/db/dbformat.h -------------------------------------------------------------------------------- /src/leveldb/db/dumpfile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/db/dumpfile.cc -------------------------------------------------------------------------------- /src/leveldb/db/filename.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/db/filename.cc -------------------------------------------------------------------------------- /src/leveldb/db/filename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/db/filename.h -------------------------------------------------------------------------------- /src/leveldb/db/log_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/db/log_format.h -------------------------------------------------------------------------------- /src/leveldb/db/log_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/db/log_reader.cc -------------------------------------------------------------------------------- /src/leveldb/db/log_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/db/log_reader.h -------------------------------------------------------------------------------- /src/leveldb/db/log_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/db/log_test.cc -------------------------------------------------------------------------------- /src/leveldb/db/log_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/db/log_writer.cc -------------------------------------------------------------------------------- /src/leveldb/db/log_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/db/log_writer.h -------------------------------------------------------------------------------- /src/leveldb/db/memtable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/db/memtable.cc -------------------------------------------------------------------------------- /src/leveldb/db/memtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/db/memtable.h -------------------------------------------------------------------------------- /src/leveldb/db/repair.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/db/repair.cc -------------------------------------------------------------------------------- /src/leveldb/db/skiplist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/db/skiplist.h -------------------------------------------------------------------------------- /src/leveldb/db/snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/db/snapshot.h -------------------------------------------------------------------------------- /src/leveldb/db/table_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/db/table_cache.h -------------------------------------------------------------------------------- /src/leveldb/db/version_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/db/version_set.h -------------------------------------------------------------------------------- /src/leveldb/doc/impl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/doc/impl.md -------------------------------------------------------------------------------- /src/leveldb/doc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/doc/index.md -------------------------------------------------------------------------------- /src/leveldb/port/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/port/README.md -------------------------------------------------------------------------------- /src/leveldb/port/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/port/port.h -------------------------------------------------------------------------------- /src/leveldb/table/block.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/table/block.cc -------------------------------------------------------------------------------- /src/leveldb/table/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/table/block.h -------------------------------------------------------------------------------- /src/leveldb/table/format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/table/format.cc -------------------------------------------------------------------------------- /src/leveldb/table/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/table/format.h -------------------------------------------------------------------------------- /src/leveldb/table/merger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/table/merger.cc -------------------------------------------------------------------------------- /src/leveldb/table/merger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/table/merger.h -------------------------------------------------------------------------------- /src/leveldb/table/table.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/table/table.cc -------------------------------------------------------------------------------- /src/leveldb/util/arena.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/util/arena.cc -------------------------------------------------------------------------------- /src/leveldb/util/arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/util/arena.h -------------------------------------------------------------------------------- /src/leveldb/util/bloom.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/util/bloom.cc -------------------------------------------------------------------------------- /src/leveldb/util/cache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/util/cache.cc -------------------------------------------------------------------------------- /src/leveldb/util/coding.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/util/coding.cc -------------------------------------------------------------------------------- /src/leveldb/util/coding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/util/coding.h -------------------------------------------------------------------------------- /src/leveldb/util/crc32c.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/util/crc32c.cc -------------------------------------------------------------------------------- /src/leveldb/util/crc32c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/util/crc32c.h -------------------------------------------------------------------------------- /src/leveldb/util/env.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/util/env.cc -------------------------------------------------------------------------------- /src/leveldb/util/env_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/util/env_test.cc -------------------------------------------------------------------------------- /src/leveldb/util/hash.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/util/hash.cc -------------------------------------------------------------------------------- /src/leveldb/util/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/util/hash.h -------------------------------------------------------------------------------- /src/leveldb/util/histogram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/util/histogram.h -------------------------------------------------------------------------------- /src/leveldb/util/logging.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/util/logging.cc -------------------------------------------------------------------------------- /src/leveldb/util/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/util/logging.h -------------------------------------------------------------------------------- /src/leveldb/util/mutexlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/util/mutexlock.h -------------------------------------------------------------------------------- /src/leveldb/util/options.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/util/options.cc -------------------------------------------------------------------------------- /src/leveldb/util/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/util/random.h -------------------------------------------------------------------------------- /src/leveldb/util/status.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/util/status.cc -------------------------------------------------------------------------------- /src/leveldb/util/testutil.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/util/testutil.cc -------------------------------------------------------------------------------- /src/leveldb/util/testutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/leveldb/util/testutil.h -------------------------------------------------------------------------------- /src/limitedmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/limitedmap.h -------------------------------------------------------------------------------- /src/luffa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/luffa.c -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/main.h -------------------------------------------------------------------------------- /src/mcl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/.gitignore -------------------------------------------------------------------------------- /src/mcl/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/.travis.yml -------------------------------------------------------------------------------- /src/mcl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/CMakeLists.txt -------------------------------------------------------------------------------- /src/mcl/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/COPYRIGHT -------------------------------------------------------------------------------- /src/mcl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/Makefile -------------------------------------------------------------------------------- /src/mcl/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/api.md -------------------------------------------------------------------------------- /src/mcl/bench.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/bench.txt -------------------------------------------------------------------------------- /src/mcl/bin/.emptydir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mcl/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/build.sh -------------------------------------------------------------------------------- /src/mcl/build/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mcl/cmake/FindGMP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/cmake/FindGMP.cmake -------------------------------------------------------------------------------- /src/mcl/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/common.mk -------------------------------------------------------------------------------- /src/mcl/common.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/common.props -------------------------------------------------------------------------------- /src/mcl/debug.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/debug.props -------------------------------------------------------------------------------- /src/mcl/ffi/cs/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/ffi/cs/App.config -------------------------------------------------------------------------------- /src/mcl/ffi/cs/bn256.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/ffi/cs/bn256.cs -------------------------------------------------------------------------------- /src/mcl/ffi/cs/bn256.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/ffi/cs/bn256.csproj -------------------------------------------------------------------------------- /src/mcl/ffi/cs/bn256.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/ffi/cs/bn256.sln -------------------------------------------------------------------------------- /src/mcl/ffi/cs/bn256_test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/ffi/cs/bn256_test.cs -------------------------------------------------------------------------------- /src/mcl/ffi/cs/mcl.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/ffi/cs/mcl.sln -------------------------------------------------------------------------------- /src/mcl/ffi/cs/mcl/mcl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/ffi/cs/mcl/mcl.cs -------------------------------------------------------------------------------- /src/mcl/ffi/cs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/ffi/cs/readme.md -------------------------------------------------------------------------------- /src/mcl/ffi/cs/test/test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/ffi/cs/test/test.cs -------------------------------------------------------------------------------- /src/mcl/ffi/go/mcl/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/ffi/go/mcl/init.go -------------------------------------------------------------------------------- /src/mcl/ffi/go/mcl/mcl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/ffi/go/mcl/mcl.go -------------------------------------------------------------------------------- /src/mcl/ffi/java/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/ffi/java/Makefile -------------------------------------------------------------------------------- /src/mcl/ffi/java/elgamal.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/ffi/java/elgamal.i -------------------------------------------------------------------------------- /src/mcl/ffi/java/java.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/ffi/java/java.md -------------------------------------------------------------------------------- /src/mcl/ffi/java/mcl.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/ffi/java/mcl.i -------------------------------------------------------------------------------- /src/mcl/ffi/java/run-mcl.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/ffi/java/run-mcl.bat -------------------------------------------------------------------------------- /src/mcl/ffi/js/pre-mcl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/ffi/js/pre-mcl.js -------------------------------------------------------------------------------- /src/mcl/ffi/python/she.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/ffi/python/she.py -------------------------------------------------------------------------------- /src/mcl/include/mcl/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/include/mcl/bn.h -------------------------------------------------------------------------------- /src/mcl/include/mcl/bn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/include/mcl/bn.hpp -------------------------------------------------------------------------------- /src/mcl/include/mcl/ec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/include/mcl/ec.hpp -------------------------------------------------------------------------------- /src/mcl/include/mcl/fp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/include/mcl/fp.hpp -------------------------------------------------------------------------------- /src/mcl/include/mcl/op.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/include/mcl/op.hpp -------------------------------------------------------------------------------- /src/mcl/include/mcl/she.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/include/mcl/she.h -------------------------------------------------------------------------------- /src/mcl/lib/.emptydir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mcl/mcl.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/mcl.sln -------------------------------------------------------------------------------- /src/mcl/misc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/misc/Makefile -------------------------------------------------------------------------------- /src/mcl/misc/bench.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/misc/bench.txt -------------------------------------------------------------------------------- /src/mcl/misc/karatsuba.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/misc/karatsuba.cpp -------------------------------------------------------------------------------- /src/mcl/misc/low_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/misc/low_test.cpp -------------------------------------------------------------------------------- /src/mcl/misc/mul.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/misc/mul.cpp -------------------------------------------------------------------------------- /src/mcl/misc/she/bench.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/misc/she/bench.sh -------------------------------------------------------------------------------- /src/mcl/misc/she/memo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/misc/she/memo.txt -------------------------------------------------------------------------------- /src/mcl/misc/she/nizkp.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/misc/she/nizkp.pdf -------------------------------------------------------------------------------- /src/mcl/misc/she/she.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/misc/she/she.pdf -------------------------------------------------------------------------------- /src/mcl/mk.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/mk.bat -------------------------------------------------------------------------------- /src/mcl/mklib.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/mklib.bat -------------------------------------------------------------------------------- /src/mcl/obj/.emptydir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mcl/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/readme.md -------------------------------------------------------------------------------- /src/mcl/release.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/release.props -------------------------------------------------------------------------------- /src/mcl/sample/bench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/sample/bench.cpp -------------------------------------------------------------------------------- /src/mcl/sample/bls_sig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/sample/bls_sig.cpp -------------------------------------------------------------------------------- /src/mcl/sample/ecdh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/sample/ecdh.cpp -------------------------------------------------------------------------------- /src/mcl/sample/large.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/sample/large.cpp -------------------------------------------------------------------------------- /src/mcl/sample/multi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/sample/multi.cpp -------------------------------------------------------------------------------- /src/mcl/sample/pairing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/sample/pairing.cpp -------------------------------------------------------------------------------- /src/mcl/sample/pairing_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/sample/pairing_c.c -------------------------------------------------------------------------------- /src/mcl/sample/random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/sample/random.cpp -------------------------------------------------------------------------------- /src/mcl/sample/tri-dh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/sample/tri-dh.cpp -------------------------------------------------------------------------------- /src/mcl/sample/vote.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/sample/vote.cpp -------------------------------------------------------------------------------- /src/mcl/setvar.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/setvar.bat -------------------------------------------------------------------------------- /src/mcl/src/asm/aarch64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/src/asm/aarch64.s -------------------------------------------------------------------------------- /src/mcl/src/asm/arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/src/asm/arm.s -------------------------------------------------------------------------------- /src/mcl/src/asm/low_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/src/asm/low_arm.s -------------------------------------------------------------------------------- /src/mcl/src/asm/low_x86.asm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mcl/src/asm/x86-64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/src/asm/x86-64.s -------------------------------------------------------------------------------- /src/mcl/src/asm/x86.bmi2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/src/asm/x86.bmi2.s -------------------------------------------------------------------------------- /src/mcl/src/asm/x86.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/src/asm/x86.s -------------------------------------------------------------------------------- /src/mcl/src/base32.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/src/base32.ll -------------------------------------------------------------------------------- /src/mcl/src/base64.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/src/base64.ll -------------------------------------------------------------------------------- /src/mcl/src/bn_c256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/src/bn_c256.cpp -------------------------------------------------------------------------------- /src/mcl/src/bn_c384.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/src/bn_c384.cpp -------------------------------------------------------------------------------- /src/mcl/src/bn_c512.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/src/bn_c512.cpp -------------------------------------------------------------------------------- /src/mcl/src/dump_code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/src/dump_code.cpp -------------------------------------------------------------------------------- /src/mcl/src/ecdsa_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/src/ecdsa_c.cpp -------------------------------------------------------------------------------- /src/mcl/src/fp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/src/fp.cpp -------------------------------------------------------------------------------- /src/mcl/src/gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/src/gen.cpp -------------------------------------------------------------------------------- /src/mcl/src/llvm_gen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/src/llvm_gen.hpp -------------------------------------------------------------------------------- /src/mcl/src/low_func.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/src/low_func.hpp -------------------------------------------------------------------------------- /src/mcl/src/proto.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/src/proto.hpp -------------------------------------------------------------------------------- /src/mcl/src/she_c256.cpp: -------------------------------------------------------------------------------- 1 | #define MCLBN_FP_UNIT_SIZE 4 2 | #include "she_c_impl.hpp" 3 | -------------------------------------------------------------------------------- /src/mcl/src/she_c384.cpp: -------------------------------------------------------------------------------- 1 | #define MCLBN_FP_UNIT_SIZE 6 2 | #include "she_c_impl.hpp" 3 | -------------------------------------------------------------------------------- /src/mcl/src/she_c_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/src/she_c_impl.hpp -------------------------------------------------------------------------------- /src/mcl/src/xbyak/xbyak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/src/xbyak/xbyak.h -------------------------------------------------------------------------------- /src/mcl/test/base_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/test/base_test.cpp -------------------------------------------------------------------------------- /src/mcl/test/bench.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/test/bench.hpp -------------------------------------------------------------------------------- /src/mcl/test/bn_c_test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/test/bn_c_test.hpp -------------------------------------------------------------------------------- /src/mcl/test/bn_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/test/bn_test.cpp -------------------------------------------------------------------------------- /src/mcl/test/ec_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/test/ec_test.cpp -------------------------------------------------------------------------------- /src/mcl/test/fp_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/test/fp_test.cpp -------------------------------------------------------------------------------- /src/mcl/test/glv_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/test/glv_test.cpp -------------------------------------------------------------------------------- /src/mcl/test/gmp_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/test/gmp_test.cpp -------------------------------------------------------------------------------- /src/mcl/test/low_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/test/low_test.cpp -------------------------------------------------------------------------------- /src/mcl/test/mk32.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/test/mk32.sh -------------------------------------------------------------------------------- /src/mcl/test/modp_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/test/modp_test.cpp -------------------------------------------------------------------------------- /src/mcl/test/she_c256_test.cpp: -------------------------------------------------------------------------------- 1 | #define MCLBN_FP_UNIT_SIZE 4 2 | #include "she_c_test.hpp" 3 | -------------------------------------------------------------------------------- /src/mcl/test/she_c384_test.cpp: -------------------------------------------------------------------------------- 1 | #define MCLBN_FP_UNIT_SIZE 6 2 | #include "she_c_test.hpp" 3 | -------------------------------------------------------------------------------- /src/mcl/test/she_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/test/she_test.cpp -------------------------------------------------------------------------------- /src/mcl/test/sq_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/test/sq_test.cpp -------------------------------------------------------------------------------- /src/mcl/test/vint_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mcl/test/vint_test.cpp -------------------------------------------------------------------------------- /src/memusage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/memusage.h -------------------------------------------------------------------------------- /src/merkleblock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/merkleblock.cpp -------------------------------------------------------------------------------- /src/merkleblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/merkleblock.h -------------------------------------------------------------------------------- /src/miner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/miner.cpp -------------------------------------------------------------------------------- /src/miner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/miner.h -------------------------------------------------------------------------------- /src/mnemonic/arrayslice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mnemonic/arrayslice.h -------------------------------------------------------------------------------- /src/mnemonic/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mnemonic/dictionary.h -------------------------------------------------------------------------------- /src/mnemonic/mnemonic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mnemonic/mnemonic.cpp -------------------------------------------------------------------------------- /src/mnemonic/mnemonic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/mnemonic/mnemonic.h -------------------------------------------------------------------------------- /src/navcoin-cli-res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/navcoin-cli-res.rc -------------------------------------------------------------------------------- /src/navcoin-cli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/navcoin-cli.cpp -------------------------------------------------------------------------------- /src/navcoin-tx-res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/navcoin-tx-res.rc -------------------------------------------------------------------------------- /src/navcoin-tx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/navcoin-tx.cpp -------------------------------------------------------------------------------- /src/navcoind-res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/navcoind-res.rc -------------------------------------------------------------------------------- /src/navcoind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/navcoind.cpp -------------------------------------------------------------------------------- /src/net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/net.cpp -------------------------------------------------------------------------------- /src/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/net.h -------------------------------------------------------------------------------- /src/netbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/netbase.cpp -------------------------------------------------------------------------------- /src/netbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/netbase.h -------------------------------------------------------------------------------- /src/noui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/noui.cpp -------------------------------------------------------------------------------- /src/noui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/noui.h -------------------------------------------------------------------------------- /src/ntpclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/ntpclient.cpp -------------------------------------------------------------------------------- /src/ntpclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/ntpclient.h -------------------------------------------------------------------------------- /src/obj-test/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /src/obj/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /src/policy/fees.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/policy/fees.cpp -------------------------------------------------------------------------------- /src/policy/fees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/policy/fees.h -------------------------------------------------------------------------------- /src/policy/policy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/policy/policy.cpp -------------------------------------------------------------------------------- /src/policy/policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/policy/policy.h -------------------------------------------------------------------------------- /src/policy/rbf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/policy/rbf.cpp -------------------------------------------------------------------------------- /src/policy/rbf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/policy/rbf.h -------------------------------------------------------------------------------- /src/pos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/pos.cpp -------------------------------------------------------------------------------- /src/pos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/pos.h -------------------------------------------------------------------------------- /src/pow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/pow.cpp -------------------------------------------------------------------------------- /src/pow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/pow.h -------------------------------------------------------------------------------- /src/prevector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/prevector.h -------------------------------------------------------------------------------- /src/primitives/block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/primitives/block.cpp -------------------------------------------------------------------------------- /src/primitives/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/primitives/block.h -------------------------------------------------------------------------------- /src/protocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/protocol.cpp -------------------------------------------------------------------------------- /src/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/protocol.h -------------------------------------------------------------------------------- /src/pubkey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/pubkey.cpp -------------------------------------------------------------------------------- /src/pubkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/pubkey.h -------------------------------------------------------------------------------- /src/qt/NavCoin4.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/NavCoin4.config -------------------------------------------------------------------------------- /src/qt/NavCoin4.creator: -------------------------------------------------------------------------------- 1 | [General] 2 | -------------------------------------------------------------------------------- /src/qt/NavCoin4.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/NavCoin4.files -------------------------------------------------------------------------------- /src/qt/NavCoin4.includes: -------------------------------------------------------------------------------- 1 | . 2 | forms 3 | test 4 | -------------------------------------------------------------------------------- /src/qt/addressbookpage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/addressbookpage.cpp -------------------------------------------------------------------------------- /src/qt/addressbookpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/addressbookpage.h -------------------------------------------------------------------------------- /src/qt/addresstablemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/addresstablemodel.h -------------------------------------------------------------------------------- /src/qt/bantablemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/bantablemodel.cpp -------------------------------------------------------------------------------- /src/qt/bantablemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/bantablemodel.h -------------------------------------------------------------------------------- /src/qt/clientmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/clientmodel.cpp -------------------------------------------------------------------------------- /src/qt/clientmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/clientmodel.h -------------------------------------------------------------------------------- /src/qt/coincontroldialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/coincontroldialog.h -------------------------------------------------------------------------------- /src/qt/coldstakingwizard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/coldstakingwizard.h -------------------------------------------------------------------------------- /src/qt/communityfundpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/communityfundpage.h -------------------------------------------------------------------------------- /src/qt/csvmodelwriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/csvmodelwriter.cpp -------------------------------------------------------------------------------- /src/qt/csvmodelwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/csvmodelwriter.h -------------------------------------------------------------------------------- /src/qt/daopage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/daopage.cpp -------------------------------------------------------------------------------- /src/qt/daopage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/daopage.h -------------------------------------------------------------------------------- /src/qt/daoproposeanswer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/daoproposeanswer.h -------------------------------------------------------------------------------- /src/qt/daosupport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/daosupport.cpp -------------------------------------------------------------------------------- /src/qt/daosupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/daosupport.h -------------------------------------------------------------------------------- /src/qt/editaddressdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/editaddressdialog.h -------------------------------------------------------------------------------- /src/qt/guiconstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/guiconstants.h -------------------------------------------------------------------------------- /src/qt/guiutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/guiutil.cpp -------------------------------------------------------------------------------- /src/qt/guiutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/guiutil.h -------------------------------------------------------------------------------- /src/qt/icons/navcoin.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/icons/navcoin.ico -------------------------------------------------------------------------------- /src/qt/listview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/listview.h -------------------------------------------------------------------------------- /src/qt/modaloverlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/modaloverlay.cpp -------------------------------------------------------------------------------- /src/qt/modaloverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/modaloverlay.h -------------------------------------------------------------------------------- /src/qt/navcoin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/navcoin.cpp -------------------------------------------------------------------------------- /src/qt/navcoin.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/navcoin.qrc -------------------------------------------------------------------------------- /src/qt/navcoin_locale.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/navcoin_locale.qrc -------------------------------------------------------------------------------- /src/qt/navcoingui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/navcoingui.cpp -------------------------------------------------------------------------------- /src/qt/navcoingui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/navcoingui.h -------------------------------------------------------------------------------- /src/qt/navcoinlistwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/navcoinlistwidget.h -------------------------------------------------------------------------------- /src/qt/navcoinpushbutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/navcoinpushbutton.h -------------------------------------------------------------------------------- /src/qt/navcoinstrings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/navcoinstrings.cpp -------------------------------------------------------------------------------- /src/qt/navcoinunits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/navcoinunits.cpp -------------------------------------------------------------------------------- /src/qt/navcoinunits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/navcoinunits.h -------------------------------------------------------------------------------- /src/qt/networkstyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/networkstyle.cpp -------------------------------------------------------------------------------- /src/qt/networkstyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/networkstyle.h -------------------------------------------------------------------------------- /src/qt/notificator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/notificator.cpp -------------------------------------------------------------------------------- /src/qt/notificator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/notificator.h -------------------------------------------------------------------------------- /src/qt/openuridialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/openuridialog.cpp -------------------------------------------------------------------------------- /src/qt/openuridialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/openuridialog.h -------------------------------------------------------------------------------- /src/qt/optionsdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/optionsdialog.cpp -------------------------------------------------------------------------------- /src/qt/optionsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/optionsdialog.h -------------------------------------------------------------------------------- /src/qt/optionsmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/optionsmodel.cpp -------------------------------------------------------------------------------- /src/qt/optionsmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/optionsmodel.h -------------------------------------------------------------------------------- /src/qt/overviewpage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/overviewpage.cpp -------------------------------------------------------------------------------- /src/qt/overviewpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/overviewpage.h -------------------------------------------------------------------------------- /src/qt/peertablemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/peertablemodel.cpp -------------------------------------------------------------------------------- /src/qt/peertablemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/peertablemodel.h -------------------------------------------------------------------------------- /src/qt/platformstyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/platformstyle.cpp -------------------------------------------------------------------------------- /src/qt/platformstyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/platformstyle.h -------------------------------------------------------------------------------- /src/qt/qjsonitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/qjsonitem.cpp -------------------------------------------------------------------------------- /src/qt/qjsonitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/qjsonitem.h -------------------------------------------------------------------------------- /src/qt/qjsonmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/qjsonmodel.cpp -------------------------------------------------------------------------------- /src/qt/qjsonmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/qjsonmodel.h -------------------------------------------------------------------------------- /src/qt/qvalidatedspinbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/qvalidatedspinbox.h -------------------------------------------------------------------------------- /src/qt/qvaluecombobox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/qvaluecombobox.cpp -------------------------------------------------------------------------------- /src/qt/qvaluecombobox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/qvaluecombobox.h -------------------------------------------------------------------------------- /src/qt/res/icons/about.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/res/icons/about.svg -------------------------------------------------------------------------------- /src/qt/res/icons/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/res/icons/add.svg -------------------------------------------------------------------------------- /src/qt/res/icons/dao.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/res/icons/dao.svg -------------------------------------------------------------------------------- /src/qt/res/icons/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/res/icons/edit.svg -------------------------------------------------------------------------------- /src/qt/res/icons/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/res/icons/eye.svg -------------------------------------------------------------------------------- /src/qt/res/icons/ghost.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/res/icons/ghost.svg -------------------------------------------------------------------------------- /src/qt/res/icons/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/res/icons/home.svg -------------------------------------------------------------------------------- /src/qt/res/icons/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/res/icons/info.svg -------------------------------------------------------------------------------- /src/qt/res/icons/key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/res/icons/key.svg -------------------------------------------------------------------------------- /src/qt/res/icons/open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/res/icons/open.svg -------------------------------------------------------------------------------- /src/qt/res/icons/quit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/res/icons/quit.svg -------------------------------------------------------------------------------- /src/qt/res/icons/send.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/res/icons/send.svg -------------------------------------------------------------------------------- /src/qt/res/icons/swap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/res/icons/swap.png -------------------------------------------------------------------------------- /src/qt/res/src/clock_0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/res/src/clock_0.svg -------------------------------------------------------------------------------- /src/qt/res/src/clock_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/res/src/clock_1.svg -------------------------------------------------------------------------------- /src/qt/res/src/clock_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/res/src/clock_2.svg -------------------------------------------------------------------------------- /src/qt/res/src/clock_3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/res/src/clock_3.svg -------------------------------------------------------------------------------- /src/qt/res/src/clock_4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/res/src/clock_4.svg -------------------------------------------------------------------------------- /src/qt/res/src/mine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/res/src/mine.svg -------------------------------------------------------------------------------- /src/qt/res/src/navcoin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/res/src/navcoin.svg -------------------------------------------------------------------------------- /src/qt/res/src/qt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/res/src/qt.svg -------------------------------------------------------------------------------- /src/qt/res/src/spinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/res/src/spinner.png -------------------------------------------------------------------------------- /src/qt/res/src/tx_in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/res/src/tx_in.svg -------------------------------------------------------------------------------- /src/qt/res/src/verify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/res/src/verify.svg -------------------------------------------------------------------------------- /src/qt/res/themes/app.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/res/themes/app.qss -------------------------------------------------------------------------------- /src/qt/rpcconsole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/rpcconsole.cpp -------------------------------------------------------------------------------- /src/qt/rpcconsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/rpcconsole.h -------------------------------------------------------------------------------- /src/qt/sendcoinsdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/sendcoinsdialog.cpp -------------------------------------------------------------------------------- /src/qt/sendcoinsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/sendcoinsdialog.h -------------------------------------------------------------------------------- /src/qt/sendcoinsentry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/sendcoinsentry.cpp -------------------------------------------------------------------------------- /src/qt/sendcoinsentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/sendcoinsentry.h -------------------------------------------------------------------------------- /src/qt/splashscreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/splashscreen.cpp -------------------------------------------------------------------------------- /src/qt/splashscreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/splashscreen.h -------------------------------------------------------------------------------- /src/qt/splitrewards.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/splitrewards.cpp -------------------------------------------------------------------------------- /src/qt/splitrewards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/splitrewards.h -------------------------------------------------------------------------------- /src/qt/startoptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/startoptions.cpp -------------------------------------------------------------------------------- /src/qt/startoptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/startoptions.h -------------------------------------------------------------------------------- /src/qt/startoptionsmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/startoptionsmain.h -------------------------------------------------------------------------------- /src/qt/startoptionssort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/startoptionssort.h -------------------------------------------------------------------------------- /src/qt/styles/dark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/styles/dark.cpp -------------------------------------------------------------------------------- /src/qt/styles/dark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/styles/dark.h -------------------------------------------------------------------------------- /src/qt/styles/light.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/styles/light.cpp -------------------------------------------------------------------------------- /src/qt/styles/light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/styles/light.h -------------------------------------------------------------------------------- /src/qt/swapxnav.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/swapxnav.cpp -------------------------------------------------------------------------------- /src/qt/swapxnav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/swapxnav.h -------------------------------------------------------------------------------- /src/qt/test/test_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/test/test_main.cpp -------------------------------------------------------------------------------- /src/qt/test/uritests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/test/uritests.cpp -------------------------------------------------------------------------------- /src/qt/test/uritests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/test/uritests.h -------------------------------------------------------------------------------- /src/qt/transactiondesc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/transactiondesc.cpp -------------------------------------------------------------------------------- /src/qt/transactiondesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/transactiondesc.h -------------------------------------------------------------------------------- /src/qt/transactionrecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/transactionrecord.h -------------------------------------------------------------------------------- /src/qt/transactionview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/transactionview.cpp -------------------------------------------------------------------------------- /src/qt/transactionview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/transactionview.h -------------------------------------------------------------------------------- /src/qt/utilitydialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/utilitydialog.cpp -------------------------------------------------------------------------------- /src/qt/utilitydialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/utilitydialog.h -------------------------------------------------------------------------------- /src/qt/walletframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/walletframe.cpp -------------------------------------------------------------------------------- /src/qt/walletframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/walletframe.h -------------------------------------------------------------------------------- /src/qt/walletmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/walletmodel.cpp -------------------------------------------------------------------------------- /src/qt/walletmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/walletmodel.h -------------------------------------------------------------------------------- /src/qt/walletview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/walletview.cpp -------------------------------------------------------------------------------- /src/qt/walletview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/qt/walletview.h -------------------------------------------------------------------------------- /src/random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/random.cpp -------------------------------------------------------------------------------- /src/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/random.h -------------------------------------------------------------------------------- /src/rest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/rest.cpp -------------------------------------------------------------------------------- /src/reverselock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/reverselock.h -------------------------------------------------------------------------------- /src/rpc/blockchain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/rpc/blockchain.cpp -------------------------------------------------------------------------------- /src/rpc/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/rpc/client.cpp -------------------------------------------------------------------------------- /src/rpc/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/rpc/client.h -------------------------------------------------------------------------------- /src/rpc/mining.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/rpc/mining.cpp -------------------------------------------------------------------------------- /src/rpc/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/rpc/misc.cpp -------------------------------------------------------------------------------- /src/rpc/net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/rpc/net.cpp -------------------------------------------------------------------------------- /src/rpc/protocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/rpc/protocol.cpp -------------------------------------------------------------------------------- /src/rpc/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/rpc/protocol.h -------------------------------------------------------------------------------- /src/rpc/rawtransaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/rpc/rawtransaction.cpp -------------------------------------------------------------------------------- /src/rpc/register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/rpc/register.h -------------------------------------------------------------------------------- /src/rpc/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/rpc/server.cpp -------------------------------------------------------------------------------- /src/rpc/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/rpc/server.h -------------------------------------------------------------------------------- /src/scheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/scheduler.cpp -------------------------------------------------------------------------------- /src/scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/scheduler.h -------------------------------------------------------------------------------- /src/script/interpreter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/script/interpreter.cpp -------------------------------------------------------------------------------- /src/script/interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/script/interpreter.h -------------------------------------------------------------------------------- /src/script/ismine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/script/ismine.cpp -------------------------------------------------------------------------------- /src/script/ismine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/script/ismine.h -------------------------------------------------------------------------------- /src/script/script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/script/script.cpp -------------------------------------------------------------------------------- /src/script/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/script/script.h -------------------------------------------------------------------------------- /src/script/script_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/script/script_error.h -------------------------------------------------------------------------------- /src/script/sigcache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/script/sigcache.cpp -------------------------------------------------------------------------------- /src/script/sigcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/script/sigcache.h -------------------------------------------------------------------------------- /src/script/sign.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/script/sign.cpp -------------------------------------------------------------------------------- /src/script/sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/script/sign.h -------------------------------------------------------------------------------- /src/script/standard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/script/standard.cpp -------------------------------------------------------------------------------- /src/script/standard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/script/standard.h -------------------------------------------------------------------------------- /src/secp256k1/.cirrus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/secp256k1/.cirrus.yml -------------------------------------------------------------------------------- /src/secp256k1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/secp256k1/.gitignore -------------------------------------------------------------------------------- /src/secp256k1/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/secp256k1/COPYING -------------------------------------------------------------------------------- /src/secp256k1/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/secp256k1/Makefile.am -------------------------------------------------------------------------------- /src/secp256k1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/secp256k1/README.md -------------------------------------------------------------------------------- /src/secp256k1/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/secp256k1/SECURITY.md -------------------------------------------------------------------------------- /src/secp256k1/autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | autoreconf -if --warnings=all 4 | -------------------------------------------------------------------------------- /src/secp256k1/ci/cirrus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/secp256k1/ci/cirrus.sh -------------------------------------------------------------------------------- /src/secp256k1/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/secp256k1/configure.ac -------------------------------------------------------------------------------- /src/secp256k1/src/bench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/secp256k1/src/bench.h -------------------------------------------------------------------------------- /src/secp256k1/src/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/secp256k1/src/ecdsa.h -------------------------------------------------------------------------------- /src/secp256k1/src/eckey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/secp256k1/src/eckey.h -------------------------------------------------------------------------------- /src/secp256k1/src/ecmult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/secp256k1/src/ecmult.h -------------------------------------------------------------------------------- /src/secp256k1/src/field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/secp256k1/src/field.h -------------------------------------------------------------------------------- /src/secp256k1/src/group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/secp256k1/src/group.h -------------------------------------------------------------------------------- /src/secp256k1/src/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/secp256k1/src/hash.h -------------------------------------------------------------------------------- /src/secp256k1/src/scalar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/secp256k1/src/scalar.h -------------------------------------------------------------------------------- /src/secp256k1/src/tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/secp256k1/src/tests.c -------------------------------------------------------------------------------- /src/secp256k1/src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/secp256k1/src/util.h -------------------------------------------------------------------------------- /src/serialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/serialize.h -------------------------------------------------------------------------------- /src/shavite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/shavite.c -------------------------------------------------------------------------------- /src/simd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/simd.c -------------------------------------------------------------------------------- /src/skein.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/skein.c -------------------------------------------------------------------------------- /src/spentindex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/spentindex.h -------------------------------------------------------------------------------- /src/sph_blake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/sph_blake.h -------------------------------------------------------------------------------- /src/sph_bmw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/sph_bmw.h -------------------------------------------------------------------------------- /src/sph_cubehash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/sph_cubehash.h -------------------------------------------------------------------------------- /src/sph_echo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/sph_echo.h -------------------------------------------------------------------------------- /src/sph_fugue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/sph_fugue.h -------------------------------------------------------------------------------- /src/sph_groestl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/sph_groestl.h -------------------------------------------------------------------------------- /src/sph_hamsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/sph_hamsi.h -------------------------------------------------------------------------------- /src/sph_jh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/sph_jh.h -------------------------------------------------------------------------------- /src/sph_keccak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/sph_keccak.h -------------------------------------------------------------------------------- /src/sph_luffa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/sph_luffa.h -------------------------------------------------------------------------------- /src/sph_shavite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/sph_shavite.h -------------------------------------------------------------------------------- /src/sph_simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/sph_simd.h -------------------------------------------------------------------------------- /src/sph_skein.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/sph_skein.h -------------------------------------------------------------------------------- /src/sph_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/sph_types.h -------------------------------------------------------------------------------- /src/streams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/streams.h -------------------------------------------------------------------------------- /src/support/cleanse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/support/cleanse.cpp -------------------------------------------------------------------------------- /src/support/cleanse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/support/cleanse.h -------------------------------------------------------------------------------- /src/support/pagelocker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/support/pagelocker.cpp -------------------------------------------------------------------------------- /src/support/pagelocker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/support/pagelocker.h -------------------------------------------------------------------------------- /src/sync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/sync.cpp -------------------------------------------------------------------------------- /src/sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/sync.h -------------------------------------------------------------------------------- /src/test/DoS_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/test/DoS_tests.cpp -------------------------------------------------------------------------------- /src/test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/test/README.md -------------------------------------------------------------------------------- /src/test/addrman_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/test/addrman_tests.cpp -------------------------------------------------------------------------------- /src/test/amount_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/test/amount_tests.cpp -------------------------------------------------------------------------------- /src/test/base32_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/test/base32_tests.cpp -------------------------------------------------------------------------------- /src/test/base58_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/test/base58_tests.cpp -------------------------------------------------------------------------------- /src/test/base64_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/test/base64_tests.cpp -------------------------------------------------------------------------------- /src/test/bctest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/test/bctest.py -------------------------------------------------------------------------------- /src/test/bip32_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/test/bip32_tests.cpp -------------------------------------------------------------------------------- /src/test/bloom_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/test/bloom_tests.cpp -------------------------------------------------------------------------------- /src/test/blsct_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/test/blsct_tests.cpp -------------------------------------------------------------------------------- /src/test/blsct_wallet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/test/blsct_wallet.cpp -------------------------------------------------------------------------------- /src/test/buildenv.py.in: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | exeext="@EXEEXT@" 3 | -------------------------------------------------------------------------------- /src/test/cfund_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/test/cfund_tests.cpp -------------------------------------------------------------------------------- /src/test/cfunddb_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/test/cfunddb_tests.cpp -------------------------------------------------------------------------------- /src/test/coins_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/test/coins_tests.cpp -------------------------------------------------------------------------------- /src/test/crypto_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/test/crypto_tests.cpp -------------------------------------------------------------------------------- /src/test/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/test/data/README.md -------------------------------------------------------------------------------- /src/test/data/blanktx.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/test/data/blanktx.hex -------------------------------------------------------------------------------- /src/test/data/sighash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/test/data/sighash.json -------------------------------------------------------------------------------- /src/test/getarg_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/test/getarg_tests.cpp -------------------------------------------------------------------------------- /src/test/hash_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/test/hash_tests.cpp -------------------------------------------------------------------------------- /src/test/key_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/test/key_tests.cpp -------------------------------------------------------------------------------- /src/test/main_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/test/main_tests.cpp -------------------------------------------------------------------------------- /src/test/mempool_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/test/mempool_tests.cpp -------------------------------------------------------------------------------- /src/test/merkle_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/test/merkle_tests.cpp -------------------------------------------------------------------------------- /src/test/miner_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/test/miner_tests.cpp -------------------------------------------------------------------------------- /src/test/net_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/test/net_tests.cpp -------------------------------------------------------------------------------- /src/test/netbase_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/test/netbase_tests.cpp -------------------------------------------------------------------------------- /src/test/pmt_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/test/pmt_tests.cpp -------------------------------------------------------------------------------- /src/test/pow_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/test/pow_tests.cpp -------------------------------------------------------------------------------- /src/test/rpc_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/test/rpc_tests.cpp -------------------------------------------------------------------------------- /src/test/sanity_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/test/sanity_tests.cpp -------------------------------------------------------------------------------- /src/test/script_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/test/script_tests.cpp -------------------------------------------------------------------------------- /src/test/scriptnum10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/test/scriptnum10.h -------------------------------------------------------------------------------- /src/test/sighash_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/test/sighash_tests.cpp -------------------------------------------------------------------------------- /src/test/streams_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/test/streams_tests.cpp -------------------------------------------------------------------------------- /src/test/test_navcoin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/test/test_navcoin.cpp -------------------------------------------------------------------------------- /src/test/test_navcoin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/test/test_navcoin.h -------------------------------------------------------------------------------- /src/test/testutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/test/testutil.cpp -------------------------------------------------------------------------------- /src/test/testutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/test/testutil.h -------------------------------------------------------------------------------- /src/test/uint256_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/test/uint256_tests.cpp -------------------------------------------------------------------------------- /src/test/util_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/test/util_tests.cpp -------------------------------------------------------------------------------- /src/threadsafety.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/threadsafety.h -------------------------------------------------------------------------------- /src/timedata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/timedata.cpp -------------------------------------------------------------------------------- /src/timedata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/timedata.h -------------------------------------------------------------------------------- /src/timestampindex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/timestampindex.h -------------------------------------------------------------------------------- /src/tinyformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/tinyformat.h -------------------------------------------------------------------------------- /src/torcontrol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/torcontrol.cpp -------------------------------------------------------------------------------- /src/torcontrol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/torcontrol.h -------------------------------------------------------------------------------- /src/txdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/txdb.cpp -------------------------------------------------------------------------------- /src/txdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/txdb.h -------------------------------------------------------------------------------- /src/txmempool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/txmempool.cpp -------------------------------------------------------------------------------- /src/txmempool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/txmempool.h -------------------------------------------------------------------------------- /src/ui_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/ui_interface.cpp -------------------------------------------------------------------------------- /src/ui_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/ui_interface.h -------------------------------------------------------------------------------- /src/uint256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/uint256.cpp -------------------------------------------------------------------------------- /src/uint256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/uint256.h -------------------------------------------------------------------------------- /src/undo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/undo.h -------------------------------------------------------------------------------- /src/univalue/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/univalue/.gitignore -------------------------------------------------------------------------------- /src/univalue/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/univalue/.travis.yml -------------------------------------------------------------------------------- /src/univalue/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/univalue/COPYING -------------------------------------------------------------------------------- /src/univalue/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/univalue/Makefile.am -------------------------------------------------------------------------------- /src/univalue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/univalue/README.md -------------------------------------------------------------------------------- /src/univalue/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/univalue/TODO -------------------------------------------------------------------------------- /src/univalue/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/univalue/autogen.sh -------------------------------------------------------------------------------- /src/univalue/build-aux/m4/.gitignore: -------------------------------------------------------------------------------- 1 | /*.m4 2 | -------------------------------------------------------------------------------- /src/univalue/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/univalue/configure.ac -------------------------------------------------------------------------------- /src/univalue/gen/gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/univalue/gen/gen.cpp -------------------------------------------------------------------------------- /src/univalue/lib/.gitignore: -------------------------------------------------------------------------------- 1 | gen 2 | .libs 3 | -------------------------------------------------------------------------------- /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/fail44.json: -------------------------------------------------------------------------------- 1 | "This file ends without a newline or close-quote. -------------------------------------------------------------------------------- /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/univalue/test/round3.json: -------------------------------------------------------------------------------- 1 | "abcdefghijklmnopqrstuvwxyz" 2 | -------------------------------------------------------------------------------- /src/univalue/test/round4.json: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /src/univalue/test/round5.json: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /src/univalue/test/round6.json: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /src/univalue/test/round7.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /src/untar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/untar.cpp -------------------------------------------------------------------------------- /src/untar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/untar.h -------------------------------------------------------------------------------- /src/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/util.cpp -------------------------------------------------------------------------------- /src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/util.h -------------------------------------------------------------------------------- /src/utilmoneystr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/utilmoneystr.cpp -------------------------------------------------------------------------------- /src/utilmoneystr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/utilmoneystr.h -------------------------------------------------------------------------------- /src/utils/dns_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/utils/dns_utils.cpp -------------------------------------------------------------------------------- /src/utils/dns_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/utils/dns_utils.h -------------------------------------------------------------------------------- /src/utilstrencodings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/utilstrencodings.cpp -------------------------------------------------------------------------------- /src/utilstrencodings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/utilstrencodings.h -------------------------------------------------------------------------------- /src/utiltime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/utiltime.cpp -------------------------------------------------------------------------------- /src/utiltime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/utiltime.h -------------------------------------------------------------------------------- /src/validationinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/validationinterface.h -------------------------------------------------------------------------------- /src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/version.h -------------------------------------------------------------------------------- /src/versionbits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/versionbits.cpp -------------------------------------------------------------------------------- /src/versionbits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/versionbits.h -------------------------------------------------------------------------------- /src/wallet/crypter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/wallet/crypter.cpp -------------------------------------------------------------------------------- /src/wallet/crypter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/wallet/crypter.h -------------------------------------------------------------------------------- /src/wallet/db.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/wallet/db.cpp -------------------------------------------------------------------------------- /src/wallet/db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/wallet/db.h -------------------------------------------------------------------------------- /src/wallet/rpcdump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/wallet/rpcdump.cpp -------------------------------------------------------------------------------- /src/wallet/rpcwallet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/wallet/rpcwallet.cpp -------------------------------------------------------------------------------- /src/wallet/rpcwallet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/wallet/rpcwallet.h -------------------------------------------------------------------------------- /src/wallet/wallet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/wallet/wallet.cpp -------------------------------------------------------------------------------- /src/wallet/wallet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/wallet/wallet.h -------------------------------------------------------------------------------- /src/wallet/walletdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/wallet/walletdb.cpp -------------------------------------------------------------------------------- /src/wallet/walletdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/wallet/walletdb.h -------------------------------------------------------------------------------- /src/zmq/zmqconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/src/zmq/zmqconfig.h -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/test/README.md -------------------------------------------------------------------------------- /test/rpc-tests/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | cache 3 | -------------------------------------------------------------------------------- /test/rpc-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/test/rpc-tests/README.md -------------------------------------------------------------------------------- /test/rpc-tests/dao/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/rpc-tests/keypool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/test/rpc-tests/keypool.py -------------------------------------------------------------------------------- /test/rpc-tests/mnemonic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/test/rpc-tests/mnemonic.py -------------------------------------------------------------------------------- /test/rpc-tests/pruning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/test/rpc-tests/pruning.py -------------------------------------------------------------------------------- /test/rpc-tests/reindex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/test/rpc-tests/reindex.py -------------------------------------------------------------------------------- /test/rpc-tests/rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/test/rpc-tests/rest.py -------------------------------------------------------------------------------- /test/rpc-tests/rpc-help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/test/rpc-tests/rpc-help.py -------------------------------------------------------------------------------- /test/rpc-tests/segwit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/test/rpc-tests/segwit.py -------------------------------------------------------------------------------- /test/rpc-tests/test_framework/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/rpc-tests/txindex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/test/rpc-tests/txindex.py -------------------------------------------------------------------------------- /test/rpc-tests/wallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/test/rpc-tests/wallet.py -------------------------------------------------------------------------------- /test/rpc-tests/zmq_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navcoin/navcoin-core/HEAD/test/rpc-tests/zmq_test.py --------------------------------------------------------------------------------