├── .cicd ├── defaults.json └── platforms │ ├── asan.Dockerfile │ ├── asserton.Dockerfile │ ├── ubsan.Dockerfile │ ├── ubuntu20.Dockerfile │ └── ubuntu22.Dockerfile ├── .github ├── actions │ └── parallel-ctest-containers │ │ ├── action.yml │ │ ├── dist │ │ └── index.mjs │ │ ├── main.mjs │ │ ├── package-lock.json │ │ └── package.json └── workflows │ ├── build.yaml │ ├── build_base.yaml │ ├── jiraIssueCreator.yml │ ├── label_new_issues.yaml │ ├── performance_harness_run.yaml │ ├── ph_backward_compatibility.yaml │ ├── pinned_build.yaml │ ├── release.yaml │ └── submod.yaml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── CMakeModules ├── CMakeASM-LLVMWARInformation.cmake ├── CMakeDetermineASM-LLVMWARCompiler.cmake ├── CMakeTestASM-LLVMWARCompiler.cmake ├── EosioCheckVersion.cmake ├── EosioTester.cmake.in ├── EosioTesterBuild.cmake.in ├── FindGperftools.cmake ├── MASSigning.cmake ├── VersionUtils.cmake ├── additionalPlugins.cmake ├── doxygen.cmake ├── eosio-config.cmake.in ├── leap-config.cmake.in └── utils.cmake ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── benchmark ├── CMakeLists.txt ├── alt_bn_128.cpp ├── benchmark.cpp ├── benchmark.hpp ├── blake2.cpp ├── bls.cpp ├── hash.cpp ├── key.cpp ├── main.cpp └── modexp.cpp ├── docs ├── 00_install │ ├── 01_build-from-source │ │ ├── 00_build-unsupported-os.md │ │ └── index.md │ └── index.md ├── 01_nodeos │ ├── 02_usage │ │ ├── 00_nodeos-options.md │ │ ├── 01_nodeos-configuration.md │ │ ├── 02_node-setups │ │ │ ├── 00_producing-node.md │ │ │ ├── 01_non-producing-node.md │ │ │ └── index.md │ │ ├── 03_development-environment │ │ │ ├── 00_local-single-node-testnet.md │ │ │ ├── 01_local-multi-node-testnet.md │ │ │ ├── index.md │ │ │ ├── single-host-multi-node-testnet.png │ │ │ └── single-host-single-node-testnet.png │ │ └── index.md │ ├── 03_plugins │ │ ├── chain_api_plugin │ │ │ ├── api-reference │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── chain_plugin │ │ │ └── index.md │ │ ├── db_size_api_plugin │ │ │ ├── api-reference │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── http_plugin │ │ │ └── index.md │ │ ├── index.md │ │ ├── net_api_plugin │ │ │ ├── api-reference │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── net_plugin │ │ │ └── index.md │ │ ├── producer_api_plugin │ │ │ ├── api-reference │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── producer_plugin │ │ │ ├── 10_block-producing-explained.md │ │ │ └── index.md │ │ ├── resource_monitor_plugin │ │ │ └── index.md │ │ ├── state_history_plugin │ │ │ ├── 10_how-to-fast-start-without-old-history.md │ │ │ ├── 20_how-to-replay-or-resync-with-full-history.md │ │ │ ├── 30_how-to-create-snapshot-with-full-history.md │ │ │ ├── 40_how-to-restore-snapshot-with-full-history.md │ │ │ └── index.md │ │ ├── test_control_api_plugin │ │ │ ├── api-reference │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── test_control_plugin │ │ │ └── index.md │ │ └── trace_api_plugin │ │ │ ├── api-reference │ │ │ └── index.md │ │ │ ├── clog-format.png │ │ │ └── index.md │ ├── 04_replays │ │ ├── how-to-generate-a-blocks.log.md │ │ ├── how-to-generate-a-snapshot.md │ │ ├── how-to-replay-from-a-blocks.log.md │ │ ├── how-to-replay-from-a-snapshot.md │ │ └── index.md │ ├── 05_rpc_apis │ │ └── index.md │ ├── 06_logging │ │ ├── 00_setup-logging.json.md │ │ ├── 01_logging-levels.md │ │ └── index.md │ ├── 07_concepts │ │ ├── 05_storage-and-read-modes.md │ │ ├── 10_context-free-data │ │ │ └── index.md │ │ └── index.md │ ├── 08_troubleshooting │ │ └── index.md │ └── index.md ├── 02_cleos │ ├── 02_how-to-guides │ │ ├── how-to-buy-ram.md │ │ ├── how-to-config-a-multisig-account.md │ │ ├── how-to-connect-a-specific-network.md │ │ ├── how-to-create-a-wallet.md │ │ ├── how-to-create-an-account.md │ │ ├── how-to-create-key-pairs.md │ │ ├── how-to-delegate-CPU-resource.md │ │ ├── how-to-delegate-net-resource.md │ │ ├── how-to-deploy-a-smart-contract.md │ │ ├── how-to-get-account-information.md │ │ ├── how-to-get-block-information.md │ │ ├── how-to-get-tables-information.md │ │ ├── how-to-get-transaction-information.md │ │ ├── how-to-import-a-key.md │ │ ├── how-to-link-permission.md │ │ ├── how-to-list-all-key-pairs.md │ │ ├── how-to-stake-resource.md │ │ ├── how-to-submit-a-transaction.md │ │ ├── how-to-transfer-an-eosio.token-token.md │ │ ├── how-to-undelegate-CPU.md │ │ ├── how-to-undelegate-NET.md │ │ ├── how-to-unlink-permission.md │ │ ├── how-to-unstake-CPU.md │ │ ├── how-to-unstake-NET.md │ │ └── how-to-vote.md │ ├── 03_command-reference │ │ ├── convert │ │ │ ├── index.md │ │ │ ├── pack_action_data.md │ │ │ ├── pack_transaction.md │ │ │ ├── unpack_action_data.md │ │ │ └── unpack_transaction.md │ │ ├── create │ │ │ ├── account.md │ │ │ ├── index.md │ │ │ └── key.md │ │ ├── get │ │ │ ├── abi.md │ │ │ ├── account.md │ │ │ ├── accounts.md │ │ │ ├── actions.md │ │ │ ├── block.md │ │ │ ├── code.md │ │ │ ├── currency-balance.md │ │ │ ├── currency-stats.md │ │ │ ├── currency.md │ │ │ ├── index.md │ │ │ ├── info.md │ │ │ ├── schedule.md │ │ │ ├── scope.md │ │ │ ├── servants.md │ │ │ ├── table.md │ │ │ ├── transaction-status.md │ │ │ ├── transaction.md │ │ │ └── transaction_id.md │ │ ├── index.md │ │ ├── multisig │ │ │ ├── index.md │ │ │ ├── multisig-approve.md │ │ │ ├── multisig-cancel.md │ │ │ ├── multisig-exec.md │ │ │ ├── multisig-invalidate.md │ │ │ ├── multisig-propose.md │ │ │ ├── multisig-propose_trx.md │ │ │ ├── multisig-review.md │ │ │ └── multisig-unapprove.md │ │ ├── net │ │ │ ├── connect.md │ │ │ ├── disconnect.md │ │ │ ├── index.md │ │ │ ├── peers.md │ │ │ └── status.md │ │ ├── push │ │ │ ├── index.md │ │ │ ├── push-action.md │ │ │ ├── push-transaction.md │ │ │ └── push-transactions.md │ │ ├── set │ │ │ ├── index.md │ │ │ ├── set-abi.md │ │ │ ├── set-account.md │ │ │ ├── set-action.md │ │ │ ├── set-code.md │ │ │ └── set-contract.md │ │ ├── sign.md │ │ ├── system │ │ │ ├── index.md │ │ │ ├── system-bidname.md │ │ │ ├── system-bidnameinfo.md │ │ │ ├── system-buyram.md │ │ │ ├── system-canceldelay.md │ │ │ ├── system-claimrewards.md │ │ │ ├── system-delegatebw.md │ │ │ ├── system-listbw.md │ │ │ ├── system-listproducers.md │ │ │ ├── system-newaccount.md │ │ │ ├── system-regproducer.md │ │ │ ├── system-regproxy.md │ │ │ ├── system-rex-buyrex.md │ │ │ ├── system-rex-cancelrexorder.md │ │ │ ├── system-rex-closerex.md │ │ │ ├── system-rex-consolidate.md │ │ │ ├── system-rex-defundcpuloan.md │ │ │ ├── system-rex-defundnetloan.md │ │ │ ├── system-rex-deposit.md │ │ │ ├── system-rex-fundcpuloan.md │ │ │ ├── system-rex-fundnetloan.md │ │ │ ├── system-rex-lendrex.md │ │ │ ├── system-rex-mvfromsavings.md │ │ │ ├── system-rex-mvtosavings.md │ │ │ ├── system-rex-rentcpu.md │ │ │ ├── system-rex-rentnet.md │ │ │ ├── system-rex-rexexec.md │ │ │ ├── system-rex-sellrex.md │ │ │ ├── system-rex-unstaketorex.md │ │ │ ├── system-rex-updaterex.md │ │ │ ├── system-rex-withdraw.md │ │ │ ├── system-rex.md │ │ │ ├── system-sellram.md │ │ │ ├── system-undelegatebw.md │ │ │ ├── system-unregprod.md │ │ │ ├── system-unregproxy.md │ │ │ ├── system-voteproducer-approve.md │ │ │ ├── system-voteproducer-prods.md │ │ │ ├── system-voteproducer-proxy.md │ │ │ ├── system-voteproducer-unapprove.md │ │ │ └── system-voteproducer.md │ │ ├── transfer.md │ │ ├── version │ │ │ ├── client.md │ │ │ └── index.md │ │ └── wallet │ │ │ ├── create.md │ │ │ ├── create_key.md │ │ │ ├── import.md │ │ │ ├── index.md │ │ │ ├── keys.md │ │ │ ├── list.md │ │ │ ├── lock.md │ │ │ ├── lock_all.md │ │ │ ├── open.md │ │ │ ├── private_keys.md │ │ │ └── unlock.md │ ├── 04_troubleshooting.md │ ├── 05_FAQ.md │ └── index.md ├── 03_keosd │ ├── 10_usage.md │ ├── 15_plugins │ │ ├── http_plugin.md │ │ ├── index.md │ │ ├── wallet_api_plugin │ │ │ └── index.md │ │ └── wallet_plugin │ │ │ └── index.md │ ├── 20_security.md │ ├── 35_wallet-specification.md │ ├── 40_troubleshooting.md │ ├── 50_FAQ.md │ └── index.md ├── 10_utilities │ ├── index.md │ └── trace_api_util.md ├── doxygen.css ├── index.md └── leap_components.png ├── eos.doxygen.in ├── eosio.version.in ├── images ├── eos-logo.png ├── mesh.dot ├── mesh.png ├── ring.dot ├── ring.png ├── star.dot ├── star.png └── testnet-diagrams.sh ├── libraries ├── CMakeLists.txt ├── builtins │ ├── CMakeLists.txt │ ├── README.txt │ ├── compiler_builtins.hpp │ ├── fixdfti.c │ ├── fixsfti.c │ ├── fixtfti.c │ ├── fixunsdfti.c │ ├── fixunssfti.c │ ├── fixunstfti.c │ ├── floattidf.c │ ├── floatuntidf.c │ ├── fp128.h │ ├── fp32.h │ ├── fp64.h │ └── int_t.h ├── chain │ ├── CMakeLists.txt │ ├── abi_serializer.cpp │ ├── apply_context.cpp │ ├── asset.cpp │ ├── authority.cpp │ ├── authorization_manager.cpp │ ├── block.cpp │ ├── block_header.cpp │ ├── block_header_state_legacy.cpp │ ├── block_log.cpp │ ├── block_state_legacy.cpp │ ├── chain_config.cpp │ ├── chain_id_type.cpp │ ├── controller.cpp │ ├── deep_mind.cpp │ ├── eosio_contract.cpp │ ├── eosio_contract_abi.cpp │ ├── eosio_contract_abi_bin.cpp │ ├── fork_database.cpp │ ├── genesis_intrinsics.cpp │ ├── genesis_state.cpp │ ├── genesis_state_root_key.cpp.in │ ├── include │ │ └── eosio │ │ │ └── chain │ │ │ ├── abi_def.hpp │ │ │ ├── abi_serializer.hpp │ │ │ ├── account_object.hpp │ │ │ ├── action.hpp │ │ │ ├── action_receipt.hpp │ │ │ ├── apply_context.hpp │ │ │ ├── asset.hpp │ │ │ ├── authority.hpp │ │ │ ├── authority_checker.hpp │ │ │ ├── authorization_manager.hpp │ │ │ ├── block.hpp │ │ │ ├── block_header.hpp │ │ │ ├── block_header_state_legacy.hpp │ │ │ ├── block_log.hpp │ │ │ ├── block_log_config.hpp │ │ │ ├── block_state_legacy.hpp │ │ │ ├── block_summary_object.hpp │ │ │ ├── block_timestamp.hpp │ │ │ ├── chain_config.hpp │ │ │ ├── chain_config_helper.hpp │ │ │ ├── chain_id_type.hpp │ │ │ ├── chain_snapshot.hpp │ │ │ ├── chainbase_environment.hpp │ │ │ ├── code_object.hpp │ │ │ ├── config.hpp │ │ │ ├── contract_table_objects.hpp │ │ │ ├── contract_types.hpp │ │ │ ├── controller.hpp │ │ │ ├── core_symbol.hpp.in │ │ │ ├── database_header_object.hpp │ │ │ ├── database_utils.hpp │ │ │ ├── deep_mind.hpp │ │ │ ├── eosio_contract.hpp │ │ │ ├── exceptions.hpp │ │ │ ├── fixed_bytes.hpp │ │ │ ├── fixed_key.hpp │ │ │ ├── fork_database.hpp │ │ │ ├── generated_transaction_object.hpp │ │ │ ├── genesis_intrinsics.hpp │ │ │ ├── genesis_state.hpp │ │ │ ├── global_property_object.hpp │ │ │ ├── incremental_merkle.hpp │ │ │ ├── kv_config.hpp │ │ │ ├── log_catalog.hpp │ │ │ ├── log_data_base.hpp │ │ │ ├── log_index.hpp │ │ │ ├── merkle.hpp │ │ │ ├── multi_index_includes.hpp │ │ │ ├── name.hpp │ │ │ ├── parallel_markers.hpp │ │ │ ├── pending_snapshot.hpp │ │ │ ├── permission_link_object.hpp │ │ │ ├── permission_object.hpp │ │ │ ├── platform_timer.hpp │ │ │ ├── platform_timer_accuracy.hpp │ │ │ ├── producer_schedule.hpp │ │ │ ├── protocol.hpp │ │ │ ├── protocol_feature_activation.hpp │ │ │ ├── protocol_feature_manager.hpp │ │ │ ├── protocol_state_object.hpp │ │ │ ├── resource_limits.hpp │ │ │ ├── resource_limits_private.hpp │ │ │ ├── snapshot.hpp │ │ │ ├── snapshot_scheduler.hpp │ │ │ ├── subjective_billing.hpp │ │ │ ├── symbol.hpp │ │ │ ├── thread_utils.hpp │ │ │ ├── trace.hpp │ │ │ ├── transaction.hpp │ │ │ ├── transaction_context.hpp │ │ │ ├── transaction_metadata.hpp │ │ │ ├── transaction_object.hpp │ │ │ ├── types.hpp │ │ │ ├── unapplied_transaction_queue.hpp │ │ │ ├── wasm_config.hpp │ │ │ ├── wasm_eosio_binary_ops.hpp │ │ │ ├── wasm_eosio_constraints.hpp │ │ │ ├── wasm_eosio_injection.hpp │ │ │ ├── wasm_eosio_validation.hpp │ │ │ ├── wasm_interface.hpp │ │ │ ├── wasm_interface_private.hpp │ │ │ ├── wast_to_wasm.hpp │ │ │ ├── webassembly │ │ │ ├── common.hpp │ │ │ ├── eos-vm-oc.hpp │ │ │ ├── eos-vm-oc │ │ │ │ ├── code_cache.hpp │ │ │ │ ├── compile_monitor.hpp │ │ │ │ ├── compile_trampoline.hpp │ │ │ │ ├── config.hpp │ │ │ │ ├── eos-vm-oc.h │ │ │ │ ├── eos-vm-oc.hpp │ │ │ │ ├── executor.hpp │ │ │ │ ├── gs_seg_helpers.h │ │ │ │ ├── intrinsic.hpp │ │ │ │ ├── intrinsic_mapping.hpp │ │ │ │ ├── ipc_helpers.hpp │ │ │ │ ├── ipc_protocol.hpp │ │ │ │ ├── memfd_helpers.hpp │ │ │ │ ├── memory.hpp │ │ │ │ └── stack.hpp │ │ │ ├── eos-vm.hpp │ │ │ ├── interface.hpp │ │ │ ├── preconditions.hpp │ │ │ ├── return_codes.hpp │ │ │ └── runtime_interface.hpp │ │ │ └── whitelisted_intrinsics.hpp │ ├── merkle.cpp │ ├── name.cpp │ ├── platform_timer_accuracy.cpp │ ├── platform_timer_asio_fallback.cpp │ ├── platform_timer_kqueue.cpp │ ├── platform_timer_posix.cpp │ ├── platform_timer_posix_test.c │ ├── producer_schedule.cpp │ ├── protocol_feature_activation.cpp │ ├── protocol_feature_manager.cpp │ ├── protocol_state_object.cpp │ ├── resource_limits.cpp │ ├── snapshot.cpp │ ├── snapshot_scheduler.cpp │ ├── symbol.cpp │ ├── thread_utils.cpp │ ├── trace.cpp │ ├── transaction.cpp │ ├── transaction_context.cpp │ ├── transaction_metadata.cpp │ ├── wasm_config.cpp │ ├── wasm_eosio_binary_ops.cpp │ ├── wasm_eosio_injection.cpp │ ├── wasm_eosio_validation.cpp │ ├── wasm_interface.cpp │ ├── wast_to_wasm.cpp │ ├── webassembly │ │ ├── action.cpp │ │ ├── authorization.cpp │ │ ├── cf_system.cpp │ │ ├── cf_transaction.cpp │ │ ├── compiler_builtins.cpp │ │ ├── console.cpp │ │ ├── context_free.cpp │ │ ├── crypto.cpp │ │ ├── database.cpp │ │ ├── memory.cpp │ │ ├── permission.cpp │ │ ├── privileged.cpp │ │ ├── producer.cpp │ │ ├── runtimes │ │ │ ├── eos-vm-oc.cpp │ │ │ ├── eos-vm-oc │ │ │ │ ├── About WAVM │ │ │ │ ├── LLVMEmitIR.cpp │ │ │ │ ├── LLVMEmitIR.h │ │ │ │ ├── LLVMJIT.cpp │ │ │ │ ├── LLVMJIT.h │ │ │ │ ├── code_cache.cpp │ │ │ │ ├── compile_monitor.cpp │ │ │ │ ├── compile_trampoline.cpp │ │ │ │ ├── default_real_main.cpp │ │ │ │ ├── executor.cpp │ │ │ │ ├── gs_seg_helpers.c │ │ │ │ ├── intrinsic.cpp │ │ │ │ ├── ipc_helpers.cpp │ │ │ │ ├── llvmWARshim.cpp │ │ │ │ ├── llvmWARshim.llvmwar │ │ │ │ ├── memory.cpp │ │ │ │ ├── stack.cpp │ │ │ │ └── switch_stack_linux.s │ │ │ └── eos-vm.cpp │ │ ├── softfloat.cpp │ │ ├── system.cpp │ │ └── transaction.cpp │ └── whitelisted_intrinsics.cpp ├── cli11 │ ├── CMakeLists.txt │ ├── README.md │ └── bash-completion │ │ └── completions │ │ ├── cleos │ │ └── leap-util ├── custom_appbase │ ├── CMakeLists.txt │ ├── include │ │ └── eosio │ │ │ └── chain │ │ │ ├── application.hpp │ │ │ └── exec_pri_queue.hpp │ └── tests │ │ ├── CMakeLists.txt │ │ └── custom_appbase_tests.cpp ├── libfc │ ├── CMakeLists.txt │ ├── include │ │ └── fc │ │ │ ├── aligned.hpp │ │ │ ├── array.hpp │ │ │ ├── bitutil.hpp │ │ │ ├── byteswap.hpp │ │ │ ├── compress │ │ │ └── zlib.hpp │ │ │ ├── container │ │ │ ├── container_detail.hpp │ │ │ ├── deque_fwd.hpp │ │ │ ├── flat.hpp │ │ │ ├── flat_fwd.hpp │ │ │ └── tracked_storage.hpp │ │ │ ├── crypto │ │ │ ├── aes.hpp │ │ │ ├── base58.hpp │ │ │ ├── base64.hpp │ │ │ ├── bigint.hpp │ │ │ ├── blake2.hpp │ │ │ ├── city.hpp │ │ │ ├── common.hpp │ │ │ ├── digest.hpp │ │ │ ├── elliptic.hpp │ │ │ ├── elliptic_r1.hpp │ │ │ ├── elliptic_webauthn.hpp │ │ │ ├── hex.hpp │ │ │ ├── hmac.hpp │ │ │ ├── k1_recover.hpp │ │ │ ├── modular_arithmetic.hpp │ │ │ ├── openssl.hpp │ │ │ ├── private_key.hpp │ │ │ ├── public_key.hpp │ │ │ ├── rand.hpp │ │ │ ├── ripemd160.hpp │ │ │ ├── sha1.hpp │ │ │ ├── sha224.hpp │ │ │ ├── sha256.hpp │ │ │ ├── sha3.hpp │ │ │ ├── sha512.hpp │ │ │ └── signature.hpp │ │ │ ├── exception │ │ │ └── exception.hpp │ │ │ ├── filesystem.hpp │ │ │ ├── fixed_string.hpp │ │ │ ├── fwd.hpp │ │ │ ├── fwd_impl.hpp │ │ │ ├── git_revision.hpp │ │ │ ├── interprocess │ │ │ ├── container.hpp │ │ │ └── file_mapping.hpp │ │ │ ├── io │ │ │ ├── cfile.hpp │ │ │ ├── console.hpp │ │ │ ├── datastream.hpp │ │ │ ├── enum_type.hpp │ │ │ ├── fstream.hpp │ │ │ ├── incbin.h │ │ │ ├── json.hpp │ │ │ ├── json_relaxed.hpp │ │ │ ├── persistence_util.hpp │ │ │ ├── raw.hpp │ │ │ ├── raw_fwd.hpp │ │ │ ├── raw_variant.hpp │ │ │ └── varint.hpp │ │ │ ├── log │ │ │ ├── appender.hpp │ │ │ ├── console_appender.hpp │ │ │ ├── dmlog_appender.hpp │ │ │ ├── gelf_appender.hpp │ │ │ ├── log_message.hpp │ │ │ ├── logger.hpp │ │ │ └── logger_config.hpp │ │ │ ├── mock_time.hpp │ │ │ ├── mutex.hpp │ │ │ ├── network │ │ │ ├── http │ │ │ │ └── http_client.hpp │ │ │ ├── listener.hpp │ │ │ ├── message_buffer.hpp │ │ │ └── url.hpp │ │ │ ├── platform_independence.hpp │ │ │ ├── reflect │ │ │ ├── reflect.hpp │ │ │ ├── typename.hpp │ │ │ └── variant.hpp │ │ │ ├── safe.hpp │ │ │ ├── scoped_exit.hpp │ │ │ ├── static_variant.hpp │ │ │ ├── string.hpp │ │ │ ├── time.hpp │ │ │ ├── uint128.hpp │ │ │ ├── utf8.hpp │ │ │ ├── utility.hpp │ │ │ ├── variant.hpp │ │ │ ├── variant_object.hpp │ │ │ └── vector.hpp │ ├── libraries │ │ └── boringssl │ │ │ └── CMakeLists.txt │ ├── secp256k1 │ │ └── CMakeLists.txt │ ├── src │ │ ├── compress │ │ │ └── zlib.cpp │ │ ├── crypto │ │ │ ├── _digest_common.cpp │ │ │ ├── _digest_common.hpp │ │ │ ├── _elliptic_impl_priv.hpp │ │ │ ├── _elliptic_impl_pub.hpp │ │ │ ├── aes.cpp │ │ │ ├── base58.cpp │ │ │ ├── base64.cpp │ │ │ ├── bigint.cpp │ │ │ ├── blake2.cpp │ │ │ ├── city.cpp │ │ │ ├── crc.cpp │ │ │ ├── elliptic_common.cpp │ │ │ ├── elliptic_impl_priv.cpp │ │ │ ├── elliptic_r1.cpp │ │ │ ├── elliptic_secp256k1.cpp │ │ │ ├── elliptic_webauthn.cpp │ │ │ ├── hex.cpp │ │ │ ├── k1_recover.cpp │ │ │ ├── modular_arithmetic.cpp │ │ │ ├── private_key.cpp │ │ │ ├── public_key.cpp │ │ │ ├── rand.cpp │ │ │ ├── ripemd160.cpp │ │ │ ├── sha1.cpp │ │ │ ├── sha224.cpp │ │ │ ├── sha256.cpp │ │ │ ├── sha3.cpp │ │ │ ├── sha512.cpp │ │ │ └── signature.cpp │ │ ├── exception.cpp │ │ ├── filesystem.cpp │ │ ├── git_revision.cpp.in │ │ ├── interprocess │ │ │ └── file_mapping.cpp │ │ ├── io │ │ │ ├── buffered_iostream.cpp │ │ │ ├── console.cpp │ │ │ ├── datastream.cpp │ │ │ ├── fstream.cpp │ │ │ ├── json.cpp │ │ │ ├── sstream.cpp │ │ │ └── varint.cpp │ │ ├── log │ │ │ ├── appender.cpp │ │ │ ├── console_appender.cpp │ │ │ ├── console_defines.h │ │ │ ├── dmlog_appender.cpp │ │ │ ├── gelf_appender.cpp │ │ │ ├── log_message.cpp │ │ │ ├── logger.cpp │ │ │ └── logger_config.cpp │ │ ├── mock_time.cpp │ │ ├── network │ │ │ ├── http │ │ │ │ └── http_client.cpp │ │ │ └── url.cpp │ │ ├── string.cpp │ │ ├── thread │ │ │ └── asio │ │ │ │ ├── detail │ │ │ │ └── yield.hpp │ │ │ │ ├── round_robin.hpp │ │ │ │ └── yield.hpp │ │ ├── time.cpp │ │ ├── uint128.cpp │ │ ├── utf8.cpp │ │ ├── utf8 │ │ │ ├── ReleaseNotes │ │ │ ├── checked.h │ │ │ ├── core.h │ │ │ ├── unchecked.h │ │ │ └── utf8cpp.html │ │ ├── variant.cpp │ │ └── variant_object.cpp │ └── test │ │ ├── CMakeLists.txt │ │ ├── crypto │ │ ├── test_blake2.cpp │ │ ├── test_bls.cpp │ │ ├── test_cypher_suites.cpp │ │ ├── test_hash_functions.cpp │ │ ├── test_k1_recover.cpp │ │ ├── test_modular_arithmetic.cpp │ │ ├── test_utils.hpp │ │ └── test_webauthn.cpp │ │ ├── io │ │ ├── test_cfile.cpp │ │ ├── test_json.cpp │ │ └── test_tracked_storage.cpp │ │ ├── main.cpp │ │ ├── network │ │ └── test_message_buffer.cpp │ │ ├── scoped_exit │ │ └── test_scoped_exit.cpp │ │ ├── static_variant │ │ └── test_static_variant.cpp │ │ ├── test_base64.cpp │ │ ├── test_escape_str.cpp │ │ ├── variant │ │ └── test_variant.cpp │ │ └── variant_estimated_size │ │ └── test_variant_estimated_size.cpp ├── prometheus │ ├── CMakeLists.txt │ └── include │ │ └── prometheus │ │ └── detail │ │ └── core_export.h ├── state_history │ ├── .clang-format │ ├── CMakeLists.txt │ ├── abi.cpp │ ├── compression.cpp │ ├── create_deltas.cpp │ ├── include │ │ └── eosio │ │ │ └── state_history │ │ │ ├── compression.hpp │ │ │ ├── create_deltas.hpp │ │ │ ├── log.hpp │ │ │ ├── serialization.hpp │ │ │ ├── trace_converter.hpp │ │ │ └── types.hpp │ └── trace_converter.cpp ├── testing │ ├── CMakeLists.txt │ ├── contracts.cpp.in │ ├── contracts.hpp.in │ ├── contracts │ │ ├── CMakeLists.txt │ │ ├── eosio.bios │ │ │ ├── CMakeLists.txt │ │ │ ├── eosio.bios.abi │ │ │ ├── eosio.bios.cpp │ │ │ ├── eosio.bios.hpp │ │ │ └── eosio.bios.wasm │ │ └── old_versions │ │ │ ├── v1.6.0-rc3 │ │ │ └── eosio.bios │ │ │ │ ├── eosio.bios.abi │ │ │ │ └── eosio.bios.wasm │ │ │ └── v1.7.0-develop-preactivate_feature │ │ │ └── eosio.bios │ │ │ ├── eosio.bios.abi │ │ │ └── eosio.bios.wasm │ ├── include │ │ └── eosio │ │ │ └── testing │ │ │ ├── chainbase_fixture.hpp │ │ │ ├── tester.hpp │ │ │ └── tester_network.hpp │ ├── tester.cpp │ └── tester_network.cpp ├── version │ ├── CMakeLists.txt │ ├── include │ │ └── eosio │ │ │ └── version │ │ │ └── version.hpp │ └── src │ │ ├── version.cpp │ │ ├── version_impl.cpp.in │ │ └── version_impl.hpp └── wasm-jit │ ├── CMakeLists.txt │ ├── Include │ ├── IR │ │ ├── IR.h │ │ ├── Module.h │ │ ├── OperatorPrinter.h │ │ ├── Operators.h │ │ ├── Types.h │ │ └── Validate.h │ ├── Inline │ │ ├── BasicTypes.h │ │ ├── CMakeLists.txt │ │ ├── DenseStaticIntSet.h │ │ ├── Errors.h │ │ ├── Floats.h │ │ ├── Serialization.h │ │ ├── Timing.h │ │ └── UTF8.h │ ├── Logging │ │ └── Logging.h │ ├── Platform │ │ └── Platform.h │ ├── WASM │ │ └── WASM.h │ └── WAST │ │ └── WAST.h │ ├── LICENSE │ ├── README.md │ ├── Source │ ├── IR │ │ ├── CMakeLists.txt │ │ ├── DisassemblyNames.cpp │ │ ├── Operators.cpp │ │ ├── Types.cpp │ │ └── Validate.cpp │ ├── Logging │ │ ├── CMakeLists.txt │ │ └── Logging.cpp │ ├── ThirdParty │ │ ├── dtoa.c │ │ └── xxhash │ │ │ ├── LICENSE │ │ │ ├── xxhash.c │ │ │ └── xxhash.h │ ├── WASM │ │ ├── CMakeLists.txt │ │ └── WASMSerialization.cpp │ └── WAST │ │ ├── CMakeLists.txt │ │ ├── Lexer.cpp │ │ ├── Lexer.h │ │ ├── NFA.cpp │ │ ├── NFA.h │ │ ├── Parse.cpp │ │ ├── Parse.h │ │ ├── ParseFunction.cpp │ │ ├── ParseModule.cpp │ │ ├── ParseNumbers.cpp │ │ ├── Print.cpp │ │ ├── Regexp.cpp │ │ └── Regexp.h │ ├── Test │ ├── Benchmark │ │ ├── Benchmark.cpp │ │ └── Benchmark.wast │ ├── Blake2b │ │ └── blake2b.wast │ ├── fuzz │ │ ├── address.wast │ │ ├── echo.wast │ │ ├── func_ptrs.wast │ │ ├── globals.wast │ │ ├── helloworld.wast │ │ ├── i32.wast │ │ ├── labels.wast │ │ ├── loop.wast │ │ ├── resizing.wast │ │ ├── return.wast │ │ ├── tee.wast │ │ └── tee_local.wast │ ├── spec │ │ ├── CMakeLists.txt │ │ ├── LICENSE │ │ ├── WAVM_known_failures.wast │ │ ├── address.wast │ │ ├── align.wast │ │ ├── atomic.wast │ │ ├── binary.wast │ │ ├── block.wast │ │ ├── br.wast │ │ ├── br_if.wast │ │ ├── br_table.wast │ │ ├── break-drop.wast │ │ ├── call.wast │ │ ├── call_indirect.wast │ │ ├── comments.wast │ │ ├── const.wast │ │ ├── conversions.wast │ │ ├── custom_section.wast │ │ ├── elem.wast │ │ ├── endianness.wast │ │ ├── exports.wast │ │ ├── f32.wast │ │ ├── f32_bitwise.wast │ │ ├── f32_cmp.wast │ │ ├── f64.wast │ │ ├── f64_bitwise.wast │ │ ├── f64_cmp.wast │ │ ├── fac.wast │ │ ├── float_exprs.wast │ │ ├── float_literals.wast │ │ ├── float_memory.wast │ │ ├── float_misc.wast │ │ ├── forward.wast │ │ ├── func.wast │ │ ├── func_ptrs.wast │ │ ├── get_local.wast │ │ ├── globals.wast │ │ ├── i32.wast │ │ ├── i64.wast │ │ ├── if.wast │ │ ├── imports.wast │ │ ├── int_exprs.wast │ │ ├── int_literals.wast │ │ ├── labels.wast │ │ ├── left-to-right.wast │ │ ├── linking.wast │ │ ├── loop.wast │ │ ├── memory.wast │ │ ├── memory_redundancy.wast │ │ ├── memory_trap.wast │ │ ├── names.wast │ │ ├── nop.wast │ │ ├── resizing.wast │ │ ├── return.wast │ │ ├── select.wast │ │ ├── set_local.wast │ │ ├── skip-stack-guard-page.wast │ │ ├── stack.wast │ │ ├── start.wast │ │ ├── store_retval.wast │ │ ├── switch.wast │ │ ├── tee_local.wast │ │ ├── token.wast │ │ ├── traps.wast │ │ ├── type.wast │ │ ├── typecheck.wast │ │ ├── unreachable.wast │ │ ├── unreached-invalid.wast │ │ ├── unwind.wast │ │ ├── utf8-custom-section-id.wast │ │ ├── utf8-import-field.wast │ │ ├── utf8-import-module.wast │ │ └── utf8-invalid-encoding.wast │ ├── wast │ │ ├── echo.wast │ │ ├── helloworld.wast │ │ ├── skip-stack-guard-page.wast │ │ └── tee.wast │ └── zlib │ │ └── zlib.wast │ └── afl │ ├── readme │ ├── run-afl-fuzz │ ├── simplify-crashes │ └── wast.dict ├── package.cmake ├── plugins ├── CMakeLists.txt ├── COMMUNITY.md ├── chain_api_plugin │ ├── CMakeLists.txt │ ├── chain.swagger.yaml │ ├── chain_api_plugin.cpp │ └── include │ │ └── eosio │ │ └── chain_api_plugin │ │ └── chain_api_plugin.hpp ├── chain_interface │ └── include │ │ └── eosio │ │ └── chain │ │ └── plugin_interface.hpp ├── chain_plugin │ ├── CMakeLists.txt │ ├── account_query_db.cpp │ ├── chain_plugin.cpp │ ├── include │ │ └── eosio │ │ │ └── chain_plugin │ │ │ ├── account_query_db.hpp │ │ │ ├── chain_plugin.hpp │ │ │ ├── finality_status_object.hpp │ │ │ ├── trx_finality_status_processing.hpp │ │ │ └── trx_retry_db.hpp │ ├── test │ │ ├── CMakeLists.txt │ │ ├── main.cpp │ │ ├── plugin_config_test.cpp │ │ ├── test_account_query_db.cpp │ │ ├── test_trx_finality_status_processing.cpp │ │ └── test_trx_retry_db.cpp │ ├── trx_finality_status_processing.cpp │ └── trx_retry_db.cpp ├── db_size_api_plugin │ ├── CMakeLists.txt │ ├── db_size.swagger.yaml │ ├── db_size_api_plugin.cpp │ └── include │ │ └── eosio │ │ └── db_size_api_plugin │ │ └── db_size_api_plugin.hpp ├── eosio-make_new_plugin.sh ├── http_client_plugin │ ├── CMakeLists.txt │ ├── http_client_plugin.cpp │ └── include │ │ └── eosio │ │ └── http_client_plugin │ │ └── http_client_plugin.hpp ├── http_plugin │ ├── CMakeLists.txt │ ├── http_plugin.cpp │ ├── include │ │ └── eosio │ │ │ └── http_plugin │ │ │ ├── api_category.hpp │ │ │ ├── beast_http_session.hpp │ │ │ ├── common.hpp │ │ │ ├── http_plugin.hpp │ │ │ └── macros.hpp │ └── tests │ │ ├── CMakeLists.txt │ │ └── unit_tests.cpp ├── net_api_plugin │ ├── CMakeLists.txt │ ├── include │ │ └── eosio │ │ │ └── net_api_plugin │ │ │ └── net_api_plugin.hpp │ ├── net.swagger.yaml │ └── net_api_plugin.cpp ├── net_plugin │ ├── CMakeLists.txt │ ├── include │ │ └── eosio │ │ │ └── net_plugin │ │ │ ├── auto_bp_peering.hpp │ │ │ ├── net_plugin.hpp │ │ │ ├── net_utils.hpp │ │ │ └── protocol.hpp │ ├── net_plugin.cpp │ └── tests │ │ ├── CMakeLists.txt │ │ ├── auto_bp_peering_unittest.cpp │ │ ├── main.cpp │ │ └── rate_limit_parse_unittest.cpp ├── producer_api_plugin │ ├── CMakeLists.txt │ ├── include │ │ └── eosio │ │ │ └── producer_api_plugin │ │ │ └── producer_api_plugin.hpp │ ├── producer.swagger.yaml │ └── producer_api_plugin.cpp ├── producer_plugin │ ├── CMakeLists.txt │ ├── include │ │ └── eosio │ │ │ └── producer_plugin │ │ │ ├── block_timing_util.hpp │ │ │ └── producer_plugin.hpp │ ├── producer_plugin.cpp │ └── test │ │ ├── CMakeLists.txt │ │ ├── main.cpp │ │ ├── test_block_timing_util.cpp │ │ ├── test_disallow_delayed_trx.cpp │ │ ├── test_options.cpp │ │ └── test_trx_full.cpp ├── prometheus_plugin │ ├── CMakeLists.txt │ ├── include │ │ └── eosio │ │ │ └── prometheus_plugin │ │ │ └── prometheus_plugin.hpp │ ├── metrics.hpp │ └── prometheus_plugin.cpp ├── resource_monitor_plugin │ ├── CMakeLists.txt │ ├── include │ │ └── eosio │ │ │ └── resource_monitor_plugin │ │ │ ├── file_space_handler.hpp │ │ │ ├── resource_monitor_plugin.hpp │ │ │ └── system_file_space_provider.hpp │ ├── resource_monitor_plugin.cpp │ ├── system_file_space_provider.cpp │ └── test │ │ ├── CMakeLists.txt │ │ ├── test_add_file_system.cpp │ │ ├── test_resmon_plugin.cpp │ │ └── test_threshold.cpp ├── signature_provider_plugin │ ├── CMakeLists.txt │ ├── include │ │ └── eosio │ │ │ └── signature_provider_plugin │ │ │ └── signature_provider_plugin.hpp │ └── signature_provider_plugin.cpp ├── state_history_plugin │ ├── .clang-format │ ├── CMakeLists.txt │ ├── include │ │ └── eosio │ │ │ └── state_history_plugin │ │ │ ├── session.hpp │ │ │ └── state_history_plugin.hpp │ ├── state_history_plugin.cpp │ └── tests │ │ ├── CMakeLists.txt │ │ ├── main.cpp │ │ ├── plugin_config_test.cpp │ │ └── session_test.cpp ├── template_plugin │ ├── CMakeLists.txt │ ├── include │ │ └── eosio │ │ │ └── template_plugin │ │ │ └── template_plugin.hpp │ └── template_plugin.cpp ├── test_control_api_plugin │ ├── CMakeLists.txt │ ├── include │ │ └── eosio │ │ │ └── test_control_api_plugin │ │ │ └── test_control_api_plugin.hpp │ ├── test_control.swagger.yaml │ └── test_control_api_plugin.cpp ├── test_control_plugin │ ├── CMakeLists.txt │ ├── include │ │ └── eosio │ │ │ └── test_control_plugin │ │ │ └── test_control_plugin.hpp │ └── test_control_plugin.cpp ├── trace_api_plugin │ ├── .clang-format │ ├── CMakeLists.txt │ ├── abi_data_handler.cpp │ ├── compressed_file.cpp │ ├── configuration_utils.cpp │ ├── examples │ │ └── abis │ │ │ ├── eosio.abi │ │ │ ├── eosio.msig.abi │ │ │ ├── eosio.token.abi │ │ │ └── eosio.wrap.abi │ ├── include │ │ └── eosio │ │ │ └── trace_api │ │ │ ├── abi_data_handler.hpp │ │ │ ├── chain_extraction.hpp │ │ │ ├── common.hpp │ │ │ ├── compressed_file.hpp │ │ │ ├── configuration_utils.hpp │ │ │ ├── data_log.hpp │ │ │ ├── extract_util.hpp │ │ │ ├── metadata_log.hpp │ │ │ ├── request_handler.hpp │ │ │ ├── store_provider.hpp │ │ │ ├── trace.hpp │ │ │ └── trace_api_plugin.hpp │ ├── request_handler.cpp │ ├── store_provider.cpp │ ├── test │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── eosio │ │ │ │ └── trace_api │ │ │ │ └── test_common.hpp │ │ ├── main.cpp │ │ ├── test_compressed_file.cpp │ │ ├── test_configuration_utils.cpp │ │ ├── test_data_handlers.cpp │ │ ├── test_extraction.cpp │ │ ├── test_responses.cpp │ │ └── test_trace_file.cpp │ ├── trace_api.swagger.yaml │ ├── trace_api_plugin.cpp │ └── utils │ │ ├── CMakeLists.txt │ │ ├── compress_cmd.cpp │ │ ├── include │ │ └── eosio │ │ │ └── trace_api │ │ │ └── cmd_registration.hpp │ │ └── trace_api_util.cpp ├── wallet_api_plugin │ ├── CMakeLists.txt │ ├── include │ │ └── eosio │ │ │ └── wallet_api_plugin │ │ │ └── wallet_api_plugin.hpp │ └── wallet_api_plugin.cpp └── wallet_plugin │ ├── CMakeLists.txt │ ├── include │ └── eosio │ │ └── wallet_plugin │ │ ├── macos_user_auth.h │ │ ├── se_wallet.hpp │ │ ├── wallet.hpp │ │ ├── wallet_api.hpp │ │ ├── wallet_manager.hpp │ │ └── wallet_plugin.hpp │ ├── macos_user_auth.m │ ├── se_wallet.cpp │ ├── wallet.cpp │ ├── wallet_manager.cpp │ └── wallet_plugin.cpp ├── programs ├── CMakeLists.txt ├── cleos │ ├── CMakeLists.txt │ ├── LICENSE.CLI11 │ ├── config.hpp.in │ ├── do_http_post.hpp │ ├── do_http_post_libcurl.cpp │ ├── eosc.pot │ ├── help_text.cpp.in │ ├── help_text.hpp │ ├── httpc.cpp │ ├── httpc.hpp │ ├── localize.hpp │ └── main.cpp ├── keosd │ ├── CMakeLists.txt │ ├── config.hpp.in │ └── main.cpp ├── leap-util │ ├── CMakeLists.txt │ ├── actions │ │ ├── blocklog.cpp │ │ ├── blocklog.hpp │ │ ├── chain.cpp │ │ ├── chain.hpp │ │ ├── generic.cpp │ │ ├── generic.hpp │ │ ├── snapshot.cpp │ │ ├── snapshot.hpp │ │ ├── subcommand.cpp │ │ └── subcommand.hpp │ └── main.cpp └── nodeos │ ├── CMakeLists.txt │ ├── config.hpp.in │ ├── logging.json │ └── main.cpp ├── scripts ├── CMakeLists.txt ├── abi_is_json.py ├── install_testharness_symlinks.cmake ├── postinst ├── prerm └── submodule-regression-check.sh ├── tests ├── CMakeLists.txt ├── PerformanceHarness │ ├── CMakeLists.txt │ ├── NodeosPluginArgs │ │ ├── BasePluginArgs.py │ │ ├── CMakeLists.txt │ │ ├── __init__.py │ │ └── generate_nodeos_plugin_args_class_files.py │ ├── README.md │ ├── __init__.py │ ├── cpuTrxData.json │ ├── genesis.json │ ├── log_reader.py │ ├── performance_test.py │ ├── performance_test_basic.py │ ├── ph_op_modes.md │ ├── ramTrxData.json │ ├── readOnlySlowTrxData.json │ ├── readOnlyTrxData.json │ ├── userTrxDataNewAccount.json │ └── userTrxDataTransfer.json ├── PerformanceHarnessScenarioRunner.py ├── TestHarness │ ├── CMakeLists.txt │ ├── Cluster.py │ ├── Node.py │ ├── TestHelper.py │ ├── TransactionGeneratorsLauncher.py │ ├── WalletMgr.py │ ├── __init__.py │ ├── accounts.py │ ├── core_symbol.py.in │ ├── depresolver.py │ ├── interfaces.py │ ├── launcher.py │ ├── libc.py │ ├── logging-template.json │ ├── logging.py │ ├── queries.py │ ├── testUtils.py │ └── transactions.py ├── auto_bp_peering_test.py ├── auto_bp_peering_test_shape.json ├── block_log.cpp ├── block_log_retain_blocks_test.py ├── block_log_util_test.py ├── bridge_for_fork_test_shape.json ├── chain_plugin_tests.cpp ├── cli_test.py ├── cluster_launcher.py ├── compute_transaction_test.py ├── db_modes_test.sh ├── distributed-transactions-test.py ├── full-version-label.sh ├── gelf_test.py ├── get_account_test.py ├── get_producers_tests.cpp ├── get_table_seckey_tests.cpp ├── get_table_tests.cpp ├── http_plugin_test.py ├── impaired_network.py ├── keosd_auto_launch_test.py ├── lib_advance_test.py ├── light_validation_sync_test.py ├── lossy_network.py ├── main.cpp ├── nested_container_multi_index_test.py ├── nodeos_chainbase_allocation_test.py ├── nodeos_contrl_c_test.py ├── nodeos_extra_packed_data_test.py ├── nodeos_forked_chain_test.py ├── nodeos_high_transaction_test.py ├── nodeos_irreversible_mode_test.py ├── nodeos_multiple_version_protocol_feature_test.py ├── nodeos_producer_watermark_test.py ├── nodeos_protocol_feature_test.py ├── nodeos_read_terminate_at_block_test.py ├── nodeos_retry_transaction_test.py ├── nodeos_run_test.py ├── nodeos_short_fork_take_over_test.py ├── nodeos_snapshot_diff_test.py ├── nodeos_snapshot_forked_test.py ├── nodeos_startup_catchup.py ├── nodeos_under_min_avail_ram.py ├── nodeos_voting_test.py ├── p2p_high_latency_test.py ├── p2p_multiple_listen_test.py ├── p2p_no_listen_test.py ├── p2p_sync_throttle_test.py ├── p2p_sync_throttle_test_shape.json ├── p2p_test_peers.py ├── p2p_tests │ └── dawn_515 │ │ └── test.sh ├── plugin_http_api_test.py ├── prod_preactivation_test.py ├── read_only_trx_test.py ├── release-build.sh ├── resource_monitor_plugin_test.py ├── restart-scenarios-test.py ├── sample-cluster-map.json ├── ship_client.cpp ├── ship_log.cpp ├── ship_streamer.cpp ├── ship_streamer_test.py ├── ship_test.py ├── split_blocklog_replay_test.py ├── subjective_billing_test.py ├── terminate-scenarios-test.py ├── test_chain_plugin.cpp ├── test_read_only_trx.cpp ├── test_snapshot_information.cpp ├── test_snapshot_scheduler.cpp ├── trace_plugin_test.py ├── trans_sync_across_mixed_cluster_test.sh ├── trx_finality_status_forked_test.py ├── trx_finality_status_test.py ├── trx_generator │ ├── CMakeLists.txt │ ├── README.md │ ├── http_client_async.hpp │ ├── main.cpp │ ├── simple_rest_server.hpp │ ├── trx_generator.cpp │ ├── trx_generator.hpp │ ├── trx_generator_tests.cpp │ ├── trx_provider.cpp │ └── trx_provider.hpp ├── validate-dirty-db.py ├── version-label.sh └── wallet_tests.cpp ├── tools ├── CMakeLists.txt ├── ctestwrapper.sh ├── llvm-gcov.sh ├── mas_sign.sh ├── net-util.py ├── reproducible.Dockerfile ├── tweak-deb.sh └── validate_reflection.py ├── tutorials └── bios-boot-tutorial │ ├── .gitignore │ ├── README.md │ ├── accounts.json │ ├── bios-boot-tutorial.py │ └── genesis.json └── unittests ├── CMakeLists.txt ├── abi_tests.cpp ├── api_tests.cpp ├── auth_tests.cpp ├── block_log_extract.cpp ├── block_tests.cpp ├── block_timestamp_tests.cpp ├── bls_primitives_tests.cpp ├── bootseq_tests.cpp ├── chain_tests.cpp ├── contracts ├── 80k_deep_loop_with_ret.wasm ├── 80k_deep_loop_with_void.wasm ├── CMakeLists.txt ├── big_allocation.wasm ├── crash_section_size_too_big.wasm ├── deep_loops_ext_report.wasm ├── deep_nested.abi.hpp ├── eosio.mechanics │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── eosmechanics.abi │ ├── eosmechanics.cpp │ ├── eosmechanics.wasm │ ├── mech_actions.sh │ ├── mech_check.sh │ └── mech_loop.sh ├── eosio.msig │ ├── CMakeLists.txt │ ├── eosio.msig.abi │ ├── eosio.msig.cpp │ ├── eosio.msig.hpp │ └── eosio.msig.wasm ├── eosio.system │ ├── CMakeLists.txt │ ├── delegate_bandwidth.cpp │ ├── eosio.system.abi │ ├── eosio.system.cpp │ ├── eosio.system.hpp │ ├── eosio.system.wasm │ ├── exchange_state.cpp │ ├── exchange_state.hpp │ ├── native.hpp │ ├── producer_pay.cpp │ ├── rex.cpp │ └── voting.cpp ├── eosio.token │ ├── CMakeLists.txt │ ├── eosio.token.abi │ ├── eosio.token.bad.abi │ ├── eosio.token.cpp │ ├── eosio.token.hpp │ └── eosio.token.wasm ├── eosio.wrap │ ├── CMakeLists.txt │ ├── eosio.wrap.abi │ ├── eosio.wrap.cpp │ ├── eosio.wrap.hpp │ └── eosio.wrap.wasm ├── fuzz1.wasm ├── fuzz10.wasm ├── fuzz11.wasm ├── fuzz12.wasm ├── fuzz13.wasm ├── fuzz14.wasm ├── fuzz15.wasm ├── fuzz2.wasm ├── fuzz3.wasm ├── fuzz4.wasm ├── fuzz5.wasm ├── fuzz6.wasm ├── fuzz7.wasm ├── fuzz8.wasm ├── fuzz9.wasm ├── getcode_deepindent.wasm ├── indent-mismatch.wasm ├── jumborow │ ├── CMakeLists.txt │ ├── jumborow.abi │ ├── jumborow.wasm │ └── jumborow.wast ├── large_nested.abi.hpp ├── leak_no_destructor.wasm ├── leak_readExports.wasm ├── leak_readFunctions.wasm ├── leak_readFunctions_2.wasm ├── leak_readFunctions_3.wasm ├── leak_readGlobals.wasm ├── leak_readImports.wasm ├── leak_wasm_binary_cpp_L1249.wasm ├── locals-s.wasm ├── locals-yc.wasm ├── readFunctions_slowness_out_of_memory.wasm ├── slowwasm_localsets.wasm ├── test_softfloat_wasts.hpp └── test_wasts.hpp ├── crypto_primitives_tests.cpp ├── currency_tests.cpp ├── database_tests.cpp ├── deep-mind ├── deep-mind.hpp.in └── deep-mind.log ├── deep_mind_tests.cpp ├── delay_tests.cpp ├── dry_run_trx_tests.cpp ├── eosio.token_tests.cpp ├── eosio_system_tester.hpp ├── eosvmoc_limits_tests.cpp ├── fork_test_utilities.cpp ├── fork_test_utilities.hpp ├── forked_tests.cpp ├── gen_protocol_feature_digest_tests.py ├── get_block_num_tests.cpp ├── main.cpp ├── misc_tests.cpp ├── params_tests.cpp ├── partitioned_block_log_tests.cpp ├── payloadless_tests.cpp ├── plugin_tests.cpp ├── producer_schedule_tests.cpp ├── protocol_feature_tests.cpp ├── ram_tests.cpp ├── read_only_trx_tests.cpp ├── resource_limits_test.cpp ├── restart_chain_tests.cpp ├── snapshot_suites.hpp ├── snapshot_tests.cpp ├── snapshots.hpp.in ├── snapshots ├── CMakeLists.txt ├── blocks.index ├── blocks.log ├── prod_sched │ ├── README │ ├── blocks.index │ ├── blocks.log │ └── snapshot_tests.cpp.diff ├── snap_v2.bin.gz ├── snap_v2.bin.json.gz ├── snap_v2.json.gz ├── snap_v2_prod_sched.bin.gz ├── snap_v2_prod_sched.bin.json.gz ├── snap_v2_prod_sched.json.gz ├── snap_v3.bin.gz ├── snap_v3.bin.json.gz ├── snap_v3.json.gz ├── snap_v4.bin.gz ├── snap_v4.bin.json.gz ├── snap_v4.json.gz ├── snap_v5.bin.gz ├── snap_v5.bin.json.gz ├── snap_v5.json.gz ├── snap_v6.bin.gz ├── snap_v6.bin.json.gz └── snap_v6.json.gz ├── special_accounts_tests.cpp ├── state_history_tests.cpp ├── subjective_billing_tests.cpp ├── test-contracts ├── CMakeLists.txt ├── README.md ├── action_results │ ├── CMakeLists.txt │ ├── action_results.abi │ ├── action_results.cpp │ └── action_results.wasm ├── asserter │ ├── CMakeLists.txt │ ├── asserter.abi │ ├── asserter.cpp │ ├── asserter.hpp │ └── asserter.wasm ├── bls_primitives_test │ ├── CMakeLists.txt │ ├── bls_primitives_test.abi │ ├── bls_primitives_test.cpp │ ├── bls_primitives_test.hpp │ └── bls_primitives_test.wasm ├── crypto_primitives_test │ ├── CMakeLists.txt │ ├── crypto_primitives_test.abi │ ├── crypto_primitives_test.cpp │ ├── crypto_primitives_test.hpp │ └── crypto_primitives_test.wasm ├── deferred_test │ ├── CMakeLists.txt │ ├── deferred_test.abi │ ├── deferred_test.cpp │ ├── deferred_test.hpp │ └── deferred_test.wasm ├── get_block_num_test │ ├── CMakeLists.txt │ ├── get_block_num_test.abi │ ├── get_block_num_test.cpp │ ├── get_block_num_test.hpp │ └── get_block_num_test.wasm ├── get_sender_test │ ├── CMakeLists.txt │ ├── get_sender_test.abi │ ├── get_sender_test.cpp │ ├── get_sender_test.hpp │ └── get_sender_test.wasm ├── get_table_seckey_test │ ├── CMakeLists.txt │ ├── get_table_seckey_test.abi │ ├── get_table_seckey_test.cpp │ ├── get_table_seckey_test.hpp │ └── get_table_seckey_test.wasm ├── get_table_test │ ├── CMakeLists.txt │ ├── get_table_test.abi │ ├── get_table_test.cpp │ ├── get_table_test.hpp │ └── get_table_test.wasm ├── integration_test │ ├── CMakeLists.txt │ ├── integration_test.abi │ ├── integration_test.cpp │ ├── integration_test.hpp │ └── integration_test.wasm ├── nested_container_multi_index │ ├── CMakeLists.txt │ ├── nested_container_multi_index.abi │ ├── nested_container_multi_index.cpp │ └── nested_container_multi_index.wasm ├── no_auth_table │ ├── CMakeLists.txt │ ├── no_auth_table.abi │ ├── no_auth_table.cpp │ └── no_auth_table.wasm ├── noop │ ├── CMakeLists.txt │ ├── noop.abi │ ├── noop.cpp │ ├── noop.hpp │ └── noop.wasm ├── params_test │ ├── CMakeLists.txt │ ├── params_test.abi │ ├── params_test.cpp │ └── params_test.wasm ├── payloadless │ ├── CMakeLists.txt │ ├── payloadless.abi │ ├── payloadless.cpp │ ├── payloadless.hpp │ └── payloadless.wasm ├── proxy │ ├── CMakeLists.txt │ ├── proxy.abi │ ├── proxy.cpp │ ├── proxy.hpp │ └── proxy.wasm ├── ram_restrictions_test │ ├── CMakeLists.txt │ ├── ram_restrictions_test.abi │ ├── ram_restrictions_test.cpp │ ├── ram_restrictions_test.hpp │ └── ram_restrictions_test.wasm ├── reject_all │ ├── CMakeLists.txt │ ├── reject_all.cpp │ └── reject_all.wasm ├── restrict_action_test │ ├── CMakeLists.txt │ ├── restrict_action_test.abi │ ├── restrict_action_test.cpp │ ├── restrict_action_test.hpp │ └── restrict_action_test.wasm ├── snapshot_test │ ├── CMakeLists.txt │ ├── snapshot_test.abi │ ├── snapshot_test.cpp │ ├── snapshot_test.hpp │ └── snapshot_test.wasm ├── test_api │ ├── CMakeLists.txt │ ├── test_action.cpp │ ├── test_api.cpp │ ├── test_api.hpp │ ├── test_api.wasm │ ├── test_api_common.hpp │ ├── test_chain.cpp │ ├── test_checktime.cpp │ ├── test_crypto.cpp │ ├── test_datastream.cpp │ ├── test_permission.cpp │ ├── test_print.cpp │ ├── test_transaction.cpp │ └── test_types.cpp ├── test_api_db │ ├── CMakeLists.txt │ ├── test_api_db.abi │ ├── test_api_db.cpp │ ├── test_api_db.hpp │ └── test_api_db.wasm ├── test_api_multi_index │ ├── CMakeLists.txt │ ├── test_api_multi_index.abi │ ├── test_api_multi_index.cpp │ ├── test_api_multi_index.hpp │ └── test_api_multi_index.wasm ├── test_ram_limit │ ├── CMakeLists.txt │ ├── test_ram_limit.abi │ ├── test_ram_limit.cpp │ └── test_ram_limit.wasm └── wasm_config_bios │ ├── CMakeLists.txt │ ├── wasm_config_bios.abi │ ├── wasm_config_bios.cpp │ └── wasm_config_bios.wasm ├── test_cfd_transaction.cpp ├── test_cfd_transaction.hpp ├── test_chainbase_types.cpp ├── test_contracts.hpp.in ├── test_utils.hpp ├── unapplied_transaction_queue_tests.cpp ├── wasm-spec-tests ├── README.md ├── generated-tests │ ├── CMakeLists.txt │ ├── address.cpp │ ├── align.cpp │ ├── binary-leb128.cpp │ ├── binary.cpp │ ├── block.cpp │ ├── br.cpp │ ├── br_if.cpp │ ├── br_table.cpp │ ├── break-drop.cpp │ ├── call.cpp │ ├── call_indirect.cpp │ ├── const.cpp │ ├── conversions.cpp │ ├── custom.cpp │ ├── endianness.cpp │ ├── f32.cpp │ ├── f32_bitwise.cpp │ ├── f32_cmp.cpp │ ├── f64.cpp │ ├── f64_bitwise.cpp │ ├── f64_cmp.cpp │ ├── fac.cpp │ ├── float_exprs.cpp │ ├── float_literals.cpp │ ├── float_memory.cpp │ ├── float_misc.cpp │ ├── forward.cpp │ ├── func.cpp │ ├── func_ptrs.cpp │ ├── globals.cpp │ ├── i32.cpp │ ├── i64.cpp │ ├── if.cpp │ ├── int_exprs.cpp │ ├── int_literals.cpp │ ├── labels.cpp │ ├── left-to-right.cpp │ ├── load.cpp │ ├── local_get.cpp │ ├── local_set.cpp │ ├── local_tee.cpp │ ├── loop.cpp │ ├── main.cpp │ ├── memory.cpp │ ├── memory_grow.cpp │ ├── memory_redundancy.cpp │ ├── memory_size.cpp │ ├── memory_trap.cpp │ ├── nop.cpp │ ├── return.cpp │ ├── select.cpp │ ├── stack.cpp │ ├── start.cpp │ ├── store.cpp │ ├── switch.cpp │ ├── traps.cpp │ ├── type.cpp │ ├── unreachable.cpp │ ├── unwind.cpp │ ├── wasm_spec_tests.hpp.in │ └── wasms │ │ ├── address.0.wasm │ │ ├── address.2.wasm │ │ ├── address.3.wasm │ │ ├── address.4.wasm │ │ ├── align.0.wasm │ │ ├── align.1.wasm │ │ ├── align.10.wasm │ │ ├── align.106.wasm │ │ ├── align.107.wasm │ │ ├── align.11.wasm │ │ ├── align.12.wasm │ │ ├── align.13.wasm │ │ ├── align.14.wasm │ │ ├── align.15.wasm │ │ ├── align.16.wasm │ │ ├── align.17.wasm │ │ ├── align.18.wasm │ │ ├── align.19.wasm │ │ ├── align.2.wasm │ │ ├── align.20.wasm │ │ ├── align.21.wasm │ │ ├── align.22.wasm │ │ ├── align.3.wasm │ │ ├── align.4.wasm │ │ ├── align.5.wasm │ │ ├── align.6.wasm │ │ ├── align.7.wasm │ │ ├── align.8.wasm │ │ ├── align.9.wasm │ │ ├── binary-leb128.0.wasm │ │ ├── binary-leb128.1.wasm │ │ ├── binary-leb128.10.wasm │ │ ├── binary-leb128.11.wasm │ │ ├── binary-leb128.12.wasm │ │ ├── binary-leb128.13.wasm │ │ ├── binary-leb128.14.wasm │ │ ├── binary-leb128.15.wasm │ │ ├── binary-leb128.16.wasm │ │ ├── binary-leb128.17.wasm │ │ ├── binary-leb128.18.wasm │ │ ├── binary-leb128.19.wasm │ │ ├── binary-leb128.2.wasm │ │ ├── binary-leb128.20.wasm │ │ ├── binary-leb128.21.wasm │ │ ├── binary-leb128.22.wasm │ │ ├── binary-leb128.23.wasm │ │ ├── binary-leb128.24.wasm │ │ ├── binary-leb128.3.wasm │ │ ├── binary-leb128.4.wasm │ │ ├── binary-leb128.5.wasm │ │ ├── binary-leb128.6.wasm │ │ ├── binary-leb128.7.wasm │ │ ├── binary-leb128.8.wasm │ │ ├── binary-leb128.9.wasm │ │ ├── binary.0.wasm │ │ ├── binary.1.wasm │ │ ├── binary.2.wasm │ │ ├── binary.3.wasm │ │ ├── binary.48.wasm │ │ ├── binary.53.wasm │ │ ├── binary.54.wasm │ │ ├── block.0.wasm │ │ ├── br.0.wasm │ │ ├── br_if.0.wasm │ │ ├── br_table.0.wasm │ │ ├── break-drop.0.wasm │ │ ├── call.0.wasm │ │ ├── call_indirect.0.wasm │ │ ├── const.0.wasm │ │ ├── const.1.wasm │ │ ├── const.100.wasm │ │ ├── const.101.wasm │ │ ├── const.102.wasm │ │ ├── const.103.wasm │ │ ├── const.104.wasm │ │ ├── const.105.wasm │ │ ├── const.106.wasm │ │ ├── const.107.wasm │ │ ├── const.108.wasm │ │ ├── const.109.wasm │ │ ├── const.110.wasm │ │ ├── const.111.wasm │ │ ├── const.112.wasm │ │ ├── const.113.wasm │ │ ├── const.114.wasm │ │ ├── const.115.wasm │ │ ├── const.116.wasm │ │ ├── const.117.wasm │ │ ├── const.118.wasm │ │ ├── const.119.wasm │ │ ├── const.12.wasm │ │ ├── const.120.wasm │ │ ├── const.121.wasm │ │ ├── const.122.wasm │ │ ├── const.123.wasm │ │ ├── const.124.wasm │ │ ├── const.125.wasm │ │ ├── const.126.wasm │ │ ├── const.127.wasm │ │ ├── const.128.wasm │ │ ├── const.129.wasm │ │ ├── const.13.wasm │ │ ├── const.130.wasm │ │ ├── const.131.wasm │ │ ├── const.132.wasm │ │ ├── const.133.wasm │ │ ├── const.134.wasm │ │ ├── const.135.wasm │ │ ├── const.136.wasm │ │ ├── const.137.wasm │ │ ├── const.138.wasm │ │ ├── const.139.wasm │ │ ├── const.140.wasm │ │ ├── const.141.wasm │ │ ├── const.142.wasm │ │ ├── const.143.wasm │ │ ├── const.144.wasm │ │ ├── const.145.wasm │ │ ├── const.146.wasm │ │ ├── const.147.wasm │ │ ├── const.148.wasm │ │ ├── const.149.wasm │ │ ├── const.150.wasm │ │ ├── const.151.wasm │ │ ├── const.152.wasm │ │ ├── const.153.wasm │ │ ├── const.154.wasm │ │ ├── const.155.wasm │ │ ├── const.156.wasm │ │ ├── const.157.wasm │ │ ├── const.158.wasm │ │ ├── const.159.wasm │ │ ├── const.16.wasm │ │ ├── const.160.wasm │ │ ├── const.161.wasm │ │ ├── const.162.wasm │ │ ├── const.163.wasm │ │ ├── const.164.wasm │ │ ├── const.165.wasm │ │ ├── const.166.wasm │ │ ├── const.167.wasm │ │ ├── const.168.wasm │ │ ├── const.169.wasm │ │ ├── const.17.wasm │ │ ├── const.170.wasm │ │ ├── const.171.wasm │ │ ├── const.172.wasm │ │ ├── const.173.wasm │ │ ├── const.174.wasm │ │ ├── const.175.wasm │ │ ├── const.176.wasm │ │ ├── const.177.wasm │ │ ├── const.178.wasm │ │ ├── const.179.wasm │ │ ├── const.18.wasm │ │ ├── const.180.wasm │ │ ├── const.181.wasm │ │ ├── const.182.wasm │ │ ├── const.183.wasm │ │ ├── const.184.wasm │ │ ├── const.185.wasm │ │ ├── const.186.wasm │ │ ├── const.187.wasm │ │ ├── const.188.wasm │ │ ├── const.189.wasm │ │ ├── const.19.wasm │ │ ├── const.190.wasm │ │ ├── const.191.wasm │ │ ├── const.192.wasm │ │ ├── const.193.wasm │ │ ├── const.194.wasm │ │ ├── const.195.wasm │ │ ├── const.196.wasm │ │ ├── const.197.wasm │ │ ├── const.198.wasm │ │ ├── const.199.wasm │ │ ├── const.20.wasm │ │ ├── const.200.wasm │ │ ├── const.201.wasm │ │ ├── const.202.wasm │ │ ├── const.203.wasm │ │ ├── const.204.wasm │ │ ├── const.205.wasm │ │ ├── const.206.wasm │ │ ├── const.207.wasm │ │ ├── const.208.wasm │ │ ├── const.209.wasm │ │ ├── const.21.wasm │ │ ├── const.210.wasm │ │ ├── const.211.wasm │ │ ├── const.212.wasm │ │ ├── const.213.wasm │ │ ├── const.214.wasm │ │ ├── const.215.wasm │ │ ├── const.216.wasm │ │ ├── const.217.wasm │ │ ├── const.218.wasm │ │ ├── const.219.wasm │ │ ├── const.22.wasm │ │ ├── const.220.wasm │ │ ├── const.221.wasm │ │ ├── const.222.wasm │ │ ├── const.223.wasm │ │ ├── const.224.wasm │ │ ├── const.225.wasm │ │ ├── const.226.wasm │ │ ├── const.227.wasm │ │ ├── const.228.wasm │ │ ├── const.229.wasm │ │ ├── const.23.wasm │ │ ├── const.230.wasm │ │ ├── const.231.wasm │ │ ├── const.232.wasm │ │ ├── const.233.wasm │ │ ├── const.234.wasm │ │ ├── const.235.wasm │ │ ├── const.236.wasm │ │ ├── const.237.wasm │ │ ├── const.238.wasm │ │ ├── const.239.wasm │ │ ├── const.24.wasm │ │ ├── const.240.wasm │ │ ├── const.241.wasm │ │ ├── const.242.wasm │ │ ├── const.243.wasm │ │ ├── const.244.wasm │ │ ├── const.245.wasm │ │ ├── const.246.wasm │ │ ├── const.247.wasm │ │ ├── const.248.wasm │ │ ├── const.249.wasm │ │ ├── const.25.wasm │ │ ├── const.250.wasm │ │ ├── const.251.wasm │ │ ├── const.252.wasm │ │ ├── const.253.wasm │ │ ├── const.254.wasm │ │ ├── const.255.wasm │ │ ├── const.256.wasm │ │ ├── const.257.wasm │ │ ├── const.258.wasm │ │ ├── const.259.wasm │ │ ├── const.260.wasm │ │ ├── const.261.wasm │ │ ├── const.262.wasm │ │ ├── const.263.wasm │ │ ├── const.264.wasm │ │ ├── const.265.wasm │ │ ├── const.266.wasm │ │ ├── const.267.wasm │ │ ├── const.268.wasm │ │ ├── const.269.wasm │ │ ├── const.270.wasm │ │ ├── const.271.wasm │ │ ├── const.272.wasm │ │ ├── const.273.wasm │ │ ├── const.274.wasm │ │ ├── const.275.wasm │ │ ├── const.276.wasm │ │ ├── const.277.wasm │ │ ├── const.278.wasm │ │ ├── const.279.wasm │ │ ├── const.280.wasm │ │ ├── const.281.wasm │ │ ├── const.282.wasm │ │ ├── const.283.wasm │ │ ├── const.284.wasm │ │ ├── const.285.wasm │ │ ├── const.286.wasm │ │ ├── const.287.wasm │ │ ├── const.288.wasm │ │ ├── const.289.wasm │ │ ├── const.290.wasm │ │ ├── const.291.wasm │ │ ├── const.292.wasm │ │ ├── const.293.wasm │ │ ├── const.294.wasm │ │ ├── const.295.wasm │ │ ├── const.296.wasm │ │ ├── const.297.wasm │ │ ├── const.298.wasm │ │ ├── const.299.wasm │ │ ├── const.30.wasm │ │ ├── const.300.wasm │ │ ├── const.301.wasm │ │ ├── const.302.wasm │ │ ├── const.303.wasm │ │ ├── const.304.wasm │ │ ├── const.305.wasm │ │ ├── const.306.wasm │ │ ├── const.307.wasm │ │ ├── const.308.wasm │ │ ├── const.309.wasm │ │ ├── const.31.wasm │ │ ├── const.310.wasm │ │ ├── const.311.wasm │ │ ├── const.312.wasm │ │ ├── const.313.wasm │ │ ├── const.314.wasm │ │ ├── const.315.wasm │ │ ├── const.316.wasm │ │ ├── const.317.wasm │ │ ├── const.318.wasm │ │ ├── const.319.wasm │ │ ├── const.320.wasm │ │ ├── const.321.wasm │ │ ├── const.322.wasm │ │ ├── const.323.wasm │ │ ├── const.324.wasm │ │ ├── const.325.wasm │ │ ├── const.326.wasm │ │ ├── const.327.wasm │ │ ├── const.328.wasm │ │ ├── const.329.wasm │ │ ├── const.330.wasm │ │ ├── const.331.wasm │ │ ├── const.332.wasm │ │ ├── const.333.wasm │ │ ├── const.334.wasm │ │ ├── const.335.wasm │ │ ├── const.336.wasm │ │ ├── const.337.wasm │ │ ├── const.338.wasm │ │ ├── const.339.wasm │ │ ├── const.34.wasm │ │ ├── const.340.wasm │ │ ├── const.341.wasm │ │ ├── const.342.wasm │ │ ├── const.343.wasm │ │ ├── const.344.wasm │ │ ├── const.345.wasm │ │ ├── const.346.wasm │ │ ├── const.347.wasm │ │ ├── const.348.wasm │ │ ├── const.349.wasm │ │ ├── const.35.wasm │ │ ├── const.350.wasm │ │ ├── const.351.wasm │ │ ├── const.352.wasm │ │ ├── const.353.wasm │ │ ├── const.354.wasm │ │ ├── const.355.wasm │ │ ├── const.356.wasm │ │ ├── const.357.wasm │ │ ├── const.358.wasm │ │ ├── const.359.wasm │ │ ├── const.360.wasm │ │ ├── const.361.wasm │ │ ├── const.362.wasm │ │ ├── const.363.wasm │ │ ├── const.364.wasm │ │ ├── const.365.wasm │ │ ├── const.366.wasm │ │ ├── const.367.wasm │ │ ├── const.38.wasm │ │ ├── const.39.wasm │ │ ├── const.4.wasm │ │ ├── const.40.wasm │ │ ├── const.41.wasm │ │ ├── const.42.wasm │ │ ├── const.43.wasm │ │ ├── const.44.wasm │ │ ├── const.45.wasm │ │ ├── const.5.wasm │ │ ├── const.50.wasm │ │ ├── const.51.wasm │ │ ├── const.54.wasm │ │ ├── const.55.wasm │ │ ├── const.58.wasm │ │ ├── const.59.wasm │ │ ├── const.60.wasm │ │ ├── const.61.wasm │ │ ├── const.68.wasm │ │ ├── const.69.wasm │ │ ├── const.70.wasm │ │ ├── const.71.wasm │ │ ├── const.72.wasm │ │ ├── const.73.wasm │ │ ├── const.74.wasm │ │ ├── const.75.wasm │ │ ├── const.76.wasm │ │ ├── const.77.wasm │ │ ├── const.78.wasm │ │ ├── const.79.wasm │ │ ├── const.8.wasm │ │ ├── const.80.wasm │ │ ├── const.81.wasm │ │ ├── const.82.wasm │ │ ├── const.83.wasm │ │ ├── const.84.wasm │ │ ├── const.85.wasm │ │ ├── const.86.wasm │ │ ├── const.87.wasm │ │ ├── const.88.wasm │ │ ├── const.89.wasm │ │ ├── const.9.wasm │ │ ├── const.90.wasm │ │ ├── const.91.wasm │ │ ├── const.92.wasm │ │ ├── const.93.wasm │ │ ├── const.94.wasm │ │ ├── const.95.wasm │ │ ├── const.96.wasm │ │ ├── const.97.wasm │ │ ├── const.98.wasm │ │ ├── const.99.wasm │ │ ├── conversions.0.wasm │ │ ├── custom.0.wasm │ │ ├── custom.1.wasm │ │ ├── custom.2.wasm │ │ ├── endianness.0.wasm │ │ ├── f32.0.wasm │ │ ├── f32_bitwise.0.wasm │ │ ├── f32_cmp.0.wasm │ │ ├── f64.0.wasm │ │ ├── f64_bitwise.0.wasm │ │ ├── f64_cmp.0.wasm │ │ ├── fac.0.wasm │ │ ├── float_exprs.0.wasm │ │ ├── float_exprs.1.wasm │ │ ├── float_exprs.10.wasm │ │ ├── float_exprs.11.wasm │ │ ├── float_exprs.12.wasm │ │ ├── float_exprs.13.wasm │ │ ├── float_exprs.14.wasm │ │ ├── float_exprs.15.wasm │ │ ├── float_exprs.16.wasm │ │ ├── float_exprs.17.wasm │ │ ├── float_exprs.18.wasm │ │ ├── float_exprs.19.wasm │ │ ├── float_exprs.2.wasm │ │ ├── float_exprs.20.wasm │ │ ├── float_exprs.21.wasm │ │ ├── float_exprs.22.wasm │ │ ├── float_exprs.23.wasm │ │ ├── float_exprs.24.wasm │ │ ├── float_exprs.25.wasm │ │ ├── float_exprs.26.wasm │ │ ├── float_exprs.27.wasm │ │ ├── float_exprs.28.wasm │ │ ├── float_exprs.29.wasm │ │ ├── float_exprs.3.wasm │ │ ├── float_exprs.30.wasm │ │ ├── float_exprs.31.wasm │ │ ├── float_exprs.32.wasm │ │ ├── float_exprs.33.wasm │ │ ├── float_exprs.34.wasm │ │ ├── float_exprs.35.wasm │ │ ├── float_exprs.36.wasm │ │ ├── float_exprs.37.wasm │ │ ├── float_exprs.38.wasm │ │ ├── float_exprs.39.wasm │ │ ├── float_exprs.4.wasm │ │ ├── float_exprs.40.wasm │ │ ├── float_exprs.41.wasm │ │ ├── float_exprs.42.wasm │ │ ├── float_exprs.43.wasm │ │ ├── float_exprs.44.wasm │ │ ├── float_exprs.45.wasm │ │ ├── float_exprs.46.wasm │ │ ├── float_exprs.47.wasm │ │ ├── float_exprs.48.wasm │ │ ├── float_exprs.49.wasm │ │ ├── float_exprs.5.wasm │ │ ├── float_exprs.50.wasm │ │ ├── float_exprs.51.wasm │ │ ├── float_exprs.52.wasm │ │ ├── float_exprs.53.wasm │ │ ├── float_exprs.54.wasm │ │ ├── float_exprs.55.wasm │ │ ├── float_exprs.56.wasm │ │ ├── float_exprs.57.wasm │ │ ├── float_exprs.58.wasm │ │ ├── float_exprs.59.wasm │ │ ├── float_exprs.6.wasm │ │ ├── float_exprs.60.wasm │ │ ├── float_exprs.61.wasm │ │ ├── float_exprs.62.wasm │ │ ├── float_exprs.63.wasm │ │ ├── float_exprs.64.wasm │ │ ├── float_exprs.65.wasm │ │ ├── float_exprs.66.wasm │ │ ├── float_exprs.67.wasm │ │ ├── float_exprs.68.wasm │ │ ├── float_exprs.69.wasm │ │ ├── float_exprs.7.wasm │ │ ├── float_exprs.70.wasm │ │ ├── float_exprs.71.wasm │ │ ├── float_exprs.72.wasm │ │ ├── float_exprs.73.wasm │ │ ├── float_exprs.74.wasm │ │ ├── float_exprs.75.wasm │ │ ├── float_exprs.76.wasm │ │ ├── float_exprs.77.wasm │ │ ├── float_exprs.78.wasm │ │ ├── float_exprs.79.wasm │ │ ├── float_exprs.8.wasm │ │ ├── float_exprs.80.wasm │ │ ├── float_exprs.81.wasm │ │ ├── float_exprs.82.wasm │ │ ├── float_exprs.83.wasm │ │ ├── float_exprs.84.wasm │ │ ├── float_exprs.85.wasm │ │ ├── float_exprs.86.wasm │ │ ├── float_exprs.87.wasm │ │ ├── float_exprs.88.wasm │ │ ├── float_exprs.89.wasm │ │ ├── float_exprs.9.wasm │ │ ├── float_exprs.90.wasm │ │ ├── float_exprs.91.wasm │ │ ├── float_exprs.92.wasm │ │ ├── float_exprs.93.wasm │ │ ├── float_exprs.94.wasm │ │ ├── float_exprs.95.wasm │ │ ├── float_literals.0.wasm │ │ ├── float_literals.1.wasm │ │ ├── float_memory.0.wasm │ │ ├── float_memory.1.wasm │ │ ├── float_memory.2.wasm │ │ ├── float_memory.3.wasm │ │ ├── float_memory.4.wasm │ │ ├── float_memory.5.wasm │ │ ├── float_misc.0.wasm │ │ ├── forward.0.wasm │ │ ├── func.0.wasm │ │ ├── func.1.wasm │ │ ├── func.3.wasm │ │ ├── func_ptrs.0.wasm │ │ ├── func_ptrs.8.wasm │ │ ├── func_ptrs.9.wasm │ │ ├── globals.0.wasm │ │ ├── globals.17.wasm │ │ ├── i32.0.wasm │ │ ├── i64.0.wasm │ │ ├── if.0.wasm │ │ ├── int_exprs.0.wasm │ │ ├── int_exprs.1.wasm │ │ ├── int_exprs.10.wasm │ │ ├── int_exprs.11.wasm │ │ ├── int_exprs.12.wasm │ │ ├── int_exprs.13.wasm │ │ ├── int_exprs.14.wasm │ │ ├── int_exprs.15.wasm │ │ ├── int_exprs.16.wasm │ │ ├── int_exprs.17.wasm │ │ ├── int_exprs.18.wasm │ │ ├── int_exprs.2.wasm │ │ ├── int_exprs.3.wasm │ │ ├── int_exprs.4.wasm │ │ ├── int_exprs.5.wasm │ │ ├── int_exprs.6.wasm │ │ ├── int_exprs.7.wasm │ │ ├── int_exprs.8.wasm │ │ ├── int_exprs.9.wasm │ │ ├── int_literals.0.wasm │ │ ├── labels.0.wasm │ │ ├── left-to-right.0.wasm │ │ ├── load.0.wasm │ │ ├── local_get.0.wasm │ │ ├── local_set.0.wasm │ │ ├── local_tee.0.wasm │ │ ├── loop.0.wasm │ │ ├── memory.0.wasm │ │ ├── memory.1.wasm │ │ ├── memory.2.wasm │ │ ├── memory.25.wasm │ │ ├── memory.3.wasm │ │ ├── memory.6.wasm │ │ ├── memory.7.wasm │ │ ├── memory.8.wasm │ │ ├── memory_grow.0.wasm │ │ ├── memory_grow.1.wasm │ │ ├── memory_grow.2.wasm │ │ ├── memory_grow.3.wasm │ │ ├── memory_grow.4.wasm │ │ ├── memory_redundancy.0.wasm │ │ ├── memory_size.0.wasm │ │ ├── memory_size.1.wasm │ │ ├── memory_size.2.wasm │ │ ├── memory_size.3.wasm │ │ ├── memory_trap.0.wasm │ │ ├── memory_trap.1.wasm │ │ ├── nop.0.wasm │ │ ├── return.0.wasm │ │ ├── select.0.wasm │ │ ├── stack.0.wasm │ │ ├── stack.1.wasm │ │ ├── start.3.wasm │ │ ├── start.4.wasm │ │ ├── start.5.wasm │ │ ├── start.6.wasm │ │ ├── start.7.wasm │ │ ├── store.0.wasm │ │ ├── switch.0.wasm │ │ ├── traps.0.wasm │ │ ├── traps.1.wasm │ │ ├── traps.2.wasm │ │ ├── traps.3.wasm │ │ ├── type.0.wasm │ │ ├── unreachable.0.wasm │ │ └── unwind.0.wasm └── generator │ ├── CMakeLists.txt │ ├── altered-wasms │ ├── address │ │ ├── address.0.wasm │ │ ├── address.2.wasm │ │ ├── address.3.wasm │ │ ├── address.4.wasm │ │ └── notes.md │ ├── align │ │ ├── align.0.wasm │ │ ├── align.1.wasm │ │ ├── align.10.wasm │ │ ├── align.11.wasm │ │ ├── align.12.wasm │ │ ├── align.13.wasm │ │ ├── align.14.wasm │ │ ├── align.15.wasm │ │ ├── align.16.wasm │ │ ├── align.17.wasm │ │ ├── align.18.wasm │ │ ├── align.19.wasm │ │ ├── align.2.wasm │ │ ├── align.20.wasm │ │ ├── align.21.wasm │ │ ├── align.22.wasm │ │ ├── align.3.wasm │ │ ├── align.4.wasm │ │ ├── align.5.wasm │ │ ├── align.6.wasm │ │ ├── align.7.wasm │ │ ├── align.8.wasm │ │ ├── align.9.wasm │ │ └── notes.md │ ├── binary-leb128 │ │ ├── binary-leb128.10.wasm │ │ ├── binary-leb128.11.wasm │ │ ├── binary-leb128.12.wasm │ │ ├── binary-leb128.4.wasm │ │ └── notes.md │ ├── br_table │ │ ├── br_table.0.cpp │ │ ├── br_table.0.wasm │ │ └── notes.md │ ├── func_ptrs │ │ ├── func_ptrs.0.wasm │ │ └── notes.md │ ├── memory │ │ ├── memory.0.wasm │ │ ├── memory.1.wasm │ │ └── memory.3.wasm │ ├── memory_grow │ │ ├── memory_grow.0.cpp │ │ ├── memory_grow.0.wasm │ │ ├── memory_grow.1.cpp │ │ ├── memory_grow.1.wasm │ │ ├── memory_grow.2.cpp │ │ ├── memory_grow.2.wasm │ │ └── notes.md │ ├── memory_size │ │ ├── memory_size.0.cpp │ │ ├── memory_size.0.wasm │ │ ├── memory_size.2.cpp │ │ ├── memory_size.2.wasm │ │ └── notes.md │ └── start │ │ ├── notes.md │ │ ├── start.5.wasm │ │ ├── start.6.wasm │ │ └── start.7.wasm │ ├── compile_tests.py │ ├── eosio_test_generator.cpp │ ├── eosio_test_generator.hpp │ ├── eosio_wasm_spec_test_generator.cpp │ ├── generate_eosio_tests.py │ ├── generated_wasm.py │ ├── lookahead.py │ ├── picojson.hpp │ ├── regexes.py │ ├── setup_eosio_tests.py │ ├── test_wasm.py │ └── wasm.py ├── wasm_config_tests.cpp ├── wasm_tests.cpp └── whitelist_blacklist_tests.cpp /.cicd/defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/.cicd/defaults.json -------------------------------------------------------------------------------- /.cicd/platforms/asan.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/.cicd/platforms/asan.Dockerfile -------------------------------------------------------------------------------- /.cicd/platforms/asserton.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/.cicd/platforms/asserton.Dockerfile -------------------------------------------------------------------------------- /.cicd/platforms/ubsan.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/.cicd/platforms/ubsan.Dockerfile -------------------------------------------------------------------------------- /.cicd/platforms/ubuntu20.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/.cicd/platforms/ubuntu20.Dockerfile -------------------------------------------------------------------------------- /.cicd/platforms/ubuntu22.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/.cicd/platforms/ubuntu22.Dockerfile -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/build_base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/.github/workflows/build_base.yaml -------------------------------------------------------------------------------- /.github/workflows/jiraIssueCreator.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/.github/workflows/jiraIssueCreator.yml -------------------------------------------------------------------------------- /.github/workflows/label_new_issues.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/.github/workflows/label_new_issues.yaml -------------------------------------------------------------------------------- /.github/workflows/performance_harness_run.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/.github/workflows/performance_harness_run.yaml -------------------------------------------------------------------------------- /.github/workflows/ph_backward_compatibility.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/.github/workflows/ph_backward_compatibility.yaml -------------------------------------------------------------------------------- /.github/workflows/pinned_build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/.github/workflows/pinned_build.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/submod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/.github/workflows/submod.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakeModules/CMakeASM-LLVMWARInformation.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/CMakeModules/CMakeASM-LLVMWARInformation.cmake -------------------------------------------------------------------------------- /CMakeModules/CMakeTestASM-LLVMWARCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/CMakeModules/CMakeTestASM-LLVMWARCompiler.cmake -------------------------------------------------------------------------------- /CMakeModules/EosioCheckVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/CMakeModules/EosioCheckVersion.cmake -------------------------------------------------------------------------------- /CMakeModules/EosioTester.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/CMakeModules/EosioTester.cmake.in -------------------------------------------------------------------------------- /CMakeModules/EosioTesterBuild.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/CMakeModules/EosioTesterBuild.cmake.in -------------------------------------------------------------------------------- /CMakeModules/FindGperftools.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/CMakeModules/FindGperftools.cmake -------------------------------------------------------------------------------- /CMakeModules/MASSigning.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/CMakeModules/MASSigning.cmake -------------------------------------------------------------------------------- /CMakeModules/VersionUtils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/CMakeModules/VersionUtils.cmake -------------------------------------------------------------------------------- /CMakeModules/additionalPlugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/CMakeModules/additionalPlugins.cmake -------------------------------------------------------------------------------- /CMakeModules/doxygen.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/CMakeModules/doxygen.cmake -------------------------------------------------------------------------------- /CMakeModules/eosio-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/CMakeModules/eosio-config.cmake.in -------------------------------------------------------------------------------- /CMakeModules/leap-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/CMakeModules/leap-config.cmake.in -------------------------------------------------------------------------------- /CMakeModules/utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/CMakeModules/utils.cmake -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/README.md -------------------------------------------------------------------------------- /benchmark/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/benchmark/CMakeLists.txt -------------------------------------------------------------------------------- /benchmark/alt_bn_128.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/benchmark/alt_bn_128.cpp -------------------------------------------------------------------------------- /benchmark/benchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/benchmark/benchmark.cpp -------------------------------------------------------------------------------- /benchmark/benchmark.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/benchmark/benchmark.hpp -------------------------------------------------------------------------------- /benchmark/blake2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/benchmark/blake2.cpp -------------------------------------------------------------------------------- /benchmark/bls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/benchmark/bls.cpp -------------------------------------------------------------------------------- /benchmark/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/benchmark/hash.cpp -------------------------------------------------------------------------------- /benchmark/key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/benchmark/key.cpp -------------------------------------------------------------------------------- /benchmark/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/benchmark/main.cpp -------------------------------------------------------------------------------- /benchmark/modexp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/benchmark/modexp.cpp -------------------------------------------------------------------------------- /docs/00_install/01_build-from-source/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/docs/00_install/01_build-from-source/index.md -------------------------------------------------------------------------------- /docs/00_install/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/docs/00_install/index.md -------------------------------------------------------------------------------- /docs/01_nodeos/02_usage/00_nodeos-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/docs/01_nodeos/02_usage/00_nodeos-options.md -------------------------------------------------------------------------------- /docs/01_nodeos/02_usage/02_node-setups/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/docs/01_nodeos/02_usage/02_node-setups/index.md -------------------------------------------------------------------------------- /docs/01_nodeos/02_usage/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/docs/01_nodeos/02_usage/index.md -------------------------------------------------------------------------------- /docs/01_nodeos/03_plugins/chain_plugin/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/docs/01_nodeos/03_plugins/chain_plugin/index.md -------------------------------------------------------------------------------- /docs/01_nodeos/03_plugins/http_plugin/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/docs/01_nodeos/03_plugins/http_plugin/index.md -------------------------------------------------------------------------------- /docs/01_nodeos/03_plugins/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/docs/01_nodeos/03_plugins/index.md -------------------------------------------------------------------------------- /docs/01_nodeos/03_plugins/net_api_plugin/api-reference/index.md: -------------------------------------------------------------------------------- 1 | [Net API Reference](https://docs.eosnetwork.com/leap-plugins/latest/net.api/) 2 | -------------------------------------------------------------------------------- /docs/01_nodeos/03_plugins/net_plugin/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/docs/01_nodeos/03_plugins/net_plugin/index.md -------------------------------------------------------------------------------- /docs/01_nodeos/04_replays/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/docs/01_nodeos/04_replays/index.md -------------------------------------------------------------------------------- /docs/01_nodeos/05_rpc_apis/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/docs/01_nodeos/05_rpc_apis/index.md -------------------------------------------------------------------------------- /docs/01_nodeos/06_logging/01_logging-levels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/docs/01_nodeos/06_logging/01_logging-levels.md -------------------------------------------------------------------------------- /docs/01_nodeos/06_logging/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/docs/01_nodeos/06_logging/index.md -------------------------------------------------------------------------------- /docs/01_nodeos/07_concepts/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/docs/01_nodeos/07_concepts/index.md -------------------------------------------------------------------------------- /docs/01_nodeos/08_troubleshooting/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/docs/01_nodeos/08_troubleshooting/index.md -------------------------------------------------------------------------------- /docs/01_nodeos/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/docs/01_nodeos/index.md -------------------------------------------------------------------------------- /docs/02_cleos/02_how-to-guides/how-to-buy-ram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/docs/02_cleos/02_how-to-guides/how-to-buy-ram.md -------------------------------------------------------------------------------- /docs/02_cleos/02_how-to-guides/how-to-vote.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/docs/02_cleos/02_how-to-guides/how-to-vote.md -------------------------------------------------------------------------------- /docs/02_cleos/03_command-reference/create/key.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/docs/02_cleos/03_command-reference/create/key.md -------------------------------------------------------------------------------- /docs/02_cleos/03_command-reference/get/abi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/docs/02_cleos/03_command-reference/get/abi.md -------------------------------------------------------------------------------- /docs/02_cleos/03_command-reference/get/block.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/docs/02_cleos/03_command-reference/get/block.md -------------------------------------------------------------------------------- /docs/02_cleos/03_command-reference/get/code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/docs/02_cleos/03_command-reference/get/code.md -------------------------------------------------------------------------------- /docs/02_cleos/03_command-reference/get/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/docs/02_cleos/03_command-reference/get/index.md -------------------------------------------------------------------------------- /docs/02_cleos/03_command-reference/get/info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/docs/02_cleos/03_command-reference/get/info.md -------------------------------------------------------------------------------- /docs/02_cleos/03_command-reference/get/scope.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/docs/02_cleos/03_command-reference/get/scope.md -------------------------------------------------------------------------------- /docs/02_cleos/03_command-reference/get/table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/docs/02_cleos/03_command-reference/get/table.md -------------------------------------------------------------------------------- /docs/02_cleos/03_command-reference/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/docs/02_cleos/03_command-reference/index.md -------------------------------------------------------------------------------- /docs/02_cleos/03_command-reference/net/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/docs/02_cleos/03_command-reference/net/index.md -------------------------------------------------------------------------------- /docs/02_cleos/03_command-reference/net/peers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/docs/02_cleos/03_command-reference/net/peers.md -------------------------------------------------------------------------------- /docs/02_cleos/03_command-reference/net/status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/docs/02_cleos/03_command-reference/net/status.md -------------------------------------------------------------------------------- /docs/02_cleos/03_command-reference/push/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/docs/02_cleos/03_command-reference/push/index.md -------------------------------------------------------------------------------- /docs/02_cleos/03_command-reference/set/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/docs/02_cleos/03_command-reference/set/index.md -------------------------------------------------------------------------------- /docs/02_cleos/03_command-reference/sign.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/docs/02_cleos/03_command-reference/sign.md -------------------------------------------------------------------------------- /docs/02_cleos/03_command-reference/transfer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/docs/02_cleos/03_command-reference/transfer.md -------------------------------------------------------------------------------- /docs/02_cleos/04_troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/docs/02_cleos/04_troubleshooting.md -------------------------------------------------------------------------------- /docs/02_cleos/05_FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/docs/02_cleos/05_FAQ.md -------------------------------------------------------------------------------- /docs/02_cleos/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/docs/02_cleos/index.md -------------------------------------------------------------------------------- /docs/03_keosd/10_usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/docs/03_keosd/10_usage.md -------------------------------------------------------------------------------- /docs/03_keosd/15_plugins/http_plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/docs/03_keosd/15_plugins/http_plugin.md -------------------------------------------------------------------------------- /docs/03_keosd/15_plugins/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/docs/03_keosd/15_plugins/index.md -------------------------------------------------------------------------------- /docs/03_keosd/15_plugins/wallet_plugin/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/docs/03_keosd/15_plugins/wallet_plugin/index.md -------------------------------------------------------------------------------- /docs/03_keosd/20_security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/docs/03_keosd/20_security.md -------------------------------------------------------------------------------- /docs/03_keosd/35_wallet-specification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/docs/03_keosd/35_wallet-specification.md -------------------------------------------------------------------------------- /docs/03_keosd/40_troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/docs/03_keosd/40_troubleshooting.md -------------------------------------------------------------------------------- /docs/03_keosd/50_FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/docs/03_keosd/50_FAQ.md -------------------------------------------------------------------------------- /docs/03_keosd/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/docs/03_keosd/index.md -------------------------------------------------------------------------------- /docs/10_utilities/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/docs/10_utilities/index.md -------------------------------------------------------------------------------- /docs/10_utilities/trace_api_util.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/docs/10_utilities/trace_api_util.md -------------------------------------------------------------------------------- /docs/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/docs/doxygen.css -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/leap_components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/docs/leap_components.png -------------------------------------------------------------------------------- /eos.doxygen.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/eos.doxygen.in -------------------------------------------------------------------------------- /eosio.version.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/eosio.version.in -------------------------------------------------------------------------------- /images/eos-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/images/eos-logo.png -------------------------------------------------------------------------------- /images/mesh.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/images/mesh.dot -------------------------------------------------------------------------------- /images/mesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/images/mesh.png -------------------------------------------------------------------------------- /images/ring.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/images/ring.dot -------------------------------------------------------------------------------- /images/ring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/images/ring.png -------------------------------------------------------------------------------- /images/star.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/images/star.dot -------------------------------------------------------------------------------- /images/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/images/star.png -------------------------------------------------------------------------------- /images/testnet-diagrams.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/images/testnet-diagrams.sh -------------------------------------------------------------------------------- /libraries/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/builtins/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/builtins/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/builtins/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/builtins/README.txt -------------------------------------------------------------------------------- /libraries/builtins/compiler_builtins.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/builtins/compiler_builtins.hpp -------------------------------------------------------------------------------- /libraries/builtins/fixdfti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/builtins/fixdfti.c -------------------------------------------------------------------------------- /libraries/builtins/fixsfti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/builtins/fixsfti.c -------------------------------------------------------------------------------- /libraries/builtins/fixtfti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/builtins/fixtfti.c -------------------------------------------------------------------------------- /libraries/builtins/fixunsdfti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/builtins/fixunsdfti.c -------------------------------------------------------------------------------- /libraries/builtins/fixunssfti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/builtins/fixunssfti.c -------------------------------------------------------------------------------- /libraries/builtins/fixunstfti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/builtins/fixunstfti.c -------------------------------------------------------------------------------- /libraries/builtins/floattidf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/builtins/floattidf.c -------------------------------------------------------------------------------- /libraries/builtins/floatuntidf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/builtins/floatuntidf.c -------------------------------------------------------------------------------- /libraries/builtins/fp128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/builtins/fp128.h -------------------------------------------------------------------------------- /libraries/builtins/fp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/builtins/fp32.h -------------------------------------------------------------------------------- /libraries/builtins/fp64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/builtins/fp64.h -------------------------------------------------------------------------------- /libraries/builtins/int_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/builtins/int_t.h -------------------------------------------------------------------------------- /libraries/chain/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/chain/abi_serializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/abi_serializer.cpp -------------------------------------------------------------------------------- /libraries/chain/apply_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/apply_context.cpp -------------------------------------------------------------------------------- /libraries/chain/asset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/asset.cpp -------------------------------------------------------------------------------- /libraries/chain/authority.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/authority.cpp -------------------------------------------------------------------------------- /libraries/chain/authorization_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/authorization_manager.cpp -------------------------------------------------------------------------------- /libraries/chain/block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/block.cpp -------------------------------------------------------------------------------- /libraries/chain/block_header.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/block_header.cpp -------------------------------------------------------------------------------- /libraries/chain/block_header_state_legacy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/block_header_state_legacy.cpp -------------------------------------------------------------------------------- /libraries/chain/block_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/block_log.cpp -------------------------------------------------------------------------------- /libraries/chain/block_state_legacy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/block_state_legacy.cpp -------------------------------------------------------------------------------- /libraries/chain/chain_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/chain_config.cpp -------------------------------------------------------------------------------- /libraries/chain/chain_id_type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/chain_id_type.cpp -------------------------------------------------------------------------------- /libraries/chain/controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/controller.cpp -------------------------------------------------------------------------------- /libraries/chain/deep_mind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/deep_mind.cpp -------------------------------------------------------------------------------- /libraries/chain/eosio_contract.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/eosio_contract.cpp -------------------------------------------------------------------------------- /libraries/chain/eosio_contract_abi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/eosio_contract_abi.cpp -------------------------------------------------------------------------------- /libraries/chain/eosio_contract_abi_bin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/eosio_contract_abi_bin.cpp -------------------------------------------------------------------------------- /libraries/chain/fork_database.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/fork_database.cpp -------------------------------------------------------------------------------- /libraries/chain/genesis_intrinsics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/genesis_intrinsics.cpp -------------------------------------------------------------------------------- /libraries/chain/genesis_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/genesis_state.cpp -------------------------------------------------------------------------------- /libraries/chain/genesis_state_root_key.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/genesis_state_root_key.cpp.in -------------------------------------------------------------------------------- /libraries/chain/include/eosio/chain/abi_def.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/include/eosio/chain/abi_def.hpp -------------------------------------------------------------------------------- /libraries/chain/include/eosio/chain/action.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/include/eosio/chain/action.hpp -------------------------------------------------------------------------------- /libraries/chain/include/eosio/chain/asset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/include/eosio/chain/asset.hpp -------------------------------------------------------------------------------- /libraries/chain/include/eosio/chain/block.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/include/eosio/chain/block.hpp -------------------------------------------------------------------------------- /libraries/chain/include/eosio/chain/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/include/eosio/chain/config.hpp -------------------------------------------------------------------------------- /libraries/chain/include/eosio/chain/merkle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/include/eosio/chain/merkle.hpp -------------------------------------------------------------------------------- /libraries/chain/include/eosio/chain/name.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/include/eosio/chain/name.hpp -------------------------------------------------------------------------------- /libraries/chain/include/eosio/chain/protocol.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | -------------------------------------------------------------------------------- /libraries/chain/include/eosio/chain/snapshot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/include/eosio/chain/snapshot.hpp -------------------------------------------------------------------------------- /libraries/chain/include/eosio/chain/symbol.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/include/eosio/chain/symbol.hpp -------------------------------------------------------------------------------- /libraries/chain/include/eosio/chain/trace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/include/eosio/chain/trace.hpp -------------------------------------------------------------------------------- /libraries/chain/include/eosio/chain/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/include/eosio/chain/types.hpp -------------------------------------------------------------------------------- /libraries/chain/merkle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/merkle.cpp -------------------------------------------------------------------------------- /libraries/chain/name.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/name.cpp -------------------------------------------------------------------------------- /libraries/chain/platform_timer_accuracy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/platform_timer_accuracy.cpp -------------------------------------------------------------------------------- /libraries/chain/platform_timer_asio_fallback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/platform_timer_asio_fallback.cpp -------------------------------------------------------------------------------- /libraries/chain/platform_timer_kqueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/platform_timer_kqueue.cpp -------------------------------------------------------------------------------- /libraries/chain/platform_timer_posix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/platform_timer_posix.cpp -------------------------------------------------------------------------------- /libraries/chain/platform_timer_posix_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/platform_timer_posix_test.c -------------------------------------------------------------------------------- /libraries/chain/producer_schedule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/producer_schedule.cpp -------------------------------------------------------------------------------- /libraries/chain/protocol_feature_activation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/protocol_feature_activation.cpp -------------------------------------------------------------------------------- /libraries/chain/protocol_feature_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/protocol_feature_manager.cpp -------------------------------------------------------------------------------- /libraries/chain/protocol_state_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/protocol_state_object.cpp -------------------------------------------------------------------------------- /libraries/chain/resource_limits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/resource_limits.cpp -------------------------------------------------------------------------------- /libraries/chain/snapshot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/snapshot.cpp -------------------------------------------------------------------------------- /libraries/chain/snapshot_scheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/snapshot_scheduler.cpp -------------------------------------------------------------------------------- /libraries/chain/symbol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/symbol.cpp -------------------------------------------------------------------------------- /libraries/chain/thread_utils.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/chain/trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/trace.cpp -------------------------------------------------------------------------------- /libraries/chain/transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/transaction.cpp -------------------------------------------------------------------------------- /libraries/chain/transaction_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/transaction_context.cpp -------------------------------------------------------------------------------- /libraries/chain/transaction_metadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/transaction_metadata.cpp -------------------------------------------------------------------------------- /libraries/chain/wasm_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/wasm_config.cpp -------------------------------------------------------------------------------- /libraries/chain/wasm_eosio_binary_ops.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/wasm_eosio_binary_ops.cpp -------------------------------------------------------------------------------- /libraries/chain/wasm_eosio_injection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/wasm_eosio_injection.cpp -------------------------------------------------------------------------------- /libraries/chain/wasm_eosio_validation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/wasm_eosio_validation.cpp -------------------------------------------------------------------------------- /libraries/chain/wasm_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/wasm_interface.cpp -------------------------------------------------------------------------------- /libraries/chain/wast_to_wasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/wast_to_wasm.cpp -------------------------------------------------------------------------------- /libraries/chain/webassembly/action.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/webassembly/action.cpp -------------------------------------------------------------------------------- /libraries/chain/webassembly/authorization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/webassembly/authorization.cpp -------------------------------------------------------------------------------- /libraries/chain/webassembly/cf_system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/webassembly/cf_system.cpp -------------------------------------------------------------------------------- /libraries/chain/webassembly/cf_transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/webassembly/cf_transaction.cpp -------------------------------------------------------------------------------- /libraries/chain/webassembly/console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/webassembly/console.cpp -------------------------------------------------------------------------------- /libraries/chain/webassembly/context_free.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/webassembly/context_free.cpp -------------------------------------------------------------------------------- /libraries/chain/webassembly/crypto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/webassembly/crypto.cpp -------------------------------------------------------------------------------- /libraries/chain/webassembly/database.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/webassembly/database.cpp -------------------------------------------------------------------------------- /libraries/chain/webassembly/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/webassembly/memory.cpp -------------------------------------------------------------------------------- /libraries/chain/webassembly/permission.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/webassembly/permission.cpp -------------------------------------------------------------------------------- /libraries/chain/webassembly/privileged.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/webassembly/privileged.cpp -------------------------------------------------------------------------------- /libraries/chain/webassembly/producer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/webassembly/producer.cpp -------------------------------------------------------------------------------- /libraries/chain/webassembly/runtimes/eos-vm-oc/llvmWARshim.llvmwar: -------------------------------------------------------------------------------- 1 | llvmWARshim.cpp -------------------------------------------------------------------------------- /libraries/chain/webassembly/runtimes/eos-vm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/webassembly/runtimes/eos-vm.cpp -------------------------------------------------------------------------------- /libraries/chain/webassembly/softfloat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/webassembly/softfloat.cpp -------------------------------------------------------------------------------- /libraries/chain/webassembly/system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/webassembly/system.cpp -------------------------------------------------------------------------------- /libraries/chain/webassembly/transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/webassembly/transaction.cpp -------------------------------------------------------------------------------- /libraries/chain/whitelisted_intrinsics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/chain/whitelisted_intrinsics.cpp -------------------------------------------------------------------------------- /libraries/cli11/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/cli11/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/cli11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/cli11/README.md -------------------------------------------------------------------------------- /libraries/custom_appbase/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/custom_appbase/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/custom_appbase/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/custom_appbase/tests/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/libfc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/libfc/include/fc/aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/aligned.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/array.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/bitutil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/bitutil.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/byteswap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/byteswap.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/compress/zlib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/compress/zlib.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/container/flat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/container/flat.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/crypto/aes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/crypto/aes.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/crypto/base58.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/crypto/base58.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/crypto/base64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/crypto/base64.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/crypto/bigint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/crypto/bigint.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/crypto/blake2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/crypto/blake2.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/crypto/city.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/crypto/city.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/crypto/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/crypto/common.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/crypto/digest.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/crypto/digest.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/crypto/elliptic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/crypto/elliptic.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/crypto/hex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/crypto/hex.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/crypto/hmac.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/crypto/hmac.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/crypto/k1_recover.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/crypto/k1_recover.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/crypto/openssl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/crypto/openssl.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/crypto/public_key.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/crypto/public_key.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/crypto/rand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/crypto/rand.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/crypto/ripemd160.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/crypto/ripemd160.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/crypto/sha1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/crypto/sha1.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/crypto/sha224.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/crypto/sha224.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/crypto/sha256.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/crypto/sha256.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/crypto/sha3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/crypto/sha3.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/crypto/sha512.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/crypto/sha512.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/crypto/signature.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/crypto/signature.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/filesystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/filesystem.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/fixed_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/fixed_string.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/fwd.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/fwd_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/fwd_impl.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/git_revision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/git_revision.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/io/cfile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/io/cfile.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/io/console.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/io/console.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/io/datastream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/io/datastream.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/io/enum_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/io/enum_type.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/io/fstream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/io/fstream.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/io/incbin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/io/incbin.h -------------------------------------------------------------------------------- /libraries/libfc/include/fc/io/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/io/json.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/io/json_relaxed.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/io/json_relaxed.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/io/raw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/io/raw.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/io/raw_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/io/raw_fwd.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/io/raw_variant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/io/raw_variant.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/io/varint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/io/varint.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/log/appender.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/log/appender.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/log/log_message.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/log/log_message.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/log/logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/log/logger.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/mock_time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/mock_time.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/mutex.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/network/url.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/network/url.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/reflect/reflect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/reflect/reflect.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/reflect/variant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/reflect/variant.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/safe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/safe.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/scoped_exit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/scoped_exit.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/static_variant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/static_variant.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/string.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/time.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/uint128.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/uint128.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/utf8.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/utf8.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/utility.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/variant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/variant.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/variant_object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/include/fc/variant_object.hpp -------------------------------------------------------------------------------- /libraries/libfc/include/fc/vector.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | -------------------------------------------------------------------------------- /libraries/libfc/secp256k1/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/secp256k1/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/libfc/src/compress/zlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/src/compress/zlib.cpp -------------------------------------------------------------------------------- /libraries/libfc/src/crypto/_digest_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/src/crypto/_digest_common.cpp -------------------------------------------------------------------------------- /libraries/libfc/src/crypto/_digest_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/src/crypto/_digest_common.hpp -------------------------------------------------------------------------------- /libraries/libfc/src/crypto/aes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/src/crypto/aes.cpp -------------------------------------------------------------------------------- /libraries/libfc/src/crypto/base58.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/src/crypto/base58.cpp -------------------------------------------------------------------------------- /libraries/libfc/src/crypto/base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/src/crypto/base64.cpp -------------------------------------------------------------------------------- /libraries/libfc/src/crypto/bigint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/src/crypto/bigint.cpp -------------------------------------------------------------------------------- /libraries/libfc/src/crypto/blake2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/src/crypto/blake2.cpp -------------------------------------------------------------------------------- /libraries/libfc/src/crypto/city.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/src/crypto/city.cpp -------------------------------------------------------------------------------- /libraries/libfc/src/crypto/crc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/src/crypto/crc.cpp -------------------------------------------------------------------------------- /libraries/libfc/src/crypto/elliptic_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/src/crypto/elliptic_common.cpp -------------------------------------------------------------------------------- /libraries/libfc/src/crypto/elliptic_r1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/src/crypto/elliptic_r1.cpp -------------------------------------------------------------------------------- /libraries/libfc/src/crypto/hex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/src/crypto/hex.cpp -------------------------------------------------------------------------------- /libraries/libfc/src/crypto/k1_recover.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/src/crypto/k1_recover.cpp -------------------------------------------------------------------------------- /libraries/libfc/src/crypto/private_key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/src/crypto/private_key.cpp -------------------------------------------------------------------------------- /libraries/libfc/src/crypto/public_key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/src/crypto/public_key.cpp -------------------------------------------------------------------------------- /libraries/libfc/src/crypto/rand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/src/crypto/rand.cpp -------------------------------------------------------------------------------- /libraries/libfc/src/crypto/ripemd160.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/src/crypto/ripemd160.cpp -------------------------------------------------------------------------------- /libraries/libfc/src/crypto/sha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/src/crypto/sha1.cpp -------------------------------------------------------------------------------- /libraries/libfc/src/crypto/sha224.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/src/crypto/sha224.cpp -------------------------------------------------------------------------------- /libraries/libfc/src/crypto/sha256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/src/crypto/sha256.cpp -------------------------------------------------------------------------------- /libraries/libfc/src/crypto/sha3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/src/crypto/sha3.cpp -------------------------------------------------------------------------------- /libraries/libfc/src/crypto/sha512.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/src/crypto/sha512.cpp -------------------------------------------------------------------------------- /libraries/libfc/src/crypto/signature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/src/crypto/signature.cpp -------------------------------------------------------------------------------- /libraries/libfc/src/exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/src/exception.cpp -------------------------------------------------------------------------------- /libraries/libfc/src/filesystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/src/filesystem.cpp -------------------------------------------------------------------------------- /libraries/libfc/src/git_revision.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/src/git_revision.cpp.in -------------------------------------------------------------------------------- /libraries/libfc/src/io/buffered_iostream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/src/io/buffered_iostream.cpp -------------------------------------------------------------------------------- /libraries/libfc/src/io/console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/src/io/console.cpp -------------------------------------------------------------------------------- /libraries/libfc/src/io/datastream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/src/io/datastream.cpp -------------------------------------------------------------------------------- /libraries/libfc/src/io/fstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/src/io/fstream.cpp -------------------------------------------------------------------------------- /libraries/libfc/src/io/json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/src/io/json.cpp -------------------------------------------------------------------------------- /libraries/libfc/src/io/sstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/src/io/sstream.cpp -------------------------------------------------------------------------------- /libraries/libfc/src/io/varint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/src/io/varint.cpp -------------------------------------------------------------------------------- /libraries/libfc/src/log/appender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/src/log/appender.cpp -------------------------------------------------------------------------------- /libraries/libfc/src/log/console_appender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/src/log/console_appender.cpp -------------------------------------------------------------------------------- /libraries/libfc/src/log/console_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/src/log/console_defines.h -------------------------------------------------------------------------------- /libraries/libfc/src/log/dmlog_appender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/src/log/dmlog_appender.cpp -------------------------------------------------------------------------------- /libraries/libfc/src/log/gelf_appender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/src/log/gelf_appender.cpp -------------------------------------------------------------------------------- /libraries/libfc/src/log/log_message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/src/log/log_message.cpp -------------------------------------------------------------------------------- /libraries/libfc/src/log/logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/src/log/logger.cpp -------------------------------------------------------------------------------- /libraries/libfc/src/log/logger_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/src/log/logger_config.cpp -------------------------------------------------------------------------------- /libraries/libfc/src/mock_time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/src/mock_time.cpp -------------------------------------------------------------------------------- /libraries/libfc/src/network/url.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/src/network/url.cpp -------------------------------------------------------------------------------- /libraries/libfc/src/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/src/string.cpp -------------------------------------------------------------------------------- /libraries/libfc/src/thread/asio/yield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/src/thread/asio/yield.hpp -------------------------------------------------------------------------------- /libraries/libfc/src/time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/src/time.cpp -------------------------------------------------------------------------------- /libraries/libfc/src/uint128.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/src/uint128.cpp -------------------------------------------------------------------------------- /libraries/libfc/src/utf8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/src/utf8.cpp -------------------------------------------------------------------------------- /libraries/libfc/src/utf8/ReleaseNotes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/src/utf8/ReleaseNotes -------------------------------------------------------------------------------- /libraries/libfc/src/utf8/checked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/src/utf8/checked.h -------------------------------------------------------------------------------- /libraries/libfc/src/utf8/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/src/utf8/core.h -------------------------------------------------------------------------------- /libraries/libfc/src/utf8/unchecked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/src/utf8/unchecked.h -------------------------------------------------------------------------------- /libraries/libfc/src/utf8/utf8cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/src/utf8/utf8cpp.html -------------------------------------------------------------------------------- /libraries/libfc/src/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/src/variant.cpp -------------------------------------------------------------------------------- /libraries/libfc/src/variant_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/src/variant_object.cpp -------------------------------------------------------------------------------- /libraries/libfc/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/test/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/libfc/test/crypto/test_blake2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/test/crypto/test_blake2.cpp -------------------------------------------------------------------------------- /libraries/libfc/test/crypto/test_bls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/test/crypto/test_bls.cpp -------------------------------------------------------------------------------- /libraries/libfc/test/crypto/test_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/test/crypto/test_utils.hpp -------------------------------------------------------------------------------- /libraries/libfc/test/crypto/test_webauthn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/test/crypto/test_webauthn.cpp -------------------------------------------------------------------------------- /libraries/libfc/test/io/test_cfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/test/io/test_cfile.cpp -------------------------------------------------------------------------------- /libraries/libfc/test/io/test_json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/test/io/test_json.cpp -------------------------------------------------------------------------------- /libraries/libfc/test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/test/main.cpp -------------------------------------------------------------------------------- /libraries/libfc/test/test_base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/test/test_base64.cpp -------------------------------------------------------------------------------- /libraries/libfc/test/test_escape_str.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/test/test_escape_str.cpp -------------------------------------------------------------------------------- /libraries/libfc/test/variant/test_variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/libfc/test/variant/test_variant.cpp -------------------------------------------------------------------------------- /libraries/prometheus/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/prometheus/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/state_history/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/state_history/.clang-format -------------------------------------------------------------------------------- /libraries/state_history/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/state_history/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/state_history/abi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/state_history/abi.cpp -------------------------------------------------------------------------------- /libraries/state_history/compression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/state_history/compression.cpp -------------------------------------------------------------------------------- /libraries/state_history/create_deltas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/state_history/create_deltas.cpp -------------------------------------------------------------------------------- /libraries/state_history/trace_converter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/state_history/trace_converter.cpp -------------------------------------------------------------------------------- /libraries/testing/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/testing/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/testing/contracts.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/testing/contracts.cpp.in -------------------------------------------------------------------------------- /libraries/testing/contracts.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/testing/contracts.hpp.in -------------------------------------------------------------------------------- /libraries/testing/contracts/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/testing/contracts/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/testing/tester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/testing/tester.cpp -------------------------------------------------------------------------------- /libraries/testing/tester_network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/testing/tester_network.cpp -------------------------------------------------------------------------------- /libraries/version/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/version/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/version/src/version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/version/src/version.cpp -------------------------------------------------------------------------------- /libraries/version/src/version_impl.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/version/src/version_impl.cpp.in -------------------------------------------------------------------------------- /libraries/version/src/version_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/version/src/version_impl.hpp -------------------------------------------------------------------------------- /libraries/wasm-jit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/wasm-jit/Include/IR/IR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Include/IR/IR.h -------------------------------------------------------------------------------- /libraries/wasm-jit/Include/IR/Module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Include/IR/Module.h -------------------------------------------------------------------------------- /libraries/wasm-jit/Include/IR/Operators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Include/IR/Operators.h -------------------------------------------------------------------------------- /libraries/wasm-jit/Include/IR/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Include/IR/Types.h -------------------------------------------------------------------------------- /libraries/wasm-jit/Include/IR/Validate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Include/IR/Validate.h -------------------------------------------------------------------------------- /libraries/wasm-jit/Include/Inline/BasicTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Include/Inline/BasicTypes.h -------------------------------------------------------------------------------- /libraries/wasm-jit/Include/Inline/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Include/Inline/Errors.h -------------------------------------------------------------------------------- /libraries/wasm-jit/Include/Inline/Floats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Include/Inline/Floats.h -------------------------------------------------------------------------------- /libraries/wasm-jit/Include/Inline/Timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Include/Inline/Timing.h -------------------------------------------------------------------------------- /libraries/wasm-jit/Include/Inline/UTF8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Include/Inline/UTF8.h -------------------------------------------------------------------------------- /libraries/wasm-jit/Include/Logging/Logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Include/Logging/Logging.h -------------------------------------------------------------------------------- /libraries/wasm-jit/Include/Platform/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Include/Platform/Platform.h -------------------------------------------------------------------------------- /libraries/wasm-jit/Include/WASM/WASM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Include/WASM/WASM.h -------------------------------------------------------------------------------- /libraries/wasm-jit/Include/WAST/WAST.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Include/WAST/WAST.h -------------------------------------------------------------------------------- /libraries/wasm-jit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/LICENSE -------------------------------------------------------------------------------- /libraries/wasm-jit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/README.md -------------------------------------------------------------------------------- /libraries/wasm-jit/Source/IR/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Source/IR/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/wasm-jit/Source/IR/Operators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Source/IR/Operators.cpp -------------------------------------------------------------------------------- /libraries/wasm-jit/Source/IR/Types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Source/IR/Types.cpp -------------------------------------------------------------------------------- /libraries/wasm-jit/Source/IR/Validate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Source/IR/Validate.cpp -------------------------------------------------------------------------------- /libraries/wasm-jit/Source/Logging/Logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Source/Logging/Logging.cpp -------------------------------------------------------------------------------- /libraries/wasm-jit/Source/ThirdParty/dtoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Source/ThirdParty/dtoa.c -------------------------------------------------------------------------------- /libraries/wasm-jit/Source/WASM/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Source/WASM/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/wasm-jit/Source/WAST/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Source/WAST/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/wasm-jit/Source/WAST/Lexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Source/WAST/Lexer.cpp -------------------------------------------------------------------------------- /libraries/wasm-jit/Source/WAST/Lexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Source/WAST/Lexer.h -------------------------------------------------------------------------------- /libraries/wasm-jit/Source/WAST/NFA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Source/WAST/NFA.cpp -------------------------------------------------------------------------------- /libraries/wasm-jit/Source/WAST/NFA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Source/WAST/NFA.h -------------------------------------------------------------------------------- /libraries/wasm-jit/Source/WAST/Parse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Source/WAST/Parse.cpp -------------------------------------------------------------------------------- /libraries/wasm-jit/Source/WAST/Parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Source/WAST/Parse.h -------------------------------------------------------------------------------- /libraries/wasm-jit/Source/WAST/ParseModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Source/WAST/ParseModule.cpp -------------------------------------------------------------------------------- /libraries/wasm-jit/Source/WAST/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Source/WAST/Print.cpp -------------------------------------------------------------------------------- /libraries/wasm-jit/Source/WAST/Regexp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Source/WAST/Regexp.cpp -------------------------------------------------------------------------------- /libraries/wasm-jit/Source/WAST/Regexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Source/WAST/Regexp.h -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/Blake2b/blake2b.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/Blake2b/blake2b.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/fuzz/address.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/fuzz/address.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/fuzz/echo.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/fuzz/echo.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/fuzz/func_ptrs.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/fuzz/func_ptrs.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/fuzz/globals.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/fuzz/globals.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/fuzz/helloworld.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/fuzz/helloworld.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/fuzz/i32.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/fuzz/i32.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/fuzz/labels.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/fuzz/labels.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/fuzz/loop.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/fuzz/loop.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/fuzz/resizing.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/fuzz/resizing.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/fuzz/return.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/fuzz/return.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/fuzz/tee.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/fuzz/tee.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/fuzz/tee_local.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/fuzz/tee_local.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/LICENSE -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/address.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/address.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/align.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/align.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/atomic.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/atomic.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/binary.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/binary.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/block.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/block.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/br.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/br.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/br_if.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/br_if.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/br_table.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/br_table.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/break-drop.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/break-drop.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/call.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/call.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/comments.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/comments.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/const.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/const.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/conversions.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/conversions.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/elem.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/elem.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/endianness.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/endianness.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/exports.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/exports.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/f32.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/f32.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/f32_bitwise.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/f32_bitwise.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/f32_cmp.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/f32_cmp.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/f64.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/f64.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/f64_bitwise.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/f64_bitwise.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/f64_cmp.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/f64_cmp.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/fac.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/fac.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/float_exprs.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/float_exprs.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/float_memory.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/float_memory.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/float_misc.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/float_misc.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/forward.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/forward.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/func.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/func.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/func_ptrs.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/func_ptrs.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/get_local.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/get_local.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/globals.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/globals.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/i32.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/i32.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/i64.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/i64.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/if.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/if.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/imports.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/imports.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/int_exprs.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/int_exprs.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/int_literals.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/int_literals.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/labels.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/labels.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/linking.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/linking.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/loop.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/loop.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/memory.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/memory.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/memory_trap.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/memory_trap.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/names.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/names.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/nop.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/nop.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/resizing.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/resizing.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/return.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/return.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/select.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/select.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/set_local.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/set_local.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/stack.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/stack.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/start.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/start.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/store_retval.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/store_retval.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/switch.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/switch.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/tee_local.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/tee_local.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/token.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/token.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/traps.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/traps.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/type.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/type.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/typecheck.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/typecheck.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/unreachable.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/unreachable.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/spec/unwind.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/spec/unwind.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/wast/echo.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/wast/echo.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/wast/helloworld.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/wast/helloworld.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/wast/tee.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/wast/tee.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/Test/zlib/zlib.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/Test/zlib/zlib.wast -------------------------------------------------------------------------------- /libraries/wasm-jit/afl/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/afl/readme -------------------------------------------------------------------------------- /libraries/wasm-jit/afl/run-afl-fuzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/afl/run-afl-fuzz -------------------------------------------------------------------------------- /libraries/wasm-jit/afl/simplify-crashes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/afl/simplify-crashes -------------------------------------------------------------------------------- /libraries/wasm-jit/afl/wast.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/libraries/wasm-jit/afl/wast.dict -------------------------------------------------------------------------------- /package.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/package.cmake -------------------------------------------------------------------------------- /plugins/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/plugins/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/COMMUNITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/plugins/COMMUNITY.md -------------------------------------------------------------------------------- /plugins/chain_api_plugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/plugins/chain_api_plugin/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/chain_api_plugin/chain.swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/plugins/chain_api_plugin/chain.swagger.yaml -------------------------------------------------------------------------------- /plugins/chain_api_plugin/chain_api_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/plugins/chain_api_plugin/chain_api_plugin.cpp -------------------------------------------------------------------------------- /plugins/chain_plugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/plugins/chain_plugin/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/chain_plugin/account_query_db.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/plugins/chain_plugin/account_query_db.cpp -------------------------------------------------------------------------------- /plugins/chain_plugin/chain_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/plugins/chain_plugin/chain_plugin.cpp -------------------------------------------------------------------------------- /plugins/chain_plugin/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/plugins/chain_plugin/test/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/chain_plugin/test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/plugins/chain_plugin/test/main.cpp -------------------------------------------------------------------------------- /plugins/chain_plugin/trx_retry_db.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/plugins/chain_plugin/trx_retry_db.cpp -------------------------------------------------------------------------------- /plugins/db_size_api_plugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/plugins/db_size_api_plugin/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/eosio-make_new_plugin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/plugins/eosio-make_new_plugin.sh -------------------------------------------------------------------------------- /plugins/http_client_plugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/plugins/http_client_plugin/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/http_plugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/plugins/http_plugin/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/http_plugin/http_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/plugins/http_plugin/http_plugin.cpp -------------------------------------------------------------------------------- /plugins/http_plugin/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/plugins/http_plugin/tests/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/http_plugin/tests/unit_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/plugins/http_plugin/tests/unit_tests.cpp -------------------------------------------------------------------------------- /plugins/net_api_plugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/plugins/net_api_plugin/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/net_api_plugin/net.swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/plugins/net_api_plugin/net.swagger.yaml -------------------------------------------------------------------------------- /plugins/net_api_plugin/net_api_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/plugins/net_api_plugin/net_api_plugin.cpp -------------------------------------------------------------------------------- /plugins/net_plugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/plugins/net_plugin/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/net_plugin/net_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/plugins/net_plugin/net_plugin.cpp -------------------------------------------------------------------------------- /plugins/net_plugin/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/plugins/net_plugin/tests/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/net_plugin/tests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/plugins/net_plugin/tests/main.cpp -------------------------------------------------------------------------------- /plugins/producer_api_plugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/plugins/producer_api_plugin/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/producer_plugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/plugins/producer_plugin/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/producer_plugin/producer_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/plugins/producer_plugin/producer_plugin.cpp -------------------------------------------------------------------------------- /plugins/producer_plugin/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/plugins/producer_plugin/test/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/producer_plugin/test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/plugins/producer_plugin/test/main.cpp -------------------------------------------------------------------------------- /plugins/producer_plugin/test/test_options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/plugins/producer_plugin/test/test_options.cpp -------------------------------------------------------------------------------- /plugins/producer_plugin/test/test_trx_full.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/plugins/producer_plugin/test/test_trx_full.cpp -------------------------------------------------------------------------------- /plugins/prometheus_plugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/plugins/prometheus_plugin/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/prometheus_plugin/metrics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/plugins/prometheus_plugin/metrics.hpp -------------------------------------------------------------------------------- /plugins/resource_monitor_plugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/plugins/resource_monitor_plugin/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/state_history_plugin/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/plugins/state_history_plugin/.clang-format -------------------------------------------------------------------------------- /plugins/state_history_plugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/plugins/state_history_plugin/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/state_history_plugin/tests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/plugins/state_history_plugin/tests/main.cpp -------------------------------------------------------------------------------- /plugins/template_plugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/plugins/template_plugin/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/template_plugin/template_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/plugins/template_plugin/template_plugin.cpp -------------------------------------------------------------------------------- /plugins/test_control_api_plugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/plugins/test_control_api_plugin/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/test_control_plugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/plugins/test_control_plugin/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/trace_api_plugin/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/plugins/trace_api_plugin/.clang-format -------------------------------------------------------------------------------- /plugins/trace_api_plugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/plugins/trace_api_plugin/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/trace_api_plugin/abi_data_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/plugins/trace_api_plugin/abi_data_handler.cpp -------------------------------------------------------------------------------- /plugins/trace_api_plugin/compressed_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/plugins/trace_api_plugin/compressed_file.cpp -------------------------------------------------------------------------------- /plugins/trace_api_plugin/request_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/plugins/trace_api_plugin/request_handler.cpp -------------------------------------------------------------------------------- /plugins/trace_api_plugin/store_provider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/plugins/trace_api_plugin/store_provider.cpp -------------------------------------------------------------------------------- /plugins/trace_api_plugin/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/plugins/trace_api_plugin/test/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/trace_api_plugin/test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/plugins/trace_api_plugin/test/main.cpp -------------------------------------------------------------------------------- /plugins/trace_api_plugin/trace_api_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/plugins/trace_api_plugin/trace_api_plugin.cpp -------------------------------------------------------------------------------- /plugins/trace_api_plugin/utils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/plugins/trace_api_plugin/utils/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/wallet_api_plugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/plugins/wallet_api_plugin/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/wallet_plugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/plugins/wallet_plugin/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/wallet_plugin/macos_user_auth.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/plugins/wallet_plugin/macos_user_auth.m -------------------------------------------------------------------------------- /plugins/wallet_plugin/se_wallet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/plugins/wallet_plugin/se_wallet.cpp -------------------------------------------------------------------------------- /plugins/wallet_plugin/wallet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/plugins/wallet_plugin/wallet.cpp -------------------------------------------------------------------------------- /plugins/wallet_plugin/wallet_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/plugins/wallet_plugin/wallet_manager.cpp -------------------------------------------------------------------------------- /plugins/wallet_plugin/wallet_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/plugins/wallet_plugin/wallet_plugin.cpp -------------------------------------------------------------------------------- /programs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/programs/CMakeLists.txt -------------------------------------------------------------------------------- /programs/cleos/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/programs/cleos/CMakeLists.txt -------------------------------------------------------------------------------- /programs/cleos/LICENSE.CLI11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/programs/cleos/LICENSE.CLI11 -------------------------------------------------------------------------------- /programs/cleos/config.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/programs/cleos/config.hpp.in -------------------------------------------------------------------------------- /programs/cleos/do_http_post.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/programs/cleos/do_http_post.hpp -------------------------------------------------------------------------------- /programs/cleos/do_http_post_libcurl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/programs/cleos/do_http_post_libcurl.cpp -------------------------------------------------------------------------------- /programs/cleos/eosc.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/programs/cleos/eosc.pot -------------------------------------------------------------------------------- /programs/cleos/help_text.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/programs/cleos/help_text.cpp.in -------------------------------------------------------------------------------- /programs/cleos/help_text.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/programs/cleos/help_text.hpp -------------------------------------------------------------------------------- /programs/cleos/httpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/programs/cleos/httpc.cpp -------------------------------------------------------------------------------- /programs/cleos/httpc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/programs/cleos/httpc.hpp -------------------------------------------------------------------------------- /programs/cleos/localize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/programs/cleos/localize.hpp -------------------------------------------------------------------------------- /programs/cleos/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/programs/cleos/main.cpp -------------------------------------------------------------------------------- /programs/keosd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/programs/keosd/CMakeLists.txt -------------------------------------------------------------------------------- /programs/keosd/config.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/programs/keosd/config.hpp.in -------------------------------------------------------------------------------- /programs/keosd/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/programs/keosd/main.cpp -------------------------------------------------------------------------------- /programs/leap-util/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/programs/leap-util/CMakeLists.txt -------------------------------------------------------------------------------- /programs/leap-util/actions/blocklog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/programs/leap-util/actions/blocklog.cpp -------------------------------------------------------------------------------- /programs/leap-util/actions/blocklog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/programs/leap-util/actions/blocklog.hpp -------------------------------------------------------------------------------- /programs/leap-util/actions/chain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/programs/leap-util/actions/chain.cpp -------------------------------------------------------------------------------- /programs/leap-util/actions/chain.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/programs/leap-util/actions/chain.hpp -------------------------------------------------------------------------------- /programs/leap-util/actions/generic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/programs/leap-util/actions/generic.cpp -------------------------------------------------------------------------------- /programs/leap-util/actions/generic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/programs/leap-util/actions/generic.hpp -------------------------------------------------------------------------------- /programs/leap-util/actions/snapshot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/programs/leap-util/actions/snapshot.cpp -------------------------------------------------------------------------------- /programs/leap-util/actions/snapshot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/programs/leap-util/actions/snapshot.hpp -------------------------------------------------------------------------------- /programs/leap-util/actions/subcommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/programs/leap-util/actions/subcommand.cpp -------------------------------------------------------------------------------- /programs/leap-util/actions/subcommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/programs/leap-util/actions/subcommand.hpp -------------------------------------------------------------------------------- /programs/leap-util/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/programs/leap-util/main.cpp -------------------------------------------------------------------------------- /programs/nodeos/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/programs/nodeos/CMakeLists.txt -------------------------------------------------------------------------------- /programs/nodeos/config.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/programs/nodeos/config.hpp.in -------------------------------------------------------------------------------- /programs/nodeos/logging.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/programs/nodeos/logging.json -------------------------------------------------------------------------------- /programs/nodeos/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/programs/nodeos/main.cpp -------------------------------------------------------------------------------- /scripts/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/scripts/CMakeLists.txt -------------------------------------------------------------------------------- /scripts/abi_is_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/scripts/abi_is_json.py -------------------------------------------------------------------------------- /scripts/install_testharness_symlinks.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/scripts/install_testharness_symlinks.cmake -------------------------------------------------------------------------------- /scripts/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/scripts/postinst -------------------------------------------------------------------------------- /scripts/prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/scripts/prerm -------------------------------------------------------------------------------- /scripts/submodule-regression-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/scripts/submodule-regression-check.sh -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/PerformanceHarness/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/PerformanceHarness/CMakeLists.txt -------------------------------------------------------------------------------- /tests/PerformanceHarness/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/PerformanceHarness/README.md -------------------------------------------------------------------------------- /tests/PerformanceHarness/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/PerformanceHarness/__init__.py -------------------------------------------------------------------------------- /tests/PerformanceHarness/cpuTrxData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/PerformanceHarness/cpuTrxData.json -------------------------------------------------------------------------------- /tests/PerformanceHarness/genesis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/PerformanceHarness/genesis.json -------------------------------------------------------------------------------- /tests/PerformanceHarness/log_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/PerformanceHarness/log_reader.py -------------------------------------------------------------------------------- /tests/PerformanceHarness/performance_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/PerformanceHarness/performance_test.py -------------------------------------------------------------------------------- /tests/PerformanceHarness/ph_op_modes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/PerformanceHarness/ph_op_modes.md -------------------------------------------------------------------------------- /tests/PerformanceHarness/ramTrxData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/PerformanceHarness/ramTrxData.json -------------------------------------------------------------------------------- /tests/PerformanceHarness/readOnlyTrxData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/PerformanceHarness/readOnlyTrxData.json -------------------------------------------------------------------------------- /tests/PerformanceHarnessScenarioRunner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/PerformanceHarnessScenarioRunner.py -------------------------------------------------------------------------------- /tests/TestHarness/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/TestHarness/CMakeLists.txt -------------------------------------------------------------------------------- /tests/TestHarness/Cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/TestHarness/Cluster.py -------------------------------------------------------------------------------- /tests/TestHarness/Node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/TestHarness/Node.py -------------------------------------------------------------------------------- /tests/TestHarness/TestHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/TestHarness/TestHelper.py -------------------------------------------------------------------------------- /tests/TestHarness/WalletMgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/TestHarness/WalletMgr.py -------------------------------------------------------------------------------- /tests/TestHarness/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/TestHarness/__init__.py -------------------------------------------------------------------------------- /tests/TestHarness/accounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/TestHarness/accounts.py -------------------------------------------------------------------------------- /tests/TestHarness/core_symbol.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/TestHarness/core_symbol.py.in -------------------------------------------------------------------------------- /tests/TestHarness/depresolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/TestHarness/depresolver.py -------------------------------------------------------------------------------- /tests/TestHarness/interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/TestHarness/interfaces.py -------------------------------------------------------------------------------- /tests/TestHarness/launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/TestHarness/launcher.py -------------------------------------------------------------------------------- /tests/TestHarness/libc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/TestHarness/libc.py -------------------------------------------------------------------------------- /tests/TestHarness/logging-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/TestHarness/logging-template.json -------------------------------------------------------------------------------- /tests/TestHarness/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/TestHarness/logging.py -------------------------------------------------------------------------------- /tests/TestHarness/queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/TestHarness/queries.py -------------------------------------------------------------------------------- /tests/TestHarness/testUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/TestHarness/testUtils.py -------------------------------------------------------------------------------- /tests/TestHarness/transactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/TestHarness/transactions.py -------------------------------------------------------------------------------- /tests/auto_bp_peering_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/auto_bp_peering_test.py -------------------------------------------------------------------------------- /tests/auto_bp_peering_test_shape.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/auto_bp_peering_test_shape.json -------------------------------------------------------------------------------- /tests/block_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/block_log.cpp -------------------------------------------------------------------------------- /tests/block_log_retain_blocks_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/block_log_retain_blocks_test.py -------------------------------------------------------------------------------- /tests/block_log_util_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/block_log_util_test.py -------------------------------------------------------------------------------- /tests/bridge_for_fork_test_shape.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/bridge_for_fork_test_shape.json -------------------------------------------------------------------------------- /tests/chain_plugin_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/chain_plugin_tests.cpp -------------------------------------------------------------------------------- /tests/cli_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/cli_test.py -------------------------------------------------------------------------------- /tests/cluster_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/cluster_launcher.py -------------------------------------------------------------------------------- /tests/compute_transaction_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/compute_transaction_test.py -------------------------------------------------------------------------------- /tests/db_modes_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/db_modes_test.sh -------------------------------------------------------------------------------- /tests/distributed-transactions-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/distributed-transactions-test.py -------------------------------------------------------------------------------- /tests/full-version-label.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/full-version-label.sh -------------------------------------------------------------------------------- /tests/gelf_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/gelf_test.py -------------------------------------------------------------------------------- /tests/get_account_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/get_account_test.py -------------------------------------------------------------------------------- /tests/get_producers_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/get_producers_tests.cpp -------------------------------------------------------------------------------- /tests/get_table_seckey_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/get_table_seckey_tests.cpp -------------------------------------------------------------------------------- /tests/get_table_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/get_table_tests.cpp -------------------------------------------------------------------------------- /tests/http_plugin_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/http_plugin_test.py -------------------------------------------------------------------------------- /tests/impaired_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/impaired_network.py -------------------------------------------------------------------------------- /tests/keosd_auto_launch_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/keosd_auto_launch_test.py -------------------------------------------------------------------------------- /tests/lib_advance_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/lib_advance_test.py -------------------------------------------------------------------------------- /tests/light_validation_sync_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/light_validation_sync_test.py -------------------------------------------------------------------------------- /tests/lossy_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/lossy_network.py -------------------------------------------------------------------------------- /tests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/main.cpp -------------------------------------------------------------------------------- /tests/nested_container_multi_index_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/nested_container_multi_index_test.py -------------------------------------------------------------------------------- /tests/nodeos_chainbase_allocation_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/nodeos_chainbase_allocation_test.py -------------------------------------------------------------------------------- /tests/nodeos_contrl_c_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/nodeos_contrl_c_test.py -------------------------------------------------------------------------------- /tests/nodeos_extra_packed_data_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/nodeos_extra_packed_data_test.py -------------------------------------------------------------------------------- /tests/nodeos_forked_chain_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/nodeos_forked_chain_test.py -------------------------------------------------------------------------------- /tests/nodeos_high_transaction_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/nodeos_high_transaction_test.py -------------------------------------------------------------------------------- /tests/nodeos_irreversible_mode_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/nodeos_irreversible_mode_test.py -------------------------------------------------------------------------------- /tests/nodeos_producer_watermark_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/nodeos_producer_watermark_test.py -------------------------------------------------------------------------------- /tests/nodeos_protocol_feature_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/nodeos_protocol_feature_test.py -------------------------------------------------------------------------------- /tests/nodeos_read_terminate_at_block_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/nodeos_read_terminate_at_block_test.py -------------------------------------------------------------------------------- /tests/nodeos_retry_transaction_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/nodeos_retry_transaction_test.py -------------------------------------------------------------------------------- /tests/nodeos_run_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/nodeos_run_test.py -------------------------------------------------------------------------------- /tests/nodeos_short_fork_take_over_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/nodeos_short_fork_take_over_test.py -------------------------------------------------------------------------------- /tests/nodeos_snapshot_diff_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/nodeos_snapshot_diff_test.py -------------------------------------------------------------------------------- /tests/nodeos_snapshot_forked_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/nodeos_snapshot_forked_test.py -------------------------------------------------------------------------------- /tests/nodeos_startup_catchup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/nodeos_startup_catchup.py -------------------------------------------------------------------------------- /tests/nodeos_under_min_avail_ram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/nodeos_under_min_avail_ram.py -------------------------------------------------------------------------------- /tests/nodeos_voting_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/nodeos_voting_test.py -------------------------------------------------------------------------------- /tests/p2p_high_latency_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/p2p_high_latency_test.py -------------------------------------------------------------------------------- /tests/p2p_multiple_listen_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/p2p_multiple_listen_test.py -------------------------------------------------------------------------------- /tests/p2p_no_listen_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/p2p_no_listen_test.py -------------------------------------------------------------------------------- /tests/p2p_sync_throttle_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/p2p_sync_throttle_test.py -------------------------------------------------------------------------------- /tests/p2p_sync_throttle_test_shape.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/p2p_sync_throttle_test_shape.json -------------------------------------------------------------------------------- /tests/p2p_test_peers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/p2p_test_peers.py -------------------------------------------------------------------------------- /tests/p2p_tests/dawn_515/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/p2p_tests/dawn_515/test.sh -------------------------------------------------------------------------------- /tests/plugin_http_api_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/plugin_http_api_test.py -------------------------------------------------------------------------------- /tests/prod_preactivation_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/prod_preactivation_test.py -------------------------------------------------------------------------------- /tests/read_only_trx_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/read_only_trx_test.py -------------------------------------------------------------------------------- /tests/release-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/release-build.sh -------------------------------------------------------------------------------- /tests/resource_monitor_plugin_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/resource_monitor_plugin_test.py -------------------------------------------------------------------------------- /tests/restart-scenarios-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/restart-scenarios-test.py -------------------------------------------------------------------------------- /tests/sample-cluster-map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/sample-cluster-map.json -------------------------------------------------------------------------------- /tests/ship_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/ship_client.cpp -------------------------------------------------------------------------------- /tests/ship_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/ship_log.cpp -------------------------------------------------------------------------------- /tests/ship_streamer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/ship_streamer.cpp -------------------------------------------------------------------------------- /tests/ship_streamer_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/ship_streamer_test.py -------------------------------------------------------------------------------- /tests/ship_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/ship_test.py -------------------------------------------------------------------------------- /tests/split_blocklog_replay_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/split_blocklog_replay_test.py -------------------------------------------------------------------------------- /tests/subjective_billing_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/subjective_billing_test.py -------------------------------------------------------------------------------- /tests/terminate-scenarios-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/terminate-scenarios-test.py -------------------------------------------------------------------------------- /tests/test_chain_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/test_chain_plugin.cpp -------------------------------------------------------------------------------- /tests/test_read_only_trx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/test_read_only_trx.cpp -------------------------------------------------------------------------------- /tests/test_snapshot_information.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/test_snapshot_information.cpp -------------------------------------------------------------------------------- /tests/test_snapshot_scheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/test_snapshot_scheduler.cpp -------------------------------------------------------------------------------- /tests/trace_plugin_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/trace_plugin_test.py -------------------------------------------------------------------------------- /tests/trans_sync_across_mixed_cluster_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/trans_sync_across_mixed_cluster_test.sh -------------------------------------------------------------------------------- /tests/trx_finality_status_forked_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/trx_finality_status_forked_test.py -------------------------------------------------------------------------------- /tests/trx_finality_status_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/trx_finality_status_test.py -------------------------------------------------------------------------------- /tests/trx_generator/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/trx_generator/CMakeLists.txt -------------------------------------------------------------------------------- /tests/trx_generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/trx_generator/README.md -------------------------------------------------------------------------------- /tests/trx_generator/http_client_async.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/trx_generator/http_client_async.hpp -------------------------------------------------------------------------------- /tests/trx_generator/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/trx_generator/main.cpp -------------------------------------------------------------------------------- /tests/trx_generator/simple_rest_server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/trx_generator/simple_rest_server.hpp -------------------------------------------------------------------------------- /tests/trx_generator/trx_generator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/trx_generator/trx_generator.cpp -------------------------------------------------------------------------------- /tests/trx_generator/trx_generator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/trx_generator/trx_generator.hpp -------------------------------------------------------------------------------- /tests/trx_generator/trx_generator_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/trx_generator/trx_generator_tests.cpp -------------------------------------------------------------------------------- /tests/trx_generator/trx_provider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/trx_generator/trx_provider.cpp -------------------------------------------------------------------------------- /tests/trx_generator/trx_provider.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/trx_generator/trx_provider.hpp -------------------------------------------------------------------------------- /tests/validate-dirty-db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/validate-dirty-db.py -------------------------------------------------------------------------------- /tests/version-label.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/version-label.sh -------------------------------------------------------------------------------- /tests/wallet_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tests/wallet_tests.cpp -------------------------------------------------------------------------------- /tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tools/CMakeLists.txt -------------------------------------------------------------------------------- /tools/ctestwrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tools/ctestwrapper.sh -------------------------------------------------------------------------------- /tools/llvm-gcov.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tools/llvm-gcov.sh -------------------------------------------------------------------------------- /tools/mas_sign.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tools/mas_sign.sh -------------------------------------------------------------------------------- /tools/net-util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tools/net-util.py -------------------------------------------------------------------------------- /tools/reproducible.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tools/reproducible.Dockerfile -------------------------------------------------------------------------------- /tools/tweak-deb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tools/tweak-deb.sh -------------------------------------------------------------------------------- /tools/validate_reflection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tools/validate_reflection.py -------------------------------------------------------------------------------- /tutorials/bios-boot-tutorial/.gitignore: -------------------------------------------------------------------------------- 1 | nodes/ 2 | wallet/ 3 | output.log 4 | -------------------------------------------------------------------------------- /tutorials/bios-boot-tutorial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tutorials/bios-boot-tutorial/README.md -------------------------------------------------------------------------------- /tutorials/bios-boot-tutorial/accounts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tutorials/bios-boot-tutorial/accounts.json -------------------------------------------------------------------------------- /tutorials/bios-boot-tutorial/genesis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/tutorials/bios-boot-tutorial/genesis.json -------------------------------------------------------------------------------- /unittests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/CMakeLists.txt -------------------------------------------------------------------------------- /unittests/abi_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/abi_tests.cpp -------------------------------------------------------------------------------- /unittests/api_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/api_tests.cpp -------------------------------------------------------------------------------- /unittests/auth_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/auth_tests.cpp -------------------------------------------------------------------------------- /unittests/block_log_extract.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/block_log_extract.cpp -------------------------------------------------------------------------------- /unittests/block_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/block_tests.cpp -------------------------------------------------------------------------------- /unittests/block_timestamp_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/block_timestamp_tests.cpp -------------------------------------------------------------------------------- /unittests/bls_primitives_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/bls_primitives_tests.cpp -------------------------------------------------------------------------------- /unittests/bootseq_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/bootseq_tests.cpp -------------------------------------------------------------------------------- /unittests/chain_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/chain_tests.cpp -------------------------------------------------------------------------------- /unittests/contracts/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/contracts/CMakeLists.txt -------------------------------------------------------------------------------- /unittests/contracts/big_allocation.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/contracts/big_allocation.wasm -------------------------------------------------------------------------------- /unittests/contracts/deep_loops_ext_report.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/contracts/deep_loops_ext_report.wasm -------------------------------------------------------------------------------- /unittests/contracts/deep_nested.abi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/contracts/deep_nested.abi.hpp -------------------------------------------------------------------------------- /unittests/contracts/eosio.mechanics/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/contracts/eosio.mechanics/LICENSE -------------------------------------------------------------------------------- /unittests/contracts/eosio.mechanics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/contracts/eosio.mechanics/README.md -------------------------------------------------------------------------------- /unittests/contracts/eosio.msig/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/contracts/eosio.msig/CMakeLists.txt -------------------------------------------------------------------------------- /unittests/contracts/eosio.msig/eosio.msig.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/contracts/eosio.msig/eosio.msig.abi -------------------------------------------------------------------------------- /unittests/contracts/eosio.msig/eosio.msig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/contracts/eosio.msig/eosio.msig.cpp -------------------------------------------------------------------------------- /unittests/contracts/eosio.msig/eosio.msig.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/contracts/eosio.msig/eosio.msig.hpp -------------------------------------------------------------------------------- /unittests/contracts/eosio.msig/eosio.msig.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/contracts/eosio.msig/eosio.msig.wasm -------------------------------------------------------------------------------- /unittests/contracts/eosio.system/native.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/contracts/eosio.system/native.hpp -------------------------------------------------------------------------------- /unittests/contracts/eosio.system/rex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/contracts/eosio.system/rex.cpp -------------------------------------------------------------------------------- /unittests/contracts/eosio.system/voting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/contracts/eosio.system/voting.cpp -------------------------------------------------------------------------------- /unittests/contracts/eosio.token/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/contracts/eosio.token/CMakeLists.txt -------------------------------------------------------------------------------- /unittests/contracts/eosio.wrap/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/contracts/eosio.wrap/CMakeLists.txt -------------------------------------------------------------------------------- /unittests/contracts/eosio.wrap/eosio.wrap.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/contracts/eosio.wrap/eosio.wrap.abi -------------------------------------------------------------------------------- /unittests/contracts/eosio.wrap/eosio.wrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/contracts/eosio.wrap/eosio.wrap.cpp -------------------------------------------------------------------------------- /unittests/contracts/eosio.wrap/eosio.wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/contracts/eosio.wrap/eosio.wrap.hpp -------------------------------------------------------------------------------- /unittests/contracts/eosio.wrap/eosio.wrap.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/contracts/eosio.wrap/eosio.wrap.wasm -------------------------------------------------------------------------------- /unittests/contracts/fuzz1.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  n -------------------------------------------------------------------------------- /unittests/contracts/fuzz10.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/contracts/fuzz10.wasm -------------------------------------------------------------------------------- /unittests/contracts/fuzz11.wasm: -------------------------------------------------------------------------------- 1 | asm` -------------------------------------------------------------------------------- /unittests/contracts/fuzz12.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/contracts/fuzz12.wasm -------------------------------------------------------------------------------- /unittests/contracts/fuzz13.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/contracts/fuzz13.wasm -------------------------------------------------------------------------------- /unittests/contracts/fuzz14.wasm: -------------------------------------------------------------------------------- 1 | asmmf -------------------------------------------------------------------------------- /unittests/contracts/fuzz15.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/contracts/fuzz15.wasm -------------------------------------------------------------------------------- /unittests/contracts/fuzz2.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/contracts/fuzz2.wasm -------------------------------------------------------------------------------- /unittests/contracts/fuzz3.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/contracts/fuzz3.wasm -------------------------------------------------------------------------------- /unittests/contracts/fuzz4.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/contracts/fuzz4.wasm -------------------------------------------------------------------------------- /unittests/contracts/fuzz5.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/contracts/fuzz5.wasm -------------------------------------------------------------------------------- /unittests/contracts/fuzz6.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/contracts/fuzz6.wasm -------------------------------------------------------------------------------- /unittests/contracts/fuzz7.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/contracts/fuzz7.wasm -------------------------------------------------------------------------------- /unittests/contracts/fuzz8.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /unittests/contracts/fuzz9.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/contracts/fuzz9.wasm -------------------------------------------------------------------------------- /unittests/contracts/getcode_deepindent.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/contracts/getcode_deepindent.wasm -------------------------------------------------------------------------------- /unittests/contracts/indent-mismatch.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/contracts/indent-mismatch.wasm -------------------------------------------------------------------------------- /unittests/contracts/jumborow/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/contracts/jumborow/CMakeLists.txt -------------------------------------------------------------------------------- /unittests/contracts/jumborow/jumborow.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/contracts/jumborow/jumborow.abi -------------------------------------------------------------------------------- /unittests/contracts/jumborow/jumborow.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/contracts/jumborow/jumborow.wasm -------------------------------------------------------------------------------- /unittests/contracts/jumborow/jumborow.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/contracts/jumborow/jumborow.wast -------------------------------------------------------------------------------- /unittests/contracts/large_nested.abi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/contracts/large_nested.abi.hpp -------------------------------------------------------------------------------- /unittests/contracts/leak_no_destructor.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /unittests/contracts/leak_readExports.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /unittests/contracts/leak_readFunctions.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/contracts/leak_readFunctions.wasm -------------------------------------------------------------------------------- /unittests/contracts/leak_readFunctions_2.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |   -------------------------------------------------------------------------------- /unittests/contracts/leak_readFunctions_3.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  -------------------------------------------------------------------------------- /unittests/contracts/leak_readGlobals.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /unittests/contracts/leak_readImports.wasm: -------------------------------------------------------------------------------- 1 | asm' -------------------------------------------------------------------------------- /unittests/contracts/leak_wasm_binary_cpp_L1249.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /unittests/contracts/locals-s.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/contracts/locals-s.wasm -------------------------------------------------------------------------------- /unittests/contracts/locals-yc.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/contracts/locals-yc.wasm -------------------------------------------------------------------------------- /unittests/contracts/slowwasm_localsets.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/contracts/slowwasm_localsets.wasm -------------------------------------------------------------------------------- /unittests/contracts/test_softfloat_wasts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/contracts/test_softfloat_wasts.hpp -------------------------------------------------------------------------------- /unittests/contracts/test_wasts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/contracts/test_wasts.hpp -------------------------------------------------------------------------------- /unittests/crypto_primitives_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/crypto_primitives_tests.cpp -------------------------------------------------------------------------------- /unittests/currency_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/currency_tests.cpp -------------------------------------------------------------------------------- /unittests/database_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/database_tests.cpp -------------------------------------------------------------------------------- /unittests/deep-mind/deep-mind.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/deep-mind/deep-mind.hpp.in -------------------------------------------------------------------------------- /unittests/deep-mind/deep-mind.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/deep-mind/deep-mind.log -------------------------------------------------------------------------------- /unittests/deep_mind_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/deep_mind_tests.cpp -------------------------------------------------------------------------------- /unittests/delay_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/delay_tests.cpp -------------------------------------------------------------------------------- /unittests/dry_run_trx_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/dry_run_trx_tests.cpp -------------------------------------------------------------------------------- /unittests/eosio.token_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/eosio.token_tests.cpp -------------------------------------------------------------------------------- /unittests/eosio_system_tester.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/eosio_system_tester.hpp -------------------------------------------------------------------------------- /unittests/eosvmoc_limits_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/eosvmoc_limits_tests.cpp -------------------------------------------------------------------------------- /unittests/fork_test_utilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/fork_test_utilities.cpp -------------------------------------------------------------------------------- /unittests/fork_test_utilities.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/fork_test_utilities.hpp -------------------------------------------------------------------------------- /unittests/forked_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/forked_tests.cpp -------------------------------------------------------------------------------- /unittests/gen_protocol_feature_digest_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/gen_protocol_feature_digest_tests.py -------------------------------------------------------------------------------- /unittests/get_block_num_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/get_block_num_tests.cpp -------------------------------------------------------------------------------- /unittests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/main.cpp -------------------------------------------------------------------------------- /unittests/misc_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/misc_tests.cpp -------------------------------------------------------------------------------- /unittests/params_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/params_tests.cpp -------------------------------------------------------------------------------- /unittests/partitioned_block_log_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/partitioned_block_log_tests.cpp -------------------------------------------------------------------------------- /unittests/payloadless_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/payloadless_tests.cpp -------------------------------------------------------------------------------- /unittests/plugin_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/plugin_tests.cpp -------------------------------------------------------------------------------- /unittests/producer_schedule_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/producer_schedule_tests.cpp -------------------------------------------------------------------------------- /unittests/protocol_feature_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/protocol_feature_tests.cpp -------------------------------------------------------------------------------- /unittests/ram_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/ram_tests.cpp -------------------------------------------------------------------------------- /unittests/read_only_trx_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/read_only_trx_tests.cpp -------------------------------------------------------------------------------- /unittests/resource_limits_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/resource_limits_test.cpp -------------------------------------------------------------------------------- /unittests/restart_chain_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/restart_chain_tests.cpp -------------------------------------------------------------------------------- /unittests/snapshot_suites.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/snapshot_suites.hpp -------------------------------------------------------------------------------- /unittests/snapshot_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/snapshot_tests.cpp -------------------------------------------------------------------------------- /unittests/snapshots.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/snapshots.hpp.in -------------------------------------------------------------------------------- /unittests/snapshots/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/snapshots/CMakeLists.txt -------------------------------------------------------------------------------- /unittests/snapshots/blocks.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/snapshots/blocks.index -------------------------------------------------------------------------------- /unittests/snapshots/blocks.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/snapshots/blocks.log -------------------------------------------------------------------------------- /unittests/snapshots/prod_sched/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/snapshots/prod_sched/README -------------------------------------------------------------------------------- /unittests/snapshots/prod_sched/blocks.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/snapshots/prod_sched/blocks.index -------------------------------------------------------------------------------- /unittests/snapshots/prod_sched/blocks.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/snapshots/prod_sched/blocks.log -------------------------------------------------------------------------------- /unittests/snapshots/snap_v2.bin.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/snapshots/snap_v2.bin.gz -------------------------------------------------------------------------------- /unittests/snapshots/snap_v2.bin.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/snapshots/snap_v2.bin.json.gz -------------------------------------------------------------------------------- /unittests/snapshots/snap_v2.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/snapshots/snap_v2.json.gz -------------------------------------------------------------------------------- /unittests/snapshots/snap_v2_prod_sched.bin.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/snapshots/snap_v2_prod_sched.bin.gz -------------------------------------------------------------------------------- /unittests/snapshots/snap_v2_prod_sched.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/snapshots/snap_v2_prod_sched.json.gz -------------------------------------------------------------------------------- /unittests/snapshots/snap_v3.bin.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/snapshots/snap_v3.bin.gz -------------------------------------------------------------------------------- /unittests/snapshots/snap_v3.bin.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/snapshots/snap_v3.bin.json.gz -------------------------------------------------------------------------------- /unittests/snapshots/snap_v3.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/snapshots/snap_v3.json.gz -------------------------------------------------------------------------------- /unittests/snapshots/snap_v4.bin.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/snapshots/snap_v4.bin.gz -------------------------------------------------------------------------------- /unittests/snapshots/snap_v4.bin.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/snapshots/snap_v4.bin.json.gz -------------------------------------------------------------------------------- /unittests/snapshots/snap_v4.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/snapshots/snap_v4.json.gz -------------------------------------------------------------------------------- /unittests/snapshots/snap_v5.bin.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/snapshots/snap_v5.bin.gz -------------------------------------------------------------------------------- /unittests/snapshots/snap_v5.bin.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/snapshots/snap_v5.bin.json.gz -------------------------------------------------------------------------------- /unittests/snapshots/snap_v5.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/snapshots/snap_v5.json.gz -------------------------------------------------------------------------------- /unittests/snapshots/snap_v6.bin.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/snapshots/snap_v6.bin.gz -------------------------------------------------------------------------------- /unittests/snapshots/snap_v6.bin.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/snapshots/snap_v6.bin.json.gz -------------------------------------------------------------------------------- /unittests/snapshots/snap_v6.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/snapshots/snap_v6.json.gz -------------------------------------------------------------------------------- /unittests/special_accounts_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/special_accounts_tests.cpp -------------------------------------------------------------------------------- /unittests/state_history_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/state_history_tests.cpp -------------------------------------------------------------------------------- /unittests/subjective_billing_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/subjective_billing_tests.cpp -------------------------------------------------------------------------------- /unittests/test-contracts/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/test-contracts/CMakeLists.txt -------------------------------------------------------------------------------- /unittests/test-contracts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/test-contracts/README.md -------------------------------------------------------------------------------- /unittests/test-contracts/asserter/asserter.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/test-contracts/asserter/asserter.abi -------------------------------------------------------------------------------- /unittests/test-contracts/asserter/asserter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/test-contracts/asserter/asserter.cpp -------------------------------------------------------------------------------- /unittests/test-contracts/asserter/asserter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/test-contracts/asserter/asserter.hpp -------------------------------------------------------------------------------- /unittests/test-contracts/noop/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/test-contracts/noop/CMakeLists.txt -------------------------------------------------------------------------------- /unittests/test-contracts/noop/noop.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/test-contracts/noop/noop.abi -------------------------------------------------------------------------------- /unittests/test-contracts/noop/noop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/test-contracts/noop/noop.cpp -------------------------------------------------------------------------------- /unittests/test-contracts/noop/noop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/test-contracts/noop/noop.hpp -------------------------------------------------------------------------------- /unittests/test-contracts/noop/noop.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/test-contracts/noop/noop.wasm -------------------------------------------------------------------------------- /unittests/test-contracts/proxy/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/test-contracts/proxy/CMakeLists.txt -------------------------------------------------------------------------------- /unittests/test-contracts/proxy/proxy.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/test-contracts/proxy/proxy.abi -------------------------------------------------------------------------------- /unittests/test-contracts/proxy/proxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/test-contracts/proxy/proxy.cpp -------------------------------------------------------------------------------- /unittests/test-contracts/proxy/proxy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/test-contracts/proxy/proxy.hpp -------------------------------------------------------------------------------- /unittests/test-contracts/proxy/proxy.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/test-contracts/proxy/proxy.wasm -------------------------------------------------------------------------------- /unittests/test-contracts/test_api/test_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/test-contracts/test_api/test_api.cpp -------------------------------------------------------------------------------- /unittests/test-contracts/test_api/test_api.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/test-contracts/test_api/test_api.hpp -------------------------------------------------------------------------------- /unittests/test_cfd_transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/test_cfd_transaction.cpp -------------------------------------------------------------------------------- /unittests/test_cfd_transaction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/test_cfd_transaction.hpp -------------------------------------------------------------------------------- /unittests/test_chainbase_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/test_chainbase_types.cpp -------------------------------------------------------------------------------- /unittests/test_contracts.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/test_contracts.hpp.in -------------------------------------------------------------------------------- /unittests/test_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/test_utils.hpp -------------------------------------------------------------------------------- /unittests/wasm-spec-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/wasm-spec-tests/README.md -------------------------------------------------------------------------------- /unittests/wasm-spec-tests/generator/regexes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/wasm-spec-tests/generator/regexes.py -------------------------------------------------------------------------------- /unittests/wasm-spec-tests/generator/wasm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/wasm-spec-tests/generator/wasm.py -------------------------------------------------------------------------------- /unittests/wasm_config_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/wasm_config_tests.cpp -------------------------------------------------------------------------------- /unittests/wasm_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/wasm_tests.cpp -------------------------------------------------------------------------------- /unittests/whitelist_blacklist_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntelopeIO/leap/HEAD/unittests/whitelist_blacklist_tests.cpp --------------------------------------------------------------------------------