├── .gitattributes ├── .github ├── ISSUE_TEMPLATE.md ├── scripts │ ├── 00-install-deps.sh │ ├── 02-copy-build-dependencies.sh │ ├── 03-export-path.sh │ ├── 04-configure-build.sh │ ├── 05-binary-checks.sh │ └── 06-package.sh └── workflows │ ├── build-raven.yml │ ├── dependencies-arm32v7.yml │ ├── dependencies-linux.yml │ ├── dependencies-osx.yml │ └── dependencies-windows.yml ├── .gitignore ├── .pydevproject ├── .travis.yml ├── CONTRIBUTING.md ├── COPYING ├── Dockerfile ├── Dockerfile.amd64 ├── Dockerfile.arm32v7 ├── INSTALL.md ├── Makefile.am ├── README.md ├── assets ├── asset_metadata_spec.md └── tools │ ├── README.md │ ├── asset_audit.py │ ├── blockfacts.py │ ├── ipfs_pinner.py │ ├── issuebulk.py │ ├── signed_promises.py │ └── txfacts.py ├── autogen.sh ├── binaries └── README.md ├── community └── README.md ├── configure.ac ├── contrib ├── README.md ├── debian │ ├── README.md │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── examples │ │ └── satoxcoin.conf │ ├── gbp.conf │ ├── patches │ │ ├── README │ │ └── series │ ├── rules │ ├── satoxcoin-qt.desktop │ ├── satoxcoin-qt.install │ ├── satoxcoin-qt.lintian-overrides │ ├── satoxcoin-qt.manpages │ ├── satoxcoin-qt.protocol │ ├── satoxcoin-tx.bash-completion │ ├── satoxcoin-tx.install │ ├── satoxcoin-tx.manpages │ ├── satoxcoind.bash-completion │ ├── satoxcoind.examples │ ├── satoxcoind.install │ ├── satoxcoind.lintian-overrides │ ├── satoxcoind.manpages │ ├── source │ │ └── format │ └── watch ├── devtools │ ├── README.md │ ├── check-doc.py │ ├── check-rpc-mappings.py │ ├── clang-format-diff.py │ ├── commit-script-check.sh │ ├── copyright_header.py │ ├── gen-manpages.sh │ ├── git-subtree-check.sh │ ├── github-merge.py │ ├── lint-all.sh │ ├── lint-whitespace.sh │ ├── optimize-pngs.py │ ├── security-check.py │ ├── split-debug.sh.in │ ├── symbol-check.py │ ├── test-security-check.py │ └── update-translations.py ├── filter-lcov.py ├── gitian-build.sh ├── gitian-descriptors │ ├── gitian-linux.yml │ ├── gitian-osx-signer.yml │ ├── gitian-osx.yml │ ├── gitian-win-signer.yml │ └── gitian-win.yml ├── gitian-keys │ ├── README.md │ ├── achow101-key.pgp │ ├── aschildbach-key.pgp │ ├── bluematt-key.pgp │ ├── btcdrak-key.pgp │ ├── cdecker-key.pgp │ ├── centaur1-key.pgp │ ├── cfields-key.pgp │ ├── devrandom-key.pgp │ ├── erkmos.pgp │ ├── fanquake-key.pgp │ ├── gavinandresen-key.pgp │ ├── jl2012-key.pgp │ ├── jonasschnelli-key.pgp │ ├── jtimon-key.pgp │ ├── laanwj-key.pgp │ ├── luke-jr-key.pgp │ ├── marcofalke-key.pgp │ ├── meshcollider-key.pgp │ ├── michagogo-key.pgp │ ├── petertodd-key.pgp │ ├── prab-key.pgp │ ├── sipa-key.pgp │ ├── tcatm-key.pgp │ └── wtogami-key.pgp ├── init │ ├── README.md │ ├── org.satoxcoin.meowcoind.plist │ ├── satoxcoind.conf │ ├── satoxcoind.init │ ├── satoxcoind.openrc │ ├── satoxcoind.openrcconf │ └── satoxcoind.service ├── install_cli.sh ├── install_db4.sh ├── linearize │ ├── README.md │ ├── example-linearize.cfg │ ├── linearize-data.py │ └── linearize-hashes.py ├── macdeploy │ ├── LICENSE │ ├── README.md │ ├── background.svg │ ├── custom_dsstore.py │ ├── detached-sig-apply.sh │ ├── detached-sig-create.sh │ ├── extract-osx-sdk.sh │ ├── fancy.plist │ └── macdeployqtplus ├── qos │ ├── README.md │ └── tc.sh ├── rpm │ ├── README.md │ ├── satoxcoin.fc │ ├── satoxcoin.if │ ├── satoxcoin.spec │ └── satoxcoin.te ├── satoxcoin-cli.bash-completion ├── satoxcoin-qt.pro ├── satoxcoin-tx.bash-completion ├── satoxcoind.bash-completion ├── seeds │ ├── README.md │ ├── generate-seeds.py │ ├── makeseeds.py │ ├── nodes_main.txt │ └── nodes_test.txt ├── 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 │ ├── trusted-sha512-root-commit │ └── verify-commits.sh ├── verifybinaries │ ├── README.md │ └── verify.sh ├── windeploy │ ├── detached-sig-create.sh │ └── win-codesign.cert └── zmq │ ├── zmq_sub.py │ ├── zmq_sub3.4.py │ └── zmq_test.py ├── depends ├── .gitignore ├── Makefile ├── README.md ├── builders │ ├── darwin.mk │ ├── default.mk │ └── linux.mk ├── config.guess ├── config.site.in ├── config.sub ├── description.md ├── funcs.mk ├── hosts │ ├── darwin.mk │ ├── default.mk │ ├── linux.mk │ └── mingw32.mk ├── packages.md ├── packages │ ├── bdb.mk │ ├── boost.mk │ ├── dbus.mk │ ├── expat.mk │ ├── fontconfig.mk │ ├── freetype.mk │ ├── libICE.mk │ ├── libSM.mk │ ├── libX11.mk │ ├── libXau.mk │ ├── libXext.mk │ ├── libevent.mk │ ├── libxcb.mk │ ├── miniupnpc.mk │ ├── native_biplist.mk │ ├── native_ccache.mk │ ├── native_cctools.mk │ ├── native_cdrkit.mk │ ├── native_ds_store.mk │ ├── native_libdmg-hfsplus.mk │ ├── native_mac_alias.mk │ ├── native_protobuf.mk │ ├── openssl.mk │ ├── packages.mk │ ├── protobuf.mk │ ├── qrencode.mk │ ├── qt.mk │ ├── xcb_proto.mk │ ├── xextproto.mk │ ├── xproto.mk │ ├── xtrans.mk │ ├── zeromq.mk │ └── zlib.mk └── patches │ ├── atomic.h │ ├── native_biplist │ └── sorted_list.patch │ ├── native_cdrkit │ └── cdrkit-deterministic.patch │ ├── native_mac_alias │ └── python3.patch │ ├── qt │ ├── fix-xcb-include-order.patch │ ├── fix_qt_pkgconfig.patch │ ├── mac-qmake.conf │ ├── mingw-uuidof.patch │ └── pidlist_absolute.patch │ └── zeromq │ ├── 9114d3957725acd34aa8b8d011585812f3369411.patch │ └── 9e6745c12e0b100cd38acecc16ce7db02905e27c.patch ├── doc ├── .gitignore ├── Doxyfile.in ├── JSON-RPC-interface.md ├── README.md ├── README_osx.md ├── README_windows.txt ├── REST-interface.md ├── adr │ └── 0001-record-architecture-decisions.md ├── assets-attribution.md ├── atomicswaps.md ├── benchmarking.md ├── bips.md ├── bitcoin_logo_doxygen.png ├── build-openbsd.md ├── build-osx.md ├── build-rasberrypi.md ├── build-unix.md ├── build-windows.md ├── build_with_db4_linux.sh ├── build_with_db4_osx.sh ├── build_with_db4_win64.sh ├── dependencies.md ├── developer-notes.md ├── dnsseed-policy.md ├── files.md ├── fuzzing.md ├── gitian-building.md ├── init.md ├── man │ ├── Makefile.am │ ├── satoxcoin-cli.1 │ ├── satoxcoin-qt.1 │ ├── satoxcoin-tx.1 │ └── satoxcoind.1 ├── reduce-traffic.md ├── release-notes-pr12924.md ├── release-notes.md ├── release-notes │ ├── release-notes-0.15.0.1.md │ ├── release-notes-0.15.0.md │ ├── release-notes-2.0.4.md │ ├── release-notes-2.1.0.md │ ├── release-notes-2.2.2.md │ └── release-notes-2.4.0.md ├── release-process.md ├── satoxcoin_logo_doxygen.png ├── shared-libraries.md ├── tor.md ├── translation_process.md ├── translation_strings_policy.md ├── travis-ci.md └── zmq.md ├── libsatoxcoinconsensus.pc.in ├── release-linux.sh ├── release_checklist.md ├── roadmap ├── README.md ├── compatibility-mode │ └── README.md ├── ipfs │ └── README.md ├── messaging-antispam │ └── README.md ├── messaging │ └── README.md ├── mnemonic-seed │ └── README.md └── voting │ └── README.md ├── run.sh ├── satoxcoin_small.png ├── share ├── genbuild.sh ├── pixmaps │ ├── satoxcoin.bmp │ ├── satoxcoin.ico │ ├── satoxcoin128.png │ ├── satoxcoin16.png │ ├── satoxcoin256.png │ ├── satoxcoin32.png │ └── satoxcoin64.png ├── qt │ ├── Info.plist.in │ └── extract_strings_qt.py ├── rpcuser │ ├── README.md │ └── rpcuser.py └── setup.nsi.in ├── src ├── .clang-format ├── LibBoolEE.cpp ├── LibBoolEE.h ├── Makefile.am ├── Makefile.bench.include ├── Makefile.leveldb.include ├── Makefile.qt.include ├── Makefile.qttest.include ├── Makefile.test.include ├── addrdb.cpp ├── addrdb.h ├── addressindex.h ├── addrman.cpp ├── addrman.h ├── algo │ ├── Lyra2RE.c │ ├── Lyra2RE.h │ ├── aes_helper.c │ ├── blake.c │ ├── bmw.c │ ├── cubehash.c │ ├── echo.c │ ├── extra.c │ ├── extra.h │ ├── fugue.c │ ├── gost_streebog.c │ ├── gost_streebog.h │ ├── groestl.c │ ├── hamsi.c │ ├── hamsi_helper.c │ ├── haval.c │ ├── haval_helper.c │ ├── jh.c │ ├── keccak.c │ ├── luffa.c │ ├── lyra2.cpp │ ├── lyra2.h │ ├── md_helper.c │ ├── sha2.c │ ├── shabal.c │ ├── shavite.c │ ├── simd.c │ ├── skein.c │ ├── sph_blake.h │ ├── sph_bmw.h │ ├── sph_cubehash.h │ ├── sph_echo.h │ ├── sph_fugue.h │ ├── sph_groestl.h │ ├── sph_hamsi.h │ ├── sph_haval.h │ ├── sph_jh.h │ ├── sph_keccak.h │ ├── sph_luffa.h │ ├── sph_md_helper.c │ ├── sph_sha2.c │ ├── sph_sha2.h │ ├── sph_sha2big.c │ ├── sph_shabal.h │ ├── sph_shavite.h │ ├── sph_simd.h │ ├── sph_skein.h │ ├── sph_tiger.h │ ├── sph_types.h │ ├── sph_whirlpool.h │ ├── sponge.cpp │ ├── sponge.h │ ├── tiger.cpp │ └── whirlpool.c ├── amount.h ├── arith_uint256.cpp ├── arith_uint256.h ├── assets │ ├── assetdb.cpp │ ├── assetdb.h │ ├── assets.cpp │ ├── assets.h │ ├── assetsnapshotdb.cpp │ ├── assetsnapshotdb.h │ ├── assettypes.cpp │ ├── assettypes.h │ ├── messages.cpp │ ├── messages.h │ ├── myassetsdb.cpp │ ├── myassetsdb.h │ ├── restricteddb.cpp │ ├── restricteddb.h │ ├── rewards.cpp │ ├── rewards.h │ ├── snapshotrequestdb.cpp │ └── snapshotrequestdb.h ├── base58.cpp ├── base58.h ├── bench │ ├── .gitignore │ ├── Examples.cpp │ ├── base58.cpp │ ├── bench.cpp │ ├── bench.h │ ├── bench_satoxcoin.cpp │ ├── ccoins_caching.cpp │ ├── checkblock.cpp │ ├── checkqueue.cpp │ ├── coin_selection.cpp │ ├── crypto_hash.cpp │ ├── data │ │ └── block566553.raw │ ├── lockedpool.cpp │ ├── mempool_eviction.cpp │ ├── perf.cpp │ ├── perf.h │ ├── prevector_destructor.cpp │ ├── rollingbloom.cpp │ └── verify_script.cpp ├── blockencodings.cpp ├── blockencodings.h ├── bloom.cpp ├── bloom.h ├── chain.cpp ├── chain.h ├── chainparams.cpp ├── chainparams.h ├── chainparamsbase.cpp ├── chainparamsbase.h ├── chainparamsseeds.h ├── checkpoints.cpp ├── checkpoints.h ├── checkqueue.h ├── clientversion.cpp ├── clientversion.h ├── coins.cpp ├── coins.h ├── compat.h ├── compat │ ├── byteswap.h │ ├── endian.h │ ├── glibc_compat.cpp │ ├── glibc_sanity.cpp │ ├── glibcxx_sanity.cpp │ ├── sanity.h │ └── strnlen.cpp ├── compressor.cpp ├── compressor.h ├── config │ └── .empty ├── consensus │ ├── consensus.cpp │ ├── consensus.h │ ├── merkle.cpp │ ├── merkle.h │ ├── params.h │ ├── tx_verify.cpp │ ├── tx_verify.h │ └── validation.h ├── core_io.h ├── core_memusage.h ├── core_read.cpp ├── core_write.cpp ├── crypto │ ├── aes.cpp │ ├── aes.h │ ├── aes_helper.c │ ├── blake.c │ ├── bmw.c │ ├── chacha20.cpp │ ├── chacha20.h │ ├── common.h │ ├── ctaes │ │ ├── COPYING │ │ ├── README.md │ │ ├── bench.c │ │ ├── ctaes.c │ │ ├── ctaes.h │ │ └── test.c │ ├── cubehash.c │ ├── echo.c │ ├── ethash │ │ ├── helpers.hpp │ │ ├── include │ │ │ └── ethash │ │ │ │ ├── ethash.h │ │ │ │ ├── ethash.hpp │ │ │ │ ├── hash_types.h │ │ │ │ ├── hash_types.hpp │ │ │ │ ├── keccak.h │ │ │ │ ├── keccak.hpp │ │ │ │ ├── progpow.hpp │ │ │ │ └── version.h │ │ ├── lib │ │ │ ├── ethash │ │ │ │ ├── bit_manipulation.h │ │ │ │ ├── builtins.h │ │ │ │ ├── endianness.hpp │ │ │ │ ├── ethash-internal.hpp │ │ │ │ ├── ethash.cpp │ │ │ │ ├── kiss99.hpp │ │ │ │ ├── managed.cpp │ │ │ │ ├── primes.c │ │ │ │ ├── primes.h │ │ │ │ └── progpow.cpp │ │ │ ├── keccak │ │ │ │ ├── keccak.c │ │ │ │ ├── keccakf1600.c │ │ │ │ └── keccakf800.c │ │ │ └── support │ │ │ │ └── attributes.h │ │ └── progpow_test_vectors.hpp │ ├── groestl.c │ ├── hmac_sha256.cpp │ ├── hmac_sha256.h │ ├── hmac_sha512.cpp │ ├── hmac_sha512.h │ ├── jh.c │ ├── keccak.c │ ├── luffa.c │ ├── md_helper.c │ ├── ripemd160.cpp │ ├── ripemd160.h │ ├── sha1.cpp │ ├── sha1.h │ ├── sha2.c │ ├── sha256.cpp │ ├── sha256.h │ ├── sha256_sse4.cpp │ ├── sha512.cpp │ ├── sha512.h │ ├── shavite.c │ ├── simd.c │ ├── skein.c │ ├── sph_blake.h │ ├── sph_bmw.h │ ├── sph_cubehash.h │ ├── sph_echo.h │ ├── sph_fugue.c │ ├── sph_fugue.h │ ├── sph_groestl.h │ ├── sph_hamsi.c │ ├── sph_hamsi.h │ ├── sph_hamsi_helper.c │ ├── sph_jh.h │ ├── sph_keccak.h │ ├── sph_luffa.h │ ├── sph_sha2.c │ ├── sph_sha2.h │ ├── sph_sha512.c │ ├── sph_shabal.c │ ├── sph_shabal.h │ ├── sph_shavite.h │ ├── sph_simd.h │ ├── sph_skein.h │ ├── sph_types.h │ ├── sph_whirlpool.c │ ├── sph_whirlpool.h │ ├── whirlpool.c │ └── whirlpoolx.c ├── cuckoocache.h ├── dbwrapper.cpp ├── dbwrapper.h ├── fs.cpp ├── fs.h ├── hash.cpp ├── hash.h ├── httprpc.cpp ├── httprpc.h ├── httpserver.cpp ├── httpserver.h ├── indirectmap.h ├── init.cpp ├── init.h ├── key.cpp ├── key.h ├── keystore.cpp ├── keystore.h ├── leveldb │ ├── .gitignore │ ├── .travis.yml │ ├── AUTHORS │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── Makefile │ ├── NEWS │ ├── README.md │ ├── TODO │ ├── WINDOWS.md │ ├── build_detect_platform │ ├── db │ │ ├── autocompact_test.cc │ │ ├── builder.cc │ │ ├── builder.h │ │ ├── c.cc │ │ ├── c_test.c │ │ ├── corruption_test.cc │ │ ├── db_bench.cc │ │ ├── db_impl.cc │ │ ├── db_impl.h │ │ ├── db_iter.cc │ │ ├── db_iter.h │ │ ├── db_test.cc │ │ ├── dbformat.cc │ │ ├── dbformat.h │ │ ├── dbformat_test.cc │ │ ├── dumpfile.cc │ │ ├── fault_injection_test.cc │ │ ├── filename.cc │ │ ├── filename.h │ │ ├── filename_test.cc │ │ ├── leveldbutil.cc │ │ ├── log_format.h │ │ ├── log_reader.cc │ │ ├── log_reader.h │ │ ├── log_test.cc │ │ ├── log_writer.cc │ │ ├── log_writer.h │ │ ├── memtable.cc │ │ ├── memtable.h │ │ ├── recovery_test.cc │ │ ├── repair.cc │ │ ├── skiplist.h │ │ ├── skiplist_test.cc │ │ ├── snapshot.h │ │ ├── table_cache.cc │ │ ├── table_cache.h │ │ ├── version_edit.cc │ │ ├── version_edit.h │ │ ├── version_edit_test.cc │ │ ├── version_set.cc │ │ ├── version_set.h │ │ ├── version_set_test.cc │ │ ├── write_batch.cc │ │ ├── write_batch_internal.h │ │ └── write_batch_test.cc │ ├── doc │ │ ├── bench │ │ │ ├── db_bench_sqlite3.cc │ │ │ └── db_bench_tree_db.cc │ │ ├── benchmark.html │ │ ├── impl.md │ │ ├── index.md │ │ ├── log_format.md │ │ └── table_format.md │ ├── helpers │ │ └── memenv │ │ │ ├── memenv.cc │ │ │ ├── memenv.h │ │ │ └── memenv_test.cc │ ├── include │ │ └── leveldb │ │ │ ├── c.h │ │ │ ├── cache.h │ │ │ ├── comparator.h │ │ │ ├── db.h │ │ │ ├── dumpfile.h │ │ │ ├── env.h │ │ │ ├── filter_policy.h │ │ │ ├── iterator.h │ │ │ ├── options.h │ │ │ ├── slice.h │ │ │ ├── status.h │ │ │ ├── table.h │ │ │ ├── table_builder.h │ │ │ └── write_batch.h │ ├── issues │ │ ├── issue178_test.cc │ │ └── issue200_test.cc │ ├── port │ │ ├── README │ │ ├── atomic_pointer.h │ │ ├── port.h │ │ ├── port_example.h │ │ ├── port_posix.cc │ │ ├── port_posix.h │ │ ├── port_posix_sse.cc │ │ ├── port_win.cc │ │ ├── port_win.h │ │ ├── thread_annotations.h │ │ └── win │ │ │ └── stdint.h │ ├── table │ │ ├── block.cc │ │ ├── block.h │ │ ├── block_builder.cc │ │ ├── block_builder.h │ │ ├── filter_block.cc │ │ ├── filter_block.h │ │ ├── filter_block_test.cc │ │ ├── format.cc │ │ ├── format.h │ │ ├── iterator.cc │ │ ├── iterator_wrapper.h │ │ ├── merger.cc │ │ ├── merger.h │ │ ├── table.cc │ │ ├── table_builder.cc │ │ ├── table_test.cc │ │ ├── two_level_iterator.cc │ │ └── two_level_iterator.h │ └── util │ │ ├── arena.cc │ │ ├── arena.h │ │ ├── arena_test.cc │ │ ├── bloom.cc │ │ ├── bloom_test.cc │ │ ├── cache.cc │ │ ├── cache_test.cc │ │ ├── coding.cc │ │ ├── coding.h │ │ ├── coding_test.cc │ │ ├── comparator.cc │ │ ├── crc32c.cc │ │ ├── crc32c.h │ │ ├── crc32c_test.cc │ │ ├── env.cc │ │ ├── env_posix.cc │ │ ├── env_posix_test.cc │ │ ├── env_posix_test_helper.h │ │ ├── env_test.cc │ │ ├── env_win.cc │ │ ├── filter_policy.cc │ │ ├── hash.cc │ │ ├── hash.h │ │ ├── hash_test.cc │ │ ├── histogram.cc │ │ ├── histogram.h │ │ ├── logging.cc │ │ ├── logging.h │ │ ├── mutexlock.h │ │ ├── options.cc │ │ ├── posix_logger.h │ │ ├── random.h │ │ ├── status.cc │ │ ├── testharness.cc │ │ ├── testharness.h │ │ ├── testutil.cc │ │ └── testutil.h ├── limitedmap.h ├── memusage.h ├── merkleblock.cpp ├── merkleblock.h ├── miner.cpp ├── miner.h ├── net.cpp ├── net.h ├── net_processing.cpp ├── net_processing.h ├── netaddress.cpp ├── netaddress.h ├── netbase.cpp ├── netbase.h ├── netmessagemaker.h ├── noui.cpp ├── noui.h ├── obj-test │ └── .gitignore ├── obj │ └── .gitignore ├── policy │ ├── feerate.cpp │ ├── feerate.h │ ├── fees.cpp │ ├── fees.h │ ├── policy.cpp │ ├── policy.h │ ├── rbf.cpp │ └── rbf.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 │ ├── Info.plist.in │ ├── addressbookpage.cpp │ ├── addressbookpage.h │ ├── addresstablemodel.cpp │ ├── addresstablemodel.h │ ├── askpassphrasedialog.cpp │ ├── askpassphrasedialog.h │ ├── assetcontroldialog.cpp │ ├── assetcontroldialog.h │ ├── assetcontroltreewidget.cpp │ ├── assetcontroltreewidget.h │ ├── assetfilterproxy.cpp │ ├── assetfilterproxy.h │ ├── assetrecord.h │ ├── assetsdialog.cpp │ ├── assetsdialog.h │ ├── assettablemodel.cpp │ ├── assettablemodel.h │ ├── bantablemodel.cpp │ ├── bantablemodel.h │ ├── callback.h │ ├── clientmodel.cpp │ ├── clientmodel.h │ ├── coincontroldialog.cpp │ ├── coincontroldialog.h │ ├── coincontroltreewidget.cpp │ ├── coincontroltreewidget.h │ ├── createassetdialog.cpp │ ├── createassetdialog.h │ ├── csvmodelwriter.cpp │ ├── csvmodelwriter.h │ ├── darkstyle.cpp │ ├── darkstyle.h │ ├── editaddressdialog.cpp │ ├── editaddressdialog.h │ ├── encryptdialog.cpp │ ├── encryptdialog.h │ ├── forms │ │ ├── addressbookpage.ui │ │ ├── askpassphrasedialog.ui │ │ ├── assetcontroldialog.ui │ │ ├── assetsdialog.ui │ │ ├── coincontroldialog.ui │ │ ├── createassetdialog.ui │ │ ├── debugwindow.ui │ │ ├── editaddressdialog.ui │ │ ├── encryptdialog.ui │ │ ├── helpmessagedialog.ui │ │ ├── intro.ui │ │ ├── mnemonicdialog.ui │ │ ├── modaloverlay.ui │ │ ├── openuridialog.ui │ │ ├── optionsdialog.ui │ │ ├── overviewpage.ui │ │ ├── receivecoinsdialog.ui │ │ ├── receiverequestdialog.ui │ │ ├── reissueassetdialog.ui │ │ ├── restrictedassetsdialog.ui │ │ ├── restrictedassignqualifier.ui │ │ ├── restrictedfreezeaddress.ui │ │ ├── sendassetsentry.ui │ │ ├── sendcoinsdialog.ui │ │ ├── sendcoinsentry.ui │ │ ├── signverifymessagedialog.ui │ │ └── transactiondescdialog.ui │ ├── guiconstants.h │ ├── guiutil.cpp │ ├── guiutil.h │ ├── intro.cpp │ ├── intro.h │ ├── locale │ │ ├── satoxcoin_af.ts │ │ ├── satoxcoin_af_ZA.ts │ │ ├── satoxcoin_ar.ts │ │ ├── satoxcoin_be_BY.ts │ │ ├── satoxcoin_bg.ts │ │ ├── satoxcoin_bg_BG.ts │ │ ├── satoxcoin_ca.ts │ │ ├── satoxcoin_ca@valencia.ts │ │ ├── satoxcoin_ca_ES.ts │ │ ├── satoxcoin_cs.ts │ │ ├── satoxcoin_cy.ts │ │ ├── satoxcoin_da.ts │ │ ├── satoxcoin_de.ts │ │ ├── satoxcoin_el.ts │ │ ├── satoxcoin_el_GR.ts │ │ ├── satoxcoin_en.ts │ │ ├── satoxcoin_en_GB.ts │ │ ├── satoxcoin_eo.ts │ │ ├── satoxcoin_es.ts │ │ ├── satoxcoin_es_AR.ts │ │ ├── satoxcoin_es_CL.ts │ │ ├── satoxcoin_es_CO.ts │ │ ├── satoxcoin_es_DO.ts │ │ ├── satoxcoin_es_ES.ts │ │ ├── satoxcoin_es_MX.ts │ │ ├── satoxcoin_es_UY.ts │ │ ├── satoxcoin_es_VE.ts │ │ ├── satoxcoin_et.ts │ │ ├── satoxcoin_et_EE.ts │ │ ├── satoxcoin_eu_ES.ts │ │ ├── satoxcoin_fa.ts │ │ ├── satoxcoin_fa_IR.ts │ │ ├── satoxcoin_fi.ts │ │ ├── satoxcoin_fr.ts │ │ ├── satoxcoin_fr_CA.ts │ │ ├── satoxcoin_fr_FR.ts │ │ ├── satoxcoin_gl.ts │ │ ├── satoxcoin_he.ts │ │ ├── satoxcoin_hi_IN.ts │ │ ├── satoxcoin_hr.ts │ │ ├── satoxcoin_hu.ts │ │ ├── satoxcoin_id_ID.ts │ │ ├── satoxcoin_it.ts │ │ ├── satoxcoin_it_IT.ts │ │ ├── satoxcoin_ja.ts │ │ ├── satoxcoin_ka.ts │ │ ├── satoxcoin_kk_KZ.ts │ │ ├── satoxcoin_ko_KR.ts │ │ ├── satoxcoin_ku_IQ.ts │ │ ├── satoxcoin_ky.ts │ │ ├── satoxcoin_la.ts │ │ ├── satoxcoin_lt.ts │ │ ├── satoxcoin_lv_LV.ts │ │ ├── satoxcoin_mk_MK.ts │ │ ├── satoxcoin_mn.ts │ │ ├── satoxcoin_ms_MY.ts │ │ ├── satoxcoin_nb.ts │ │ ├── satoxcoin_ne.ts │ │ ├── satoxcoin_nl.ts │ │ ├── satoxcoin_pl.ts │ │ ├── satoxcoin_pt_BR.ts │ │ ├── satoxcoin_pt_PT.ts │ │ ├── satoxcoin_ro.ts │ │ ├── satoxcoin_ro_RO.ts │ │ ├── satoxcoin_ru.ts │ │ ├── satoxcoin_sk.ts │ │ ├── satoxcoin_sl_SI.ts │ │ ├── satoxcoin_sq.ts │ │ ├── satoxcoin_sr.ts │ │ ├── satoxcoin_sr@latin.ts │ │ ├── satoxcoin_sv.ts │ │ ├── satoxcoin_ta.ts │ │ ├── satoxcoin_th_TH.ts │ │ ├── satoxcoin_tr.ts │ │ ├── satoxcoin_tr_TR.ts │ │ ├── satoxcoin_uk.ts │ │ ├── satoxcoin_ur_PK.ts │ │ ├── satoxcoin_uz@Cyrl.ts │ │ ├── satoxcoin_vi.ts │ │ ├── satoxcoin_vi_VN.ts │ │ ├── satoxcoin_zh_CN.ts │ │ ├── satoxcoin_zh_HK.ts │ │ └── satoxcoin_zh_TW.ts │ ├── macdockiconhandler.h │ ├── macdockiconhandler.mm │ ├── macnotificationhandler.h │ ├── macnotificationhandler.mm │ ├── mnemonicdialog.cpp │ ├── mnemonicdialog.h │ ├── modaloverlay.cpp │ ├── modaloverlay.h │ ├── myrestrictedassetrecord.cpp │ ├── myrestrictedassetrecord.h │ ├── myrestrictedassettablemodel.cpp │ ├── myrestrictedassettablemodel.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 │ ├── paymentrequest.proto │ ├── paymentrequestplus.cpp │ ├── paymentrequestplus.h │ ├── paymentserver.cpp │ ├── paymentserver.h │ ├── peertablemodel.cpp │ ├── peertablemodel.h │ ├── platformstyle.cpp │ ├── platformstyle.h │ ├── qvalidatedlineedit.cpp │ ├── qvalidatedlineedit.h │ ├── qvaluecombobox.cpp │ ├── qvaluecombobox.h │ ├── receivecoinsdialog.cpp │ ├── receivecoinsdialog.h │ ├── receiverequestdialog.cpp │ ├── receiverequestdialog.h │ ├── recentrequeststablemodel.cpp │ ├── recentrequeststablemodel.h │ ├── reissueassetdialog.cpp │ ├── reissueassetdialog.h │ ├── res │ │ ├── darkstyle │ │ │ ├── darkstyle.qss │ │ │ ├── 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 │ │ ├── fonts │ │ │ ├── OpenSans-Bold.ttf │ │ │ ├── OpenSans-BoldItalic.ttf │ │ │ ├── OpenSans-ExtraBold.ttf │ │ │ ├── OpenSans-ExtraBoldItalic.ttf │ │ │ ├── OpenSans-Italic.ttf │ │ │ ├── OpenSans-Light.ttf │ │ │ ├── OpenSans-LightItalic.ttf │ │ │ ├── OpenSans-Regular.ttf │ │ │ ├── OpenSans-SemiBold.ttf │ │ │ └── OpenSans-SemiBoldItalic.ttf │ │ ├── icons │ │ │ ├── about.png │ │ │ ├── about_qt.png │ │ │ ├── add.png │ │ │ ├── address-book.png │ │ │ ├── asset_administrator.png │ │ │ ├── asset_administrator_dark.png │ │ │ ├── asset_create.png │ │ │ ├── asset_create_selected.png │ │ │ ├── asset_manage.png │ │ │ ├── asset_manage_selected.png │ │ │ ├── asset_restricted.png │ │ │ ├── asset_restricted_selected.png │ │ │ ├── asset_transfer.png │ │ │ ├── asset_transfer_selected.png │ │ │ ├── chevron.png │ │ │ ├── clock1.png │ │ │ ├── clock2.png │ │ │ ├── clock3.png │ │ │ ├── clock4.png │ │ │ ├── clock5.png │ │ │ ├── configure.png │ │ │ ├── connect0.png │ │ │ ├── connect1.png │ │ │ ├── connect2.png │ │ │ ├── connect3.png │ │ │ ├── connect4.png │ │ │ ├── debugwindow.png │ │ │ ├── edit.png │ │ │ ├── editcopy.png │ │ │ ├── editpaste.png │ │ │ ├── export.png │ │ │ ├── external_link.png │ │ │ ├── external_link_dark.png │ │ │ ├── eye.png │ │ │ ├── eye_minus.png │ │ │ ├── eye_plus.png │ │ │ ├── filesave.png │ │ │ ├── fontbigger.png │ │ │ ├── fontsmaller.png │ │ │ ├── hd_disabled.png │ │ │ ├── hd_enabled.png │ │ │ ├── hd_enabled_44.png │ │ │ ├── history.png │ │ │ ├── history_selected.png │ │ │ ├── info.png │ │ │ ├── key.png │ │ │ ├── lock_closed.png │ │ │ ├── lock_open.png │ │ │ ├── messageing.png │ │ │ ├── messageing_selected.png │ │ │ ├── network_disabled.png │ │ │ ├── open.png │ │ │ ├── overview.png │ │ │ ├── overview_selected.png │ │ │ ├── quit.png │ │ │ ├── receive.png │ │ │ ├── receive_selected.png │ │ │ ├── refresh.png │ │ │ ├── remove.png │ │ │ ├── satoxcoin.icns │ │ │ ├── satoxcoin.ico │ │ │ ├── satoxcoin.png │ │ │ ├── satoxcoin_large.png │ │ │ ├── satoxcoin_small.png │ │ │ ├── satoxcoin_testnet.ico │ │ │ ├── satoxcoincointext.png │ │ │ ├── send.png │ │ │ ├── send_selected.png │ │ │ ├── synced.png │ │ │ ├── transaction0.png │ │ │ ├── transaction2.png │ │ │ ├── transaction_abandoned.png │ │ │ ├── transaction_conflicted.png │ │ │ ├── tx_asset_input.png │ │ │ ├── tx_asset_output.png │ │ │ ├── tx_inout.png │ │ │ ├── tx_input.png │ │ │ ├── tx_mined.png │ │ │ ├── tx_output.png │ │ │ ├── verify.png │ │ │ ├── voting.png │ │ │ ├── voting_selected.png │ │ │ └── warning.png │ │ ├── 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 │ │ ├── satoxcoin-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 │ │ │ ├── hd_disabled.svg │ │ │ ├── hd_enabled.svg │ │ │ ├── mine.svg │ │ │ ├── network_disabled.svg │ │ │ ├── qt.svg │ │ │ ├── spinner.png │ │ │ ├── transaction0.svg │ │ │ ├── tx_in.svg │ │ │ ├── tx_inout.svg │ │ │ └── verify.svg │ ├── restrictedassetsdialog.cpp │ ├── restrictedassetsdialog.h │ ├── restrictedassignqualifier.cpp │ ├── restrictedassignqualifier.h │ ├── restrictedfreezeaddress.cpp │ ├── restrictedfreezeaddress.h │ ├── rpcconsole.cpp │ ├── rpcconsole.h │ ├── satoxcoin-qt.config │ ├── satoxcoin-qt.creator │ ├── satoxcoin-qt.creator.user │ ├── satoxcoin-qt.files │ ├── satoxcoin-qt.includes │ ├── satoxcoin.cpp │ ├── satoxcoin.qrc │ ├── satoxcoin_locale.qrc │ ├── satoxcoinaddressvalidator.cpp │ ├── satoxcoinaddressvalidator.h │ ├── satoxcoinamountfield.cpp │ ├── satoxcoinamountfield.h │ ├── satoxcoingui.cpp │ ├── satoxcoingui.h │ ├── satoxcoinstrings.cpp │ ├── satoxcoinunits.cpp │ ├── satoxcoinunits.h │ ├── sendassetsentry.cpp │ ├── sendassetsentry.h │ ├── sendcoinsdialog.cpp │ ├── sendcoinsdialog.h │ ├── sendcoinsentry.cpp │ ├── sendcoinsentry.h │ ├── signverifymessagedialog.cpp │ ├── signverifymessagedialog.h │ ├── splashscreen.cpp │ ├── splashscreen.h │ ├── test │ │ ├── compattests.cpp │ │ ├── compattests.h │ │ ├── paymentrequestdata.h │ │ ├── paymentservertests.cpp │ │ ├── paymentservertests.h │ │ ├── rpcnestedtests.cpp │ │ ├── rpcnestedtests.h │ │ ├── test_main.cpp │ │ ├── uritests.cpp │ │ ├── uritests.h │ │ ├── wallettests.cpp │ │ └── wallettests.h │ ├── trafficgraphwidget.cpp │ ├── trafficgraphwidget.h │ ├── transactiondesc.cpp │ ├── transactiondesc.h │ ├── transactiondescdialog.cpp │ ├── transactiondescdialog.h │ ├── transactionfilterproxy.cpp │ ├── transactionfilterproxy.h │ ├── transactionrecord.cpp │ ├── transactionrecord.h │ ├── transactiontablemodel.cpp │ ├── transactiontablemodel.h │ ├── transactionview.cpp │ ├── transactionview.h │ ├── utilitydialog.cpp │ ├── utilitydialog.h │ ├── walletframe.cpp │ ├── walletframe.h │ ├── walletmodel.cpp │ ├── walletmodel.h │ ├── walletmodeltransaction.cpp │ ├── walletmodeltransaction.h │ ├── walletview.cpp │ ├── walletview.h │ ├── winshutdownmonitor.cpp │ └── winshutdownmonitor.h ├── random.cpp ├── random.h ├── rest.cpp ├── reverse_iterator.h ├── reverselock.h ├── rpc │ ├── assets.cpp │ ├── blockchain.cpp │ ├── blockchain.h │ ├── client.cpp │ ├── client.h │ ├── messages.cpp │ ├── mining.cpp │ ├── mining.h │ ├── misc.cpp │ ├── net.cpp │ ├── protocol.cpp │ ├── protocol.h │ ├── rawtransaction.cpp │ ├── register.h │ ├── rewards.cpp │ ├── safemode.cpp │ ├── safemode.h │ ├── server.cpp │ ├── server.h │ └── test.json ├── satoxcoin-cli-res.rc ├── satoxcoin-cli.cpp ├── satoxcoin-tx-res.rc ├── satoxcoin-tx.cpp ├── satoxcoind-res.rc ├── satoxcoind.cpp ├── scheduler.cpp ├── scheduler.h ├── script │ ├── interpreter.cpp │ ├── interpreter.h │ ├── ismine.cpp │ ├── ismine.h │ ├── satoxcoinconsensus.cpp │ ├── satoxcoinconsensus.h │ ├── script.cpp │ ├── script.h │ ├── script_error.cpp │ ├── script_error.h │ ├── sigcache.cpp │ ├── sigcache.h │ ├── sign.cpp │ ├── sign.h │ ├── standard.cpp │ └── standard.h ├── secp256k1 │ ├── .gitignore │ ├── .travis.yml │ ├── COPYING │ ├── Makefile.am │ ├── README.md │ ├── TODO │ ├── autogen.sh │ ├── build-aux │ │ └── m4 │ │ │ ├── ax_jni_include_dir.m4 │ │ │ ├── ax_prog_cc_for_build.m4 │ │ │ └── meowcoin_secp.m4 │ ├── configure.ac │ ├── contrib │ │ ├── lax_der_parsing.c │ │ ├── lax_der_parsing.h │ │ ├── lax_der_privatekey_parsing.c │ │ └── lax_der_privatekey_parsing.h │ ├── include │ │ ├── secp256k1.h │ │ ├── secp256k1_ecdh.h │ │ └── secp256k1_recovery.h │ ├── libsecp256k1.pc.in │ ├── obj │ │ └── .gitignore │ ├── sage │ │ ├── group_prover.sage │ │ ├── secp256k1.sage │ │ └── weierstrass_prover.sage │ └── src │ │ ├── asm │ │ └── field_10x26_arm.s │ │ ├── basic-config.h │ │ ├── bench.h │ │ ├── bench_ecdh.c │ │ ├── bench_internal.c │ │ ├── bench_recover.c │ │ ├── bench_sign.c │ │ ├── bench_verify.c │ │ ├── ecdsa.h │ │ ├── ecdsa_impl.h │ │ ├── eckey.h │ │ ├── eckey_impl.h │ │ ├── ecmult.h │ │ ├── ecmult_const.h │ │ ├── ecmult_const_impl.h │ │ ├── ecmult_gen.h │ │ ├── ecmult_gen_impl.h │ │ ├── ecmult_impl.h │ │ ├── field.h │ │ ├── field_10x26.h │ │ ├── field_10x26_impl.h │ │ ├── field_5x52.h │ │ ├── field_5x52_asm_impl.h │ │ ├── field_5x52_impl.h │ │ ├── field_5x52_int128_impl.h │ │ ├── field_impl.h │ │ ├── gen_context.c │ │ ├── group.h │ │ ├── group_impl.h │ │ ├── hash.h │ │ ├── hash_impl.h │ │ ├── java │ │ ├── org │ │ │ ├── meowcoin │ │ │ │ ├── NativeSecp256k1.java │ │ │ │ ├── NativeSecp256k1Test.java │ │ │ │ ├── NativeSecp256k1Util.java │ │ │ │ └── Secp256k1Context.java │ │ │ └── satoxcoin │ │ │ │ ├── NativeSecp256k1.java │ │ │ │ ├── NativeSecp256k1Test.java │ │ │ │ ├── NativeSecp256k1Util.java │ │ │ │ └── Secp256k1Context.java │ │ ├── org_meowcoin_NativeSecp256k1.c │ │ ├── org_meowcoin_NativeSecp256k1.h │ │ ├── org_meowcoin_Secp256k1Context.c │ │ └── org_meowcoin_Secp256k1Context.h │ │ ├── modules │ │ ├── ecdh │ │ │ ├── Makefile.am.include │ │ │ ├── main_impl.h │ │ │ └── tests_impl.h │ │ └── recovery │ │ │ ├── Makefile.am.include │ │ │ ├── main_impl.h │ │ │ └── tests_impl.h │ │ ├── num.h │ │ ├── num_gmp.h │ │ ├── num_gmp_impl.h │ │ ├── num_impl.h │ │ ├── scalar.h │ │ ├── scalar_4x64.h │ │ ├── scalar_4x64_impl.h │ │ ├── scalar_8x32.h │ │ ├── scalar_8x32_impl.h │ │ ├── scalar_impl.h │ │ ├── scalar_low.h │ │ ├── scalar_low_impl.h │ │ ├── secp256k1.c │ │ ├── testrand.h │ │ ├── testrand_impl.h │ │ ├── tests.c │ │ ├── tests_exhaustive.c │ │ └── util.h ├── serialize.h ├── spentindex.h ├── streams.h ├── support │ ├── allocators │ │ ├── secure.h │ │ └── zeroafterfree.h │ ├── cleanse.cpp │ ├── cleanse.h │ ├── events.h │ ├── lockedpool.cpp │ └── lockedpool.h ├── sync.cpp ├── sync.h ├── test │ ├── DoS_tests.cpp │ ├── README.md │ ├── addrman_tests.cpp │ ├── allocator_tests.cpp │ ├── amount_tests.cpp │ ├── arith_uint256_tests.cpp │ ├── assets │ │ ├── asset_reissue_tests.cpp │ │ ├── asset_tests.cpp │ │ ├── asset_tx_tests.cpp │ │ ├── cache_tests.cpp │ │ ├── messaging_tests.cpp │ │ ├── null_asset_data_tests.cpp │ │ ├── qualifier_tests.cpp │ │ ├── restricted_tests.cpp │ │ ├── serialization_tests.cpp │ │ ├── unique_tests.cpp │ │ └── verifier_string_tests.cpp │ ├── base32_tests.cpp │ ├── base58_tests.cpp │ ├── base64_tests.cpp │ ├── bech32_tests.cpp │ ├── bip32_tests.cpp │ ├── bip39_tests.cpp │ ├── blockencodings_tests.cpp │ ├── bloom_tests.cpp │ ├── bswap_tests.cpp │ ├── checkqueue_tests.cpp │ ├── coins_tests.cpp │ ├── compress_tests.cpp │ ├── crypto_tests.cpp │ ├── cuckoocache_tests.cpp │ ├── data │ │ ├── README.md │ │ ├── base58_encode_decode.json │ │ ├── base58_keys_invalid.json │ │ ├── base58_keys_valid.json │ │ ├── bip39_vectors.json │ │ ├── script_tests.json │ │ ├── sighash.json │ │ ├── tx_invalid.json │ │ └── tx_valid.json │ ├── dbwrapper_tests.cpp │ ├── getarg_tests.cpp │ ├── hash_tests.cpp │ ├── kawpow_tests.cpp │ ├── key_tests.cpp │ ├── limitedmap_tests.cpp │ ├── main_tests.cpp │ ├── mempool_tests.cpp │ ├── merkle_tests.cpp │ ├── merkleblock_tests.cpp │ ├── miner_tests.cpp │ ├── multisig_tests.cpp │ ├── net_tests.cpp │ ├── netbase_tests.cpp │ ├── pmt_tests.cpp │ ├── policyestimator_tests.cpp │ ├── pow_tests.cpp │ ├── prevector_tests.cpp │ ├── raii_event_tests.cpp │ ├── random_tests.cpp │ ├── reverselock_tests.cpp │ ├── rpc_tests.cpp │ ├── sanity_tests.cpp │ ├── scheduler_tests.cpp │ ├── script_P2PKH_tests.cpp │ ├── script_P2PK_tests.cpp │ ├── script_P2SH_tests.cpp │ ├── script_standard_tests.cpp │ ├── script_tests.cpp │ ├── scriptnum10.h │ ├── scriptnum_tests.cpp │ ├── serialize_tests.cpp │ ├── sighash_tests.cpp │ ├── sigopcount_tests.cpp │ ├── skiplist_tests.cpp │ ├── streams_tests.cpp │ ├── test_satoxcoin.cpp │ ├── test_satoxcoin.h │ ├── test_satoxcoin_fuzzy.cpp │ ├── test_satoxcoin_hash.cpp │ ├── test_satoxcoin_main.cpp │ ├── timedata_tests.cpp │ ├── torcontrol_tests.cpp │ ├── transaction_tests.cpp │ ├── txvalidationcache_tests.cpp │ ├── uint256_tests.cpp │ ├── univalue_tests.cpp │ ├── util_tests.cpp │ └── versionbits_tests.cpp ├── threadinterrupt.cpp ├── threadinterrupt.h ├── threadsafety.h ├── timedata.cpp ├── timedata.h ├── 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 │ │ ├── fail5.json │ │ ├── fail6.json │ │ ├── fail7.json │ │ ├── fail8.json │ │ ├── fail9.json │ │ ├── no_nul.cpp │ │ ├── object.cpp │ │ ├── pass1.json │ │ ├── pass2.json │ │ ├── pass3.json │ │ ├── round1.json │ │ ├── round2.json │ │ ├── round3.json │ │ ├── round4.json │ │ ├── round5.json │ │ ├── round6.json │ │ ├── round7.json │ │ ├── test_json.cpp │ │ └── unitester.cpp ├── util.cpp ├── util.h ├── utilmoneystr.cpp ├── utilmoneystr.h ├── utilstrencodings.cpp ├── utilstrencodings.h ├── utiltime.cpp ├── utiltime.h ├── validation.cpp ├── validation.h ├── validationinterface.cpp ├── validationinterface.h ├── version.h ├── versionbits.cpp ├── versionbits.h ├── wallet │ ├── bip39.cpp │ ├── bip39.h │ ├── bip39_english.h │ ├── coincontrol.h │ ├── crypter.cpp │ ├── crypter.h │ ├── db.cpp │ ├── db.h │ ├── feebumper.cpp │ ├── feebumper.h │ ├── fees.cpp │ ├── fees.h │ ├── init.cpp │ ├── init.h │ ├── rpcdump.cpp │ ├── rpcwallet.cpp │ ├── rpcwallet.h │ ├── test │ │ ├── accounting_tests.cpp │ │ ├── crypto_tests.cpp │ │ ├── wallet_test_fixture.cpp │ │ ├── wallet_test_fixture.h │ │ └── wallet_tests.cpp │ ├── wallet.cpp │ ├── wallet.h │ ├── walletdb.cpp │ └── walletdb.h ├── warnings.cpp ├── warnings.h └── zmq │ ├── zmqabstractnotifier.cpp │ ├── zmqabstractnotifier.h │ ├── zmqconfig.h │ ├── zmqnotificationinterface.cpp │ ├── zmqnotificationinterface.h │ ├── zmqpublishnotifier.cpp │ └── zmqpublishnotifier.h ├── static-builds ├── README.md ├── script.sh └── staticbuild.md └── test ├── README.md ├── config.ini.in ├── functional ├── .gitignore ├── README.md ├── combine_logs.py ├── combined_log_template.html ├── create_cache.py ├── example_test.py ├── feature_assets.py ├── feature_assets_mempool.py ├── feature_assets_reorg.py ├── feature_assumevalid.py ├── feature_bip68_sequence.py ├── feature_cltv.py ├── feature_dbcrash.py ├── feature_dersig.py ├── feature_fee_estimation.py ├── feature_listmyassets.py ├── feature_loadblock.py ├── feature_maxreorgdepth.py ├── feature_maxuploadtarget.py ├── feature_messaging.py ├── feature_minchainwork.py ├── feature_notifications.py ├── feature_nulldummy.py ├── feature_proxy.py ├── feature_pruning.py ├── feature_raw_restricted_assets.py ├── feature_rawassettransactions.py ├── feature_rbf.py ├── feature_reindex.py ├── feature_restricted_assets.py ├── feature_rewards.py ├── feature_segwit.py ├── feature_shutdown.py ├── feature_uacomment.py ├── feature_unique_assets.py ├── feature_versionbits_warning.py ├── interface_http.py ├── interface_rest.py ├── interface_rpc.py ├── interface_satoxcoin_cli.py ├── interface_zmq.py ├── mempool_limit.py ├── mempool_packages.py ├── mempool_persist.py ├── mempool_reorg.py ├── mempool_resurrect.py ├── mempool_spend_coinbase.py ├── mining_basic.py ├── mining_getblocktemplate_longpoll.py ├── mining_prioritisetransaction.py ├── p2p_compactblocks.py ├── p2p_disconnect_ban.py ├── p2p_feefilter.py ├── p2p_fingerprint.py ├── p2p_leak.py ├── p2p_leak_tx.py ├── p2p_mempool.py ├── p2p_segwit.py ├── p2p_sendheaders.py ├── p2p_timeouts.py ├── p2p_unrequested_blocks.py ├── rpc_addressindex.py ├── rpc_assettransfer.py ├── rpc_bind.py ├── rpc_blockchain.py ├── rpc_decodescript.py ├── rpc_deprecated.py ├── rpc_fundrawtransaction.py ├── rpc_getchaintips.py ├── rpc_invalidateblock.py ├── rpc_misc.py ├── rpc_named_arguments.py ├── rpc_net.py ├── rpc_preciousblock.py ├── rpc_rawtransaction.py ├── rpc_setban.py ├── rpc_signmessage.py ├── rpc_signrawtransaction.py ├── rpc_spentindex.py ├── rpc_timestampindex.py ├── rpc_txindex.py ├── rpc_txoutproof.py ├── rpc_uptime.py ├── rpc_users.py ├── test_framework │ ├── __init__.py │ ├── address.py │ ├── authproxy.py │ ├── bignum.py │ ├── blocktools.py │ ├── coverage.py │ ├── key.py │ ├── messages.py │ ├── mininode.py │ ├── netutil.py │ ├── script.py │ ├── siphash.py │ ├── socks5.py │ ├── test_framework.py │ ├── test_node.py │ ├── util.py │ └── wallet_util.py ├── test_runner.py ├── wallet_abandonconflict.py ├── wallet_backup.py ├── wallet_basic.py ├── wallet_bip44.py ├── wallet_bumpfee.py ├── wallet_coinbase_category.py ├── wallet_create_tx.py ├── wallet_disable.py ├── wallet_dump.py ├── wallet_encryption.py ├── wallet_groups.py ├── wallet_hd.py ├── wallet_import_rescan.py ├── wallet_import_with_label.py ├── wallet_importmulti.py ├── wallet_importprunedfunds.py ├── wallet_keypool.py ├── wallet_keypool_topup.py ├── wallet_labels.py ├── wallet_listreceivedby.py ├── wallet_listsinceblock.py ├── wallet_listtransactions.py ├── wallet_multiwallet.py ├── wallet_reorgsrestore.py ├── wallet_resendtransactions.py ├── wallet_txn_clone.py ├── wallet_txn_doublespend.py └── wallet_zapwallettxes.py └── util ├── data ├── blanktxv1.hex ├── blanktxv1.json ├── blanktxv2.hex ├── blanktxv2.json ├── satoxcoin-util-test.json ├── tt-delin1-out.hex ├── tt-delin1-out.json ├── tt-delout1-out.hex ├── tt-delout1-out.json ├── tt-locktime317000-out.hex ├── tt-locktime317000-out.json ├── tx394b54bb.hex ├── txcreate1.hex ├── txcreate1.json ├── txcreate2.hex ├── txcreate2.json ├── txcreatedata1.hex ├── txcreatedata1.json ├── txcreatedata2.hex ├── txcreatedata2.json ├── txcreatedata_seq0.hex ├── txcreatedata_seq0.json ├── txcreatedata_seq1.hex ├── txcreatedata_seq1.json ├── txcreatemultisig1.hex ├── txcreatemultisig1.json ├── txcreatemultisig2.hex ├── txcreatemultisig2.json ├── txcreatemultisig3.hex ├── txcreatemultisig3.json ├── txcreatemultisig4.hex ├── txcreatemultisig4.json ├── txcreatemultisig5.json ├── txcreateoutpubkey1.hex ├── txcreateoutpubkey1.json ├── txcreateoutpubkey2.hex ├── txcreateoutpubkey2.json ├── txcreateoutpubkey3.hex ├── txcreateoutpubkey3.json ├── txcreatescript1.hex ├── txcreatescript1.json ├── txcreatescript2.hex ├── txcreatescript2.json ├── txcreatescript3.hex ├── txcreatescript3.json ├── txcreatescript4.hex ├── txcreatescript4.json ├── txcreatesignv1.hex ├── txcreatesignv1.json └── txcreatesignv2.hex └── satoxcoin-util-test.py /.gitattributes: -------------------------------------------------------------------------------- 1 | src/clientversion.cpp export-subst 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/scripts/06-package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/.github/scripts/06-package.sh -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/.gitignore -------------------------------------------------------------------------------- /.pydevproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/.pydevproject -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/COPYING -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.amd64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/Dockerfile.amd64 -------------------------------------------------------------------------------- /Dockerfile.arm32v7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/Dockerfile.arm32v7 -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/INSTALL.md -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/README.md -------------------------------------------------------------------------------- /assets/asset_metadata_spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/assets/asset_metadata_spec.md -------------------------------------------------------------------------------- /assets/tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/assets/tools/README.md -------------------------------------------------------------------------------- /assets/tools/asset_audit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/assets/tools/asset_audit.py -------------------------------------------------------------------------------- /assets/tools/blockfacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/assets/tools/blockfacts.py -------------------------------------------------------------------------------- /assets/tools/ipfs_pinner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/assets/tools/ipfs_pinner.py -------------------------------------------------------------------------------- /assets/tools/issuebulk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/assets/tools/issuebulk.py -------------------------------------------------------------------------------- /assets/tools/txfacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/assets/tools/txfacts.py -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/autogen.sh -------------------------------------------------------------------------------- /binaries/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/binaries/README.md -------------------------------------------------------------------------------- /community/README.md: -------------------------------------------------------------------------------- 1 | # Satoxcoin - Community Ideas 2 | 3 | -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/configure.ac -------------------------------------------------------------------------------- /contrib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/contrib/README.md -------------------------------------------------------------------------------- /contrib/debian/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/contrib/debian/README.md -------------------------------------------------------------------------------- /contrib/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/contrib/debian/changelog -------------------------------------------------------------------------------- /contrib/debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /contrib/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/contrib/debian/control -------------------------------------------------------------------------------- /contrib/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/contrib/debian/copyright -------------------------------------------------------------------------------- /contrib/debian/gbp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/contrib/debian/gbp.conf -------------------------------------------------------------------------------- /contrib/debian/patches/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/contrib/debian/patches/README -------------------------------------------------------------------------------- /contrib/debian/patches/series: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /contrib/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/contrib/debian/rules -------------------------------------------------------------------------------- /contrib/debian/satoxcoin-qt.manpages: -------------------------------------------------------------------------------- 1 | doc/man/satoxcoin-qt.1 2 | -------------------------------------------------------------------------------- /contrib/debian/satoxcoin-tx.manpages: -------------------------------------------------------------------------------- 1 | doc/man/satoxcoin-tx.1 2 | -------------------------------------------------------------------------------- /contrib/debian/satoxcoind.examples: -------------------------------------------------------------------------------- 1 | debian/examples/satoxcoin.conf 2 | -------------------------------------------------------------------------------- /contrib/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /contrib/debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/contrib/debian/watch -------------------------------------------------------------------------------- /contrib/devtools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/contrib/devtools/README.md -------------------------------------------------------------------------------- /contrib/devtools/check-doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/contrib/devtools/check-doc.py -------------------------------------------------------------------------------- /contrib/devtools/lint-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/contrib/devtools/lint-all.sh -------------------------------------------------------------------------------- /contrib/filter-lcov.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/contrib/filter-lcov.py -------------------------------------------------------------------------------- /contrib/gitian-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/contrib/gitian-build.sh -------------------------------------------------------------------------------- /contrib/gitian-keys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/contrib/gitian-keys/README.md -------------------------------------------------------------------------------- /contrib/init/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/contrib/init/README.md -------------------------------------------------------------------------------- /contrib/init/satoxcoind.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/contrib/init/satoxcoind.conf -------------------------------------------------------------------------------- /contrib/init/satoxcoind.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/contrib/init/satoxcoind.init -------------------------------------------------------------------------------- /contrib/install_cli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/contrib/install_cli.sh -------------------------------------------------------------------------------- /contrib/install_db4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/contrib/install_db4.sh -------------------------------------------------------------------------------- /contrib/linearize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/contrib/linearize/README.md -------------------------------------------------------------------------------- /contrib/macdeploy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/contrib/macdeploy/LICENSE -------------------------------------------------------------------------------- /contrib/macdeploy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/contrib/macdeploy/README.md -------------------------------------------------------------------------------- /contrib/macdeploy/fancy.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/contrib/macdeploy/fancy.plist -------------------------------------------------------------------------------- /contrib/qos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/contrib/qos/README.md -------------------------------------------------------------------------------- /contrib/qos/tc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/contrib/qos/tc.sh -------------------------------------------------------------------------------- /contrib/rpm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/contrib/rpm/README.md -------------------------------------------------------------------------------- /contrib/rpm/satoxcoin.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/contrib/rpm/satoxcoin.fc -------------------------------------------------------------------------------- /contrib/rpm/satoxcoin.if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/contrib/rpm/satoxcoin.if -------------------------------------------------------------------------------- /contrib/rpm/satoxcoin.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/contrib/rpm/satoxcoin.spec -------------------------------------------------------------------------------- /contrib/rpm/satoxcoin.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/contrib/rpm/satoxcoin.te -------------------------------------------------------------------------------- /contrib/satoxcoin-qt.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/contrib/satoxcoin-qt.pro -------------------------------------------------------------------------------- /contrib/seeds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/contrib/seeds/README.md -------------------------------------------------------------------------------- /contrib/seeds/makeseeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/contrib/seeds/makeseeds.py -------------------------------------------------------------------------------- /contrib/seeds/nodes_main.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/contrib/seeds/nodes_main.txt -------------------------------------------------------------------------------- /contrib/seeds/nodes_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/contrib/seeds/nodes_test.txt -------------------------------------------------------------------------------- /contrib/testgen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/contrib/testgen/README.md -------------------------------------------------------------------------------- /contrib/testgen/base58.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/contrib/testgen/base58.py -------------------------------------------------------------------------------- /contrib/tidy_datadir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/contrib/tidy_datadir.sh -------------------------------------------------------------------------------- /contrib/verify-commits/gpg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/contrib/verify-commits/gpg.sh -------------------------------------------------------------------------------- /contrib/verify-commits/trusted-git-root: -------------------------------------------------------------------------------- 1 | 82bcf405f6db1d55b684a1f63a4aabad376cdad7 2 | -------------------------------------------------------------------------------- /contrib/verify-commits/trusted-sha512-root-commit: -------------------------------------------------------------------------------- 1 | 309bf16257b2395ce502017be627186b749ee749 2 | -------------------------------------------------------------------------------- /contrib/zmq/zmq_sub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/contrib/zmq/zmq_sub.py -------------------------------------------------------------------------------- /contrib/zmq/zmq_sub3.4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/contrib/zmq/zmq_sub3.4.py -------------------------------------------------------------------------------- /contrib/zmq/zmq_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/contrib/zmq/zmq_test.py -------------------------------------------------------------------------------- /depends/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/depends/.gitignore -------------------------------------------------------------------------------- /depends/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/depends/Makefile -------------------------------------------------------------------------------- /depends/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/depends/README.md -------------------------------------------------------------------------------- /depends/builders/darwin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/depends/builders/darwin.mk -------------------------------------------------------------------------------- /depends/builders/default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/depends/builders/default.mk -------------------------------------------------------------------------------- /depends/builders/linux.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/depends/builders/linux.mk -------------------------------------------------------------------------------- /depends/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/depends/config.guess -------------------------------------------------------------------------------- /depends/config.site.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/depends/config.site.in -------------------------------------------------------------------------------- /depends/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/depends/config.sub -------------------------------------------------------------------------------- /depends/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/depends/description.md -------------------------------------------------------------------------------- /depends/funcs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/depends/funcs.mk -------------------------------------------------------------------------------- /depends/hosts/darwin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/depends/hosts/darwin.mk -------------------------------------------------------------------------------- /depends/hosts/default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/depends/hosts/default.mk -------------------------------------------------------------------------------- /depends/hosts/linux.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/depends/hosts/linux.mk -------------------------------------------------------------------------------- /depends/hosts/mingw32.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/depends/hosts/mingw32.mk -------------------------------------------------------------------------------- /depends/packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/depends/packages.md -------------------------------------------------------------------------------- /depends/packages/bdb.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/depends/packages/bdb.mk -------------------------------------------------------------------------------- /depends/packages/boost.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/depends/packages/boost.mk -------------------------------------------------------------------------------- /depends/packages/dbus.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/depends/packages/dbus.mk -------------------------------------------------------------------------------- /depends/packages/expat.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/depends/packages/expat.mk -------------------------------------------------------------------------------- /depends/packages/freetype.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/depends/packages/freetype.mk -------------------------------------------------------------------------------- /depends/packages/libICE.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/depends/packages/libICE.mk -------------------------------------------------------------------------------- /depends/packages/libSM.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/depends/packages/libSM.mk -------------------------------------------------------------------------------- /depends/packages/libX11.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/depends/packages/libX11.mk -------------------------------------------------------------------------------- /depends/packages/libXau.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/depends/packages/libXau.mk -------------------------------------------------------------------------------- /depends/packages/libXext.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/depends/packages/libXext.mk -------------------------------------------------------------------------------- /depends/packages/libevent.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/depends/packages/libevent.mk -------------------------------------------------------------------------------- /depends/packages/libxcb.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/depends/packages/libxcb.mk -------------------------------------------------------------------------------- /depends/packages/miniupnpc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/depends/packages/miniupnpc.mk -------------------------------------------------------------------------------- /depends/packages/openssl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/depends/packages/openssl.mk -------------------------------------------------------------------------------- /depends/packages/packages.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/depends/packages/packages.mk -------------------------------------------------------------------------------- /depends/packages/protobuf.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/depends/packages/protobuf.mk -------------------------------------------------------------------------------- /depends/packages/qrencode.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/depends/packages/qrencode.mk -------------------------------------------------------------------------------- /depends/packages/qt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/depends/packages/qt.mk -------------------------------------------------------------------------------- /depends/packages/xcb_proto.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/depends/packages/xcb_proto.mk -------------------------------------------------------------------------------- /depends/packages/xextproto.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/depends/packages/xextproto.mk -------------------------------------------------------------------------------- /depends/packages/xproto.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/depends/packages/xproto.mk -------------------------------------------------------------------------------- /depends/packages/xtrans.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/depends/packages/xtrans.mk -------------------------------------------------------------------------------- /depends/packages/zeromq.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/depends/packages/zeromq.mk -------------------------------------------------------------------------------- /depends/packages/zlib.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/depends/packages/zlib.mk -------------------------------------------------------------------------------- /depends/patches/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/depends/patches/atomic.h -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- 1 | Doxyfile 2 | -------------------------------------------------------------------------------- /doc/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/doc/Doxyfile.in -------------------------------------------------------------------------------- /doc/JSON-RPC-interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/doc/JSON-RPC-interface.md -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/README_osx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/doc/README_osx.md -------------------------------------------------------------------------------- /doc/README_windows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/doc/README_windows.txt -------------------------------------------------------------------------------- /doc/REST-interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/doc/REST-interface.md -------------------------------------------------------------------------------- /doc/assets-attribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/doc/assets-attribution.md -------------------------------------------------------------------------------- /doc/atomicswaps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/doc/atomicswaps.md -------------------------------------------------------------------------------- /doc/benchmarking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/doc/benchmarking.md -------------------------------------------------------------------------------- /doc/bips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/doc/bips.md -------------------------------------------------------------------------------- /doc/bitcoin_logo_doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/doc/bitcoin_logo_doxygen.png -------------------------------------------------------------------------------- /doc/build-openbsd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/doc/build-openbsd.md -------------------------------------------------------------------------------- /doc/build-osx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/doc/build-osx.md -------------------------------------------------------------------------------- /doc/build-rasberrypi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/doc/build-rasberrypi.md -------------------------------------------------------------------------------- /doc/build-unix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/doc/build-unix.md -------------------------------------------------------------------------------- /doc/build-windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/doc/build-windows.md -------------------------------------------------------------------------------- /doc/build_with_db4_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/doc/build_with_db4_linux.sh -------------------------------------------------------------------------------- /doc/build_with_db4_osx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/doc/build_with_db4_osx.sh -------------------------------------------------------------------------------- /doc/build_with_db4_win64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/doc/build_with_db4_win64.sh -------------------------------------------------------------------------------- /doc/dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/doc/dependencies.md -------------------------------------------------------------------------------- /doc/developer-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/doc/developer-notes.md -------------------------------------------------------------------------------- /doc/dnsseed-policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/doc/dnsseed-policy.md -------------------------------------------------------------------------------- /doc/files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/doc/files.md -------------------------------------------------------------------------------- /doc/fuzzing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/doc/fuzzing.md -------------------------------------------------------------------------------- /doc/gitian-building.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/doc/gitian-building.md -------------------------------------------------------------------------------- /doc/init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/doc/init.md -------------------------------------------------------------------------------- /doc/man/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/doc/man/Makefile.am -------------------------------------------------------------------------------- /doc/man/satoxcoin-cli.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/doc/man/satoxcoin-cli.1 -------------------------------------------------------------------------------- /doc/man/satoxcoin-qt.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/doc/man/satoxcoin-qt.1 -------------------------------------------------------------------------------- /doc/man/satoxcoin-tx.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/doc/man/satoxcoin-tx.1 -------------------------------------------------------------------------------- /doc/man/satoxcoind.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/doc/man/satoxcoind.1 -------------------------------------------------------------------------------- /doc/reduce-traffic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/doc/reduce-traffic.md -------------------------------------------------------------------------------- /doc/release-notes-pr12924.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/doc/release-notes-pr12924.md -------------------------------------------------------------------------------- /doc/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/doc/release-notes.md -------------------------------------------------------------------------------- /doc/release-process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/doc/release-process.md -------------------------------------------------------------------------------- /doc/shared-libraries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/doc/shared-libraries.md -------------------------------------------------------------------------------- /doc/tor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/doc/tor.md -------------------------------------------------------------------------------- /doc/translation_process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/doc/translation_process.md -------------------------------------------------------------------------------- /doc/travis-ci.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/doc/travis-ci.md -------------------------------------------------------------------------------- /doc/zmq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/doc/zmq.md -------------------------------------------------------------------------------- /libsatoxcoinconsensus.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/libsatoxcoinconsensus.pc.in -------------------------------------------------------------------------------- /release-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/release-linux.sh -------------------------------------------------------------------------------- /release_checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/release_checklist.md -------------------------------------------------------------------------------- /roadmap/README.md: -------------------------------------------------------------------------------- 1 | # Satoxcoin Roadmap 2 | 3 | 4 | -------------------------------------------------------------------------------- /roadmap/ipfs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/roadmap/ipfs/README.md -------------------------------------------------------------------------------- /roadmap/messaging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/roadmap/messaging/README.md -------------------------------------------------------------------------------- /roadmap/voting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/roadmap/voting/README.md -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/run.sh -------------------------------------------------------------------------------- /satoxcoin_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/satoxcoin_small.png -------------------------------------------------------------------------------- /share/genbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/share/genbuild.sh -------------------------------------------------------------------------------- /share/pixmaps/satoxcoin.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/share/pixmaps/satoxcoin.bmp -------------------------------------------------------------------------------- /share/pixmaps/satoxcoin.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/share/pixmaps/satoxcoin.ico -------------------------------------------------------------------------------- /share/pixmaps/satoxcoin16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/share/pixmaps/satoxcoin16.png -------------------------------------------------------------------------------- /share/pixmaps/satoxcoin32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/share/pixmaps/satoxcoin32.png -------------------------------------------------------------------------------- /share/pixmaps/satoxcoin64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/share/pixmaps/satoxcoin64.png -------------------------------------------------------------------------------- /share/qt/Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/share/qt/Info.plist.in -------------------------------------------------------------------------------- /share/rpcuser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/share/rpcuser/README.md -------------------------------------------------------------------------------- /share/rpcuser/rpcuser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/share/rpcuser/rpcuser.py -------------------------------------------------------------------------------- /share/setup.nsi.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/share/setup.nsi.in -------------------------------------------------------------------------------- /src/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/.clang-format -------------------------------------------------------------------------------- /src/LibBoolEE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/LibBoolEE.cpp -------------------------------------------------------------------------------- /src/LibBoolEE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/LibBoolEE.h -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/Makefile.bench.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/Makefile.bench.include -------------------------------------------------------------------------------- /src/Makefile.leveldb.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/Makefile.leveldb.include -------------------------------------------------------------------------------- /src/Makefile.qt.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/Makefile.qt.include -------------------------------------------------------------------------------- /src/Makefile.qttest.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/Makefile.qttest.include -------------------------------------------------------------------------------- /src/Makefile.test.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/Makefile.test.include -------------------------------------------------------------------------------- /src/addrdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/addrdb.cpp -------------------------------------------------------------------------------- /src/addrdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/addrdb.h -------------------------------------------------------------------------------- /src/addressindex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/addressindex.h -------------------------------------------------------------------------------- /src/addrman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/addrman.cpp -------------------------------------------------------------------------------- /src/addrman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/addrman.h -------------------------------------------------------------------------------- /src/algo/Lyra2RE.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/algo/Lyra2RE.c -------------------------------------------------------------------------------- /src/algo/Lyra2RE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/algo/Lyra2RE.h -------------------------------------------------------------------------------- /src/algo/aes_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/algo/aes_helper.c -------------------------------------------------------------------------------- /src/algo/blake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/algo/blake.c -------------------------------------------------------------------------------- /src/algo/bmw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/algo/bmw.c -------------------------------------------------------------------------------- /src/algo/cubehash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/algo/cubehash.c -------------------------------------------------------------------------------- /src/algo/echo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/algo/echo.c -------------------------------------------------------------------------------- /src/algo/extra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/algo/extra.c -------------------------------------------------------------------------------- /src/algo/extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/algo/extra.h -------------------------------------------------------------------------------- /src/algo/fugue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/algo/fugue.c -------------------------------------------------------------------------------- /src/algo/gost_streebog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/algo/gost_streebog.c -------------------------------------------------------------------------------- /src/algo/gost_streebog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/algo/gost_streebog.h -------------------------------------------------------------------------------- /src/algo/groestl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/algo/groestl.c -------------------------------------------------------------------------------- /src/algo/hamsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/algo/hamsi.c -------------------------------------------------------------------------------- /src/algo/hamsi_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/algo/hamsi_helper.c -------------------------------------------------------------------------------- /src/algo/haval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/algo/haval.c -------------------------------------------------------------------------------- /src/algo/haval_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/algo/haval_helper.c -------------------------------------------------------------------------------- /src/algo/jh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/algo/jh.c -------------------------------------------------------------------------------- /src/algo/keccak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/algo/keccak.c -------------------------------------------------------------------------------- /src/algo/luffa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/algo/luffa.c -------------------------------------------------------------------------------- /src/algo/lyra2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/algo/lyra2.cpp -------------------------------------------------------------------------------- /src/algo/lyra2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/algo/lyra2.h -------------------------------------------------------------------------------- /src/algo/md_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/algo/md_helper.c -------------------------------------------------------------------------------- /src/algo/sha2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/algo/sha2.c -------------------------------------------------------------------------------- /src/algo/shabal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/algo/shabal.c -------------------------------------------------------------------------------- /src/algo/shavite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/algo/shavite.c -------------------------------------------------------------------------------- /src/algo/simd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/algo/simd.c -------------------------------------------------------------------------------- /src/algo/skein.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/algo/skein.c -------------------------------------------------------------------------------- /src/algo/sph_blake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/algo/sph_blake.h -------------------------------------------------------------------------------- /src/algo/sph_bmw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/algo/sph_bmw.h -------------------------------------------------------------------------------- /src/algo/sph_cubehash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/algo/sph_cubehash.h -------------------------------------------------------------------------------- /src/algo/sph_echo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/algo/sph_echo.h -------------------------------------------------------------------------------- /src/algo/sph_fugue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/algo/sph_fugue.h -------------------------------------------------------------------------------- /src/algo/sph_groestl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/algo/sph_groestl.h -------------------------------------------------------------------------------- /src/algo/sph_hamsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/algo/sph_hamsi.h -------------------------------------------------------------------------------- /src/algo/sph_haval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/algo/sph_haval.h -------------------------------------------------------------------------------- /src/algo/sph_jh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/algo/sph_jh.h -------------------------------------------------------------------------------- /src/algo/sph_keccak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/algo/sph_keccak.h -------------------------------------------------------------------------------- /src/algo/sph_luffa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/algo/sph_luffa.h -------------------------------------------------------------------------------- /src/algo/sph_md_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/algo/sph_md_helper.c -------------------------------------------------------------------------------- /src/algo/sph_sha2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/algo/sph_sha2.c -------------------------------------------------------------------------------- /src/algo/sph_sha2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/algo/sph_sha2.h -------------------------------------------------------------------------------- /src/algo/sph_sha2big.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/algo/sph_sha2big.c -------------------------------------------------------------------------------- /src/algo/sph_shabal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/algo/sph_shabal.h -------------------------------------------------------------------------------- /src/algo/sph_shavite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/algo/sph_shavite.h -------------------------------------------------------------------------------- /src/algo/sph_simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/algo/sph_simd.h -------------------------------------------------------------------------------- /src/algo/sph_skein.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/algo/sph_skein.h -------------------------------------------------------------------------------- /src/algo/sph_tiger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/algo/sph_tiger.h -------------------------------------------------------------------------------- /src/algo/sph_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/algo/sph_types.h -------------------------------------------------------------------------------- /src/algo/sph_whirlpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/algo/sph_whirlpool.h -------------------------------------------------------------------------------- /src/algo/sponge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/algo/sponge.cpp -------------------------------------------------------------------------------- /src/algo/sponge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/algo/sponge.h -------------------------------------------------------------------------------- /src/algo/tiger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/algo/tiger.cpp -------------------------------------------------------------------------------- /src/algo/whirlpool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/algo/whirlpool.c -------------------------------------------------------------------------------- /src/amount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/amount.h -------------------------------------------------------------------------------- /src/arith_uint256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/arith_uint256.cpp -------------------------------------------------------------------------------- /src/arith_uint256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/arith_uint256.h -------------------------------------------------------------------------------- /src/assets/assetdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/assets/assetdb.cpp -------------------------------------------------------------------------------- /src/assets/assetdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/assets/assetdb.h -------------------------------------------------------------------------------- /src/assets/assets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/assets/assets.cpp -------------------------------------------------------------------------------- /src/assets/assets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/assets/assets.h -------------------------------------------------------------------------------- /src/assets/assetsnapshotdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/assets/assetsnapshotdb.h -------------------------------------------------------------------------------- /src/assets/assettypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/assets/assettypes.cpp -------------------------------------------------------------------------------- /src/assets/assettypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/assets/assettypes.h -------------------------------------------------------------------------------- /src/assets/messages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/assets/messages.cpp -------------------------------------------------------------------------------- /src/assets/messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/assets/messages.h -------------------------------------------------------------------------------- /src/assets/myassetsdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/assets/myassetsdb.cpp -------------------------------------------------------------------------------- /src/assets/myassetsdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/assets/myassetsdb.h -------------------------------------------------------------------------------- /src/assets/restricteddb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/assets/restricteddb.cpp -------------------------------------------------------------------------------- /src/assets/restricteddb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/assets/restricteddb.h -------------------------------------------------------------------------------- /src/assets/rewards.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/assets/rewards.cpp -------------------------------------------------------------------------------- /src/assets/rewards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/assets/rewards.h -------------------------------------------------------------------------------- /src/base58.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/base58.cpp -------------------------------------------------------------------------------- /src/base58.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/base58.h -------------------------------------------------------------------------------- /src/bench/.gitignore: -------------------------------------------------------------------------------- 1 | bench_satoxcoin -------------------------------------------------------------------------------- /src/bench/Examples.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/bench/Examples.cpp -------------------------------------------------------------------------------- /src/bench/base58.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/bench/base58.cpp -------------------------------------------------------------------------------- /src/bench/bench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/bench/bench.cpp -------------------------------------------------------------------------------- /src/bench/bench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/bench/bench.h -------------------------------------------------------------------------------- /src/bench/bench_satoxcoin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/bench/bench_satoxcoin.cpp -------------------------------------------------------------------------------- /src/bench/ccoins_caching.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/bench/ccoins_caching.cpp -------------------------------------------------------------------------------- /src/bench/checkblock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/bench/checkblock.cpp -------------------------------------------------------------------------------- /src/bench/checkqueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/bench/checkqueue.cpp -------------------------------------------------------------------------------- /src/bench/coin_selection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/bench/coin_selection.cpp -------------------------------------------------------------------------------- /src/bench/crypto_hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/bench/crypto_hash.cpp -------------------------------------------------------------------------------- /src/bench/lockedpool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/bench/lockedpool.cpp -------------------------------------------------------------------------------- /src/bench/perf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/bench/perf.cpp -------------------------------------------------------------------------------- /src/bench/perf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/bench/perf.h -------------------------------------------------------------------------------- /src/bench/rollingbloom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/bench/rollingbloom.cpp -------------------------------------------------------------------------------- /src/bench/verify_script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/bench/verify_script.cpp -------------------------------------------------------------------------------- /src/blockencodings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/blockencodings.cpp -------------------------------------------------------------------------------- /src/blockencodings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/blockencodings.h -------------------------------------------------------------------------------- /src/bloom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/bloom.cpp -------------------------------------------------------------------------------- /src/bloom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/bloom.h -------------------------------------------------------------------------------- /src/chain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/chain.cpp -------------------------------------------------------------------------------- /src/chain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/chain.h -------------------------------------------------------------------------------- /src/chainparams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/chainparams.cpp -------------------------------------------------------------------------------- /src/chainparams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/chainparams.h -------------------------------------------------------------------------------- /src/chainparamsbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/chainparamsbase.cpp -------------------------------------------------------------------------------- /src/chainparamsbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/chainparamsbase.h -------------------------------------------------------------------------------- /src/chainparamsseeds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/chainparamsseeds.h -------------------------------------------------------------------------------- /src/checkpoints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/checkpoints.cpp -------------------------------------------------------------------------------- /src/checkpoints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/checkpoints.h -------------------------------------------------------------------------------- /src/checkqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/checkqueue.h -------------------------------------------------------------------------------- /src/clientversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/clientversion.cpp -------------------------------------------------------------------------------- /src/clientversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/clientversion.h -------------------------------------------------------------------------------- /src/coins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/coins.cpp -------------------------------------------------------------------------------- /src/coins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/coins.h -------------------------------------------------------------------------------- /src/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/compat.h -------------------------------------------------------------------------------- /src/compat/byteswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/compat/byteswap.h -------------------------------------------------------------------------------- /src/compat/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/compat/endian.h -------------------------------------------------------------------------------- /src/compat/glibc_compat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/compat/glibc_compat.cpp -------------------------------------------------------------------------------- /src/compat/glibc_sanity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/compat/glibc_sanity.cpp -------------------------------------------------------------------------------- /src/compat/glibcxx_sanity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/compat/glibcxx_sanity.cpp -------------------------------------------------------------------------------- /src/compat/sanity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/compat/sanity.h -------------------------------------------------------------------------------- /src/compat/strnlen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/compat/strnlen.cpp -------------------------------------------------------------------------------- /src/compressor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/compressor.cpp -------------------------------------------------------------------------------- /src/compressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/compressor.h -------------------------------------------------------------------------------- /src/config/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/consensus/consensus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/consensus/consensus.cpp -------------------------------------------------------------------------------- /src/consensus/consensus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/consensus/consensus.h -------------------------------------------------------------------------------- /src/consensus/merkle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/consensus/merkle.cpp -------------------------------------------------------------------------------- /src/consensus/merkle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/consensus/merkle.h -------------------------------------------------------------------------------- /src/consensus/params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/consensus/params.h -------------------------------------------------------------------------------- /src/consensus/tx_verify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/consensus/tx_verify.cpp -------------------------------------------------------------------------------- /src/consensus/tx_verify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/consensus/tx_verify.h -------------------------------------------------------------------------------- /src/consensus/validation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/consensus/validation.h -------------------------------------------------------------------------------- /src/core_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/core_io.h -------------------------------------------------------------------------------- /src/core_memusage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/core_memusage.h -------------------------------------------------------------------------------- /src/core_read.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/core_read.cpp -------------------------------------------------------------------------------- /src/core_write.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/core_write.cpp -------------------------------------------------------------------------------- /src/crypto/aes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/aes.cpp -------------------------------------------------------------------------------- /src/crypto/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/aes.h -------------------------------------------------------------------------------- /src/crypto/aes_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/aes_helper.c -------------------------------------------------------------------------------- /src/crypto/blake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/blake.c -------------------------------------------------------------------------------- /src/crypto/bmw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/bmw.c -------------------------------------------------------------------------------- /src/crypto/chacha20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/chacha20.cpp -------------------------------------------------------------------------------- /src/crypto/chacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/chacha20.h -------------------------------------------------------------------------------- /src/crypto/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/common.h -------------------------------------------------------------------------------- /src/crypto/ctaes/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/ctaes/COPYING -------------------------------------------------------------------------------- /src/crypto/ctaes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/ctaes/README.md -------------------------------------------------------------------------------- /src/crypto/ctaes/bench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/ctaes/bench.c -------------------------------------------------------------------------------- /src/crypto/ctaes/ctaes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/ctaes/ctaes.c -------------------------------------------------------------------------------- /src/crypto/ctaes/ctaes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/ctaes/ctaes.h -------------------------------------------------------------------------------- /src/crypto/ctaes/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/ctaes/test.c -------------------------------------------------------------------------------- /src/crypto/cubehash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/cubehash.c -------------------------------------------------------------------------------- /src/crypto/echo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/echo.c -------------------------------------------------------------------------------- /src/crypto/ethash/helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/ethash/helpers.hpp -------------------------------------------------------------------------------- /src/crypto/groestl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/groestl.c -------------------------------------------------------------------------------- /src/crypto/hmac_sha256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/hmac_sha256.cpp -------------------------------------------------------------------------------- /src/crypto/hmac_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/hmac_sha256.h -------------------------------------------------------------------------------- /src/crypto/hmac_sha512.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/hmac_sha512.cpp -------------------------------------------------------------------------------- /src/crypto/hmac_sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/hmac_sha512.h -------------------------------------------------------------------------------- /src/crypto/jh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/jh.c -------------------------------------------------------------------------------- /src/crypto/keccak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/keccak.c -------------------------------------------------------------------------------- /src/crypto/luffa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/luffa.c -------------------------------------------------------------------------------- /src/crypto/md_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/md_helper.c -------------------------------------------------------------------------------- /src/crypto/ripemd160.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/ripemd160.cpp -------------------------------------------------------------------------------- /src/crypto/ripemd160.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/ripemd160.h -------------------------------------------------------------------------------- /src/crypto/sha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/sha1.cpp -------------------------------------------------------------------------------- /src/crypto/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/sha1.h -------------------------------------------------------------------------------- /src/crypto/sha2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/sha2.c -------------------------------------------------------------------------------- /src/crypto/sha256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/sha256.cpp -------------------------------------------------------------------------------- /src/crypto/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/sha256.h -------------------------------------------------------------------------------- /src/crypto/sha256_sse4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/sha256_sse4.cpp -------------------------------------------------------------------------------- /src/crypto/sha512.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/sha512.cpp -------------------------------------------------------------------------------- /src/crypto/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/sha512.h -------------------------------------------------------------------------------- /src/crypto/shavite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/shavite.c -------------------------------------------------------------------------------- /src/crypto/simd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/simd.c -------------------------------------------------------------------------------- /src/crypto/skein.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/skein.c -------------------------------------------------------------------------------- /src/crypto/sph_blake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/sph_blake.h -------------------------------------------------------------------------------- /src/crypto/sph_bmw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/sph_bmw.h -------------------------------------------------------------------------------- /src/crypto/sph_cubehash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/sph_cubehash.h -------------------------------------------------------------------------------- /src/crypto/sph_echo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/sph_echo.h -------------------------------------------------------------------------------- /src/crypto/sph_fugue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/sph_fugue.c -------------------------------------------------------------------------------- /src/crypto/sph_fugue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/sph_fugue.h -------------------------------------------------------------------------------- /src/crypto/sph_groestl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/sph_groestl.h -------------------------------------------------------------------------------- /src/crypto/sph_hamsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/sph_hamsi.c -------------------------------------------------------------------------------- /src/crypto/sph_hamsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/sph_hamsi.h -------------------------------------------------------------------------------- /src/crypto/sph_hamsi_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/sph_hamsi_helper.c -------------------------------------------------------------------------------- /src/crypto/sph_jh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/sph_jh.h -------------------------------------------------------------------------------- /src/crypto/sph_keccak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/sph_keccak.h -------------------------------------------------------------------------------- /src/crypto/sph_luffa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/sph_luffa.h -------------------------------------------------------------------------------- /src/crypto/sph_sha2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/sph_sha2.c -------------------------------------------------------------------------------- /src/crypto/sph_sha2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/sph_sha2.h -------------------------------------------------------------------------------- /src/crypto/sph_sha512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/sph_sha512.c -------------------------------------------------------------------------------- /src/crypto/sph_shabal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/sph_shabal.c -------------------------------------------------------------------------------- /src/crypto/sph_shabal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/sph_shabal.h -------------------------------------------------------------------------------- /src/crypto/sph_shavite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/sph_shavite.h -------------------------------------------------------------------------------- /src/crypto/sph_simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/sph_simd.h -------------------------------------------------------------------------------- /src/crypto/sph_skein.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/sph_skein.h -------------------------------------------------------------------------------- /src/crypto/sph_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/sph_types.h -------------------------------------------------------------------------------- /src/crypto/sph_whirlpool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/sph_whirlpool.c -------------------------------------------------------------------------------- /src/crypto/sph_whirlpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/sph_whirlpool.h -------------------------------------------------------------------------------- /src/crypto/whirlpool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/whirlpool.c -------------------------------------------------------------------------------- /src/crypto/whirlpoolx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/crypto/whirlpoolx.c -------------------------------------------------------------------------------- /src/cuckoocache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/cuckoocache.h -------------------------------------------------------------------------------- /src/dbwrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/dbwrapper.cpp -------------------------------------------------------------------------------- /src/dbwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/dbwrapper.h -------------------------------------------------------------------------------- /src/fs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/fs.cpp -------------------------------------------------------------------------------- /src/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/fs.h -------------------------------------------------------------------------------- /src/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/hash.cpp -------------------------------------------------------------------------------- /src/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/hash.h -------------------------------------------------------------------------------- /src/httprpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/httprpc.cpp -------------------------------------------------------------------------------- /src/httprpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/httprpc.h -------------------------------------------------------------------------------- /src/httpserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/httpserver.cpp -------------------------------------------------------------------------------- /src/httpserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/httpserver.h -------------------------------------------------------------------------------- /src/indirectmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/indirectmap.h -------------------------------------------------------------------------------- /src/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/init.cpp -------------------------------------------------------------------------------- /src/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/init.h -------------------------------------------------------------------------------- /src/key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/key.cpp -------------------------------------------------------------------------------- /src/key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/key.h -------------------------------------------------------------------------------- /src/keystore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/keystore.cpp -------------------------------------------------------------------------------- /src/keystore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/keystore.h -------------------------------------------------------------------------------- /src/leveldb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/.gitignore -------------------------------------------------------------------------------- /src/leveldb/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/.travis.yml -------------------------------------------------------------------------------- /src/leveldb/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/AUTHORS -------------------------------------------------------------------------------- /src/leveldb/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/leveldb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/LICENSE -------------------------------------------------------------------------------- /src/leveldb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/Makefile -------------------------------------------------------------------------------- /src/leveldb/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/NEWS -------------------------------------------------------------------------------- /src/leveldb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/README.md -------------------------------------------------------------------------------- /src/leveldb/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/TODO -------------------------------------------------------------------------------- /src/leveldb/WINDOWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/WINDOWS.md -------------------------------------------------------------------------------- /src/leveldb/db/builder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/db/builder.cc -------------------------------------------------------------------------------- /src/leveldb/db/builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/db/builder.h -------------------------------------------------------------------------------- /src/leveldb/db/c.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/db/c.cc -------------------------------------------------------------------------------- /src/leveldb/db/c_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/db/c_test.c -------------------------------------------------------------------------------- /src/leveldb/db/db_bench.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/db/db_bench.cc -------------------------------------------------------------------------------- /src/leveldb/db/db_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/db/db_impl.cc -------------------------------------------------------------------------------- /src/leveldb/db/db_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/db/db_impl.h -------------------------------------------------------------------------------- /src/leveldb/db/db_iter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/db/db_iter.cc -------------------------------------------------------------------------------- /src/leveldb/db/db_iter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/db/db_iter.h -------------------------------------------------------------------------------- /src/leveldb/db/db_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/db/db_test.cc -------------------------------------------------------------------------------- /src/leveldb/db/dbformat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/db/dbformat.cc -------------------------------------------------------------------------------- /src/leveldb/db/dbformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/db/dbformat.h -------------------------------------------------------------------------------- /src/leveldb/db/dumpfile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/db/dumpfile.cc -------------------------------------------------------------------------------- /src/leveldb/db/filename.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/db/filename.cc -------------------------------------------------------------------------------- /src/leveldb/db/filename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/db/filename.h -------------------------------------------------------------------------------- /src/leveldb/db/leveldbutil.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/db/leveldbutil.cc -------------------------------------------------------------------------------- /src/leveldb/db/log_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/db/log_format.h -------------------------------------------------------------------------------- /src/leveldb/db/log_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/db/log_reader.cc -------------------------------------------------------------------------------- /src/leveldb/db/log_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/db/log_reader.h -------------------------------------------------------------------------------- /src/leveldb/db/log_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/db/log_test.cc -------------------------------------------------------------------------------- /src/leveldb/db/log_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/db/log_writer.cc -------------------------------------------------------------------------------- /src/leveldb/db/log_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/db/log_writer.h -------------------------------------------------------------------------------- /src/leveldb/db/memtable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/db/memtable.cc -------------------------------------------------------------------------------- /src/leveldb/db/memtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/db/memtable.h -------------------------------------------------------------------------------- /src/leveldb/db/repair.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/db/repair.cc -------------------------------------------------------------------------------- /src/leveldb/db/skiplist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/db/skiplist.h -------------------------------------------------------------------------------- /src/leveldb/db/snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/db/snapshot.h -------------------------------------------------------------------------------- /src/leveldb/db/table_cache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/db/table_cache.cc -------------------------------------------------------------------------------- /src/leveldb/db/table_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/db/table_cache.h -------------------------------------------------------------------------------- /src/leveldb/db/version_edit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/db/version_edit.h -------------------------------------------------------------------------------- /src/leveldb/db/version_set.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/db/version_set.cc -------------------------------------------------------------------------------- /src/leveldb/db/version_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/db/version_set.h -------------------------------------------------------------------------------- /src/leveldb/db/write_batch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/db/write_batch.cc -------------------------------------------------------------------------------- /src/leveldb/doc/impl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/doc/impl.md -------------------------------------------------------------------------------- /src/leveldb/doc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/doc/index.md -------------------------------------------------------------------------------- /src/leveldb/doc/log_format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/doc/log_format.md -------------------------------------------------------------------------------- /src/leveldb/port/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/port/README -------------------------------------------------------------------------------- /src/leveldb/port/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/port/port.h -------------------------------------------------------------------------------- /src/leveldb/port/port_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/port/port_posix.h -------------------------------------------------------------------------------- /src/leveldb/port/port_win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/port/port_win.cc -------------------------------------------------------------------------------- /src/leveldb/port/port_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/port/port_win.h -------------------------------------------------------------------------------- /src/leveldb/port/win/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/port/win/stdint.h -------------------------------------------------------------------------------- /src/leveldb/table/block.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/table/block.cc -------------------------------------------------------------------------------- /src/leveldb/table/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/table/block.h -------------------------------------------------------------------------------- /src/leveldb/table/format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/table/format.cc -------------------------------------------------------------------------------- /src/leveldb/table/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/table/format.h -------------------------------------------------------------------------------- /src/leveldb/table/iterator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/table/iterator.cc -------------------------------------------------------------------------------- /src/leveldb/table/merger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/table/merger.cc -------------------------------------------------------------------------------- /src/leveldb/table/merger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/table/merger.h -------------------------------------------------------------------------------- /src/leveldb/table/table.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/table/table.cc -------------------------------------------------------------------------------- /src/leveldb/util/arena.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/util/arena.cc -------------------------------------------------------------------------------- /src/leveldb/util/arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/util/arena.h -------------------------------------------------------------------------------- /src/leveldb/util/bloom.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/util/bloom.cc -------------------------------------------------------------------------------- /src/leveldb/util/cache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/util/cache.cc -------------------------------------------------------------------------------- /src/leveldb/util/coding.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/util/coding.cc -------------------------------------------------------------------------------- /src/leveldb/util/coding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/util/coding.h -------------------------------------------------------------------------------- /src/leveldb/util/crc32c.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/util/crc32c.cc -------------------------------------------------------------------------------- /src/leveldb/util/crc32c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/util/crc32c.h -------------------------------------------------------------------------------- /src/leveldb/util/env.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/util/env.cc -------------------------------------------------------------------------------- /src/leveldb/util/env_posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/util/env_posix.cc -------------------------------------------------------------------------------- /src/leveldb/util/env_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/util/env_test.cc -------------------------------------------------------------------------------- /src/leveldb/util/env_win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/util/env_win.cc -------------------------------------------------------------------------------- /src/leveldb/util/hash.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/util/hash.cc -------------------------------------------------------------------------------- /src/leveldb/util/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/util/hash.h -------------------------------------------------------------------------------- /src/leveldb/util/hash_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/util/hash_test.cc -------------------------------------------------------------------------------- /src/leveldb/util/histogram.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/util/histogram.cc -------------------------------------------------------------------------------- /src/leveldb/util/histogram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/util/histogram.h -------------------------------------------------------------------------------- /src/leveldb/util/logging.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/util/logging.cc -------------------------------------------------------------------------------- /src/leveldb/util/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/util/logging.h -------------------------------------------------------------------------------- /src/leveldb/util/mutexlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/util/mutexlock.h -------------------------------------------------------------------------------- /src/leveldb/util/options.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/util/options.cc -------------------------------------------------------------------------------- /src/leveldb/util/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/util/random.h -------------------------------------------------------------------------------- /src/leveldb/util/status.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/util/status.cc -------------------------------------------------------------------------------- /src/leveldb/util/testutil.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/util/testutil.cc -------------------------------------------------------------------------------- /src/leveldb/util/testutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/leveldb/util/testutil.h -------------------------------------------------------------------------------- /src/limitedmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/limitedmap.h -------------------------------------------------------------------------------- /src/memusage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/memusage.h -------------------------------------------------------------------------------- /src/merkleblock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/merkleblock.cpp -------------------------------------------------------------------------------- /src/merkleblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/merkleblock.h -------------------------------------------------------------------------------- /src/miner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/miner.cpp -------------------------------------------------------------------------------- /src/miner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/miner.h -------------------------------------------------------------------------------- /src/net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/net.cpp -------------------------------------------------------------------------------- /src/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/net.h -------------------------------------------------------------------------------- /src/net_processing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/net_processing.cpp -------------------------------------------------------------------------------- /src/net_processing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/net_processing.h -------------------------------------------------------------------------------- /src/netaddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/netaddress.cpp -------------------------------------------------------------------------------- /src/netaddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/netaddress.h -------------------------------------------------------------------------------- /src/netbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/netbase.cpp -------------------------------------------------------------------------------- /src/netbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/netbase.h -------------------------------------------------------------------------------- /src/netmessagemaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/netmessagemaker.h -------------------------------------------------------------------------------- /src/noui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/noui.cpp -------------------------------------------------------------------------------- /src/noui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/noui.h -------------------------------------------------------------------------------- /src/obj-test/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /src/obj/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /src/policy/feerate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/policy/feerate.cpp -------------------------------------------------------------------------------- /src/policy/feerate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/policy/feerate.h -------------------------------------------------------------------------------- /src/policy/fees.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/policy/fees.cpp -------------------------------------------------------------------------------- /src/policy/fees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/policy/fees.h -------------------------------------------------------------------------------- /src/policy/policy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/policy/policy.cpp -------------------------------------------------------------------------------- /src/policy/policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/policy/policy.h -------------------------------------------------------------------------------- /src/policy/rbf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/policy/rbf.cpp -------------------------------------------------------------------------------- /src/policy/rbf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/policy/rbf.h -------------------------------------------------------------------------------- /src/pow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/pow.cpp -------------------------------------------------------------------------------- /src/pow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/pow.h -------------------------------------------------------------------------------- /src/prevector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/prevector.h -------------------------------------------------------------------------------- /src/primitives/block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/primitives/block.cpp -------------------------------------------------------------------------------- /src/primitives/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/primitives/block.h -------------------------------------------------------------------------------- /src/primitives/transaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/primitives/transaction.h -------------------------------------------------------------------------------- /src/protocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/protocol.cpp -------------------------------------------------------------------------------- /src/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/protocol.h -------------------------------------------------------------------------------- /src/pubkey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/pubkey.cpp -------------------------------------------------------------------------------- /src/pubkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/pubkey.h -------------------------------------------------------------------------------- /src/qt/Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/Info.plist.in -------------------------------------------------------------------------------- /src/qt/addressbookpage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/addressbookpage.cpp -------------------------------------------------------------------------------- /src/qt/addressbookpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/addressbookpage.h -------------------------------------------------------------------------------- /src/qt/addresstablemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/addresstablemodel.cpp -------------------------------------------------------------------------------- /src/qt/addresstablemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/addresstablemodel.h -------------------------------------------------------------------------------- /src/qt/askpassphrasedialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/askpassphrasedialog.h -------------------------------------------------------------------------------- /src/qt/assetcontroldialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/assetcontroldialog.cpp -------------------------------------------------------------------------------- /src/qt/assetcontroldialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/assetcontroldialog.h -------------------------------------------------------------------------------- /src/qt/assetfilterproxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/assetfilterproxy.cpp -------------------------------------------------------------------------------- /src/qt/assetfilterproxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/assetfilterproxy.h -------------------------------------------------------------------------------- /src/qt/assetrecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/assetrecord.h -------------------------------------------------------------------------------- /src/qt/assetsdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/assetsdialog.cpp -------------------------------------------------------------------------------- /src/qt/assetsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/assetsdialog.h -------------------------------------------------------------------------------- /src/qt/assettablemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/assettablemodel.cpp -------------------------------------------------------------------------------- /src/qt/assettablemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/assettablemodel.h -------------------------------------------------------------------------------- /src/qt/bantablemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/bantablemodel.cpp -------------------------------------------------------------------------------- /src/qt/bantablemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/bantablemodel.h -------------------------------------------------------------------------------- /src/qt/callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/callback.h -------------------------------------------------------------------------------- /src/qt/clientmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/clientmodel.cpp -------------------------------------------------------------------------------- /src/qt/clientmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/clientmodel.h -------------------------------------------------------------------------------- /src/qt/coincontroldialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/coincontroldialog.cpp -------------------------------------------------------------------------------- /src/qt/coincontroldialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/coincontroldialog.h -------------------------------------------------------------------------------- /src/qt/createassetdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/createassetdialog.cpp -------------------------------------------------------------------------------- /src/qt/createassetdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/createassetdialog.h -------------------------------------------------------------------------------- /src/qt/csvmodelwriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/csvmodelwriter.cpp -------------------------------------------------------------------------------- /src/qt/csvmodelwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/csvmodelwriter.h -------------------------------------------------------------------------------- /src/qt/darkstyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/darkstyle.cpp -------------------------------------------------------------------------------- /src/qt/darkstyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/darkstyle.h -------------------------------------------------------------------------------- /src/qt/editaddressdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/editaddressdialog.cpp -------------------------------------------------------------------------------- /src/qt/editaddressdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/editaddressdialog.h -------------------------------------------------------------------------------- /src/qt/encryptdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/encryptdialog.cpp -------------------------------------------------------------------------------- /src/qt/encryptdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/encryptdialog.h -------------------------------------------------------------------------------- /src/qt/forms/assetsdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/forms/assetsdialog.ui -------------------------------------------------------------------------------- /src/qt/forms/debugwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/forms/debugwindow.ui -------------------------------------------------------------------------------- /src/qt/forms/encryptdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/forms/encryptdialog.ui -------------------------------------------------------------------------------- /src/qt/forms/intro.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/forms/intro.ui -------------------------------------------------------------------------------- /src/qt/forms/modaloverlay.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/forms/modaloverlay.ui -------------------------------------------------------------------------------- /src/qt/forms/openuridialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/forms/openuridialog.ui -------------------------------------------------------------------------------- /src/qt/forms/optionsdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/forms/optionsdialog.ui -------------------------------------------------------------------------------- /src/qt/forms/overviewpage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/forms/overviewpage.ui -------------------------------------------------------------------------------- /src/qt/guiconstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/guiconstants.h -------------------------------------------------------------------------------- /src/qt/guiutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/guiutil.cpp -------------------------------------------------------------------------------- /src/qt/guiutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/guiutil.h -------------------------------------------------------------------------------- /src/qt/intro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/intro.cpp -------------------------------------------------------------------------------- /src/qt/intro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/intro.h -------------------------------------------------------------------------------- /src/qt/locale/satoxcoin_af.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/locale/satoxcoin_af.ts -------------------------------------------------------------------------------- /src/qt/locale/satoxcoin_ar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/locale/satoxcoin_ar.ts -------------------------------------------------------------------------------- /src/qt/locale/satoxcoin_bg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/locale/satoxcoin_bg.ts -------------------------------------------------------------------------------- /src/qt/locale/satoxcoin_ca.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/locale/satoxcoin_ca.ts -------------------------------------------------------------------------------- /src/qt/locale/satoxcoin_cs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/locale/satoxcoin_cs.ts -------------------------------------------------------------------------------- /src/qt/locale/satoxcoin_cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/locale/satoxcoin_cy.ts -------------------------------------------------------------------------------- /src/qt/locale/satoxcoin_da.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/locale/satoxcoin_da.ts -------------------------------------------------------------------------------- /src/qt/locale/satoxcoin_de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/locale/satoxcoin_de.ts -------------------------------------------------------------------------------- /src/qt/locale/satoxcoin_el.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/locale/satoxcoin_el.ts -------------------------------------------------------------------------------- /src/qt/locale/satoxcoin_en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/locale/satoxcoin_en.ts -------------------------------------------------------------------------------- /src/qt/locale/satoxcoin_eo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/locale/satoxcoin_eo.ts -------------------------------------------------------------------------------- /src/qt/locale/satoxcoin_es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/locale/satoxcoin_es.ts -------------------------------------------------------------------------------- /src/qt/locale/satoxcoin_et.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/locale/satoxcoin_et.ts -------------------------------------------------------------------------------- /src/qt/locale/satoxcoin_fa.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/locale/satoxcoin_fa.ts -------------------------------------------------------------------------------- /src/qt/locale/satoxcoin_fi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/locale/satoxcoin_fi.ts -------------------------------------------------------------------------------- /src/qt/locale/satoxcoin_fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/locale/satoxcoin_fr.ts -------------------------------------------------------------------------------- /src/qt/locale/satoxcoin_gl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/locale/satoxcoin_gl.ts -------------------------------------------------------------------------------- /src/qt/locale/satoxcoin_he.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/locale/satoxcoin_he.ts -------------------------------------------------------------------------------- /src/qt/locale/satoxcoin_hr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/locale/satoxcoin_hr.ts -------------------------------------------------------------------------------- /src/qt/locale/satoxcoin_hu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/locale/satoxcoin_hu.ts -------------------------------------------------------------------------------- /src/qt/locale/satoxcoin_it.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/locale/satoxcoin_it.ts -------------------------------------------------------------------------------- /src/qt/locale/satoxcoin_ja.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/locale/satoxcoin_ja.ts -------------------------------------------------------------------------------- /src/qt/locale/satoxcoin_ka.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/locale/satoxcoin_ka.ts -------------------------------------------------------------------------------- /src/qt/locale/satoxcoin_ky.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/locale/satoxcoin_ky.ts -------------------------------------------------------------------------------- /src/qt/locale/satoxcoin_la.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/locale/satoxcoin_la.ts -------------------------------------------------------------------------------- /src/qt/locale/satoxcoin_lt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/locale/satoxcoin_lt.ts -------------------------------------------------------------------------------- /src/qt/locale/satoxcoin_mn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/locale/satoxcoin_mn.ts -------------------------------------------------------------------------------- /src/qt/locale/satoxcoin_nb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/locale/satoxcoin_nb.ts -------------------------------------------------------------------------------- /src/qt/locale/satoxcoin_ne.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/locale/satoxcoin_ne.ts -------------------------------------------------------------------------------- /src/qt/locale/satoxcoin_nl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/locale/satoxcoin_nl.ts -------------------------------------------------------------------------------- /src/qt/locale/satoxcoin_pl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/locale/satoxcoin_pl.ts -------------------------------------------------------------------------------- /src/qt/locale/satoxcoin_ro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/locale/satoxcoin_ro.ts -------------------------------------------------------------------------------- /src/qt/locale/satoxcoin_ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/locale/satoxcoin_ru.ts -------------------------------------------------------------------------------- /src/qt/locale/satoxcoin_sk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/locale/satoxcoin_sk.ts -------------------------------------------------------------------------------- /src/qt/locale/satoxcoin_sq.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/locale/satoxcoin_sq.ts -------------------------------------------------------------------------------- /src/qt/locale/satoxcoin_sr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/locale/satoxcoin_sr.ts -------------------------------------------------------------------------------- /src/qt/locale/satoxcoin_sv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/locale/satoxcoin_sv.ts -------------------------------------------------------------------------------- /src/qt/locale/satoxcoin_ta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/locale/satoxcoin_ta.ts -------------------------------------------------------------------------------- /src/qt/locale/satoxcoin_tr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/locale/satoxcoin_tr.ts -------------------------------------------------------------------------------- /src/qt/locale/satoxcoin_uk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/locale/satoxcoin_uk.ts -------------------------------------------------------------------------------- /src/qt/locale/satoxcoin_vi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/locale/satoxcoin_vi.ts -------------------------------------------------------------------------------- /src/qt/macdockiconhandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/macdockiconhandler.h -------------------------------------------------------------------------------- /src/qt/macdockiconhandler.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/macdockiconhandler.mm -------------------------------------------------------------------------------- /src/qt/mnemonicdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/mnemonicdialog.cpp -------------------------------------------------------------------------------- /src/qt/mnemonicdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/mnemonicdialog.h -------------------------------------------------------------------------------- /src/qt/modaloverlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/modaloverlay.cpp -------------------------------------------------------------------------------- /src/qt/modaloverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/modaloverlay.h -------------------------------------------------------------------------------- /src/qt/networkstyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/networkstyle.cpp -------------------------------------------------------------------------------- /src/qt/networkstyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/networkstyle.h -------------------------------------------------------------------------------- /src/qt/notificator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/notificator.cpp -------------------------------------------------------------------------------- /src/qt/notificator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/notificator.h -------------------------------------------------------------------------------- /src/qt/openuridialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/openuridialog.cpp -------------------------------------------------------------------------------- /src/qt/openuridialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/openuridialog.h -------------------------------------------------------------------------------- /src/qt/optionsdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/optionsdialog.cpp -------------------------------------------------------------------------------- /src/qt/optionsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/optionsdialog.h -------------------------------------------------------------------------------- /src/qt/optionsmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/optionsmodel.cpp -------------------------------------------------------------------------------- /src/qt/optionsmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/optionsmodel.h -------------------------------------------------------------------------------- /src/qt/overviewpage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/overviewpage.cpp -------------------------------------------------------------------------------- /src/qt/overviewpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/overviewpage.h -------------------------------------------------------------------------------- /src/qt/paymentrequest.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/paymentrequest.proto -------------------------------------------------------------------------------- /src/qt/paymentrequestplus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/paymentrequestplus.cpp -------------------------------------------------------------------------------- /src/qt/paymentrequestplus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/paymentrequestplus.h -------------------------------------------------------------------------------- /src/qt/paymentserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/paymentserver.cpp -------------------------------------------------------------------------------- /src/qt/paymentserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/paymentserver.h -------------------------------------------------------------------------------- /src/qt/peertablemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/peertablemodel.cpp -------------------------------------------------------------------------------- /src/qt/peertablemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/peertablemodel.h -------------------------------------------------------------------------------- /src/qt/platformstyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/platformstyle.cpp -------------------------------------------------------------------------------- /src/qt/platformstyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/platformstyle.h -------------------------------------------------------------------------------- /src/qt/qvaluecombobox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/qvaluecombobox.cpp -------------------------------------------------------------------------------- /src/qt/qvaluecombobox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/qvaluecombobox.h -------------------------------------------------------------------------------- /src/qt/res/icons/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/res/icons/about.png -------------------------------------------------------------------------------- /src/qt/res/icons/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/res/icons/add.png -------------------------------------------------------------------------------- /src/qt/res/icons/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/res/icons/edit.png -------------------------------------------------------------------------------- /src/qt/res/icons/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/res/icons/eye.png -------------------------------------------------------------------------------- /src/qt/res/icons/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/res/icons/info.png -------------------------------------------------------------------------------- /src/qt/res/icons/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/res/icons/key.png -------------------------------------------------------------------------------- /src/qt/res/icons/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/res/icons/open.png -------------------------------------------------------------------------------- /src/qt/res/icons/quit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/res/icons/quit.png -------------------------------------------------------------------------------- /src/qt/res/icons/send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/res/icons/send.png -------------------------------------------------------------------------------- /src/qt/res/src/clock_0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/res/src/clock_0.svg -------------------------------------------------------------------------------- /src/qt/res/src/clock_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/res/src/clock_1.svg -------------------------------------------------------------------------------- /src/qt/res/src/clock_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/res/src/clock_2.svg -------------------------------------------------------------------------------- /src/qt/res/src/clock_3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/res/src/clock_3.svg -------------------------------------------------------------------------------- /src/qt/res/src/clock_4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/res/src/clock_4.svg -------------------------------------------------------------------------------- /src/qt/res/src/mine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/res/src/mine.svg -------------------------------------------------------------------------------- /src/qt/res/src/qt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/res/src/qt.svg -------------------------------------------------------------------------------- /src/qt/res/src/spinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/res/src/spinner.png -------------------------------------------------------------------------------- /src/qt/res/src/tx_in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/res/src/tx_in.svg -------------------------------------------------------------------------------- /src/qt/res/src/verify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/res/src/verify.svg -------------------------------------------------------------------------------- /src/qt/rpcconsole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/rpcconsole.cpp -------------------------------------------------------------------------------- /src/qt/rpcconsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/rpcconsole.h -------------------------------------------------------------------------------- /src/qt/satoxcoin-qt.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/satoxcoin-qt.config -------------------------------------------------------------------------------- /src/qt/satoxcoin-qt.creator: -------------------------------------------------------------------------------- 1 | [General] 2 | -------------------------------------------------------------------------------- /src/qt/satoxcoin-qt.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/satoxcoin-qt.files -------------------------------------------------------------------------------- /src/qt/satoxcoin-qt.includes: -------------------------------------------------------------------------------- 1 | . 2 | test 3 | -------------------------------------------------------------------------------- /src/qt/satoxcoin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/satoxcoin.cpp -------------------------------------------------------------------------------- /src/qt/satoxcoin.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/satoxcoin.qrc -------------------------------------------------------------------------------- /src/qt/satoxcoingui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/satoxcoingui.cpp -------------------------------------------------------------------------------- /src/qt/satoxcoingui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/satoxcoingui.h -------------------------------------------------------------------------------- /src/qt/satoxcoinunits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/satoxcoinunits.cpp -------------------------------------------------------------------------------- /src/qt/satoxcoinunits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/satoxcoinunits.h -------------------------------------------------------------------------------- /src/qt/sendassetsentry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/sendassetsentry.cpp -------------------------------------------------------------------------------- /src/qt/sendassetsentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/sendassetsentry.h -------------------------------------------------------------------------------- /src/qt/sendcoinsdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/sendcoinsdialog.cpp -------------------------------------------------------------------------------- /src/qt/sendcoinsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/sendcoinsdialog.h -------------------------------------------------------------------------------- /src/qt/sendcoinsentry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/sendcoinsentry.cpp -------------------------------------------------------------------------------- /src/qt/sendcoinsentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/sendcoinsentry.h -------------------------------------------------------------------------------- /src/qt/splashscreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/splashscreen.cpp -------------------------------------------------------------------------------- /src/qt/splashscreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/splashscreen.h -------------------------------------------------------------------------------- /src/qt/test/compattests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/test/compattests.h -------------------------------------------------------------------------------- /src/qt/test/test_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/test/test_main.cpp -------------------------------------------------------------------------------- /src/qt/test/uritests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/test/uritests.cpp -------------------------------------------------------------------------------- /src/qt/test/uritests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/test/uritests.h -------------------------------------------------------------------------------- /src/qt/test/wallettests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/test/wallettests.h -------------------------------------------------------------------------------- /src/qt/transactiondesc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/transactiondesc.cpp -------------------------------------------------------------------------------- /src/qt/transactiondesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/transactiondesc.h -------------------------------------------------------------------------------- /src/qt/transactionrecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/transactionrecord.h -------------------------------------------------------------------------------- /src/qt/transactionview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/transactionview.cpp -------------------------------------------------------------------------------- /src/qt/transactionview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/transactionview.h -------------------------------------------------------------------------------- /src/qt/utilitydialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/utilitydialog.cpp -------------------------------------------------------------------------------- /src/qt/utilitydialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/utilitydialog.h -------------------------------------------------------------------------------- /src/qt/walletframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/walletframe.cpp -------------------------------------------------------------------------------- /src/qt/walletframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/walletframe.h -------------------------------------------------------------------------------- /src/qt/walletmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/walletmodel.cpp -------------------------------------------------------------------------------- /src/qt/walletmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/walletmodel.h -------------------------------------------------------------------------------- /src/qt/walletview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/walletview.cpp -------------------------------------------------------------------------------- /src/qt/walletview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/qt/walletview.h -------------------------------------------------------------------------------- /src/random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/random.cpp -------------------------------------------------------------------------------- /src/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/random.h -------------------------------------------------------------------------------- /src/rest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/rest.cpp -------------------------------------------------------------------------------- /src/reverse_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/reverse_iterator.h -------------------------------------------------------------------------------- /src/reverselock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/reverselock.h -------------------------------------------------------------------------------- /src/rpc/assets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/rpc/assets.cpp -------------------------------------------------------------------------------- /src/rpc/blockchain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/rpc/blockchain.cpp -------------------------------------------------------------------------------- /src/rpc/blockchain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/rpc/blockchain.h -------------------------------------------------------------------------------- /src/rpc/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/rpc/client.cpp -------------------------------------------------------------------------------- /src/rpc/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/rpc/client.h -------------------------------------------------------------------------------- /src/rpc/messages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/rpc/messages.cpp -------------------------------------------------------------------------------- /src/rpc/mining.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/rpc/mining.cpp -------------------------------------------------------------------------------- /src/rpc/mining.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/rpc/mining.h -------------------------------------------------------------------------------- /src/rpc/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/rpc/misc.cpp -------------------------------------------------------------------------------- /src/rpc/net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/rpc/net.cpp -------------------------------------------------------------------------------- /src/rpc/protocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/rpc/protocol.cpp -------------------------------------------------------------------------------- /src/rpc/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/rpc/protocol.h -------------------------------------------------------------------------------- /src/rpc/rawtransaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/rpc/rawtransaction.cpp -------------------------------------------------------------------------------- /src/rpc/register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/rpc/register.h -------------------------------------------------------------------------------- /src/rpc/rewards.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/rpc/rewards.cpp -------------------------------------------------------------------------------- /src/rpc/safemode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/rpc/safemode.cpp -------------------------------------------------------------------------------- /src/rpc/safemode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/rpc/safemode.h -------------------------------------------------------------------------------- /src/rpc/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/rpc/server.cpp -------------------------------------------------------------------------------- /src/rpc/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/rpc/server.h -------------------------------------------------------------------------------- /src/rpc/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/rpc/test.json -------------------------------------------------------------------------------- /src/satoxcoin-cli-res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/satoxcoin-cli-res.rc -------------------------------------------------------------------------------- /src/satoxcoin-cli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/satoxcoin-cli.cpp -------------------------------------------------------------------------------- /src/satoxcoin-tx-res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/satoxcoin-tx-res.rc -------------------------------------------------------------------------------- /src/satoxcoin-tx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/satoxcoin-tx.cpp -------------------------------------------------------------------------------- /src/satoxcoind-res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/satoxcoind-res.rc -------------------------------------------------------------------------------- /src/satoxcoind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/satoxcoind.cpp -------------------------------------------------------------------------------- /src/scheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/scheduler.cpp -------------------------------------------------------------------------------- /src/scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/scheduler.h -------------------------------------------------------------------------------- /src/script/interpreter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/script/interpreter.cpp -------------------------------------------------------------------------------- /src/script/interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/script/interpreter.h -------------------------------------------------------------------------------- /src/script/ismine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/script/ismine.cpp -------------------------------------------------------------------------------- /src/script/ismine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/script/ismine.h -------------------------------------------------------------------------------- /src/script/script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/script/script.cpp -------------------------------------------------------------------------------- /src/script/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/script/script.h -------------------------------------------------------------------------------- /src/script/script_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/script/script_error.h -------------------------------------------------------------------------------- /src/script/sigcache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/script/sigcache.cpp -------------------------------------------------------------------------------- /src/script/sigcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/script/sigcache.h -------------------------------------------------------------------------------- /src/script/sign.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/script/sign.cpp -------------------------------------------------------------------------------- /src/script/sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/script/sign.h -------------------------------------------------------------------------------- /src/script/standard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/script/standard.cpp -------------------------------------------------------------------------------- /src/script/standard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/script/standard.h -------------------------------------------------------------------------------- /src/secp256k1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/secp256k1/.gitignore -------------------------------------------------------------------------------- /src/secp256k1/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/secp256k1/.travis.yml -------------------------------------------------------------------------------- /src/secp256k1/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/secp256k1/COPYING -------------------------------------------------------------------------------- /src/secp256k1/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/secp256k1/Makefile.am -------------------------------------------------------------------------------- /src/secp256k1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/secp256k1/README.md -------------------------------------------------------------------------------- /src/secp256k1/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/secp256k1/TODO -------------------------------------------------------------------------------- /src/secp256k1/autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | autoreconf -if --warnings=all 4 | -------------------------------------------------------------------------------- /src/secp256k1/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/secp256k1/configure.ac -------------------------------------------------------------------------------- /src/secp256k1/obj/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/secp256k1/src/bench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/secp256k1/src/bench.h -------------------------------------------------------------------------------- /src/secp256k1/src/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/secp256k1/src/ecdsa.h -------------------------------------------------------------------------------- /src/secp256k1/src/eckey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/secp256k1/src/eckey.h -------------------------------------------------------------------------------- /src/secp256k1/src/ecmult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/secp256k1/src/ecmult.h -------------------------------------------------------------------------------- /src/secp256k1/src/field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/secp256k1/src/field.h -------------------------------------------------------------------------------- /src/secp256k1/src/group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/secp256k1/src/group.h -------------------------------------------------------------------------------- /src/secp256k1/src/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/secp256k1/src/hash.h -------------------------------------------------------------------------------- /src/secp256k1/src/num.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/secp256k1/src/num.h -------------------------------------------------------------------------------- /src/secp256k1/src/scalar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/secp256k1/src/scalar.h -------------------------------------------------------------------------------- /src/secp256k1/src/tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/secp256k1/src/tests.c -------------------------------------------------------------------------------- /src/secp256k1/src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/secp256k1/src/util.h -------------------------------------------------------------------------------- /src/serialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/serialize.h -------------------------------------------------------------------------------- /src/spentindex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/spentindex.h -------------------------------------------------------------------------------- /src/streams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/streams.h -------------------------------------------------------------------------------- /src/support/cleanse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/support/cleanse.cpp -------------------------------------------------------------------------------- /src/support/cleanse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/support/cleanse.h -------------------------------------------------------------------------------- /src/support/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/support/events.h -------------------------------------------------------------------------------- /src/support/lockedpool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/support/lockedpool.cpp -------------------------------------------------------------------------------- /src/support/lockedpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/support/lockedpool.h -------------------------------------------------------------------------------- /src/sync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/sync.cpp -------------------------------------------------------------------------------- /src/sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/sync.h -------------------------------------------------------------------------------- /src/test/DoS_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/test/DoS_tests.cpp -------------------------------------------------------------------------------- /src/test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/test/README.md -------------------------------------------------------------------------------- /src/test/addrman_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/test/addrman_tests.cpp -------------------------------------------------------------------------------- /src/test/amount_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/test/amount_tests.cpp -------------------------------------------------------------------------------- /src/test/base32_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/test/base32_tests.cpp -------------------------------------------------------------------------------- /src/test/base58_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/test/base58_tests.cpp -------------------------------------------------------------------------------- /src/test/base64_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/test/base64_tests.cpp -------------------------------------------------------------------------------- /src/test/bech32_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/test/bech32_tests.cpp -------------------------------------------------------------------------------- /src/test/bip32_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/test/bip32_tests.cpp -------------------------------------------------------------------------------- /src/test/bip39_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/test/bip39_tests.cpp -------------------------------------------------------------------------------- /src/test/bloom_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/test/bloom_tests.cpp -------------------------------------------------------------------------------- /src/test/bswap_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/test/bswap_tests.cpp -------------------------------------------------------------------------------- /src/test/coins_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/test/coins_tests.cpp -------------------------------------------------------------------------------- /src/test/crypto_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/test/crypto_tests.cpp -------------------------------------------------------------------------------- /src/test/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/test/data/README.md -------------------------------------------------------------------------------- /src/test/data/sighash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/test/data/sighash.json -------------------------------------------------------------------------------- /src/test/getarg_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/test/getarg_tests.cpp -------------------------------------------------------------------------------- /src/test/hash_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/test/hash_tests.cpp -------------------------------------------------------------------------------- /src/test/kawpow_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/test/kawpow_tests.cpp -------------------------------------------------------------------------------- /src/test/key_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/test/key_tests.cpp -------------------------------------------------------------------------------- /src/test/main_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/test/main_tests.cpp -------------------------------------------------------------------------------- /src/test/mempool_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/test/mempool_tests.cpp -------------------------------------------------------------------------------- /src/test/merkle_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/test/merkle_tests.cpp -------------------------------------------------------------------------------- /src/test/miner_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/test/miner_tests.cpp -------------------------------------------------------------------------------- /src/test/net_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/test/net_tests.cpp -------------------------------------------------------------------------------- /src/test/netbase_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/test/netbase_tests.cpp -------------------------------------------------------------------------------- /src/test/pmt_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/test/pmt_tests.cpp -------------------------------------------------------------------------------- /src/test/pow_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/test/pow_tests.cpp -------------------------------------------------------------------------------- /src/test/random_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/test/random_tests.cpp -------------------------------------------------------------------------------- /src/test/rpc_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/test/rpc_tests.cpp -------------------------------------------------------------------------------- /src/test/sanity_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/test/sanity_tests.cpp -------------------------------------------------------------------------------- /src/test/script_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/test/script_tests.cpp -------------------------------------------------------------------------------- /src/test/scriptnum10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/test/scriptnum10.h -------------------------------------------------------------------------------- /src/test/sighash_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/test/sighash_tests.cpp -------------------------------------------------------------------------------- /src/test/streams_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/test/streams_tests.cpp -------------------------------------------------------------------------------- /src/test/test_satoxcoin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/test/test_satoxcoin.h -------------------------------------------------------------------------------- /src/test/uint256_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/test/uint256_tests.cpp -------------------------------------------------------------------------------- /src/test/util_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/test/util_tests.cpp -------------------------------------------------------------------------------- /src/threadinterrupt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/threadinterrupt.cpp -------------------------------------------------------------------------------- /src/threadinterrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/threadinterrupt.h -------------------------------------------------------------------------------- /src/threadsafety.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/threadsafety.h -------------------------------------------------------------------------------- /src/timedata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/timedata.cpp -------------------------------------------------------------------------------- /src/timedata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/timedata.h -------------------------------------------------------------------------------- /src/timestampindex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/timestampindex.h -------------------------------------------------------------------------------- /src/tinyformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/tinyformat.h -------------------------------------------------------------------------------- /src/torcontrol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/torcontrol.cpp -------------------------------------------------------------------------------- /src/torcontrol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/torcontrol.h -------------------------------------------------------------------------------- /src/txdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/txdb.cpp -------------------------------------------------------------------------------- /src/txdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/txdb.h -------------------------------------------------------------------------------- /src/txmempool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/txmempool.cpp -------------------------------------------------------------------------------- /src/txmempool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/txmempool.h -------------------------------------------------------------------------------- /src/ui_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/ui_interface.cpp -------------------------------------------------------------------------------- /src/ui_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/ui_interface.h -------------------------------------------------------------------------------- /src/uint256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/uint256.cpp -------------------------------------------------------------------------------- /src/uint256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/uint256.h -------------------------------------------------------------------------------- /src/undo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/undo.h -------------------------------------------------------------------------------- /src/univalue/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/univalue/.gitignore -------------------------------------------------------------------------------- /src/univalue/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/univalue/.travis.yml -------------------------------------------------------------------------------- /src/univalue/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/univalue/COPYING -------------------------------------------------------------------------------- /src/univalue/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/univalue/Makefile.am -------------------------------------------------------------------------------- /src/univalue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/univalue/README.md -------------------------------------------------------------------------------- /src/univalue/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/univalue/TODO -------------------------------------------------------------------------------- /src/univalue/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/univalue/autogen.sh -------------------------------------------------------------------------------- /src/univalue/build-aux/m4/.gitignore: -------------------------------------------------------------------------------- 1 | /*.m4 2 | -------------------------------------------------------------------------------- /src/univalue/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/univalue/configure.ac -------------------------------------------------------------------------------- /src/univalue/gen/gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/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/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/util.cpp -------------------------------------------------------------------------------- /src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/util.h -------------------------------------------------------------------------------- /src/utilmoneystr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/utilmoneystr.cpp -------------------------------------------------------------------------------- /src/utilmoneystr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/utilmoneystr.h -------------------------------------------------------------------------------- /src/utilstrencodings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/utilstrencodings.cpp -------------------------------------------------------------------------------- /src/utilstrencodings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/utilstrencodings.h -------------------------------------------------------------------------------- /src/utiltime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/utiltime.cpp -------------------------------------------------------------------------------- /src/utiltime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/utiltime.h -------------------------------------------------------------------------------- /src/validation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/validation.cpp -------------------------------------------------------------------------------- /src/validation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/validation.h -------------------------------------------------------------------------------- /src/validationinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/validationinterface.h -------------------------------------------------------------------------------- /src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/version.h -------------------------------------------------------------------------------- /src/versionbits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/versionbits.cpp -------------------------------------------------------------------------------- /src/versionbits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/versionbits.h -------------------------------------------------------------------------------- /src/wallet/bip39.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/wallet/bip39.cpp -------------------------------------------------------------------------------- /src/wallet/bip39.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/wallet/bip39.h -------------------------------------------------------------------------------- /src/wallet/bip39_english.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/wallet/bip39_english.h -------------------------------------------------------------------------------- /src/wallet/coincontrol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/wallet/coincontrol.h -------------------------------------------------------------------------------- /src/wallet/crypter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/wallet/crypter.cpp -------------------------------------------------------------------------------- /src/wallet/crypter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/wallet/crypter.h -------------------------------------------------------------------------------- /src/wallet/db.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/wallet/db.cpp -------------------------------------------------------------------------------- /src/wallet/db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/wallet/db.h -------------------------------------------------------------------------------- /src/wallet/feebumper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/wallet/feebumper.cpp -------------------------------------------------------------------------------- /src/wallet/feebumper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/wallet/feebumper.h -------------------------------------------------------------------------------- /src/wallet/fees.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/wallet/fees.cpp -------------------------------------------------------------------------------- /src/wallet/fees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/wallet/fees.h -------------------------------------------------------------------------------- /src/wallet/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/wallet/init.cpp -------------------------------------------------------------------------------- /src/wallet/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/wallet/init.h -------------------------------------------------------------------------------- /src/wallet/rpcdump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/wallet/rpcdump.cpp -------------------------------------------------------------------------------- /src/wallet/rpcwallet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/wallet/rpcwallet.cpp -------------------------------------------------------------------------------- /src/wallet/rpcwallet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/wallet/rpcwallet.h -------------------------------------------------------------------------------- /src/wallet/wallet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/wallet/wallet.cpp -------------------------------------------------------------------------------- /src/wallet/wallet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/wallet/wallet.h -------------------------------------------------------------------------------- /src/wallet/walletdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/wallet/walletdb.cpp -------------------------------------------------------------------------------- /src/wallet/walletdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/wallet/walletdb.h -------------------------------------------------------------------------------- /src/warnings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/warnings.cpp -------------------------------------------------------------------------------- /src/warnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/warnings.h -------------------------------------------------------------------------------- /src/zmq/zmqconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/src/zmq/zmqconfig.h -------------------------------------------------------------------------------- /static-builds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/static-builds/README.md -------------------------------------------------------------------------------- /static-builds/script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/static-builds/script.sh -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/test/README.md -------------------------------------------------------------------------------- /test/config.ini.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/test/config.ini.in -------------------------------------------------------------------------------- /test/functional/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | cache 3 | -------------------------------------------------------------------------------- /test/functional/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/test/functional/README.md -------------------------------------------------------------------------------- /test/functional/rpc_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoverse/satoxcoin/HEAD/test/functional/rpc_net.py -------------------------------------------------------------------------------- /test/functional/test_framework/__init__.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------