├── .gitattributes ├── .github ├── contributing.md ├── issue_template.md └── pull_request_template.md ├── .gitignore ├── .gitmodules ├── .travis.yml ├── .tx └── config ├── CHANGELOG.md ├── CONTRIBUTING.md ├── COPYING ├── INSTALL ├── Makefile.am ├── README.md ├── Vagrantfile ├── autogen.sh ├── configure.ac ├── contrib ├── README.md ├── debian │ ├── README.md │ ├── compat │ ├── control │ ├── copyright │ ├── dynamic-qt.desktop │ ├── dynamic-qt.install │ ├── dynamic-qt.lintian-overrides │ ├── dynamic-qt.protocol │ ├── dynamic-tx.install │ ├── dynamicd.bash-completion │ ├── dynamicd.examples │ ├── dynamicd.install │ ├── dynamicd.lintian-overrides │ ├── dynamicd.manpages │ ├── examples │ │ └── dynamic.conf │ ├── gbp.conf │ ├── manpages │ │ ├── dynamic-cli.1 │ │ ├── dynamic-qt.1 │ │ ├── dynamic.conf.5 │ │ └── dynamicd.1 │ ├── patches │ │ ├── README │ │ └── series │ ├── rules │ ├── source │ │ └── format │ └── watch ├── devtools │ ├── README.md │ ├── clang-format.py │ ├── fix-copyright-headers.py │ ├── git-subtree-check.sh │ ├── github-merge.sh │ ├── optimize-pngs.py │ ├── security-check.py │ ├── symbol-check.py │ ├── test-security-check.py │ └── update-translations.py ├── dynamic-cli.bash-completion ├── dynamic-tx.bash-completion ├── dynamicd.bash-completion ├── gitian-descriptors │ ├── README.md │ ├── gitian-arm.yml │ ├── gitian-linux.yml │ ├── gitian-osx-signer.yml │ ├── gitian-osx.yml │ ├── gitian-win-signer.yml │ └── gitian-win.yml ├── gitian-downloader │ ├── ahmadkazi-key.pgp │ ├── amirabrams-key.pgp │ ├── gregorybetz-key.pgp │ └── svenkercher-key.pgp ├── init │ ├── README.md │ ├── dynamicd.conf │ ├── dynamicd.init │ ├── dynamicd.openrc │ ├── dynamicd.openrcconf │ ├── dynamicd.service │ └── org.dynamic.dynamicd.plist ├── linearize │ ├── README.md │ ├── example-linearize-testnet.cfg │ ├── example-linearize.cfg │ ├── linearize-data.py │ └── linearize-hashes.py ├── macdeploy │ ├── Base.lproj │ │ └── InfoPlist.strings │ ├── DS_Store │ ├── LICENSE │ ├── README.md │ ├── background.png │ ├── background.psd │ ├── background.tiff │ ├── background@2x.png │ ├── detached-sig-apply.sh │ ├── detached-sig-create.sh │ ├── extract-osx-sdk.sh │ ├── fancy.plist │ └── macdeployqtplus ├── qos │ ├── README.md │ └── tc.sh ├── qt_translations.py ├── seeds │ ├── README.md │ ├── generate-seeds.py │ └── makeseeds.py ├── spendfrom │ ├── README.md │ ├── setup.py │ └── spendfrom.py ├── testgen │ ├── README.md │ ├── base58.py │ └── gen_base58_test_vectors.py ├── tidy_datadir.sh ├── verify-commits │ ├── allow-revsig-commits │ ├── gpg.sh │ ├── pre-push-hook.sh │ ├── trusted-git-root │ ├── trusted-keys │ └── verify-commits.sh ├── verifysfbinaries │ ├── README.md │ └── verify.sh └── zmq │ └── zmq_sub.py ├── depends ├── .gitignore ├── Makefile ├── README.md ├── builders │ ├── darwin.mk │ ├── default.mk │ └── linux.mk ├── config.guess ├── config.site.in ├── config.sub ├── description.md ├── funcs.mk ├── hosts │ ├── darwin.mk │ ├── default.mk │ ├── linux.mk │ └── mingw32.mk ├── packages.md ├── packages │ ├── backtrace.mk │ ├── bdb.mk │ ├── boost.mk │ ├── chia_bls.mk │ ├── dbus.mk │ ├── expat.mk │ ├── fontconfig.mk │ ├── freetype.mk │ ├── gmp.mk │ ├── libICE.mk │ ├── libSM.mk │ ├── libX11.mk │ ├── libXau.mk │ ├── libXext.mk │ ├── libevent.mk │ ├── libxcb.mk │ ├── miniupnpc.mk │ ├── native_biplist.mk │ ├── native_ccache.mk │ ├── native_cctools.mk │ ├── native_cdrkit.mk │ ├── native_ds_store.mk │ ├── native_libdmg-hfsplus.mk │ ├── native_mac_alias.mk │ ├── openssl.mk │ ├── packages.mk │ ├── qrencode.mk │ ├── qt5.7.mk │ ├── qt5.9.mk │ ├── xcb_proto.mk │ ├── xextproto.mk │ ├── xproto.mk │ ├── xtrans.mk │ ├── zeromq.mk │ └── zlib.mk └── patches │ ├── native_biplist │ └── sorted_list.patch │ ├── native_cdrkit │ └── cdrkit-deterministic.patch │ ├── native_mac_alias │ └── python3.patch │ ├── qt5.7 │ ├── fix-xcb-include-order.patch │ ├── fix_configure_mac.patch │ ├── fix_no_printer.patch │ ├── fix_qt_pkgconfig.patch │ ├── mac-qmake.conf │ ├── mingw-uuidof.patch │ └── pidlist_absolute.patch │ ├── qt5.9 │ ├── dont_hardcode_pwd.patch │ ├── drop_lrelease_dependency.patch │ ├── fix_android_jni_static.patch │ ├── fix_android_qmake_conf.patch │ ├── fix_configure_mac.patch │ ├── fix_mingw_cross_compile.patch │ ├── fix_no_printer.patch │ ├── fix_powerpc_libpng.patch │ ├── fix_qt_pkgconfig.patch │ ├── fix_rcc_determinism.patch │ ├── fix_riscv64_arch.patch │ ├── freetype_back_compat.patch │ ├── mac-qmake.conf │ ├── no-xlib.patch │ └── xkb-default.patch │ └── zeromq │ ├── 0001-fix-build-with-older-mingw64.patch │ └── 0002-disable-pthread_set_name_np.patch ├── doc ├── BDAP.md ├── Doxyfile ├── README.md ├── README_osx.txt ├── README_windows.txt ├── REST-interface.md ├── assets-attribution.md ├── bips.md ├── build-debian.md ├── build-openbsd.md ├── build-osx.md ├── build-unix.md ├── build-windows.md ├── dnsseed-policy.md ├── dynamic_logo_doxygen.png ├── dynode-budget.md ├── dynode_conf.md ├── files.md ├── gitian-building.md ├── gitian-building │ ├── create_new_vm.png │ ├── create_vm_file_location_size.png │ ├── create_vm_hard_disk.png │ ├── create_vm_hard_disk_file_type.png │ ├── create_vm_memsize.png │ ├── create_vm_storage_physical_hard_disk.png │ ├── debian_install_10_configure_clock.png │ ├── debian_install_11_partition_disks.png │ ├── debian_install_12_choose_disk.png │ ├── debian_install_14_finish.png │ ├── debian_install_15_write_changes.png │ ├── debian_install_16_choose_a_mirror.png │ ├── debian_install_18_proxy_settings.png │ ├── debian_install_19_software_selection.png │ ├── debian_install_1_boot_menu.png │ ├── debian_install_20_install_grub.png │ ├── debian_install_21_install_grub_bootloader.png │ ├── debian_install_22_finish_installation.png │ ├── debian_install_2_select_a_language.png │ ├── debian_install_3_select_location.png │ ├── debian_install_4_configure_keyboard.png │ ├── debian_install_5_configure_the_network.png │ ├── debian_install_6_domain_name.png │ ├── debian_install_6a_set_up_root_password.png │ ├── debian_install_7_set_up_user_fullname.png │ ├── debian_install_8_set_up_username.png │ ├── debian_install_9_user_password.png │ ├── debian_root_login.png │ ├── network_settings.png │ ├── port_forwarding_rules.png │ └── select_startup_disk.png ├── guide-startmany.md ├── init.md ├── initialisation-arguments.md ├── keepass.md ├── list-of-rpc-commands.md ├── multiwallet-qt.md ├── release-notes.md ├── release-process.md ├── tor.md ├── translation_process.md ├── travis-ci.txt ├── unit-tests.md └── zmq.md ├── dynamic-docs └── protocol-documentation.md ├── dynamic-qt.pro ├── libdynamicconsensus.pc.in ├── qa ├── README.md ├── pull-tester │ ├── rpc-tests.py │ ├── run-dynamicd-for-test.sh.in │ └── tests_config.py.in └── rpc-tests │ ├── .gitignore │ ├── README.md │ ├── abandonconflict.py │ ├── addressindex.py │ ├── bip65-cltv-p2p.py │ ├── bip65-cltv.py │ ├── bip68-112-113-p2p.py │ ├── bip68-sequence.py │ ├── bip9-softforks.py │ ├── bipdersig-p2p.py │ ├── bipdersig.py │ ├── blockchain.py │ ├── decodescript.py │ ├── disablewallet.py │ ├── forknotify.py │ ├── fundrawtransaction.py │ ├── getblocktemplate_longpoll.py │ ├── getblocktemplate_proposals.py │ ├── getchaintips.py │ ├── httpbasics.py │ ├── invalidateblock.py │ ├── invalidblockrequest.py │ ├── invalidtxrequest.py │ ├── keypool.py │ ├── listtransactions.py │ ├── maxblocksinflight.py │ ├── maxuploadtarget.py │ ├── mempool_limit.py │ ├── mempool_packages.py │ ├── mempool_reorg.py │ ├── mempool_resurrect_test.py │ ├── mempool_spendcoinbase.py │ ├── merkle_blocks.py │ ├── multi_rpc.py │ ├── nodehandling.py │ ├── p2p-acceptblock.py │ ├── p2p-fullblocktest.py │ ├── p2p-versionbits-warning.py │ ├── prioritise_transaction.py │ ├── proxy_test.py │ ├── pruning.py │ ├── rawtransactions.py │ ├── receivedby.py │ ├── reindex.py │ ├── replace-by-fee.py │ ├── rest.py │ ├── rpcbind_test.py │ ├── sendheaders.py │ ├── signrawtransactions.py │ ├── smartfees.py │ ├── spentindex.py │ ├── test_framework │ ├── __init__.py │ ├── authproxy.py │ ├── bignum.py │ ├── blockstore.py │ ├── blocktools.py │ ├── comptool.py │ ├── coverage.py │ ├── key.py │ ├── mininode.py │ ├── netutil.py │ ├── script.py │ ├── socks5.py │ ├── test_framework.py │ └── util.py │ ├── timestampindex.py │ ├── txindex.py │ ├── txn_clone.py │ ├── txn_doublespend.py │ ├── wallet-hd.py │ ├── wallet.py │ ├── walletbackup.py │ ├── zapwallettxes.py │ └── zmq_test.py ├── share ├── genbuild.sh ├── pixmaps │ ├── dynamic.ico │ ├── dynamic128.png │ ├── dynamic128.xpm │ ├── dynamic16.png │ ├── dynamic16.xpm │ ├── dynamic256.png │ ├── dynamic256.xpm │ ├── dynamic32.png │ ├── dynamic32.xpm │ ├── dynamic64.png │ ├── dynamic64.xpm │ ├── nsis-header.bmp │ └── nsis-wizard.bmp ├── qt │ ├── Info.plist.in │ ├── extract_strings_qt.py │ ├── img │ │ ├── reload.png │ │ └── reload.xcf │ ├── make_spinner.py │ ├── make_windows_icon.sh │ └── protobuf.pri ├── rpcuser │ ├── README.md │ └── rpcuser.py ├── setup.nsi.in └── ui.rc └── src ├── .clang-format ├── Makefile.am ├── Makefile.bench.include ├── Makefile.dht.test.include ├── Makefile.gpu.include ├── Makefile.leveldb.include ├── Makefile.libtorrent.include ├── Makefile.qt.include ├── Makefile.qttest.include ├── Makefile.test.include ├── Makefile.vgp.include ├── activedynode.cpp ├── activedynode.h ├── addrdb.cpp ├── addrdb.h ├── addressindex.h ├── addrman.cpp ├── addrman.h ├── alert.cpp ├── alert.h ├── amount.cpp ├── amount.h ├── arith_uint256.cpp ├── arith_uint256.h ├── base58.cpp ├── base58.h ├── bdap ├── audit.cpp ├── audit.h ├── auditdb.cpp ├── auditdb.h ├── bdap.h ├── certificatedb.cpp ├── certificatedb.h ├── domainentry.cpp ├── domainentry.h ├── domainentrydb.cpp ├── domainentrydb.h ├── entrycheckpoints.cpp ├── entrycheckpoints.h ├── fees.cpp ├── fees.h ├── identity.cpp ├── identity.h ├── linking.cpp ├── linking.h ├── linkingdb.cpp ├── linkingdb.h ├── linkmanager.cpp ├── linkmanager.h ├── linkstorage.cpp ├── linkstorage.h ├── sidechain.cpp ├── sidechain.h ├── stealth.cpp ├── stealth.h ├── utils.cpp ├── utils.h ├── vgpmessage.cpp ├── vgpmessage.h ├── x509certificate.cpp └── x509certificate.h ├── bench ├── .gitignore ├── Examples.cpp ├── bench.cpp ├── bench.h ├── bench_dynamic.cpp ├── lockedpool.cpp └── rollingbloom.cpp ├── bip39.cpp ├── bip39.h ├── blockencodings.cpp ├── blockencodings.h ├── bloom.cpp ├── bloom.h ├── cachemap.h ├── cachemultimap.h ├── chain.cpp ├── chain.h ├── chainparams.cpp ├── chainparams.h ├── chainparamsbase.cpp ├── chainparamsbase.h ├── chainparamsseeds.h ├── checkpoints.cpp ├── checkpoints.h ├── checkqueue.h ├── clientversion.cpp ├── clientversion.h ├── coins.cpp ├── coins.h ├── compat.h ├── compat ├── byteswap.h ├── endian.h ├── glibc_compat.cpp ├── glibc_sanity.cpp ├── glibcxx_sanity.cpp ├── sanity.h └── strnlen.cpp ├── compressor.cpp ├── compressor.h ├── config └── .empty ├── consensus ├── consensus.h ├── merkle.cpp ├── merkle.h ├── params.h └── validation.h ├── core_io.h ├── core_memusage.h ├── core_read.cpp ├── core_write.cpp ├── crypto ├── argon2d │ ├── argon2.c │ ├── argon2.h │ ├── core.c │ ├── core.h │ ├── encoding.c │ ├── encoding.h │ ├── opt.c │ ├── thread.c │ └── thread.h ├── argon2gpu │ ├── blake2b.cpp │ ├── blake2b.h │ ├── common.cpp │ ├── common.h │ ├── cuda │ │ ├── blake2b-kernels.cu │ │ ├── blake2b-kernels.h │ │ ├── cuda-exception.h │ │ ├── device.cpp │ │ ├── device.h │ │ ├── global-context.cpp │ │ ├── global-context.h │ │ ├── kernels.cu │ │ ├── kernels.h │ │ ├── processing-unit.cpp │ │ ├── processing-unit.h │ │ ├── program-context.cpp │ │ └── program-context.h │ └── opencl │ │ ├── cl.hpp │ │ ├── device.cpp │ │ ├── device.h │ │ ├── global-context.cpp │ │ ├── global-context.h │ │ ├── kernel-loader.cpp │ │ ├── kernel-loader.h │ │ ├── kernel-runner.cpp │ │ ├── kernel-runner.h │ │ ├── kernel.cl │ │ ├── opencl.h │ │ ├── processing-unit.cpp │ │ ├── processing-unit.h │ │ ├── program-context.cpp │ │ └── program-context.h ├── blake2 │ ├── blake2-impl.h │ ├── blake2.h │ ├── blake2b.c │ ├── blamka-round-opt.h │ └── blamka-round-ref.h ├── chacha20.cpp ├── chacha20.h ├── common.h ├── hmac_sha256.cpp ├── hmac_sha256.h ├── hmac_sha512.cpp ├── hmac_sha512.h ├── ripemd160.cpp ├── ripemd160.h ├── sha1.cpp ├── sha1.h ├── sha256.cpp ├── sha256.h ├── sha256_avx2.cpp ├── sha256_shani.cpp ├── sha256_sse4.cpp ├── sha256_sse41.cpp ├── sha512.cpp └── sha512.h ├── cuckoocache.h ├── dbwrapper.cpp ├── dbwrapper.h ├── dht ├── datachunk.cpp ├── datachunk.h ├── dataheader.cpp ├── dataheader.h ├── datarecord.cpp ├── datarecord.h ├── dataset.cpp ├── dataset.h ├── ed25519.cpp ├── ed25519.h ├── limits.cpp ├── limits.h ├── mutable.cpp ├── mutable.h ├── mutabledb.cpp ├── mutabledb.h ├── session.cpp ├── session.h ├── sessionevents.cpp ├── sessionevents.h ├── settings.cpp ├── settings.h ├── storage.cpp ├── storage.h └── test │ └── data_test.cpp ├── drafted ├── governance-categories.h ├── governance-classes.h ├── governance-keys.cpp ├── governance-keys.h ├── governance-types.cpp ├── governance-types.h └── governance.new.cpp ├── dynamic-cli-res.rc ├── dynamic-cli.cpp ├── dynamic-tx-res.rc ├── dynamic-tx.cpp ├── dynamicd-res.rc ├── dynamicd.cpp ├── dynode-payments.cpp ├── dynode-payments.h ├── dynode-sync.cpp ├── dynode-sync.h ├── dynode.cpp ├── dynode.h ├── dynodeconfig.cpp ├── dynodeconfig.h ├── dynodeman.cpp ├── dynodeman.h ├── flat-database.h ├── fluid ├── banaccount.cpp ├── banaccount.h ├── fluid.cpp ├── fluid.h ├── fluiddb.cpp ├── fluiddb.h ├── fluiddynode.cpp ├── fluiddynode.h ├── fluidmining.cpp ├── fluidmining.h ├── fluidmint.cpp ├── fluidmint.h ├── fluidsovereign.cpp ├── fluidsovereign.h ├── operations.cpp └── operations.h ├── governance-classes.cpp ├── governance-classes.h ├── governance-exceptions.h ├── governance-object.cpp ├── governance-object.h ├── governance-validators.cpp ├── governance-validators.h ├── governance-vote.cpp ├── governance-vote.h ├── governance-votedb.cpp ├── governance-votedb.h ├── governance.cpp ├── governance.h ├── hash.cpp ├── hash.h ├── hdchain.cpp ├── hdchain.h ├── httprpc.cpp ├── httprpc.h ├── httpserver.cpp ├── httpserver.h ├── indirectmap.h ├── init.cpp ├── init.h ├── instantsend.cpp ├── instantsend.h ├── keepass.cpp ├── keepass.h ├── key.cpp ├── key.h ├── keystore.cpp ├── keystore.h ├── leveldb ├── .gitignore ├── .travis.yml ├── AUTHORS ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── NEWS ├── README.md ├── TODO ├── WINDOWS.md ├── build_detect_platform ├── db │ ├── autocompact_test.cc │ ├── builder.cc │ ├── builder.h │ ├── c.cc │ ├── c_test.c │ ├── corruption_test.cc │ ├── db_bench.cc │ ├── db_impl.cc │ ├── db_impl.h │ ├── db_iter.cc │ ├── db_iter.h │ ├── db_test.cc │ ├── dbformat.cc │ ├── dbformat.h │ ├── dbformat_test.cc │ ├── dumpfile.cc │ ├── fault_injection_test.cc │ ├── filename.cc │ ├── filename.h │ ├── filename_test.cc │ ├── leveldbutil.cc │ ├── log_format.h │ ├── log_reader.cc │ ├── log_reader.h │ ├── log_test.cc │ ├── log_writer.cc │ ├── log_writer.h │ ├── memtable.cc │ ├── memtable.h │ ├── recovery_test.cc │ ├── repair.cc │ ├── skiplist.h │ ├── skiplist_test.cc │ ├── snapshot.h │ ├── table_cache.cc │ ├── table_cache.h │ ├── version_edit.cc │ ├── version_edit.h │ ├── version_edit_test.cc │ ├── version_set.cc │ ├── version_set.h │ ├── version_set_test.cc │ ├── write_batch.cc │ ├── write_batch_internal.h │ └── write_batch_test.cc ├── doc │ ├── bench │ │ ├── db_bench_sqlite3.cc │ │ └── db_bench_tree_db.cc │ ├── benchmark.html │ ├── impl.md │ ├── index.md │ ├── log_format.md │ └── table_format.md ├── helpers │ └── memenv │ │ ├── memenv.cc │ │ ├── memenv.h │ │ └── memenv_test.cc ├── include │ └── leveldb │ │ ├── c.h │ │ ├── cache.h │ │ ├── comparator.h │ │ ├── db.h │ │ ├── dumpfile.h │ │ ├── env.h │ │ ├── filter_policy.h │ │ ├── iterator.h │ │ ├── options.h │ │ ├── slice.h │ │ ├── status.h │ │ ├── table.h │ │ ├── table_builder.h │ │ └── write_batch.h ├── issues │ ├── issue178_test.cc │ └── issue200_test.cc ├── port │ ├── README │ ├── atomic_pointer.h │ ├── port.h │ ├── port_example.h │ ├── port_posix.cc │ ├── port_posix.h │ ├── port_posix_sse.cc │ ├── port_win.cc │ ├── port_win.h │ ├── thread_annotations.h │ └── win │ │ └── stdint.h ├── table │ ├── block.cc │ ├── block.h │ ├── block_builder.cc │ ├── block_builder.h │ ├── filter_block.cc │ ├── filter_block.h │ ├── filter_block_test.cc │ ├── format.cc │ ├── format.h │ ├── iterator.cc │ ├── iterator_wrapper.h │ ├── merger.cc │ ├── merger.h │ ├── table.cc │ ├── table_builder.cc │ ├── table_test.cc │ ├── two_level_iterator.cc │ └── two_level_iterator.h └── util │ ├── arena.cc │ ├── arena.h │ ├── arena_test.cc │ ├── bloom.cc │ ├── bloom_test.cc │ ├── cache.cc │ ├── cache_test.cc │ ├── coding.cc │ ├── coding.h │ ├── coding_test.cc │ ├── comparator.cc │ ├── crc32c.cc │ ├── crc32c.h │ ├── crc32c_test.cc │ ├── env.cc │ ├── env_posix.cc │ ├── env_posix_test.cc │ ├── env_posix_test_helper.h │ ├── env_test.cc │ ├── env_win.cc │ ├── filter_policy.cc │ ├── hash.cc │ ├── hash.h │ ├── hash_test.cc │ ├── histogram.cc │ ├── histogram.h │ ├── logging.cc │ ├── logging.h │ ├── mutexlock.h │ ├── options.cc │ ├── posix_logger.h │ ├── random.h │ ├── status.cc │ ├── testharness.cc │ ├── testharness.h │ ├── testutil.cc │ └── testutil.h ├── limitedmap.h ├── memusage.h ├── merkleblock.cpp ├── merkleblock.h ├── messagesigner.cpp ├── messagesigner.h ├── miner ├── impl │ ├── miner-cpu.cpp │ ├── miner-cpu.h │ ├── miner-gpu.cpp │ └── miner-gpu.h ├── internal │ ├── hash-rate-counter.cpp │ ├── hash-rate-counter.h │ ├── miner-base.cpp │ ├── miner-base.h │ ├── miner-context.cpp │ ├── miner-context.h │ ├── miners-controller.cpp │ ├── miners-controller.h │ ├── miners-group.h │ └── thread-group.h ├── miner-util.cpp ├── miner-util.h ├── miner.cpp └── miner.h ├── net.cpp ├── net.h ├── net_processing.cpp ├── net_processing.h ├── netaddress.cpp ├── netaddress.h ├── netbase.cpp ├── netbase.h ├── netfulfilledman.cpp ├── netfulfilledman.h ├── netmessagemaker.h ├── noui.cpp ├── noui.h ├── ntp.cpp ├── ntp.h ├── obj-test └── .gitignore ├── obj └── .gitignore ├── policy ├── 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 ├── privatesend-client.cpp ├── privatesend-client.h ├── privatesend-server.cpp ├── privatesend-server.h ├── privatesend-util.cpp ├── privatesend-util.h ├── privatesend.cpp ├── privatesend.h ├── protocol.cpp ├── protocol.h ├── psnotificationinterface.cpp ├── psnotificationinterface.h ├── pubkey.cpp ├── pubkey.h ├── qt ├── addressbookpage.cpp ├── addressbookpage.h ├── addresstablemodel.cpp ├── addresstablemodel.h ├── askpassphrasedialog.cpp ├── askpassphrasedialog.h ├── bantablemodel.cpp ├── bantablemodel.h ├── bdapaccounttablemodel.cpp ├── bdapaccounttablemodel.h ├── bdapaddlinkdialog.cpp ├── bdapaddlinkdialog.h ├── bdapadduserdialog.cpp ├── bdapadduserdialog.h ├── bdapfeespopup.cpp ├── bdapfeespopup.h ├── bdaplinkdetaildialog.cpp ├── bdaplinkdetaildialog.h ├── bdaplinktablemodel.cpp ├── bdaplinktablemodel.h ├── bdappage.cpp ├── bdappage.h ├── bdapupdateaccountdialog.cpp ├── bdapupdateaccountdialog.h ├── bdapuserdetaildialog.cpp ├── bdapuserdetaildialog.h ├── clientmodel.cpp ├── clientmodel.h ├── coincontroldialog.cpp ├── coincontroldialog.h ├── coincontroltreewidget.cpp ├── coincontroltreewidget.h ├── csvmodelwriter.cpp ├── csvmodelwriter.h ├── dynamic.cpp ├── dynamic.qrc ├── dynamic_locale.qrc ├── dynamicaddressvalidator.cpp ├── dynamicaddressvalidator.h ├── dynamicamountfield.cpp ├── dynamicamountfield.h ├── dynamicgui.cpp ├── dynamicgui.h ├── dynamicstrings.cpp ├── dynamicunits.cpp ├── dynamicunits.h ├── dynodelist.cpp ├── dynodelist.h ├── editaddressdialog.cpp ├── editaddressdialog.h ├── forms │ ├── addressbookpage.ui │ ├── askpassphrasedialog.ui │ ├── bdapaddlinkdialog.ui │ ├── bdapadduserdialog.ui │ ├── bdaplinkdetaildialog.ui │ ├── bdappage.ui │ ├── bdapupdateaccountdialog.ui │ ├── bdapuserdetaildialog.ui │ ├── coincontroldialog.ui │ ├── dynodelist.ui │ ├── editaddressdialog.ui │ ├── helpmessagedialog.ui │ ├── intro.ui │ ├── miningpage.ui │ ├── mnemonicdialog.ui │ ├── modaloverlay.ui │ ├── openuridialog.ui │ ├── optionsdialog.ui │ ├── overviewpage.ui │ ├── privatesendconfig.ui │ ├── receivecoinsdialog.ui │ ├── receiverequestdialog.ui │ ├── rpcconsole.ui │ ├── sendcoinsdialog.ui │ ├── sendcoinsentry.ui │ ├── signverifymessagedialog.ui │ └── transactiondescdialog.ui ├── guiconstants.h ├── guiutil.cpp ├── guiutil.h ├── hashrategraphwidget.cpp ├── hashrategraphwidget.h ├── intro.cpp ├── intro.h ├── locale │ ├── dynamic_bg.ts │ ├── dynamic_de.ts │ ├── dynamic_en.ts │ ├── dynamic_es.ts │ ├── dynamic_fi.ts │ ├── dynamic_fr.ts │ ├── dynamic_it.ts │ ├── dynamic_ja.ts │ ├── dynamic_ko.ts │ ├── dynamic_nl.ts │ ├── dynamic_pl.ts │ ├── dynamic_pt.ts │ ├── dynamic_ru.ts │ ├── dynamic_sk.ts │ ├── dynamic_sv.ts │ ├── dynamic_vi.ts │ ├── dynamic_zh_CN.ts │ └── dynamic_zh_TW.ts ├── macdockiconhandler.h ├── macdockiconhandler.mm ├── macnotificationhandler.h ├── macnotificationhandler.mm ├── miningpage.cpp ├── miningpage.h ├── mnemonicdialog.cpp ├── mnemonicdialog.h ├── modaloverlay.cpp ├── modaloverlay.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 ├── paymentserver.cpp ├── paymentserver.h ├── peertablemodel.cpp ├── peertablemodel.h ├── platformstyle.cpp ├── platformstyle.h ├── privatesendconfig.cpp ├── privatesendconfig.h ├── qvalidatedlineedit.cpp ├── qvalidatedlineedit.h ├── qvaluecombobox.cpp ├── qvaluecombobox.h ├── receivecoinsdialog.cpp ├── receivecoinsdialog.h ├── receiverequestdialog.cpp ├── receiverequestdialog.h ├── recentrequeststablemodel.cpp ├── recentrequeststablemodel.h ├── res │ ├── css │ │ └── drk.css │ ├── dynamic-qt-res.rc │ ├── icons │ │ ├── drk │ │ │ ├── about.png │ │ │ ├── about_qt.png │ │ │ ├── add.png │ │ │ ├── address-book.png │ │ │ ├── bdap.png │ │ │ ├── browse.png │ │ │ ├── chevron.png │ │ │ ├── clock1.png │ │ │ ├── clock2.png │ │ │ ├── clock3.png │ │ │ ├── clock4.png │ │ │ ├── clock5.png │ │ │ ├── configure.png │ │ │ ├── connect0_16.png │ │ │ ├── connect1_16.png │ │ │ ├── connect2_16.png │ │ │ ├── connect3_16.png │ │ │ ├── connect4_16.png │ │ │ ├── debugwindow.png │ │ │ ├── drkpurple_address-book.png │ │ │ ├── drkpurple_editcopy.png │ │ │ ├── drkpurple_editpaste.png │ │ │ ├── drkpurple_remove.png │ │ │ ├── dynamic.png │ │ │ ├── dynamic_testnet.ico │ │ │ ├── dynamic_testnet.png │ │ │ ├── dynode_network.png │ │ │ ├── edit.png │ │ │ ├── editcopy.png │ │ │ ├── editpaste.png │ │ │ ├── export.png │ │ │ ├── eye.png │ │ │ ├── eye_minus.png │ │ │ ├── eye_plus.png │ │ │ ├── filesave.png │ │ │ ├── fluid.png │ │ │ ├── fontbigger.png │ │ │ ├── fontsmaller.png │ │ │ ├── hd_disabled.png │ │ │ ├── hd_enabled.png │ │ │ ├── history.png │ │ │ ├── key.png │ │ │ ├── lock_closed.png │ │ │ ├── lock_open.png │ │ │ ├── notsynced.png │ │ │ ├── overview.png │ │ │ ├── pos.png │ │ │ ├── qrcode.png │ │ │ ├── quit.png │ │ │ ├── receive.png │ │ │ ├── remove.png │ │ │ ├── send.png │ │ │ ├── staking_active.png │ │ │ ├── staking_inactive.png │ │ │ ├── synced.png │ │ │ ├── transaction0.png │ │ │ ├── transaction2.png │ │ │ ├── transaction_abandoned.png │ │ │ ├── transaction_conflicted.png │ │ │ ├── tx_inout.png │ │ │ ├── tx_input.png │ │ │ ├── tx_mined.png │ │ │ ├── tx_output.png │ │ │ ├── unit_dyn.png │ │ │ ├── unit_mdyn.png │ │ │ ├── unit_satoshis.png │ │ │ ├── unit_udyn.png │ │ │ ├── verify.png │ │ │ ├── warning-0.png │ │ │ ├── warning-1.png │ │ │ ├── warning-10.png │ │ │ ├── warning-100.png │ │ │ ├── warning-101.png │ │ │ ├── warning-102.png │ │ │ ├── warning-103.png │ │ │ ├── warning-104.png │ │ │ ├── warning-105.png │ │ │ ├── warning-106.png │ │ │ ├── warning-107.png │ │ │ ├── warning-108.png │ │ │ ├── warning-109.png │ │ │ ├── warning-11.png │ │ │ ├── warning-110.png │ │ │ ├── warning-111.png │ │ │ ├── warning-112.png │ │ │ ├── warning-113.png │ │ │ ├── warning-114.png │ │ │ ├── warning-115.png │ │ │ ├── warning-116.png │ │ │ ├── warning-117.png │ │ │ ├── warning-118.png │ │ │ ├── warning-119.png │ │ │ ├── warning-12.png │ │ │ ├── warning-120.png │ │ │ ├── warning-121.png │ │ │ ├── warning-122.png │ │ │ ├── warning-123.png │ │ │ ├── warning-124.png │ │ │ ├── warning-125.png │ │ │ ├── warning-126.png │ │ │ ├── warning-127.png │ │ │ ├── warning-128.png │ │ │ ├── warning-129.png │ │ │ ├── warning-13.png │ │ │ ├── warning-130.png │ │ │ ├── warning-131.png │ │ │ ├── warning-132.png │ │ │ ├── warning-133.png │ │ │ ├── warning-134.png │ │ │ ├── warning-135.png │ │ │ ├── warning-136.png │ │ │ ├── warning-137.png │ │ │ ├── warning-138.png │ │ │ ├── warning-139.png │ │ │ ├── warning-14.png │ │ │ ├── warning-140.png │ │ │ ├── warning-141.png │ │ │ ├── warning-142.png │ │ │ ├── warning-143.png │ │ │ ├── warning-144.png │ │ │ ├── warning-145.png │ │ │ ├── warning-146.png │ │ │ ├── warning-147.png │ │ │ ├── warning-148.png │ │ │ ├── warning-149.png │ │ │ ├── warning-15.png │ │ │ ├── warning-150.png │ │ │ ├── warning-151.png │ │ │ ├── warning-152.png │ │ │ ├── warning-153.png │ │ │ ├── warning-154.png │ │ │ ├── warning-155.png │ │ │ ├── warning-156.png │ │ │ ├── warning-157.png │ │ │ ├── warning-158.png │ │ │ ├── warning-159.png │ │ │ ├── warning-16.png │ │ │ ├── warning-160.png │ │ │ ├── warning-161.png │ │ │ ├── warning-162.png │ │ │ ├── warning-163.png │ │ │ ├── warning-164.png │ │ │ ├── warning-165.png │ │ │ ├── warning-166.png │ │ │ ├── warning-167.png │ │ │ ├── warning-168.png │ │ │ ├── warning-169.png │ │ │ ├── warning-17.png │ │ │ ├── warning-170.png │ │ │ ├── warning-171.png │ │ │ ├── warning-172.png │ │ │ ├── warning-173.png │ │ │ ├── warning-174.png │ │ │ ├── warning-175.png │ │ │ ├── warning-176.png │ │ │ ├── warning-177.png │ │ │ ├── warning-178.png │ │ │ ├── warning-179.png │ │ │ ├── warning-18.png │ │ │ ├── warning-180.png │ │ │ ├── warning-181.png │ │ │ ├── warning-182.png │ │ │ ├── warning-183.png │ │ │ ├── warning-184.png │ │ │ ├── warning-185.png │ │ │ ├── warning-186.png │ │ │ ├── warning-187.png │ │ │ ├── warning-188.png │ │ │ ├── warning-189.png │ │ │ ├── warning-19.png │ │ │ ├── warning-190.png │ │ │ ├── warning-191.png │ │ │ ├── warning-192.png │ │ │ ├── warning-193.png │ │ │ ├── warning-194.png │ │ │ ├── warning-195.png │ │ │ ├── warning-196.png │ │ │ ├── warning-197.png │ │ │ ├── warning-198.png │ │ │ ├── warning-199.png │ │ │ ├── warning-2.png │ │ │ ├── warning-20.png │ │ │ ├── warning-200.png │ │ │ ├── warning-201.png │ │ │ ├── warning-202.png │ │ │ ├── warning-203.png │ │ │ ├── warning-204.png │ │ │ ├── warning-205.png │ │ │ ├── warning-206.png │ │ │ ├── warning-207.png │ │ │ ├── warning-208.png │ │ │ ├── warning-209.png │ │ │ ├── warning-21.png │ │ │ ├── warning-210.png │ │ │ ├── warning-211.png │ │ │ ├── warning-212.png │ │ │ ├── warning-213.png │ │ │ ├── warning-214.png │ │ │ ├── warning-215.png │ │ │ ├── warning-216.png │ │ │ ├── warning-217.png │ │ │ ├── warning-218.png │ │ │ ├── warning-219.png │ │ │ ├── warning-22.png │ │ │ ├── warning-220.png │ │ │ ├── warning-221.png │ │ │ ├── warning-222.png │ │ │ ├── warning-223.png │ │ │ ├── warning-224.png │ │ │ ├── warning-225.png │ │ │ ├── warning-226.png │ │ │ ├── warning-227.png │ │ │ ├── warning-228.png │ │ │ ├── warning-229.png │ │ │ ├── warning-23.png │ │ │ ├── warning-230.png │ │ │ ├── warning-231.png │ │ │ ├── warning-232.png │ │ │ ├── warning-233.png │ │ │ ├── warning-234.png │ │ │ ├── warning-235.png │ │ │ ├── warning-236.png │ │ │ ├── warning-237.png │ │ │ ├── warning-238.png │ │ │ ├── warning-239.png │ │ │ ├── warning-24.png │ │ │ ├── warning-240.png │ │ │ ├── warning-241.png │ │ │ ├── warning-242.png │ │ │ ├── warning-243.png │ │ │ ├── warning-244.png │ │ │ ├── warning-245.png │ │ │ ├── warning-246.png │ │ │ ├── warning-247.png │ │ │ ├── warning-248.png │ │ │ ├── warning-249.png │ │ │ ├── warning-25.png │ │ │ ├── warning-250.png │ │ │ ├── warning-251.png │ │ │ ├── warning-252.png │ │ │ ├── warning-253.png │ │ │ ├── warning-254.png │ │ │ ├── warning-255.png │ │ │ ├── warning-256.png │ │ │ ├── warning-257.png │ │ │ ├── warning-258.png │ │ │ ├── warning-259.png │ │ │ ├── warning-26.png │ │ │ ├── warning-260.png │ │ │ ├── warning-261.png │ │ │ ├── warning-262.png │ │ │ ├── warning-263.png │ │ │ ├── warning-264.png │ │ │ ├── warning-265.png │ │ │ ├── warning-266.png │ │ │ ├── warning-267.png │ │ │ ├── warning-268.png │ │ │ ├── warning-269.png │ │ │ ├── warning-27.png │ │ │ ├── warning-270.png │ │ │ ├── warning-271.png │ │ │ ├── warning-272.png │ │ │ ├── warning-273.png │ │ │ ├── warning-274.png │ │ │ ├── warning-275.png │ │ │ ├── warning-276.png │ │ │ ├── warning-277.png │ │ │ ├── warning-278.png │ │ │ ├── warning-279.png │ │ │ ├── warning-28.png │ │ │ ├── warning-280.png │ │ │ ├── warning-281.png │ │ │ ├── warning-282.png │ │ │ ├── warning-283.png │ │ │ ├── warning-284.png │ │ │ ├── warning-285.png │ │ │ ├── warning-286.png │ │ │ ├── warning-287.png │ │ │ ├── warning-288.png │ │ │ ├── warning-289.png │ │ │ ├── warning-29.png │ │ │ ├── warning-290.png │ │ │ ├── warning-291.png │ │ │ ├── warning-292.png │ │ │ ├── warning-293.png │ │ │ ├── warning-294.png │ │ │ ├── warning-295.png │ │ │ ├── warning-296.png │ │ │ ├── warning-297.png │ │ │ ├── warning-298.png │ │ │ ├── warning-299.png │ │ │ ├── warning-3.png │ │ │ ├── warning-30.png │ │ │ ├── warning-300.png │ │ │ ├── warning-301.png │ │ │ ├── warning-302.png │ │ │ ├── warning-303.png │ │ │ ├── warning-304.png │ │ │ ├── warning-305.png │ │ │ ├── warning-306.png │ │ │ ├── warning-307.png │ │ │ ├── warning-308.png │ │ │ ├── warning-309.png │ │ │ ├── warning-31.png │ │ │ ├── warning-310.png │ │ │ ├── warning-32.png │ │ │ ├── warning-33.png │ │ │ ├── warning-34.png │ │ │ ├── warning-35.png │ │ │ ├── warning-36.png │ │ │ ├── warning-37.png │ │ │ ├── warning-38.png │ │ │ ├── warning-39.png │ │ │ ├── warning-4.png │ │ │ ├── warning-40.png │ │ │ ├── warning-41.png │ │ │ ├── warning-42.png │ │ │ ├── warning-43.png │ │ │ ├── warning-44.png │ │ │ ├── warning-45.png │ │ │ ├── warning-46.png │ │ │ ├── warning-47.png │ │ │ ├── warning-48.png │ │ │ ├── warning-49.png │ │ │ ├── warning-5.png │ │ │ ├── warning-50.png │ │ │ ├── warning-51.png │ │ │ ├── warning-52.png │ │ │ ├── warning-53.png │ │ │ ├── warning-54.png │ │ │ ├── warning-55.png │ │ │ ├── warning-56.png │ │ │ ├── warning-57.png │ │ │ ├── warning-58.png │ │ │ ├── warning-59.png │ │ │ ├── warning-6.png │ │ │ ├── warning-60.png │ │ │ ├── warning-61.png │ │ │ ├── warning-62.png │ │ │ ├── warning-63.png │ │ │ ├── warning-64.png │ │ │ ├── warning-65.png │ │ │ ├── warning-66.png │ │ │ ├── warning-67.png │ │ │ ├── warning-68.png │ │ │ ├── warning-69.png │ │ │ ├── warning-7.png │ │ │ ├── warning-70.png │ │ │ ├── warning-71.png │ │ │ ├── warning-72.png │ │ │ ├── warning-73.png │ │ │ ├── warning-74.png │ │ │ ├── warning-75.png │ │ │ ├── warning-76.png │ │ │ ├── warning-77.png │ │ │ ├── warning-78.png │ │ │ ├── warning-79.png │ │ │ ├── warning-8.png │ │ │ ├── warning-80.png │ │ │ ├── warning-81.png │ │ │ ├── warning-82.png │ │ │ ├── warning-83.png │ │ │ ├── warning-84.png │ │ │ ├── warning-85.png │ │ │ ├── warning-86.png │ │ │ ├── warning-87.png │ │ │ ├── warning-88.png │ │ │ ├── warning-89.png │ │ │ ├── warning-9.png │ │ │ ├── warning-90.png │ │ │ ├── warning-91.png │ │ │ ├── warning-92.png │ │ │ ├── warning-93.png │ │ │ ├── warning-94.png │ │ │ ├── warning-95.png │ │ │ ├── warning-96.png │ │ │ ├── warning-97.png │ │ │ ├── warning-98.png │ │ │ ├── warning-99.png │ │ │ └── warning.png │ │ ├── dynamic.icns │ │ ├── dynamic.ico │ │ └── dynamic.png │ ├── images │ │ └── drk │ │ │ ├── about.png │ │ │ ├── checked.png │ │ │ ├── drk_walletFrame.png │ │ │ ├── drk_walletFrame_bg.png │ │ │ ├── drkpurple_downArrow.png │ │ │ ├── drkpurple_downArrow_small.png │ │ │ ├── drkpurple_leftArrow_small.png │ │ │ ├── drkpurple_qtreeview_selected.png │ │ │ ├── drkpurple_rightArrow_small.png │ │ │ ├── drkpurple_upArrow_small.png │ │ │ ├── dynamic_logo_horizontal.png │ │ │ ├── splash.png │ │ │ ├── splash_testnet.png │ │ │ └── unchecked.png │ ├── movies │ │ ├── makespinner.sh │ │ ├── spinner-000.png │ │ ├── spinner-001.png │ │ ├── spinner-002.png │ │ ├── spinner-003.png │ │ ├── spinner-004.png │ │ ├── spinner-005.png │ │ ├── spinner-006.png │ │ ├── spinner-007.png │ │ ├── spinner-008.png │ │ ├── spinner-009.png │ │ ├── spinner-010.png │ │ ├── spinner-011.png │ │ ├── spinner-012.png │ │ ├── spinner-013.png │ │ ├── spinner-014.png │ │ ├── spinner-015.png │ │ ├── spinner-016.png │ │ ├── spinner-017.png │ │ ├── spinner-018.png │ │ ├── spinner-019.png │ │ ├── spinner-020.png │ │ ├── spinner-021.png │ │ ├── spinner-022.png │ │ ├── spinner-023.png │ │ ├── spinner-024.png │ │ ├── spinner-025.png │ │ ├── spinner-026.png │ │ ├── spinner-027.png │ │ ├── spinner-028.png │ │ ├── spinner-029.png │ │ ├── spinner-030.png │ │ ├── spinner-031.png │ │ ├── spinner-032.png │ │ ├── spinner-033.png │ │ ├── spinner-034.png │ │ └── spinner-035.png │ └── 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 │ │ ├── dynamic.svg │ │ ├── hd_disabled.svg │ │ ├── hd_enabled.svg │ │ ├── mine.svg │ │ ├── qt.svg │ │ ├── spinner.png │ │ ├── transaction0.svg │ │ ├── tx_in.svg │ │ ├── tx_inout.svg │ │ └── verify.svg ├── rpcconsole.cpp ├── rpcconsole.h ├── sendcoinsdialog.cpp ├── sendcoinsdialog.h ├── sendcoinsentry.cpp ├── sendcoinsentry.h ├── signverifymessagedialog.cpp ├── signverifymessagedialog.h ├── splashscreen.cpp ├── splashscreen.h ├── test │ ├── compattests.cpp │ ├── compattests.h │ ├── rpcnestedtests.cpp │ ├── rpcnestedtests.h │ ├── test_main.cpp │ ├── trafficgraphdatatests.cpp │ ├── trafficgraphdatatests.h │ ├── uritests.cpp │ └── uritests.h ├── trafficgraphdata.cpp ├── trafficgraphdata.h ├── trafficgraphwidget.cpp ├── trafficgraphwidget.h ├── transactiondesc.cpp ├── transactiondesc.h ├── transactiondescdialog.cpp ├── transactiondescdialog.h ├── transactionfilterproxy.cpp ├── transactionfilterproxy.h ├── transactionrecord.cpp ├── transactionrecord.h ├── transactiontablemodel.cpp ├── transactiontablemodel.h ├── transactionview.cpp ├── transactionview.h ├── utilitydialog.cpp ├── utilitydialog.h ├── walletframe.cpp ├── walletframe.h ├── walletmodel.cpp ├── walletmodel.h ├── walletmodeltransaction.cpp ├── walletmodeltransaction.h ├── walletview.cpp ├── walletview.h ├── winshutdownmonitor.cpp └── winshutdownmonitor.h ├── random.cpp ├── random.h ├── rest.cpp ├── reverse_iterator.h ├── reverselock.h ├── rpc ├── audits.cpp ├── blockchain.cpp ├── certificates.cpp ├── client.cpp ├── client.h ├── dht.cpp ├── domainentry.cpp ├── dynode.cpp ├── fluid.cpp ├── governance.cpp ├── linking.cpp ├── mining.cpp ├── misc.cpp ├── net.cpp ├── protocol.cpp ├── protocol.h ├── rawbdap.cpp ├── rawtransaction.cpp ├── register.h ├── server.cpp ├── server.h ├── wallet.cpp ├── wallet.h └── walletdump.cpp ├── scheduler.cpp ├── scheduler.h ├── script ├── dynamicconsensus.cpp ├── dynamicconsensus.h ├── interpreter.cpp ├── interpreter.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 ├── SECURITY.md ├── autogen.sh ├── build-aux │ └── m4 │ │ ├── ax_prog_cc_for_build.m4 │ │ └── bitcoin_secp.m4 ├── configure.ac ├── contrib │ ├── lax_der_parsing.c │ ├── lax_der_parsing.h │ ├── lax_der_privatekey_parsing.c │ ├── lax_der_privatekey_parsing.h │ └── travis.sh ├── include │ ├── secp256k1.h │ ├── secp256k1_ecdh.h │ ├── secp256k1_extrakeys.h │ ├── secp256k1_preallocated.h │ ├── secp256k1_recovery.h │ └── secp256k1_schnorrsig.h ├── libsecp256k1.pc.in ├── obj │ └── .gitignore ├── sage │ ├── gen_exhaustive_groups.sage │ ├── group_prover.sage │ ├── secp256k1.sage │ └── weierstrass_prover.sage └── src │ ├── asm │ └── field_10x26_arm.s │ ├── assumptions.h │ ├── basic-config.h │ ├── bench.h │ ├── bench_ecdh.c │ ├── bench_ecmult.c │ ├── bench_internal.c │ ├── bench_recover.c │ ├── bench_schnorrsig.c │ ├── bench_sign.c │ ├── bench_verify.c │ ├── ecdsa.h │ ├── ecdsa_impl.h │ ├── eckey.h │ ├── eckey_impl.h │ ├── ecmult.h │ ├── ecmult_const.h │ ├── ecmult_const_impl.h │ ├── ecmult_gen.h │ ├── ecmult_gen_impl.h │ ├── ecmult_impl.h │ ├── field.h │ ├── field_10x26.h │ ├── field_10x26_impl.h │ ├── field_5x52.h │ ├── field_5x52_asm_impl.h │ ├── field_5x52_impl.h │ ├── field_5x52_int128_impl.h │ ├── field_impl.h │ ├── gen_context.c │ ├── group.h │ ├── group_impl.h │ ├── hash.h │ ├── hash_impl.h │ ├── modules │ ├── ecdh │ │ ├── Makefile.am.include │ │ ├── main_impl.h │ │ └── tests_impl.h │ ├── extrakeys │ │ ├── Makefile.am.include │ │ ├── main_impl.h │ │ ├── tests_exhaustive_impl.h │ │ └── tests_impl.h │ ├── recovery │ │ ├── Makefile.am.include │ │ ├── main_impl.h │ │ ├── tests_exhaustive_impl.h │ │ └── tests_impl.h │ └── schnorrsig │ │ ├── Makefile.am.include │ │ ├── main_impl.h │ │ ├── tests_exhaustive_impl.h │ │ └── tests_impl.h │ ├── 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 │ ├── scratch.h │ ├── scratch_impl.h │ ├── secp256k1.c │ ├── selftest.h │ ├── testrand.h │ ├── testrand_impl.h │ ├── tests.c │ ├── tests_exhaustive.c │ ├── util.h │ └── valgrind_ctime_test.c ├── sendalert.cpp ├── serialize.h ├── spentindex.h ├── spork.cpp ├── spork.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 ├── alert_tests.cpp ├── allocator_tests.cpp ├── arith_uint256_tests.cpp ├── audit_tests.cpp ├── base32_tests.cpp ├── base58_tests.cpp ├── base64_tests.cpp ├── bctest.py ├── bdap_link_tests.cpp ├── bdap_vgp_message_tests.cpp ├── bip32_tests.cpp ├── bip39_tests.cpp ├── blockencodings_tests.cpp ├── bloom_tests.cpp ├── bswap_tests.cpp ├── buildenv.py.in ├── cachemap_tests.cpp ├── cachemultimap_tests.cpp ├── certificate_tests.cpp ├── certificatex509_tests.cpp ├── checkblock_tests.cpp ├── coins_tests.cpp ├── compress_tests.cpp ├── crypto_tests.cpp ├── data │ ├── README.md │ ├── alertTests.raw │ ├── base58_encode_decode.json │ ├── base58_keys_invalid.json │ ├── base58_keys_valid.json │ ├── bip39_vectors.json │ ├── blanktx.hex │ ├── dynamic-util-test.json │ ├── proposals_invalid.json │ ├── proposals_valid.json │ ├── script_tests.json │ ├── sighash.json │ ├── tt-delin1-out.hex │ ├── tt-delout1-out.hex │ ├── tt-locktime317000-out.hex │ ├── tx394b54bb.hex │ ├── tx_invalid.json │ ├── tx_valid.json │ ├── txcreate1.hex │ ├── txcreate2.hex │ ├── txcreatedata1.hex │ ├── txcreatedata2.hex │ ├── txcreatedata_seq0.hex │ ├── txcreatedata_seq1.hex │ └── txcreatesign.hex ├── dbwrapper_tests.cpp ├── dht_data_tests.cpp ├── dht_key_tests.cpp ├── dynamic-util-test.py ├── getarg_tests.cpp ├── governance_validators_tests.cpp ├── hash_tests.cpp ├── key_tests.cpp ├── limitedmap_tests.cpp ├── main_tests.cpp ├── mempool_tests.cpp ├── merkle_tests.cpp ├── miner_tests.cpp ├── multisig_tests.cpp ├── net_tests.cpp ├── netbase_tests.cpp ├── pmt_tests.cpp ├── policyestimator_tests.cpp ├── pow_tests.cpp ├── prevector_tests.cpp ├── ratecheck_tests.cpp ├── reverselock_tests.cpp ├── rpc_tests.cpp ├── sanity_tests.cpp ├── scheduler_tests.cpp ├── script_P2PKH_tests.cpp ├── script_P2SH_tests.cpp ├── script_tests.cpp ├── scriptnum10.h ├── scriptnum_tests.cpp ├── serialize_tests.cpp ├── sighash_tests.cpp ├── sigopcount_tests.cpp ├── skiplist_tests.cpp ├── stealth_tests.cpp ├── streams_tests.cpp ├── test_dynamic.cpp ├── test_dynamic.h ├── test_random.h ├── testutil.cpp ├── testutil.h ├── timedata_tests.cpp ├── transaction_tests.cpp ├── txvalidationcache_tests.cpp ├── uint256_tests.cpp ├── univalue_tests.cpp ├── util_tests.cpp └── versionbits_tests.cpp ├── threadinterrupt.cpp ├── threadinterrupt.h ├── threadsafety.h ├── timedata.cpp ├── timedata.h ├── tinyformat.h ├── torcontrol.cpp ├── torcontrol.h ├── txdb.cpp ├── txdb.h ├── txmempool.cpp ├── txmempool.h ├── ui_interface.cpp ├── ui_interface.h ├── uint256.cpp ├── uint256.h ├── undo.h ├── univalue ├── .gitignore ├── .travis.yml ├── COPYING ├── Makefile.am ├── README.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 ├── coincontrol.h ├── crypter.cpp ├── crypter.h ├── db.cpp ├── db.h ├── test │ └── wallet_tests.cpp ├── wallet.cpp ├── wallet.h ├── wallet_ismine.cpp ├── wallet_ismine.h ├── walletdb.cpp └── walletdb.h ├── warnings.cpp ├── warnings.h ├── wordlists ├── chinese_simplified.h ├── chinese_traditional.h ├── english.h ├── french.h ├── german.h ├── italian.h ├── japanese.h ├── korean.h ├── russian.h ├── spanish.h └── ukrainian.h └── zmq ├── zmqabstractnotifier.cpp ├── zmqabstractnotifier.h ├── zmqconfig.h ├── zmqnotificationinterface.cpp ├── zmqnotificationinterface.h ├── zmqpublishnotifier.cpp └── zmqpublishnotifier.h /.gitattributes: -------------------------------------------------------------------------------- 1 | src/clientversion.cpp export-subst 2 | -------------------------------------------------------------------------------- /.github/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/.github/contributing.md -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/.travis.yml -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/.tx/config -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/COPYING -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/Vagrantfile -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/configure.ac -------------------------------------------------------------------------------- /contrib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/contrib/README.md -------------------------------------------------------------------------------- /contrib/debian/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/contrib/debian/README.md -------------------------------------------------------------------------------- /contrib/debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /contrib/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/contrib/debian/control -------------------------------------------------------------------------------- /contrib/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/contrib/debian/copyright -------------------------------------------------------------------------------- /contrib/debian/dynamicd.examples: -------------------------------------------------------------------------------- 1 | debian/examples/dynamic.conf 2 | -------------------------------------------------------------------------------- /contrib/debian/gbp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/contrib/debian/gbp.conf -------------------------------------------------------------------------------- /contrib/debian/patches/series: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /contrib/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/contrib/debian/rules -------------------------------------------------------------------------------- /contrib/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /contrib/debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/contrib/debian/watch -------------------------------------------------------------------------------- /contrib/devtools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/contrib/devtools/README.md -------------------------------------------------------------------------------- /contrib/init/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/contrib/init/README.md -------------------------------------------------------------------------------- /contrib/init/dynamicd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/contrib/init/dynamicd.conf -------------------------------------------------------------------------------- /contrib/init/dynamicd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/contrib/init/dynamicd.init -------------------------------------------------------------------------------- /contrib/init/dynamicd.openrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/contrib/init/dynamicd.openrc -------------------------------------------------------------------------------- /contrib/linearize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/contrib/linearize/README.md -------------------------------------------------------------------------------- /contrib/macdeploy/DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/contrib/macdeploy/DS_Store -------------------------------------------------------------------------------- /contrib/macdeploy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/contrib/macdeploy/LICENSE -------------------------------------------------------------------------------- /contrib/macdeploy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/contrib/macdeploy/README.md -------------------------------------------------------------------------------- /contrib/qos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/contrib/qos/README.md -------------------------------------------------------------------------------- /contrib/qos/tc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/contrib/qos/tc.sh -------------------------------------------------------------------------------- /contrib/qt_translations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/contrib/qt_translations.py -------------------------------------------------------------------------------- /contrib/seeds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/contrib/seeds/README.md -------------------------------------------------------------------------------- /contrib/seeds/makeseeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/contrib/seeds/makeseeds.py -------------------------------------------------------------------------------- /contrib/spendfrom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/contrib/spendfrom/README.md -------------------------------------------------------------------------------- /contrib/spendfrom/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/contrib/spendfrom/setup.py -------------------------------------------------------------------------------- /contrib/testgen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/contrib/testgen/README.md -------------------------------------------------------------------------------- /contrib/testgen/base58.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/contrib/testgen/base58.py -------------------------------------------------------------------------------- /contrib/tidy_datadir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/contrib/tidy_datadir.sh -------------------------------------------------------------------------------- /contrib/verify-commits/trusted-git-root: -------------------------------------------------------------------------------- 1 | 165e323d851cc87213c7673c6f278e87a6f2e752 2 | -------------------------------------------------------------------------------- /contrib/zmq/zmq_sub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/contrib/zmq/zmq_sub.py -------------------------------------------------------------------------------- /depends/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/depends/.gitignore -------------------------------------------------------------------------------- /depends/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/depends/Makefile -------------------------------------------------------------------------------- /depends/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/depends/README.md -------------------------------------------------------------------------------- /depends/builders/darwin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/depends/builders/darwin.mk -------------------------------------------------------------------------------- /depends/builders/default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/depends/builders/default.mk -------------------------------------------------------------------------------- /depends/builders/linux.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/depends/builders/linux.mk -------------------------------------------------------------------------------- /depends/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/depends/config.guess -------------------------------------------------------------------------------- /depends/config.site.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/depends/config.site.in -------------------------------------------------------------------------------- /depends/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/depends/config.sub -------------------------------------------------------------------------------- /depends/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/depends/description.md -------------------------------------------------------------------------------- /depends/funcs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/depends/funcs.mk -------------------------------------------------------------------------------- /depends/hosts/darwin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/depends/hosts/darwin.mk -------------------------------------------------------------------------------- /depends/hosts/default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/depends/hosts/default.mk -------------------------------------------------------------------------------- /depends/hosts/linux.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/depends/hosts/linux.mk -------------------------------------------------------------------------------- /depends/hosts/mingw32.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/depends/hosts/mingw32.mk -------------------------------------------------------------------------------- /depends/packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/depends/packages.md -------------------------------------------------------------------------------- /depends/packages/bdb.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/depends/packages/bdb.mk -------------------------------------------------------------------------------- /depends/packages/boost.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/depends/packages/boost.mk -------------------------------------------------------------------------------- /depends/packages/chia_bls.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/depends/packages/chia_bls.mk -------------------------------------------------------------------------------- /depends/packages/dbus.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/depends/packages/dbus.mk -------------------------------------------------------------------------------- /depends/packages/expat.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/depends/packages/expat.mk -------------------------------------------------------------------------------- /depends/packages/freetype.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/depends/packages/freetype.mk -------------------------------------------------------------------------------- /depends/packages/gmp.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/depends/packages/gmp.mk -------------------------------------------------------------------------------- /depends/packages/libICE.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/depends/packages/libICE.mk -------------------------------------------------------------------------------- /depends/packages/libSM.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/depends/packages/libSM.mk -------------------------------------------------------------------------------- /depends/packages/libX11.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/depends/packages/libX11.mk -------------------------------------------------------------------------------- /depends/packages/libXau.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/depends/packages/libXau.mk -------------------------------------------------------------------------------- /depends/packages/libXext.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/depends/packages/libXext.mk -------------------------------------------------------------------------------- /depends/packages/libevent.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/depends/packages/libevent.mk -------------------------------------------------------------------------------- /depends/packages/libxcb.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/depends/packages/libxcb.mk -------------------------------------------------------------------------------- /depends/packages/openssl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/depends/packages/openssl.mk -------------------------------------------------------------------------------- /depends/packages/packages.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/depends/packages/packages.mk -------------------------------------------------------------------------------- /depends/packages/qrencode.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/depends/packages/qrencode.mk -------------------------------------------------------------------------------- /depends/packages/qt5.7.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/depends/packages/qt5.7.mk -------------------------------------------------------------------------------- /depends/packages/qt5.9.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/depends/packages/qt5.9.mk -------------------------------------------------------------------------------- /depends/packages/xproto.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/depends/packages/xproto.mk -------------------------------------------------------------------------------- /depends/packages/xtrans.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/depends/packages/xtrans.mk -------------------------------------------------------------------------------- /depends/packages/zeromq.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/depends/packages/zeromq.mk -------------------------------------------------------------------------------- /depends/packages/zlib.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/depends/packages/zlib.mk -------------------------------------------------------------------------------- /doc/BDAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/doc/BDAP.md -------------------------------------------------------------------------------- /doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/doc/Doxyfile -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/README_osx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/doc/README_osx.txt -------------------------------------------------------------------------------- /doc/README_windows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/doc/README_windows.txt -------------------------------------------------------------------------------- /doc/REST-interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/doc/REST-interface.md -------------------------------------------------------------------------------- /doc/assets-attribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/doc/assets-attribution.md -------------------------------------------------------------------------------- /doc/bips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/doc/bips.md -------------------------------------------------------------------------------- /doc/build-debian.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/doc/build-debian.md -------------------------------------------------------------------------------- /doc/build-openbsd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/doc/build-openbsd.md -------------------------------------------------------------------------------- /doc/build-osx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/doc/build-osx.md -------------------------------------------------------------------------------- /doc/build-unix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/doc/build-unix.md -------------------------------------------------------------------------------- /doc/build-windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/doc/build-windows.md -------------------------------------------------------------------------------- /doc/dnsseed-policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/doc/dnsseed-policy.md -------------------------------------------------------------------------------- /doc/dynamic_logo_doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/doc/dynamic_logo_doxygen.png -------------------------------------------------------------------------------- /doc/dynode-budget.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/doc/dynode-budget.md -------------------------------------------------------------------------------- /doc/dynode_conf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/doc/dynode_conf.md -------------------------------------------------------------------------------- /doc/files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/doc/files.md -------------------------------------------------------------------------------- /doc/gitian-building.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/doc/gitian-building.md -------------------------------------------------------------------------------- /doc/guide-startmany.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/doc/guide-startmany.md -------------------------------------------------------------------------------- /doc/init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/doc/init.md -------------------------------------------------------------------------------- /doc/keepass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/doc/keepass.md -------------------------------------------------------------------------------- /doc/list-of-rpc-commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/doc/list-of-rpc-commands.md -------------------------------------------------------------------------------- /doc/multiwallet-qt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/doc/multiwallet-qt.md -------------------------------------------------------------------------------- /doc/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/doc/release-notes.md -------------------------------------------------------------------------------- /doc/release-process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/doc/release-process.md -------------------------------------------------------------------------------- /doc/tor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/doc/tor.md -------------------------------------------------------------------------------- /doc/translation_process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/doc/translation_process.md -------------------------------------------------------------------------------- /doc/travis-ci.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/doc/travis-ci.txt -------------------------------------------------------------------------------- /doc/unit-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/doc/unit-tests.md -------------------------------------------------------------------------------- /doc/zmq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/doc/zmq.md -------------------------------------------------------------------------------- /dynamic-qt.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/dynamic-qt.pro -------------------------------------------------------------------------------- /libdynamicconsensus.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/libdynamicconsensus.pc.in -------------------------------------------------------------------------------- /qa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/qa/README.md -------------------------------------------------------------------------------- /qa/pull-tester/rpc-tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/qa/pull-tester/rpc-tests.py -------------------------------------------------------------------------------- /qa/rpc-tests/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | cache 3 | -------------------------------------------------------------------------------- /qa/rpc-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/qa/rpc-tests/README.md -------------------------------------------------------------------------------- /qa/rpc-tests/addressindex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/qa/rpc-tests/addressindex.py -------------------------------------------------------------------------------- /qa/rpc-tests/bip65-cltv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/qa/rpc-tests/bip65-cltv.py -------------------------------------------------------------------------------- /qa/rpc-tests/bipdersig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/qa/rpc-tests/bipdersig.py -------------------------------------------------------------------------------- /qa/rpc-tests/blockchain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/qa/rpc-tests/blockchain.py -------------------------------------------------------------------------------- /qa/rpc-tests/decodescript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/qa/rpc-tests/decodescript.py -------------------------------------------------------------------------------- /qa/rpc-tests/forknotify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/qa/rpc-tests/forknotify.py -------------------------------------------------------------------------------- /qa/rpc-tests/getchaintips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/qa/rpc-tests/getchaintips.py -------------------------------------------------------------------------------- /qa/rpc-tests/httpbasics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/qa/rpc-tests/httpbasics.py -------------------------------------------------------------------------------- /qa/rpc-tests/keypool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/qa/rpc-tests/keypool.py -------------------------------------------------------------------------------- /qa/rpc-tests/multi_rpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/qa/rpc-tests/multi_rpc.py -------------------------------------------------------------------------------- /qa/rpc-tests/nodehandling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/qa/rpc-tests/nodehandling.py -------------------------------------------------------------------------------- /qa/rpc-tests/proxy_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/qa/rpc-tests/proxy_test.py -------------------------------------------------------------------------------- /qa/rpc-tests/pruning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/qa/rpc-tests/pruning.py -------------------------------------------------------------------------------- /qa/rpc-tests/receivedby.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/qa/rpc-tests/receivedby.py -------------------------------------------------------------------------------- /qa/rpc-tests/reindex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/qa/rpc-tests/reindex.py -------------------------------------------------------------------------------- /qa/rpc-tests/rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/qa/rpc-tests/rest.py -------------------------------------------------------------------------------- /qa/rpc-tests/rpcbind_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/qa/rpc-tests/rpcbind_test.py -------------------------------------------------------------------------------- /qa/rpc-tests/sendheaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/qa/rpc-tests/sendheaders.py -------------------------------------------------------------------------------- /qa/rpc-tests/smartfees.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/qa/rpc-tests/smartfees.py -------------------------------------------------------------------------------- /qa/rpc-tests/spentindex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/qa/rpc-tests/spentindex.py -------------------------------------------------------------------------------- /qa/rpc-tests/test_framework/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qa/rpc-tests/txindex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/qa/rpc-tests/txindex.py -------------------------------------------------------------------------------- /qa/rpc-tests/txn_clone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/qa/rpc-tests/txn_clone.py -------------------------------------------------------------------------------- /qa/rpc-tests/wallet-hd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/qa/rpc-tests/wallet-hd.py -------------------------------------------------------------------------------- /qa/rpc-tests/wallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/qa/rpc-tests/wallet.py -------------------------------------------------------------------------------- /qa/rpc-tests/walletbackup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/qa/rpc-tests/walletbackup.py -------------------------------------------------------------------------------- /qa/rpc-tests/zmq_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/qa/rpc-tests/zmq_test.py -------------------------------------------------------------------------------- /share/genbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/share/genbuild.sh -------------------------------------------------------------------------------- /share/pixmaps/dynamic.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/share/pixmaps/dynamic.ico -------------------------------------------------------------------------------- /share/pixmaps/dynamic128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/share/pixmaps/dynamic128.png -------------------------------------------------------------------------------- /share/pixmaps/dynamic128.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/share/pixmaps/dynamic128.xpm -------------------------------------------------------------------------------- /share/pixmaps/dynamic16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/share/pixmaps/dynamic16.png -------------------------------------------------------------------------------- /share/pixmaps/dynamic16.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/share/pixmaps/dynamic16.xpm -------------------------------------------------------------------------------- /share/pixmaps/dynamic256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/share/pixmaps/dynamic256.png -------------------------------------------------------------------------------- /share/pixmaps/dynamic256.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/share/pixmaps/dynamic256.xpm -------------------------------------------------------------------------------- /share/pixmaps/dynamic32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/share/pixmaps/dynamic32.png -------------------------------------------------------------------------------- /share/pixmaps/dynamic32.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/share/pixmaps/dynamic32.xpm -------------------------------------------------------------------------------- /share/pixmaps/dynamic64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/share/pixmaps/dynamic64.png -------------------------------------------------------------------------------- /share/pixmaps/dynamic64.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/share/pixmaps/dynamic64.xpm -------------------------------------------------------------------------------- /share/qt/Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/share/qt/Info.plist.in -------------------------------------------------------------------------------- /share/qt/img/reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/share/qt/img/reload.png -------------------------------------------------------------------------------- /share/qt/img/reload.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/share/qt/img/reload.xcf -------------------------------------------------------------------------------- /share/qt/make_spinner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/share/qt/make_spinner.py -------------------------------------------------------------------------------- /share/qt/protobuf.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/share/qt/protobuf.pri -------------------------------------------------------------------------------- /share/rpcuser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/share/rpcuser/README.md -------------------------------------------------------------------------------- /share/rpcuser/rpcuser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/share/rpcuser/rpcuser.py -------------------------------------------------------------------------------- /share/setup.nsi.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/share/setup.nsi.in -------------------------------------------------------------------------------- /share/ui.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/share/ui.rc -------------------------------------------------------------------------------- /src/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/.clang-format -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/Makefile.bench.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/Makefile.bench.include -------------------------------------------------------------------------------- /src/Makefile.gpu.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/Makefile.gpu.include -------------------------------------------------------------------------------- /src/Makefile.leveldb.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/Makefile.leveldb.include -------------------------------------------------------------------------------- /src/Makefile.qt.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/Makefile.qt.include -------------------------------------------------------------------------------- /src/Makefile.qttest.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/Makefile.qttest.include -------------------------------------------------------------------------------- /src/Makefile.test.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/Makefile.test.include -------------------------------------------------------------------------------- /src/Makefile.vgp.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/Makefile.vgp.include -------------------------------------------------------------------------------- /src/activedynode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/activedynode.cpp -------------------------------------------------------------------------------- /src/activedynode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/activedynode.h -------------------------------------------------------------------------------- /src/addrdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/addrdb.cpp -------------------------------------------------------------------------------- /src/addrdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/addrdb.h -------------------------------------------------------------------------------- /src/addressindex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/addressindex.h -------------------------------------------------------------------------------- /src/addrman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/addrman.cpp -------------------------------------------------------------------------------- /src/addrman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/addrman.h -------------------------------------------------------------------------------- /src/alert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/alert.cpp -------------------------------------------------------------------------------- /src/alert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/alert.h -------------------------------------------------------------------------------- /src/amount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/amount.cpp -------------------------------------------------------------------------------- /src/amount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/amount.h -------------------------------------------------------------------------------- /src/arith_uint256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/arith_uint256.cpp -------------------------------------------------------------------------------- /src/arith_uint256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/arith_uint256.h -------------------------------------------------------------------------------- /src/base58.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/base58.cpp -------------------------------------------------------------------------------- /src/base58.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/base58.h -------------------------------------------------------------------------------- /src/bdap/audit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/bdap/audit.cpp -------------------------------------------------------------------------------- /src/bdap/audit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/bdap/audit.h -------------------------------------------------------------------------------- /src/bdap/auditdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/bdap/auditdb.cpp -------------------------------------------------------------------------------- /src/bdap/auditdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/bdap/auditdb.h -------------------------------------------------------------------------------- /src/bdap/bdap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/bdap/bdap.h -------------------------------------------------------------------------------- /src/bdap/certificatedb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/bdap/certificatedb.cpp -------------------------------------------------------------------------------- /src/bdap/certificatedb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/bdap/certificatedb.h -------------------------------------------------------------------------------- /src/bdap/domainentry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/bdap/domainentry.cpp -------------------------------------------------------------------------------- /src/bdap/domainentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/bdap/domainentry.h -------------------------------------------------------------------------------- /src/bdap/domainentrydb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/bdap/domainentrydb.cpp -------------------------------------------------------------------------------- /src/bdap/domainentrydb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/bdap/domainentrydb.h -------------------------------------------------------------------------------- /src/bdap/entrycheckpoints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/bdap/entrycheckpoints.h -------------------------------------------------------------------------------- /src/bdap/fees.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/bdap/fees.cpp -------------------------------------------------------------------------------- /src/bdap/fees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/bdap/fees.h -------------------------------------------------------------------------------- /src/bdap/identity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/bdap/identity.cpp -------------------------------------------------------------------------------- /src/bdap/identity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/bdap/identity.h -------------------------------------------------------------------------------- /src/bdap/linking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/bdap/linking.cpp -------------------------------------------------------------------------------- /src/bdap/linking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/bdap/linking.h -------------------------------------------------------------------------------- /src/bdap/linkingdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/bdap/linkingdb.cpp -------------------------------------------------------------------------------- /src/bdap/linkingdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/bdap/linkingdb.h -------------------------------------------------------------------------------- /src/bdap/linkmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/bdap/linkmanager.cpp -------------------------------------------------------------------------------- /src/bdap/linkmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/bdap/linkmanager.h -------------------------------------------------------------------------------- /src/bdap/linkstorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/bdap/linkstorage.cpp -------------------------------------------------------------------------------- /src/bdap/linkstorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/bdap/linkstorage.h -------------------------------------------------------------------------------- /src/bdap/sidechain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/bdap/sidechain.cpp -------------------------------------------------------------------------------- /src/bdap/sidechain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/bdap/sidechain.h -------------------------------------------------------------------------------- /src/bdap/stealth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/bdap/stealth.cpp -------------------------------------------------------------------------------- /src/bdap/stealth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/bdap/stealth.h -------------------------------------------------------------------------------- /src/bdap/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/bdap/utils.cpp -------------------------------------------------------------------------------- /src/bdap/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/bdap/utils.h -------------------------------------------------------------------------------- /src/bdap/vgpmessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/bdap/vgpmessage.cpp -------------------------------------------------------------------------------- /src/bdap/vgpmessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/bdap/vgpmessage.h -------------------------------------------------------------------------------- /src/bdap/x509certificate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/bdap/x509certificate.cpp -------------------------------------------------------------------------------- /src/bdap/x509certificate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/bdap/x509certificate.h -------------------------------------------------------------------------------- /src/bench/.gitignore: -------------------------------------------------------------------------------- 1 | bench_dynamic 2 | -------------------------------------------------------------------------------- /src/bench/Examples.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/bench/Examples.cpp -------------------------------------------------------------------------------- /src/bench/bench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/bench/bench.cpp -------------------------------------------------------------------------------- /src/bench/bench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/bench/bench.h -------------------------------------------------------------------------------- /src/bench/bench_dynamic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/bench/bench_dynamic.cpp -------------------------------------------------------------------------------- /src/bench/lockedpool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/bench/lockedpool.cpp -------------------------------------------------------------------------------- /src/bench/rollingbloom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/bench/rollingbloom.cpp -------------------------------------------------------------------------------- /src/bip39.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/bip39.cpp -------------------------------------------------------------------------------- /src/bip39.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/bip39.h -------------------------------------------------------------------------------- /src/blockencodings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/blockencodings.cpp -------------------------------------------------------------------------------- /src/blockencodings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/blockencodings.h -------------------------------------------------------------------------------- /src/bloom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/bloom.cpp -------------------------------------------------------------------------------- /src/bloom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/bloom.h -------------------------------------------------------------------------------- /src/cachemap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/cachemap.h -------------------------------------------------------------------------------- /src/cachemultimap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/cachemultimap.h -------------------------------------------------------------------------------- /src/chain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/chain.cpp -------------------------------------------------------------------------------- /src/chain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/chain.h -------------------------------------------------------------------------------- /src/chainparams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/chainparams.cpp -------------------------------------------------------------------------------- /src/chainparams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/chainparams.h -------------------------------------------------------------------------------- /src/chainparamsbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/chainparamsbase.cpp -------------------------------------------------------------------------------- /src/chainparamsbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/chainparamsbase.h -------------------------------------------------------------------------------- /src/chainparamsseeds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/chainparamsseeds.h -------------------------------------------------------------------------------- /src/checkpoints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/checkpoints.cpp -------------------------------------------------------------------------------- /src/checkpoints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/checkpoints.h -------------------------------------------------------------------------------- /src/checkqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/checkqueue.h -------------------------------------------------------------------------------- /src/clientversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/clientversion.cpp -------------------------------------------------------------------------------- /src/clientversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/clientversion.h -------------------------------------------------------------------------------- /src/coins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/coins.cpp -------------------------------------------------------------------------------- /src/coins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/coins.h -------------------------------------------------------------------------------- /src/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/compat.h -------------------------------------------------------------------------------- /src/compat/byteswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/compat/byteswap.h -------------------------------------------------------------------------------- /src/compat/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/compat/endian.h -------------------------------------------------------------------------------- /src/compat/glibc_compat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/compat/glibc_compat.cpp -------------------------------------------------------------------------------- /src/compat/glibc_sanity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/compat/glibc_sanity.cpp -------------------------------------------------------------------------------- /src/compat/sanity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/compat/sanity.h -------------------------------------------------------------------------------- /src/compat/strnlen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/compat/strnlen.cpp -------------------------------------------------------------------------------- /src/compressor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/compressor.cpp -------------------------------------------------------------------------------- /src/compressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/compressor.h -------------------------------------------------------------------------------- /src/config/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/consensus/consensus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/consensus/consensus.h -------------------------------------------------------------------------------- /src/consensus/merkle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/consensus/merkle.cpp -------------------------------------------------------------------------------- /src/consensus/merkle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/consensus/merkle.h -------------------------------------------------------------------------------- /src/consensus/params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/consensus/params.h -------------------------------------------------------------------------------- /src/consensus/validation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/consensus/validation.h -------------------------------------------------------------------------------- /src/core_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/core_io.h -------------------------------------------------------------------------------- /src/core_memusage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/core_memusage.h -------------------------------------------------------------------------------- /src/core_read.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/core_read.cpp -------------------------------------------------------------------------------- /src/core_write.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/core_write.cpp -------------------------------------------------------------------------------- /src/crypto/argon2d/argon2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/crypto/argon2d/argon2.c -------------------------------------------------------------------------------- /src/crypto/argon2d/argon2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/crypto/argon2d/argon2.h -------------------------------------------------------------------------------- /src/crypto/argon2d/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/crypto/argon2d/core.c -------------------------------------------------------------------------------- /src/crypto/argon2d/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/crypto/argon2d/core.h -------------------------------------------------------------------------------- /src/crypto/argon2d/opt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/crypto/argon2d/opt.c -------------------------------------------------------------------------------- /src/crypto/argon2d/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/crypto/argon2d/thread.c -------------------------------------------------------------------------------- /src/crypto/argon2d/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/crypto/argon2d/thread.h -------------------------------------------------------------------------------- /src/crypto/blake2/blake2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/crypto/blake2/blake2.h -------------------------------------------------------------------------------- /src/crypto/blake2/blake2b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/crypto/blake2/blake2b.c -------------------------------------------------------------------------------- /src/crypto/chacha20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/crypto/chacha20.cpp -------------------------------------------------------------------------------- /src/crypto/chacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/crypto/chacha20.h -------------------------------------------------------------------------------- /src/crypto/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/crypto/common.h -------------------------------------------------------------------------------- /src/crypto/hmac_sha256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/crypto/hmac_sha256.cpp -------------------------------------------------------------------------------- /src/crypto/hmac_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/crypto/hmac_sha256.h -------------------------------------------------------------------------------- /src/crypto/hmac_sha512.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/crypto/hmac_sha512.cpp -------------------------------------------------------------------------------- /src/crypto/hmac_sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/crypto/hmac_sha512.h -------------------------------------------------------------------------------- /src/crypto/ripemd160.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/crypto/ripemd160.cpp -------------------------------------------------------------------------------- /src/crypto/ripemd160.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/crypto/ripemd160.h -------------------------------------------------------------------------------- /src/crypto/sha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/crypto/sha1.cpp -------------------------------------------------------------------------------- /src/crypto/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/crypto/sha1.h -------------------------------------------------------------------------------- /src/crypto/sha256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/crypto/sha256.cpp -------------------------------------------------------------------------------- /src/crypto/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/crypto/sha256.h -------------------------------------------------------------------------------- /src/crypto/sha256_avx2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/crypto/sha256_avx2.cpp -------------------------------------------------------------------------------- /src/crypto/sha256_shani.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/crypto/sha256_shani.cpp -------------------------------------------------------------------------------- /src/crypto/sha256_sse4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/crypto/sha256_sse4.cpp -------------------------------------------------------------------------------- /src/crypto/sha256_sse41.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/crypto/sha256_sse41.cpp -------------------------------------------------------------------------------- /src/crypto/sha512.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/crypto/sha512.cpp -------------------------------------------------------------------------------- /src/crypto/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/crypto/sha512.h -------------------------------------------------------------------------------- /src/cuckoocache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/cuckoocache.h -------------------------------------------------------------------------------- /src/dbwrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/dbwrapper.cpp -------------------------------------------------------------------------------- /src/dbwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/dbwrapper.h -------------------------------------------------------------------------------- /src/dht/datachunk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/dht/datachunk.cpp -------------------------------------------------------------------------------- /src/dht/datachunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/dht/datachunk.h -------------------------------------------------------------------------------- /src/dht/dataheader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/dht/dataheader.cpp -------------------------------------------------------------------------------- /src/dht/dataheader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/dht/dataheader.h -------------------------------------------------------------------------------- /src/dht/datarecord.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/dht/datarecord.cpp -------------------------------------------------------------------------------- /src/dht/datarecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/dht/datarecord.h -------------------------------------------------------------------------------- /src/dht/dataset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/dht/dataset.cpp -------------------------------------------------------------------------------- /src/dht/dataset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/dht/dataset.h -------------------------------------------------------------------------------- /src/dht/ed25519.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/dht/ed25519.cpp -------------------------------------------------------------------------------- /src/dht/ed25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/dht/ed25519.h -------------------------------------------------------------------------------- /src/dht/limits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/dht/limits.cpp -------------------------------------------------------------------------------- /src/dht/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/dht/limits.h -------------------------------------------------------------------------------- /src/dht/mutable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/dht/mutable.cpp -------------------------------------------------------------------------------- /src/dht/mutable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/dht/mutable.h -------------------------------------------------------------------------------- /src/dht/mutabledb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/dht/mutabledb.cpp -------------------------------------------------------------------------------- /src/dht/mutabledb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/dht/mutabledb.h -------------------------------------------------------------------------------- /src/dht/session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/dht/session.cpp -------------------------------------------------------------------------------- /src/dht/session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/dht/session.h -------------------------------------------------------------------------------- /src/dht/sessionevents.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/dht/sessionevents.cpp -------------------------------------------------------------------------------- /src/dht/sessionevents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/dht/sessionevents.h -------------------------------------------------------------------------------- /src/dht/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/dht/settings.cpp -------------------------------------------------------------------------------- /src/dht/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/dht/settings.h -------------------------------------------------------------------------------- /src/dht/storage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/dht/storage.cpp -------------------------------------------------------------------------------- /src/dht/storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/dht/storage.h -------------------------------------------------------------------------------- /src/dht/test/data_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/dht/test/data_test.cpp -------------------------------------------------------------------------------- /src/drafted/governance.new.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dynamic-cli-res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/dynamic-cli-res.rc -------------------------------------------------------------------------------- /src/dynamic-cli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/dynamic-cli.cpp -------------------------------------------------------------------------------- /src/dynamic-tx-res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/dynamic-tx-res.rc -------------------------------------------------------------------------------- /src/dynamic-tx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/dynamic-tx.cpp -------------------------------------------------------------------------------- /src/dynamicd-res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/dynamicd-res.rc -------------------------------------------------------------------------------- /src/dynamicd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/dynamicd.cpp -------------------------------------------------------------------------------- /src/dynode-payments.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/dynode-payments.cpp -------------------------------------------------------------------------------- /src/dynode-payments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/dynode-payments.h -------------------------------------------------------------------------------- /src/dynode-sync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/dynode-sync.cpp -------------------------------------------------------------------------------- /src/dynode-sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/dynode-sync.h -------------------------------------------------------------------------------- /src/dynode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/dynode.cpp -------------------------------------------------------------------------------- /src/dynode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/dynode.h -------------------------------------------------------------------------------- /src/dynodeconfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/dynodeconfig.cpp -------------------------------------------------------------------------------- /src/dynodeconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/dynodeconfig.h -------------------------------------------------------------------------------- /src/dynodeman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/dynodeman.cpp -------------------------------------------------------------------------------- /src/dynodeman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/dynodeman.h -------------------------------------------------------------------------------- /src/flat-database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/flat-database.h -------------------------------------------------------------------------------- /src/fluid/banaccount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/fluid/banaccount.cpp -------------------------------------------------------------------------------- /src/fluid/banaccount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/fluid/banaccount.h -------------------------------------------------------------------------------- /src/fluid/fluid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/fluid/fluid.cpp -------------------------------------------------------------------------------- /src/fluid/fluid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/fluid/fluid.h -------------------------------------------------------------------------------- /src/fluid/fluiddb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/fluid/fluiddb.cpp -------------------------------------------------------------------------------- /src/fluid/fluiddb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/fluid/fluiddb.h -------------------------------------------------------------------------------- /src/fluid/fluiddynode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/fluid/fluiddynode.cpp -------------------------------------------------------------------------------- /src/fluid/fluiddynode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/fluid/fluiddynode.h -------------------------------------------------------------------------------- /src/fluid/fluidmining.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/fluid/fluidmining.cpp -------------------------------------------------------------------------------- /src/fluid/fluidmining.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/fluid/fluidmining.h -------------------------------------------------------------------------------- /src/fluid/fluidmint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/fluid/fluidmint.cpp -------------------------------------------------------------------------------- /src/fluid/fluidmint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/fluid/fluidmint.h -------------------------------------------------------------------------------- /src/fluid/fluidsovereign.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/fluid/fluidsovereign.cpp -------------------------------------------------------------------------------- /src/fluid/fluidsovereign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/fluid/fluidsovereign.h -------------------------------------------------------------------------------- /src/fluid/operations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/fluid/operations.cpp -------------------------------------------------------------------------------- /src/fluid/operations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/fluid/operations.h -------------------------------------------------------------------------------- /src/governance-classes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/governance-classes.cpp -------------------------------------------------------------------------------- /src/governance-classes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/governance-classes.h -------------------------------------------------------------------------------- /src/governance-exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/governance-exceptions.h -------------------------------------------------------------------------------- /src/governance-object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/governance-object.cpp -------------------------------------------------------------------------------- /src/governance-object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/governance-object.h -------------------------------------------------------------------------------- /src/governance-validators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/governance-validators.h -------------------------------------------------------------------------------- /src/governance-vote.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/governance-vote.cpp -------------------------------------------------------------------------------- /src/governance-vote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/governance-vote.h -------------------------------------------------------------------------------- /src/governance-votedb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/governance-votedb.cpp -------------------------------------------------------------------------------- /src/governance-votedb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/governance-votedb.h -------------------------------------------------------------------------------- /src/governance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/governance.cpp -------------------------------------------------------------------------------- /src/governance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/governance.h -------------------------------------------------------------------------------- /src/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/hash.cpp -------------------------------------------------------------------------------- /src/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/hash.h -------------------------------------------------------------------------------- /src/hdchain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/hdchain.cpp -------------------------------------------------------------------------------- /src/hdchain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/hdchain.h -------------------------------------------------------------------------------- /src/httprpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/httprpc.cpp -------------------------------------------------------------------------------- /src/httprpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/httprpc.h -------------------------------------------------------------------------------- /src/httpserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/httpserver.cpp -------------------------------------------------------------------------------- /src/httpserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/httpserver.h -------------------------------------------------------------------------------- /src/indirectmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/indirectmap.h -------------------------------------------------------------------------------- /src/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/init.cpp -------------------------------------------------------------------------------- /src/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/init.h -------------------------------------------------------------------------------- /src/instantsend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/instantsend.cpp -------------------------------------------------------------------------------- /src/instantsend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/instantsend.h -------------------------------------------------------------------------------- /src/keepass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/keepass.cpp -------------------------------------------------------------------------------- /src/keepass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/keepass.h -------------------------------------------------------------------------------- /src/key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/key.cpp -------------------------------------------------------------------------------- /src/key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/key.h -------------------------------------------------------------------------------- /src/keystore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/keystore.cpp -------------------------------------------------------------------------------- /src/keystore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/keystore.h -------------------------------------------------------------------------------- /src/leveldb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/.gitignore -------------------------------------------------------------------------------- /src/leveldb/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/.travis.yml -------------------------------------------------------------------------------- /src/leveldb/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/AUTHORS -------------------------------------------------------------------------------- /src/leveldb/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/leveldb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/LICENSE -------------------------------------------------------------------------------- /src/leveldb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/Makefile -------------------------------------------------------------------------------- /src/leveldb/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/NEWS -------------------------------------------------------------------------------- /src/leveldb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/README.md -------------------------------------------------------------------------------- /src/leveldb/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/TODO -------------------------------------------------------------------------------- /src/leveldb/WINDOWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/WINDOWS.md -------------------------------------------------------------------------------- /src/leveldb/db/builder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/db/builder.cc -------------------------------------------------------------------------------- /src/leveldb/db/builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/db/builder.h -------------------------------------------------------------------------------- /src/leveldb/db/c.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/db/c.cc -------------------------------------------------------------------------------- /src/leveldb/db/c_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/db/c_test.c -------------------------------------------------------------------------------- /src/leveldb/db/db_bench.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/db/db_bench.cc -------------------------------------------------------------------------------- /src/leveldb/db/db_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/db/db_impl.cc -------------------------------------------------------------------------------- /src/leveldb/db/db_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/db/db_impl.h -------------------------------------------------------------------------------- /src/leveldb/db/db_iter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/db/db_iter.cc -------------------------------------------------------------------------------- /src/leveldb/db/db_iter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/db/db_iter.h -------------------------------------------------------------------------------- /src/leveldb/db/db_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/db/db_test.cc -------------------------------------------------------------------------------- /src/leveldb/db/dbformat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/db/dbformat.cc -------------------------------------------------------------------------------- /src/leveldb/db/dbformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/db/dbformat.h -------------------------------------------------------------------------------- /src/leveldb/db/dumpfile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/db/dumpfile.cc -------------------------------------------------------------------------------- /src/leveldb/db/filename.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/db/filename.cc -------------------------------------------------------------------------------- /src/leveldb/db/filename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/db/filename.h -------------------------------------------------------------------------------- /src/leveldb/db/log_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/db/log_format.h -------------------------------------------------------------------------------- /src/leveldb/db/log_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/db/log_reader.cc -------------------------------------------------------------------------------- /src/leveldb/db/log_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/db/log_reader.h -------------------------------------------------------------------------------- /src/leveldb/db/log_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/db/log_test.cc -------------------------------------------------------------------------------- /src/leveldb/db/log_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/db/log_writer.cc -------------------------------------------------------------------------------- /src/leveldb/db/log_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/db/log_writer.h -------------------------------------------------------------------------------- /src/leveldb/db/memtable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/db/memtable.cc -------------------------------------------------------------------------------- /src/leveldb/db/memtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/db/memtable.h -------------------------------------------------------------------------------- /src/leveldb/db/repair.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/db/repair.cc -------------------------------------------------------------------------------- /src/leveldb/db/skiplist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/db/skiplist.h -------------------------------------------------------------------------------- /src/leveldb/db/snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/db/snapshot.h -------------------------------------------------------------------------------- /src/leveldb/db/table_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/db/table_cache.h -------------------------------------------------------------------------------- /src/leveldb/db/version_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/db/version_set.h -------------------------------------------------------------------------------- /src/leveldb/doc/impl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/doc/impl.md -------------------------------------------------------------------------------- /src/leveldb/doc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/doc/index.md -------------------------------------------------------------------------------- /src/leveldb/port/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/port/README -------------------------------------------------------------------------------- /src/leveldb/port/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/port/port.h -------------------------------------------------------------------------------- /src/leveldb/port/port_win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/port/port_win.cc -------------------------------------------------------------------------------- /src/leveldb/port/port_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/port/port_win.h -------------------------------------------------------------------------------- /src/leveldb/table/block.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/table/block.cc -------------------------------------------------------------------------------- /src/leveldb/table/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/table/block.h -------------------------------------------------------------------------------- /src/leveldb/table/format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/table/format.cc -------------------------------------------------------------------------------- /src/leveldb/table/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/table/format.h -------------------------------------------------------------------------------- /src/leveldb/table/merger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/table/merger.cc -------------------------------------------------------------------------------- /src/leveldb/table/merger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/table/merger.h -------------------------------------------------------------------------------- /src/leveldb/table/table.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/table/table.cc -------------------------------------------------------------------------------- /src/leveldb/util/arena.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/util/arena.cc -------------------------------------------------------------------------------- /src/leveldb/util/arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/util/arena.h -------------------------------------------------------------------------------- /src/leveldb/util/bloom.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/util/bloom.cc -------------------------------------------------------------------------------- /src/leveldb/util/cache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/util/cache.cc -------------------------------------------------------------------------------- /src/leveldb/util/coding.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/util/coding.cc -------------------------------------------------------------------------------- /src/leveldb/util/coding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/util/coding.h -------------------------------------------------------------------------------- /src/leveldb/util/crc32c.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/util/crc32c.cc -------------------------------------------------------------------------------- /src/leveldb/util/crc32c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/util/crc32c.h -------------------------------------------------------------------------------- /src/leveldb/util/env.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/util/env.cc -------------------------------------------------------------------------------- /src/leveldb/util/env_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/util/env_test.cc -------------------------------------------------------------------------------- /src/leveldb/util/env_win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/util/env_win.cc -------------------------------------------------------------------------------- /src/leveldb/util/hash.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/util/hash.cc -------------------------------------------------------------------------------- /src/leveldb/util/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/util/hash.h -------------------------------------------------------------------------------- /src/leveldb/util/histogram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/util/histogram.h -------------------------------------------------------------------------------- /src/leveldb/util/logging.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/util/logging.cc -------------------------------------------------------------------------------- /src/leveldb/util/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/util/logging.h -------------------------------------------------------------------------------- /src/leveldb/util/mutexlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/util/mutexlock.h -------------------------------------------------------------------------------- /src/leveldb/util/options.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/util/options.cc -------------------------------------------------------------------------------- /src/leveldb/util/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/util/random.h -------------------------------------------------------------------------------- /src/leveldb/util/status.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/util/status.cc -------------------------------------------------------------------------------- /src/leveldb/util/testutil.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/util/testutil.cc -------------------------------------------------------------------------------- /src/leveldb/util/testutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/leveldb/util/testutil.h -------------------------------------------------------------------------------- /src/limitedmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/limitedmap.h -------------------------------------------------------------------------------- /src/memusage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/memusage.h -------------------------------------------------------------------------------- /src/merkleblock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/merkleblock.cpp -------------------------------------------------------------------------------- /src/merkleblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/merkleblock.h -------------------------------------------------------------------------------- /src/messagesigner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/messagesigner.cpp -------------------------------------------------------------------------------- /src/messagesigner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/messagesigner.h -------------------------------------------------------------------------------- /src/miner/impl/miner-cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/miner/impl/miner-cpu.cpp -------------------------------------------------------------------------------- /src/miner/impl/miner-cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/miner/impl/miner-cpu.h -------------------------------------------------------------------------------- /src/miner/impl/miner-gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/miner/impl/miner-gpu.cpp -------------------------------------------------------------------------------- /src/miner/impl/miner-gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/miner/impl/miner-gpu.h -------------------------------------------------------------------------------- /src/miner/miner-util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/miner/miner-util.cpp -------------------------------------------------------------------------------- /src/miner/miner-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/miner/miner-util.h -------------------------------------------------------------------------------- /src/miner/miner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/miner/miner.cpp -------------------------------------------------------------------------------- /src/miner/miner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/miner/miner.h -------------------------------------------------------------------------------- /src/net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/net.cpp -------------------------------------------------------------------------------- /src/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/net.h -------------------------------------------------------------------------------- /src/net_processing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/net_processing.cpp -------------------------------------------------------------------------------- /src/net_processing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/net_processing.h -------------------------------------------------------------------------------- /src/netaddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/netaddress.cpp -------------------------------------------------------------------------------- /src/netaddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/netaddress.h -------------------------------------------------------------------------------- /src/netbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/netbase.cpp -------------------------------------------------------------------------------- /src/netbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/netbase.h -------------------------------------------------------------------------------- /src/netfulfilledman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/netfulfilledman.cpp -------------------------------------------------------------------------------- /src/netfulfilledman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/netfulfilledman.h -------------------------------------------------------------------------------- /src/netmessagemaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/netmessagemaker.h -------------------------------------------------------------------------------- /src/noui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/noui.cpp -------------------------------------------------------------------------------- /src/noui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/noui.h -------------------------------------------------------------------------------- /src/ntp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/ntp.cpp -------------------------------------------------------------------------------- /src/ntp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/ntp.h -------------------------------------------------------------------------------- /src/obj-test/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /src/obj/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /src/policy/fees.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/policy/fees.cpp -------------------------------------------------------------------------------- /src/policy/fees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/policy/fees.h -------------------------------------------------------------------------------- /src/policy/policy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/policy/policy.cpp -------------------------------------------------------------------------------- /src/policy/policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/policy/policy.h -------------------------------------------------------------------------------- /src/policy/rbf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/policy/rbf.cpp -------------------------------------------------------------------------------- /src/policy/rbf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/policy/rbf.h -------------------------------------------------------------------------------- /src/pow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/pow.cpp -------------------------------------------------------------------------------- /src/pow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/pow.h -------------------------------------------------------------------------------- /src/prevector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/prevector.h -------------------------------------------------------------------------------- /src/primitives/block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/primitives/block.cpp -------------------------------------------------------------------------------- /src/primitives/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/primitives/block.h -------------------------------------------------------------------------------- /src/primitives/transaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/primitives/transaction.h -------------------------------------------------------------------------------- /src/privatesend-client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/privatesend-client.cpp -------------------------------------------------------------------------------- /src/privatesend-client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/privatesend-client.h -------------------------------------------------------------------------------- /src/privatesend-server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/privatesend-server.cpp -------------------------------------------------------------------------------- /src/privatesend-server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/privatesend-server.h -------------------------------------------------------------------------------- /src/privatesend-util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/privatesend-util.cpp -------------------------------------------------------------------------------- /src/privatesend-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/privatesend-util.h -------------------------------------------------------------------------------- /src/privatesend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/privatesend.cpp -------------------------------------------------------------------------------- /src/privatesend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/privatesend.h -------------------------------------------------------------------------------- /src/protocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/protocol.cpp -------------------------------------------------------------------------------- /src/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/protocol.h -------------------------------------------------------------------------------- /src/pubkey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/pubkey.cpp -------------------------------------------------------------------------------- /src/pubkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/pubkey.h -------------------------------------------------------------------------------- /src/qt/addressbookpage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/addressbookpage.cpp -------------------------------------------------------------------------------- /src/qt/addressbookpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/addressbookpage.h -------------------------------------------------------------------------------- /src/qt/addresstablemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/addresstablemodel.cpp -------------------------------------------------------------------------------- /src/qt/addresstablemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/addresstablemodel.h -------------------------------------------------------------------------------- /src/qt/askpassphrasedialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/askpassphrasedialog.h -------------------------------------------------------------------------------- /src/qt/bantablemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/bantablemodel.cpp -------------------------------------------------------------------------------- /src/qt/bantablemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/bantablemodel.h -------------------------------------------------------------------------------- /src/qt/bdapaddlinkdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/bdapaddlinkdialog.cpp -------------------------------------------------------------------------------- /src/qt/bdapaddlinkdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/bdapaddlinkdialog.h -------------------------------------------------------------------------------- /src/qt/bdapadduserdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/bdapadduserdialog.cpp -------------------------------------------------------------------------------- /src/qt/bdapadduserdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/bdapadduserdialog.h -------------------------------------------------------------------------------- /src/qt/bdapfeespopup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/bdapfeespopup.cpp -------------------------------------------------------------------------------- /src/qt/bdapfeespopup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/bdapfeespopup.h -------------------------------------------------------------------------------- /src/qt/bdaplinktablemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/bdaplinktablemodel.h -------------------------------------------------------------------------------- /src/qt/bdappage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/bdappage.cpp -------------------------------------------------------------------------------- /src/qt/bdappage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/bdappage.h -------------------------------------------------------------------------------- /src/qt/clientmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/clientmodel.cpp -------------------------------------------------------------------------------- /src/qt/clientmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/clientmodel.h -------------------------------------------------------------------------------- /src/qt/coincontroldialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/coincontroldialog.cpp -------------------------------------------------------------------------------- /src/qt/coincontroldialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/coincontroldialog.h -------------------------------------------------------------------------------- /src/qt/csvmodelwriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/csvmodelwriter.cpp -------------------------------------------------------------------------------- /src/qt/csvmodelwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/csvmodelwriter.h -------------------------------------------------------------------------------- /src/qt/dynamic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/dynamic.cpp -------------------------------------------------------------------------------- /src/qt/dynamic.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/dynamic.qrc -------------------------------------------------------------------------------- /src/qt/dynamic_locale.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/dynamic_locale.qrc -------------------------------------------------------------------------------- /src/qt/dynamicamountfield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/dynamicamountfield.h -------------------------------------------------------------------------------- /src/qt/dynamicgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/dynamicgui.cpp -------------------------------------------------------------------------------- /src/qt/dynamicgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/dynamicgui.h -------------------------------------------------------------------------------- /src/qt/dynamicstrings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/dynamicstrings.cpp -------------------------------------------------------------------------------- /src/qt/dynamicunits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/dynamicunits.cpp -------------------------------------------------------------------------------- /src/qt/dynamicunits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/dynamicunits.h -------------------------------------------------------------------------------- /src/qt/dynodelist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/dynodelist.cpp -------------------------------------------------------------------------------- /src/qt/dynodelist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/dynodelist.h -------------------------------------------------------------------------------- /src/qt/editaddressdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/editaddressdialog.cpp -------------------------------------------------------------------------------- /src/qt/editaddressdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/editaddressdialog.h -------------------------------------------------------------------------------- /src/qt/forms/bdappage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/forms/bdappage.ui -------------------------------------------------------------------------------- /src/qt/forms/dynodelist.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/forms/dynodelist.ui -------------------------------------------------------------------------------- /src/qt/forms/intro.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/forms/intro.ui -------------------------------------------------------------------------------- /src/qt/forms/miningpage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/forms/miningpage.ui -------------------------------------------------------------------------------- /src/qt/forms/modaloverlay.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/forms/modaloverlay.ui -------------------------------------------------------------------------------- /src/qt/forms/overviewpage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/forms/overviewpage.ui -------------------------------------------------------------------------------- /src/qt/forms/rpcconsole.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/forms/rpcconsole.ui -------------------------------------------------------------------------------- /src/qt/guiconstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/guiconstants.h -------------------------------------------------------------------------------- /src/qt/guiutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/guiutil.cpp -------------------------------------------------------------------------------- /src/qt/guiutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/guiutil.h -------------------------------------------------------------------------------- /src/qt/hashrategraphwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/hashrategraphwidget.h -------------------------------------------------------------------------------- /src/qt/intro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/intro.cpp -------------------------------------------------------------------------------- /src/qt/intro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/intro.h -------------------------------------------------------------------------------- /src/qt/locale/dynamic_bg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/locale/dynamic_bg.ts -------------------------------------------------------------------------------- /src/qt/locale/dynamic_de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/locale/dynamic_de.ts -------------------------------------------------------------------------------- /src/qt/locale/dynamic_en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/locale/dynamic_en.ts -------------------------------------------------------------------------------- /src/qt/locale/dynamic_es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/locale/dynamic_es.ts -------------------------------------------------------------------------------- /src/qt/locale/dynamic_fi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/locale/dynamic_fi.ts -------------------------------------------------------------------------------- /src/qt/locale/dynamic_fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/locale/dynamic_fr.ts -------------------------------------------------------------------------------- /src/qt/locale/dynamic_it.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/locale/dynamic_it.ts -------------------------------------------------------------------------------- /src/qt/locale/dynamic_ja.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/locale/dynamic_ja.ts -------------------------------------------------------------------------------- /src/qt/locale/dynamic_ko.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/locale/dynamic_ko.ts -------------------------------------------------------------------------------- /src/qt/locale/dynamic_nl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/locale/dynamic_nl.ts -------------------------------------------------------------------------------- /src/qt/locale/dynamic_pl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/locale/dynamic_pl.ts -------------------------------------------------------------------------------- /src/qt/locale/dynamic_pt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/locale/dynamic_pt.ts -------------------------------------------------------------------------------- /src/qt/locale/dynamic_ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/locale/dynamic_ru.ts -------------------------------------------------------------------------------- /src/qt/locale/dynamic_sk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/locale/dynamic_sk.ts -------------------------------------------------------------------------------- /src/qt/locale/dynamic_sv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/locale/dynamic_sv.ts -------------------------------------------------------------------------------- /src/qt/locale/dynamic_vi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/locale/dynamic_vi.ts -------------------------------------------------------------------------------- /src/qt/macdockiconhandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/macdockiconhandler.h -------------------------------------------------------------------------------- /src/qt/macdockiconhandler.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/macdockiconhandler.mm -------------------------------------------------------------------------------- /src/qt/miningpage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/miningpage.cpp -------------------------------------------------------------------------------- /src/qt/miningpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/miningpage.h -------------------------------------------------------------------------------- /src/qt/mnemonicdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/mnemonicdialog.cpp -------------------------------------------------------------------------------- /src/qt/mnemonicdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/mnemonicdialog.h -------------------------------------------------------------------------------- /src/qt/modaloverlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/modaloverlay.cpp -------------------------------------------------------------------------------- /src/qt/modaloverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/modaloverlay.h -------------------------------------------------------------------------------- /src/qt/networkstyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/networkstyle.cpp -------------------------------------------------------------------------------- /src/qt/networkstyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/networkstyle.h -------------------------------------------------------------------------------- /src/qt/notificator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/notificator.cpp -------------------------------------------------------------------------------- /src/qt/notificator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/notificator.h -------------------------------------------------------------------------------- /src/qt/openuridialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/openuridialog.cpp -------------------------------------------------------------------------------- /src/qt/openuridialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/openuridialog.h -------------------------------------------------------------------------------- /src/qt/optionsdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/optionsdialog.cpp -------------------------------------------------------------------------------- /src/qt/optionsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/optionsdialog.h -------------------------------------------------------------------------------- /src/qt/optionsmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/optionsmodel.cpp -------------------------------------------------------------------------------- /src/qt/optionsmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/optionsmodel.h -------------------------------------------------------------------------------- /src/qt/overviewpage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/overviewpage.cpp -------------------------------------------------------------------------------- /src/qt/overviewpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/overviewpage.h -------------------------------------------------------------------------------- /src/qt/paymentserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/paymentserver.cpp -------------------------------------------------------------------------------- /src/qt/paymentserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/paymentserver.h -------------------------------------------------------------------------------- /src/qt/peertablemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/peertablemodel.cpp -------------------------------------------------------------------------------- /src/qt/peertablemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/peertablemodel.h -------------------------------------------------------------------------------- /src/qt/platformstyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/platformstyle.cpp -------------------------------------------------------------------------------- /src/qt/platformstyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/platformstyle.h -------------------------------------------------------------------------------- /src/qt/privatesendconfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/privatesendconfig.cpp -------------------------------------------------------------------------------- /src/qt/privatesendconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/privatesendconfig.h -------------------------------------------------------------------------------- /src/qt/qvalidatedlineedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/qvalidatedlineedit.h -------------------------------------------------------------------------------- /src/qt/qvaluecombobox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/qvaluecombobox.cpp -------------------------------------------------------------------------------- /src/qt/qvaluecombobox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/qvaluecombobox.h -------------------------------------------------------------------------------- /src/qt/receivecoinsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/receivecoinsdialog.h -------------------------------------------------------------------------------- /src/qt/res/css/drk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/res/css/drk.css -------------------------------------------------------------------------------- /src/qt/res/dynamic-qt-res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/res/dynamic-qt-res.rc -------------------------------------------------------------------------------- /src/qt/res/icons/drk/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/res/icons/drk/add.png -------------------------------------------------------------------------------- /src/qt/res/icons/drk/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/res/icons/drk/eye.png -------------------------------------------------------------------------------- /src/qt/res/icons/drk/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/res/icons/drk/key.png -------------------------------------------------------------------------------- /src/qt/res/icons/drk/pos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/res/icons/drk/pos.png -------------------------------------------------------------------------------- /src/qt/res/icons/dynamic.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/res/icons/dynamic.ico -------------------------------------------------------------------------------- /src/qt/res/icons/dynamic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/res/icons/dynamic.png -------------------------------------------------------------------------------- /src/qt/res/src/clock_0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/res/src/clock_0.svg -------------------------------------------------------------------------------- /src/qt/res/src/clock_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/res/src/clock_1.svg -------------------------------------------------------------------------------- /src/qt/res/src/clock_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/res/src/clock_2.svg -------------------------------------------------------------------------------- /src/qt/res/src/clock_3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/res/src/clock_3.svg -------------------------------------------------------------------------------- /src/qt/res/src/clock_4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/res/src/clock_4.svg -------------------------------------------------------------------------------- /src/qt/res/src/connect-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/res/src/connect-0.svg -------------------------------------------------------------------------------- /src/qt/res/src/connect-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/res/src/connect-1.svg -------------------------------------------------------------------------------- /src/qt/res/src/connect-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/res/src/connect-2.svg -------------------------------------------------------------------------------- /src/qt/res/src/connect-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/res/src/connect-3.svg -------------------------------------------------------------------------------- /src/qt/res/src/connect-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/res/src/connect-4.svg -------------------------------------------------------------------------------- /src/qt/res/src/dynamic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/res/src/dynamic.svg -------------------------------------------------------------------------------- /src/qt/res/src/mine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/res/src/mine.svg -------------------------------------------------------------------------------- /src/qt/res/src/qt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/res/src/qt.svg -------------------------------------------------------------------------------- /src/qt/res/src/spinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/res/src/spinner.png -------------------------------------------------------------------------------- /src/qt/res/src/tx_in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/res/src/tx_in.svg -------------------------------------------------------------------------------- /src/qt/res/src/tx_inout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/res/src/tx_inout.svg -------------------------------------------------------------------------------- /src/qt/res/src/verify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/res/src/verify.svg -------------------------------------------------------------------------------- /src/qt/rpcconsole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/rpcconsole.cpp -------------------------------------------------------------------------------- /src/qt/rpcconsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/rpcconsole.h -------------------------------------------------------------------------------- /src/qt/sendcoinsdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/sendcoinsdialog.cpp -------------------------------------------------------------------------------- /src/qt/sendcoinsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/sendcoinsdialog.h -------------------------------------------------------------------------------- /src/qt/sendcoinsentry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/sendcoinsentry.cpp -------------------------------------------------------------------------------- /src/qt/sendcoinsentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/sendcoinsentry.h -------------------------------------------------------------------------------- /src/qt/splashscreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/splashscreen.cpp -------------------------------------------------------------------------------- /src/qt/splashscreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/splashscreen.h -------------------------------------------------------------------------------- /src/qt/test/compattests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/test/compattests.cpp -------------------------------------------------------------------------------- /src/qt/test/compattests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/test/compattests.h -------------------------------------------------------------------------------- /src/qt/test/rpcnestedtests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/test/rpcnestedtests.h -------------------------------------------------------------------------------- /src/qt/test/test_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/test/test_main.cpp -------------------------------------------------------------------------------- /src/qt/test/uritests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/test/uritests.cpp -------------------------------------------------------------------------------- /src/qt/test/uritests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/test/uritests.h -------------------------------------------------------------------------------- /src/qt/trafficgraphdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/trafficgraphdata.cpp -------------------------------------------------------------------------------- /src/qt/trafficgraphdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/trafficgraphdata.h -------------------------------------------------------------------------------- /src/qt/trafficgraphwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/trafficgraphwidget.h -------------------------------------------------------------------------------- /src/qt/transactiondesc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/transactiondesc.cpp -------------------------------------------------------------------------------- /src/qt/transactiondesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/transactiondesc.h -------------------------------------------------------------------------------- /src/qt/transactionrecord.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/transactionrecord.cpp -------------------------------------------------------------------------------- /src/qt/transactionrecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/transactionrecord.h -------------------------------------------------------------------------------- /src/qt/transactionview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/transactionview.cpp -------------------------------------------------------------------------------- /src/qt/transactionview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/transactionview.h -------------------------------------------------------------------------------- /src/qt/utilitydialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/utilitydialog.cpp -------------------------------------------------------------------------------- /src/qt/utilitydialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/utilitydialog.h -------------------------------------------------------------------------------- /src/qt/walletframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/walletframe.cpp -------------------------------------------------------------------------------- /src/qt/walletframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/walletframe.h -------------------------------------------------------------------------------- /src/qt/walletmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/walletmodel.cpp -------------------------------------------------------------------------------- /src/qt/walletmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/walletmodel.h -------------------------------------------------------------------------------- /src/qt/walletview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/walletview.cpp -------------------------------------------------------------------------------- /src/qt/walletview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/walletview.h -------------------------------------------------------------------------------- /src/qt/winshutdownmonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/qt/winshutdownmonitor.h -------------------------------------------------------------------------------- /src/random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/random.cpp -------------------------------------------------------------------------------- /src/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/random.h -------------------------------------------------------------------------------- /src/rest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/rest.cpp -------------------------------------------------------------------------------- /src/reverse_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/reverse_iterator.h -------------------------------------------------------------------------------- /src/reverselock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/reverselock.h -------------------------------------------------------------------------------- /src/rpc/audits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/rpc/audits.cpp -------------------------------------------------------------------------------- /src/rpc/blockchain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/rpc/blockchain.cpp -------------------------------------------------------------------------------- /src/rpc/certificates.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/rpc/certificates.cpp -------------------------------------------------------------------------------- /src/rpc/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/rpc/client.cpp -------------------------------------------------------------------------------- /src/rpc/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/rpc/client.h -------------------------------------------------------------------------------- /src/rpc/dht.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/rpc/dht.cpp -------------------------------------------------------------------------------- /src/rpc/domainentry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/rpc/domainentry.cpp -------------------------------------------------------------------------------- /src/rpc/dynode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/rpc/dynode.cpp -------------------------------------------------------------------------------- /src/rpc/fluid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/rpc/fluid.cpp -------------------------------------------------------------------------------- /src/rpc/governance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/rpc/governance.cpp -------------------------------------------------------------------------------- /src/rpc/linking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/rpc/linking.cpp -------------------------------------------------------------------------------- /src/rpc/mining.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/rpc/mining.cpp -------------------------------------------------------------------------------- /src/rpc/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/rpc/misc.cpp -------------------------------------------------------------------------------- /src/rpc/net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/rpc/net.cpp -------------------------------------------------------------------------------- /src/rpc/protocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/rpc/protocol.cpp -------------------------------------------------------------------------------- /src/rpc/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/rpc/protocol.h -------------------------------------------------------------------------------- /src/rpc/rawbdap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/rpc/rawbdap.cpp -------------------------------------------------------------------------------- /src/rpc/rawtransaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/rpc/rawtransaction.cpp -------------------------------------------------------------------------------- /src/rpc/register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/rpc/register.h -------------------------------------------------------------------------------- /src/rpc/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/rpc/server.cpp -------------------------------------------------------------------------------- /src/rpc/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/rpc/server.h -------------------------------------------------------------------------------- /src/rpc/wallet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/rpc/wallet.cpp -------------------------------------------------------------------------------- /src/rpc/wallet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/rpc/wallet.h -------------------------------------------------------------------------------- /src/rpc/walletdump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/rpc/walletdump.cpp -------------------------------------------------------------------------------- /src/scheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/scheduler.cpp -------------------------------------------------------------------------------- /src/scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/scheduler.h -------------------------------------------------------------------------------- /src/script/interpreter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/script/interpreter.cpp -------------------------------------------------------------------------------- /src/script/interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/script/interpreter.h -------------------------------------------------------------------------------- /src/script/script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/script/script.cpp -------------------------------------------------------------------------------- /src/script/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/script/script.h -------------------------------------------------------------------------------- /src/script/script_error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/script/script_error.cpp -------------------------------------------------------------------------------- /src/script/script_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/script/script_error.h -------------------------------------------------------------------------------- /src/script/sigcache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/script/sigcache.cpp -------------------------------------------------------------------------------- /src/script/sigcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/script/sigcache.h -------------------------------------------------------------------------------- /src/script/sign.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/script/sign.cpp -------------------------------------------------------------------------------- /src/script/sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/script/sign.h -------------------------------------------------------------------------------- /src/script/standard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/script/standard.cpp -------------------------------------------------------------------------------- /src/script/standard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/script/standard.h -------------------------------------------------------------------------------- /src/secp256k1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/secp256k1/.gitignore -------------------------------------------------------------------------------- /src/secp256k1/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/secp256k1/.travis.yml -------------------------------------------------------------------------------- /src/secp256k1/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/secp256k1/COPYING -------------------------------------------------------------------------------- /src/secp256k1/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/secp256k1/Makefile.am -------------------------------------------------------------------------------- /src/secp256k1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/secp256k1/README.md -------------------------------------------------------------------------------- /src/secp256k1/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/secp256k1/SECURITY.md -------------------------------------------------------------------------------- /src/secp256k1/autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | autoreconf -if --warnings=all 4 | -------------------------------------------------------------------------------- /src/secp256k1/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/secp256k1/configure.ac -------------------------------------------------------------------------------- /src/secp256k1/obj/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/secp256k1/src/bench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/secp256k1/src/bench.h -------------------------------------------------------------------------------- /src/secp256k1/src/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/secp256k1/src/ecdsa.h -------------------------------------------------------------------------------- /src/secp256k1/src/eckey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/secp256k1/src/eckey.h -------------------------------------------------------------------------------- /src/secp256k1/src/ecmult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/secp256k1/src/ecmult.h -------------------------------------------------------------------------------- /src/secp256k1/src/field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/secp256k1/src/field.h -------------------------------------------------------------------------------- /src/secp256k1/src/group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/secp256k1/src/group.h -------------------------------------------------------------------------------- /src/secp256k1/src/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/secp256k1/src/hash.h -------------------------------------------------------------------------------- /src/secp256k1/src/num.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/secp256k1/src/num.h -------------------------------------------------------------------------------- /src/secp256k1/src/num_gmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/secp256k1/src/num_gmp.h -------------------------------------------------------------------------------- /src/secp256k1/src/num_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/secp256k1/src/num_impl.h -------------------------------------------------------------------------------- /src/secp256k1/src/scalar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/secp256k1/src/scalar.h -------------------------------------------------------------------------------- /src/secp256k1/src/scratch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/secp256k1/src/scratch.h -------------------------------------------------------------------------------- /src/secp256k1/src/selftest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/secp256k1/src/selftest.h -------------------------------------------------------------------------------- /src/secp256k1/src/testrand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/secp256k1/src/testrand.h -------------------------------------------------------------------------------- /src/secp256k1/src/tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/secp256k1/src/tests.c -------------------------------------------------------------------------------- /src/secp256k1/src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/secp256k1/src/util.h -------------------------------------------------------------------------------- /src/sendalert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/sendalert.cpp -------------------------------------------------------------------------------- /src/serialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/serialize.h -------------------------------------------------------------------------------- /src/spentindex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/spentindex.h -------------------------------------------------------------------------------- /src/spork.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/spork.cpp -------------------------------------------------------------------------------- /src/spork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/spork.h -------------------------------------------------------------------------------- /src/streams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/streams.h -------------------------------------------------------------------------------- /src/support/cleanse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/support/cleanse.cpp -------------------------------------------------------------------------------- /src/support/cleanse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/support/cleanse.h -------------------------------------------------------------------------------- /src/support/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/support/events.h -------------------------------------------------------------------------------- /src/support/lockedpool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/support/lockedpool.cpp -------------------------------------------------------------------------------- /src/support/lockedpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/support/lockedpool.h -------------------------------------------------------------------------------- /src/sync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/sync.cpp -------------------------------------------------------------------------------- /src/sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/sync.h -------------------------------------------------------------------------------- /src/test/DoS_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/test/DoS_tests.cpp -------------------------------------------------------------------------------- /src/test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/test/README.md -------------------------------------------------------------------------------- /src/test/addrman_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/test/addrman_tests.cpp -------------------------------------------------------------------------------- /src/test/alert_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/test/alert_tests.cpp -------------------------------------------------------------------------------- /src/test/audit_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/test/audit_tests.cpp -------------------------------------------------------------------------------- /src/test/base32_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/test/base32_tests.cpp -------------------------------------------------------------------------------- /src/test/base58_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/test/base58_tests.cpp -------------------------------------------------------------------------------- /src/test/base64_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/test/base64_tests.cpp -------------------------------------------------------------------------------- /src/test/bctest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/test/bctest.py -------------------------------------------------------------------------------- /src/test/bip32_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/test/bip32_tests.cpp -------------------------------------------------------------------------------- /src/test/bip39_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/test/bip39_tests.cpp -------------------------------------------------------------------------------- /src/test/bloom_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/test/bloom_tests.cpp -------------------------------------------------------------------------------- /src/test/bswap_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/test/bswap_tests.cpp -------------------------------------------------------------------------------- /src/test/buildenv.py.in: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | exeext="@EXEEXT@" 3 | -------------------------------------------------------------------------------- /src/test/coins_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/test/coins_tests.cpp -------------------------------------------------------------------------------- /src/test/crypto_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/test/crypto_tests.cpp -------------------------------------------------------------------------------- /src/test/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/test/data/README.md -------------------------------------------------------------------------------- /src/test/data/blanktx.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/test/data/blanktx.hex -------------------------------------------------------------------------------- /src/test/data/sighash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/test/data/sighash.json -------------------------------------------------------------------------------- /src/test/dht_key_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/test/dht_key_tests.cpp -------------------------------------------------------------------------------- /src/test/getarg_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/test/getarg_tests.cpp -------------------------------------------------------------------------------- /src/test/hash_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/test/hash_tests.cpp -------------------------------------------------------------------------------- /src/test/key_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/test/key_tests.cpp -------------------------------------------------------------------------------- /src/test/main_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/test/main_tests.cpp -------------------------------------------------------------------------------- /src/test/mempool_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/test/mempool_tests.cpp -------------------------------------------------------------------------------- /src/test/merkle_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/test/merkle_tests.cpp -------------------------------------------------------------------------------- /src/test/miner_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/test/miner_tests.cpp -------------------------------------------------------------------------------- /src/test/net_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/test/net_tests.cpp -------------------------------------------------------------------------------- /src/test/netbase_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/test/netbase_tests.cpp -------------------------------------------------------------------------------- /src/test/pmt_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/test/pmt_tests.cpp -------------------------------------------------------------------------------- /src/test/pow_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/test/pow_tests.cpp -------------------------------------------------------------------------------- /src/test/rpc_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/test/rpc_tests.cpp -------------------------------------------------------------------------------- /src/test/sanity_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/test/sanity_tests.cpp -------------------------------------------------------------------------------- /src/test/script_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/test/script_tests.cpp -------------------------------------------------------------------------------- /src/test/scriptnum10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/test/scriptnum10.h -------------------------------------------------------------------------------- /src/test/sighash_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/test/sighash_tests.cpp -------------------------------------------------------------------------------- /src/test/stealth_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/test/stealth_tests.cpp -------------------------------------------------------------------------------- /src/test/streams_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/test/streams_tests.cpp -------------------------------------------------------------------------------- /src/test/test_dynamic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/test/test_dynamic.cpp -------------------------------------------------------------------------------- /src/test/test_dynamic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/test/test_dynamic.h -------------------------------------------------------------------------------- /src/test/test_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/test/test_random.h -------------------------------------------------------------------------------- /src/test/testutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/test/testutil.cpp -------------------------------------------------------------------------------- /src/test/testutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/test/testutil.h -------------------------------------------------------------------------------- /src/test/uint256_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/test/uint256_tests.cpp -------------------------------------------------------------------------------- /src/test/util_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/test/util_tests.cpp -------------------------------------------------------------------------------- /src/threadinterrupt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/threadinterrupt.cpp -------------------------------------------------------------------------------- /src/threadinterrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/threadinterrupt.h -------------------------------------------------------------------------------- /src/threadsafety.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/threadsafety.h -------------------------------------------------------------------------------- /src/timedata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/timedata.cpp -------------------------------------------------------------------------------- /src/timedata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/timedata.h -------------------------------------------------------------------------------- /src/tinyformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/tinyformat.h -------------------------------------------------------------------------------- /src/torcontrol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/torcontrol.cpp -------------------------------------------------------------------------------- /src/torcontrol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/torcontrol.h -------------------------------------------------------------------------------- /src/txdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/txdb.cpp -------------------------------------------------------------------------------- /src/txdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/txdb.h -------------------------------------------------------------------------------- /src/txmempool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/txmempool.cpp -------------------------------------------------------------------------------- /src/txmempool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/txmempool.h -------------------------------------------------------------------------------- /src/ui_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/ui_interface.cpp -------------------------------------------------------------------------------- /src/ui_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/ui_interface.h -------------------------------------------------------------------------------- /src/uint256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/uint256.cpp -------------------------------------------------------------------------------- /src/uint256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/uint256.h -------------------------------------------------------------------------------- /src/undo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/undo.h -------------------------------------------------------------------------------- /src/univalue/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/univalue/.gitignore -------------------------------------------------------------------------------- /src/univalue/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/univalue/.travis.yml -------------------------------------------------------------------------------- /src/univalue/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/univalue/COPYING -------------------------------------------------------------------------------- /src/univalue/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/univalue/Makefile.am -------------------------------------------------------------------------------- /src/univalue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/univalue/README.md -------------------------------------------------------------------------------- /src/univalue/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/univalue/TODO -------------------------------------------------------------------------------- /src/univalue/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/univalue/autogen.sh -------------------------------------------------------------------------------- /src/univalue/build-aux/m4/.gitignore: -------------------------------------------------------------------------------- 1 | /*.m4 2 | -------------------------------------------------------------------------------- /src/univalue/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/univalue/configure.ac -------------------------------------------------------------------------------- /src/univalue/gen/gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/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/duality-solutions/Dynamic/HEAD/src/util.cpp -------------------------------------------------------------------------------- /src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/util.h -------------------------------------------------------------------------------- /src/utilmoneystr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/utilmoneystr.cpp -------------------------------------------------------------------------------- /src/utilmoneystr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/utilmoneystr.h -------------------------------------------------------------------------------- /src/utilstrencodings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/utilstrencodings.cpp -------------------------------------------------------------------------------- /src/utilstrencodings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/utilstrencodings.h -------------------------------------------------------------------------------- /src/utiltime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/utiltime.cpp -------------------------------------------------------------------------------- /src/utiltime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/utiltime.h -------------------------------------------------------------------------------- /src/validation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/validation.cpp -------------------------------------------------------------------------------- /src/validation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/validation.h -------------------------------------------------------------------------------- /src/validationinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/validationinterface.h -------------------------------------------------------------------------------- /src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/version.h -------------------------------------------------------------------------------- /src/versionbits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/versionbits.cpp -------------------------------------------------------------------------------- /src/versionbits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/versionbits.h -------------------------------------------------------------------------------- /src/wallet/coincontrol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/wallet/coincontrol.h -------------------------------------------------------------------------------- /src/wallet/crypter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/wallet/crypter.cpp -------------------------------------------------------------------------------- /src/wallet/crypter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/wallet/crypter.h -------------------------------------------------------------------------------- /src/wallet/db.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/wallet/db.cpp -------------------------------------------------------------------------------- /src/wallet/db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/wallet/db.h -------------------------------------------------------------------------------- /src/wallet/wallet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/wallet/wallet.cpp -------------------------------------------------------------------------------- /src/wallet/wallet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/wallet/wallet.h -------------------------------------------------------------------------------- /src/wallet/wallet_ismine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/wallet/wallet_ismine.h -------------------------------------------------------------------------------- /src/wallet/walletdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/wallet/walletdb.cpp -------------------------------------------------------------------------------- /src/wallet/walletdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/wallet/walletdb.h -------------------------------------------------------------------------------- /src/warnings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/warnings.cpp -------------------------------------------------------------------------------- /src/warnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/warnings.h -------------------------------------------------------------------------------- /src/wordlists/english.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/wordlists/english.h -------------------------------------------------------------------------------- /src/wordlists/french.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/wordlists/french.h -------------------------------------------------------------------------------- /src/wordlists/german.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/wordlists/german.h -------------------------------------------------------------------------------- /src/wordlists/italian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/wordlists/italian.h -------------------------------------------------------------------------------- /src/wordlists/japanese.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/wordlists/japanese.h -------------------------------------------------------------------------------- /src/wordlists/korean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/wordlists/korean.h -------------------------------------------------------------------------------- /src/wordlists/russian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/wordlists/russian.h -------------------------------------------------------------------------------- /src/wordlists/spanish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/wordlists/spanish.h -------------------------------------------------------------------------------- /src/wordlists/ukrainian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/wordlists/ukrainian.h -------------------------------------------------------------------------------- /src/zmq/zmqconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duality-solutions/Dynamic/HEAD/src/zmq/zmqconfig.h --------------------------------------------------------------------------------