├── .node-version
├── .python-version
├── api
├── doc
│ ├── .version
│ ├── README.md
│ └── api_spec_ts_sdk_diagram.png
├── goldens
│ ├── aptos_api__tests__events_test__test_get_events.json
│ ├── aptos_api__tests__view_function__test_simple_view.json
│ ├── aptos_api__tests__view_function__test_view_aggregator.json
│ ├── aptos_api__tests__view_function__test_view_tuple.json
│ ├── aptos_api__tests__view_function__test_versioned_simple_view.json
│ ├── aptos_api__tests__view_function__test_view_gas_used_header.json
│ └── aptos_api__tests__events_test__test_get_events_filter_by_start_sequence_number.json
└── fuzzing
│ └── .gitignore
├── testsuite
├── pangu_lib
│ ├── __init__.py
│ ├── tests
│ │ └── __init__.py
│ ├── fixtures
│ │ └── __init__.py
│ ├── node_commands
│ │ └── __init__.py
│ └── testnet_commands
│ │ └── __init__.py
├── fuzzer
│ ├── data
│ │ └── .gitignore
│ ├── fuzz
│ │ └── .gitignore
│ └── google-oss-fuzz
│ │ └── build.sh
├── loadtest-k6
│ └── .gitignore
├── fixtures
│ ├── testFormatJunitXml.fixture
│ └── testMainReport.fixture
└── smoke-test
│ └── src
│ └── aptos
│ └── account_creation.rs
├── crates
├── aptos
│ ├── e2e
│ │ └── cases
│ │ │ └── __init__.py
│ └── src
│ │ ├── move_tool
│ │ └── aptos_dep_example
│ │ │ └── pack2
│ │ │ └── Move.toml
│ │ └── op
│ │ └── mod.rs
├── indexer
│ └── migrations
│ │ └── .gitkeep
└── aptos-faucet
│ ├── doc
│ └── .version
│ └── ts-client
│ ├── .nvmrc
│ └── .npmignore
├── keyless
└── pepper
│ └── scripts
│ └── install-deps.sh
├── terraform
├── helm
│ ├── genesis
│ │ └── .helmignore
│ ├── aptos-node
│ │ ├── .helmignore
│ │ └── files
│ │ │ └── test-data
│ │ │ └── waypoint.txt
│ ├── fullnode
│ │ ├── .helmignore
│ │ └── Chart.yaml
│ ├── monitoring
│ │ └── files
│ │ │ └── dashboards
│ ├── vector-log-agent
│ │ └── Chart.yaml
│ └── forge
│ │ └── Chart.yaml
├── aptos-node-testnet
│ ├── README.md
│ └── gcp
│ │ └── functions
│ │ └── signed-url
│ │ └── requirements.txt
├── aptos-node
│ ├── gcp
│ │ └── backend.tfvars
│ └── aws
│ │ └── backend.tfvars
├── fullnode
│ ├── digital_ocean
│ │ └── .gitignore
│ ├── gcp
│ │ └── backend.tfvars
│ └── aws
│ │ └── backend.tfvars.example
└── tflint.tfvars
├── .github
├── dep-auditors.json
└── actions
│ └── fullnode-sync
│ └── requirements.txt
├── ecosystem
├── node-checker
│ └── ts-client
│ │ ├── .nvmrc
│ │ └── .npmignore
├── nft-metadata-crawler
│ └── .gitignore
├── typescript
│ ├── aptos-client
│ │ ├── .gitignore
│ │ ├── .prettierignore
│ │ └── .eslintignore
│ └── sdk_v2
│ │ └── README.md
└── indexer-grpc
│ └── indexer-transaction-generator
│ └── imported_transactions
│ └── README.md
├── third_party
└── move
│ ├── move-compiler
│ ├── .gitignore
│ ├── tests
│ │ ├── .gitattributes
│ │ └── move_check
│ │ │ ├── unit_test
│ │ │ ├── multiple_errors.unit_test
│ │ │ ├── attribute_location.unit_test
│ │ │ ├── cross_module_members.unit_test
│ │ │ ├── extra_attributes.unit_test
│ │ │ ├── other_failures_valid.unit_test
│ │ │ ├── valid_test_module.unit_test
│ │ │ ├── expected_failure_not_test.unit_test
│ │ │ ├── multiple_test_annotations.unit_test
│ │ │ ├── script_with_test_on_main.unit_test
│ │ │ ├── attribute_location_invalid.unit_test
│ │ │ ├── cross_module_test_only_module.unit_test
│ │ │ ├── expected_failure_bad_value.unit_test
│ │ │ ├── expected_failure_constants.unit_test
│ │ │ ├── invalid_expected_code_name.unit_test
│ │ │ ├── invalid_expected_failure_name.unit_test
│ │ │ ├── script_with_multiple_on_main.unit_test
│ │ │ ├── script_with_multiple_top_level.unit_test
│ │ │ ├── script_with_test_top_level.unit_test
│ │ │ ├── test_and_test_only_annotation.unit_test
│ │ │ ├── expected_failure_constants_invalid.unit_test
│ │ │ ├── expected_failure_invalid_literals.unit_test
│ │ │ ├── expected_failure_on_non_function.unit_test
│ │ │ ├── expected_failure_out_of_range_value.unit_test
│ │ │ ├── other_failures_invalid_assignment.unit_test
│ │ │ ├── other_failures_invalid_location.unit_test
│ │ │ ├── cross_module_members_non_test_function.unit_test
│ │ │ ├── cross_module_members_non_test_function2.unit_test
│ │ │ ├── named_address_no_value_in_annotation.unit_test
│ │ │ └── other_failures_invalid_location_module.unit_test
│ │ │ ├── expansion
│ │ │ ├── no_address.move
│ │ │ ├── entry_main.move
│ │ │ ├── public_main.move
│ │ │ ├── top_level_not_named_main.move
│ │ │ ├── duplicate_module.move
│ │ │ ├── restricted_address_names.move
│ │ │ └── public_friend_main.move
│ │ │ ├── verification
│ │ │ ├── cross_module_valid.verification
│ │ │ ├── double_annotation.verification
│ │ │ ├── single_module_valid.verification
│ │ │ └── single_module_invalid.verification
│ │ │ └── parser
│ │ │ ├── address_misspelled.move
│ │ │ ├── invalid_character.move
│ │ │ ├── address_not_hex.move
│ │ │ ├── native_main.move
│ │ │ ├── comments_nested_unbalanced.move
│ │ │ ├── empty_file.move
│ │ │ ├── function_incomplete.move
│ │ │ ├── module_missing_lbrace.move
│ │ │ ├── module_missing_rbrace.move
│ │ │ └── function_visibility_empty.move
│ └── transactional-tests
│ │ └── tests
│ │ ├── parser
│ │ ├── hexstring.exp
│ │ ├── byte_string.exp
│ │ ├── precedence.exp
│ │ ├── expr_binary_operators.exp
│ │ ├── hex_and_decimal_address.exp
│ │ ├── hex_and_decimal_numbers.exp
│ │ └── num_literal_underscore.exp
│ │ ├── control_flow
│ │ ├── sorter.exp
│ │ ├── break_nested.exp
│ │ ├── break_simple.exp
│ │ ├── for_empty.exp
│ │ ├── loop_return.exp
│ │ ├── loop_simple.exp
│ │ ├── nested_loops.exp
│ │ ├── while_false.exp
│ │ ├── while_nested.exp
│ │ ├── while_return.exp
│ │ ├── while_simple.exp
│ │ ├── assert_in_while.exp
│ │ ├── break_accumulator.exp
│ │ ├── for_loop_counter.exp
│ │ ├── for_loop_empty.exp
│ │ ├── if_assignment.exp
│ │ ├── immediate_break.exp
│ │ ├── loop_nested_breaks.exp
│ │ ├── nested_for_loops.exp
│ │ ├── break_continue_for_loop.exp
│ │ ├── break_continue_simple.exp
│ │ ├── for_loop_empty_range.exp
│ │ ├── for_loop_increment_iter.exp
│ │ ├── if_branch_diverges_1.exp
│ │ ├── if_branch_diverges_10.exp
│ │ ├── if_branch_diverges_2.exp
│ │ ├── if_branch_diverges_3.exp
│ │ ├── if_branch_diverges_4.exp
│ │ ├── if_branch_diverges_5.exp
│ │ ├── if_branch_diverges_6.exp
│ │ ├── if_branch_diverges_7.exp
│ │ ├── if_branch_diverges_8.exp
│ │ ├── if_branch_diverges_9.exp
│ │ ├── if_without_braces_1.exp
│ │ ├── if_without_braces_2.exp
│ │ ├── if_without_braces_3.exp
│ │ ├── if_without_braces_4.exp
│ │ ├── nested_for_while_loops.exp
│ │ ├── return_branch_moves.exp
│ │ ├── while_nested_return.exp
│ │ ├── break_continue_sum_of_odds.exp
│ │ ├── local_assigned_many_times.exp
│ │ ├── return_branch_doesnt_assign.exp
│ │ ├── return_in_if_branch_taken.exp
│ │ ├── break_continue_for_loop_nested.exp
│ │ ├── deep_return_branch_doesnt_assign.exp
│ │ ├── return_in_if_branch_taken_local.exp
│ │ ├── branch_assigns_then_moves_then_assigns.exp
│ │ └── return_in_if_branch_taken_no_else.exp
│ │ ├── inlining
│ │ ├── bug_10991.exp
│ │ ├── bug_10991a.exp
│ │ ├── bug_10991b.exp
│ │ ├── bug_10991c.exp
│ │ ├── bug_9717.exp
│ │ ├── multi_param.exp
│ │ ├── objects.exp
│ │ ├── resources.exp
│ │ ├── shadowing.exp
│ │ ├── mutual_recursion.exp
│ │ ├── bug_10991_noparam.exp
│ │ ├── bug_10991_noparam2.exp
│ │ ├── bug_9717_looponly.exp
│ │ └── eval_ignored_param.exp
│ │ ├── operators
│ │ ├── precedence.exp
│ │ ├── bitwise_operators.exp
│ │ ├── boolean_operators.exp
│ │ └── comparison_operators.exp
│ │ ├── constants
│ │ ├── by_reference.exp
│ │ ├── empty_vectors.exp
│ │ ├── empty_vectors2.exp
│ │ ├── folding_boolean.exp
│ │ ├── folding_complex.exp
│ │ ├── folding_equality.exp
│ │ ├── folding_numeric.exp
│ │ ├── folding_values.exp
│ │ ├── folding_vector.exp
│ │ ├── folding_vector_large.exp
│ │ └── nonempty_vectors.exp
│ │ ├── dependencies
│ │ ├── dependency_order.exp
│ │ └── transitive_deps.exp
│ │ └── evaluation_order
│ │ └── short_circuiting.exp
│ ├── documentation
│ ├── book
│ │ ├── .gitignore
│ │ └── translations
│ │ │ └── move-book-zh
│ │ │ └── .gitignore
│ └── tutorial
│ │ └── step_1
│ │ └── BasicCoin
│ │ └── Move.toml
│ ├── move-prover
│ ├── lab
│ │ └── data
│ │ │ ├── mono
│ │ │ ├── mono_backend.toml
│ │ │ └── poly_backend.toml
│ │ │ ├── struct-as-adt
│ │ │ ├── struct_as_adt.toml
│ │ │ └── struct_as_vec.toml
│ │ │ ├── test
│ │ │ ├── prover.toml
│ │ │ ├── plot.sh
│ │ │ └── benchmark.data
│ │ │ ├── opaque
│ │ │ └── opaque.toml
│ │ │ ├── vector-theories
│ │ │ ├── smt_array.toml
│ │ │ ├── smt_seq.toml
│ │ │ ├── boogie_array.toml
│ │ │ ├── smt_array_ext.toml
│ │ │ └── boogie_array_intern.toml
│ │ │ └── cvc
│ │ │ └── experiments
│ │ │ └── z3_boogie_array.toml
│ ├── move-abigen
│ │ └── tests
│ │ │ └── sources
│ │ │ └── some_script.mv
│ ├── tests
│ │ └── xsources
│ │ │ └── timeout
│ │ │ └── empty.move
│ └── move-docgen
│ │ └── README.md
│ ├── evm
│ └── hardhat-move
│ │ └── .gitignore
│ ├── move-compiler-v2
│ ├── transactional-tests
│ │ └── tests
│ │ │ ├── v1.unmatched
│ │ │ └── no-v1-comparison
│ │ │ ├── bug_14762.exp
│ │ │ ├── index.exp
│ │ │ ├── loop_labels.exp
│ │ │ ├── op_equal
│ │ │ ├── valid.exp
│ │ │ ├── eval_order.exp
│ │ │ └── no_double_eval.exp
│ │ │ └── positional_fields
│ │ │ └── positional_fields.exp
│ └── tests
│ │ ├── more-v1
│ │ ├── expansion
│ │ │ ├── no_address.move
│ │ │ ├── entry_main.move
│ │ │ ├── public_main.move
│ │ │ ├── top_level_not_named_main.move
│ │ │ ├── duplicate_module.move
│ │ │ ├── restricted_address_names.move
│ │ │ ├── entry_main.exp
│ │ │ ├── public_friend_main.move
│ │ │ ├── use_function.exp
│ │ │ └── use_struct.exp
│ │ ├── parser
│ │ │ ├── address_misspelled.move
│ │ │ ├── invalid_character.move
│ │ │ ├── address_not_hex.move
│ │ │ ├── native_main.move
│ │ │ ├── comments_nested_unbalanced.move
│ │ │ ├── empty_file.move
│ │ │ ├── function_incomplete.move
│ │ │ ├── module_missing_lbrace.move
│ │ │ ├── module_missing_rbrace.move
│ │ │ ├── comments_ok.exp
│ │ │ ├── empty_file.exp
│ │ │ ├── hexstring.exp
│ │ │ ├── let_binding.exp
│ │ │ ├── address_not_hex.exp
│ │ │ ├── constant_values.exp
│ │ │ ├── decimal_address.exp
│ │ │ ├── entry_function.exp
│ │ │ ├── expr_if_braces.exp
│ │ │ ├── expr_loop_braces.exp
│ │ │ ├── expr_unary_ops.exp
│ │ │ ├── function_visibility_empty.move
│ │ │ ├── lambda_no_param.exp
│ │ │ ├── named_address.exp
│ │ │ ├── newline_crlf.exp
│ │ │ ├── not_doc_comment.exp
│ │ │ ├── return_in_binop.exp
│ │ │ └── struct_public.exp
│ │ ├── liveness
│ │ │ ├── dead_refs_loop.exp
│ │ │ ├── loop_weirdness.exp
│ │ │ └── trailing_semi.exp
│ │ └── typing
│ │ │ └── abort_any_type.exp
│ │ ├── ability-check
│ │ ├── resources.exp
│ │ └── drop_on_abort.exp
│ │ ├── reference-safety
│ │ ├── bug_12756.exp
│ │ ├── bug_13687.exp
│ │ ├── bug_13912.exp
│ │ ├── eq_ref.exp
│ │ ├── bug_12756.old.exp
│ │ ├── eq_ref.no-opt.exp
│ │ ├── eq_ref.old.exp
│ │ ├── function_ref.exp
│ │ └── mut_ref_paths.exp
│ │ ├── checking
│ │ ├── positional_fields
│ │ │ └── decl_invalid.move
│ │ └── variants
│ │ │ └── variants_empty.move
│ │ └── skip_attribute_checks
│ │ └── testonly.exp
│ ├── move-model
│ └── tests
│ │ └── sources
│ │ ├── lets_ok.exp
│ │ ├── if_else_ok.exp
│ │ ├── lets_ok.v2_exp
│ │ ├── schemas_ok.exp
│ │ ├── structs_ok.exp
│ │ ├── conditions_ok.exp
│ │ ├── conditions_ok.v2_exp
│ │ ├── expressions_ok.exp
│ │ ├── expressions_ok.v2_exp
│ │ ├── if_else_ok.v2_exp
│ │ ├── intrinsic_decl_ok.exp
│ │ ├── invariants_ok.exp
│ │ ├── invariants_ok.v2_exp
│ │ ├── quantifiers_ok.exp
│ │ ├── quantifiers_ok.v2_exp
│ │ ├── schemas_ok.v2_exp
│ │ ├── structs_ok.v2_exp
│ │ ├── type_variance_ok.exp
│ │ ├── compile_via_model
│ │ ├── let.exp
│ │ ├── assign.exp
│ │ ├── assign.v2_exp
│ │ ├── let.v2_exp
│ │ ├── simple.exp
│ │ └── simple.v2_exp
│ │ ├── inline_fun_spec_ok.exp
│ │ ├── inline_fun_spec_ok.v2_exp
│ │ ├── intrinsic_decl_ok.v2_exp
│ │ └── type_variance_ok.v2_exp
│ ├── tools
│ ├── move-package
│ │ └── tests
│ │ │ ├── .gitattributes
│ │ │ ├── test_sources
│ │ │ ├── compilation
│ │ │ │ ├── one_dep
│ │ │ │ │ └── Move.compile
│ │ │ │ ├── basic_no_deps
│ │ │ │ │ └── Move.compile
│ │ │ │ ├── test_symlinks
│ │ │ │ │ └── Move.compile
│ │ │ │ ├── one_dep_renamed
│ │ │ │ │ └── Move.compile
│ │ │ │ ├── std-lib-override
│ │ │ │ │ ├── Move.compile
│ │ │ │ │ └── Move.override
│ │ │ │ ├── basic_no_deps_test_mode
│ │ │ │ │ └── Move.compile
│ │ │ │ ├── case_insensitive_check
│ │ │ │ │ ├── Move.compile
│ │ │ │ │ └── sources
│ │ │ │ │ │ └── a.move
│ │ │ │ ├── multiple_deps_rename
│ │ │ │ │ └── Move.compile
│ │ │ │ ├── one_dep_with_scripts
│ │ │ │ │ └── Move.compile
│ │ │ │ ├── diamond_problem_no_conflict
│ │ │ │ │ └── Move.compile
│ │ │ │ ├── multiple_deps_rename_one
│ │ │ │ │ └── Move.compile
│ │ │ │ ├── one_dep_assigned_address
│ │ │ │ │ └── Move.compile
│ │ │ │ ├── basic_no_deps_address_assigned
│ │ │ │ │ └── Move.compile
│ │ │ │ ├── call_package_fun_from_other_package
│ │ │ │ │ ├── Move.compile
│ │ │ │ │ └── Move.exp
│ │ │ │ └── diamond_problem_backflow_resolution
│ │ │ │ │ └── Move.compile
│ │ │ └── model
│ │ │ │ ├── basic_no_deps
│ │ │ │ ├── Move.model
│ │ │ │ ├── Move.exp
│ │ │ │ └── Move.v2_exp
│ │ │ │ ├── multiple_deps_rename
│ │ │ │ └── Move.model
│ │ │ │ └── multiple_deps_no_rename
│ │ │ │ ├── Move.model
│ │ │ │ ├── Move.exp
│ │ │ │ └── Move.v2_exp
│ │ │ └── thread_safety_package_test_sources
│ │ │ ├── Package1
│ │ │ └── sources
│ │ │ │ └── Dummy.move
│ │ │ └── Package2
│ │ │ └── sources
│ │ │ └── Dummy.move
│ ├── move-cli
│ │ └── tests
│ │ │ ├── build_tests
│ │ │ ├── dependency_chain
│ │ │ │ ├── args.txt
│ │ │ │ └── args.evm.txt
│ │ │ ├── dev_address
│ │ │ │ ├── args.txt
│ │ │ │ └── args.evm.txt
│ │ │ ├── unbound_address
│ │ │ │ ├── args.txt
│ │ │ │ └── args.evm.txt
│ │ │ ├── circular_dependencies
│ │ │ │ ├── args.txt
│ │ │ │ └── args.evm.txt
│ │ │ ├── empty_module_no_deps
│ │ │ │ ├── args.txt
│ │ │ │ ├── args.evm.txt
│ │ │ │ └── Move.toml
│ │ │ ├── unbound_dependency
│ │ │ │ ├── args.txt
│ │ │ │ └── args.evm.txt
│ │ │ ├── disassemble_script
│ │ │ │ └── args.txt
│ │ │ ├── include_exclude_stdlib
│ │ │ │ └── args.txt
│ │ │ └── build_with_warnings
│ │ │ │ ├── args.txt
│ │ │ │ └── Move.toml
│ │ │ ├── move_unit_tests
│ │ │ ├── assign_dev_addr_for_dep
│ │ │ │ ├── args.txt
│ │ │ │ ├── args.evm.txt
│ │ │ │ └── args.stackless.txt
│ │ │ ├── standalone_module_with_dev_addr_assignment
│ │ │ │ ├── args.txt
│ │ │ │ └── args.evm.txt
│ │ │ └── standalone_module_with_regular_addr_assignment
│ │ │ │ ├── args.txt
│ │ │ │ └── args.evm.txt
│ │ │ └── cross_process_tests
│ │ │ ├── Package1
│ │ │ └── sources
│ │ │ │ └── Dummy.move
│ │ │ └── Package2
│ │ │ └── sources
│ │ │ └── Dummy.move
│ ├── move-unit-test
│ │ └── tests
│ │ │ └── .gitattributes
│ └── move-linter
│ │ └── tests
│ │ └── model_ast_lints
│ │ └── multi_attributes_02.exp
│ ├── move-bytecode-verifier
│ ├── fuzz
│ │ └── .gitignore
│ └── transactional-tests
│ │ └── tests
│ │ ├── reference_safety
│ │ ├── eq_ok.exp
│ │ ├── eq_ok.v2_exp
│ │ ├── borrow_copy_ok.exp
│ │ ├── borrow_in_loop.exp
│ │ ├── deref_eq_good.exp
│ │ ├── factor_valid_1.exp
│ │ ├── factor_valid_2.exp
│ │ ├── imm_borrow_loc.exp
│ │ ├── move_one_branch.exp
│ │ ├── nested_mutate.exp
│ │ ├── release_cycle.exp
│ │ ├── simple_mutate.exp
│ │ ├── two_mutable_ref.exp
│ │ ├── assign_local_struct.exp
│ │ ├── assign_local_value.exp
│ │ ├── borrow_copy_ok.v2_exp
│ │ ├── borrow_field_ok.exp
│ │ ├── borrow_field_ok.v2_exp
│ │ ├── borrow_global_good.exp
│ │ ├── borrow_in_loop.v2_exp
│ │ ├── copy_loc_borrowed.exp
│ │ ├── copy_loc_borrowed.v2_exp
│ │ ├── deref_eq_good.v2_exp
│ │ ├── factor_valid_1.v2_exp
│ │ ├── factor_valid_2.v2_exp
│ │ ├── imm_borrow_global.exp
│ │ ├── imm_borrow_loc.v2_exp
│ │ ├── imm_borrow_loc_valid.exp
│ │ ├── imm_borrow_on_mut.exp
│ │ ├── imm_borrow_on_mut.v2_exp
│ │ ├── move_one_branch.v2_exp
│ │ ├── nested_mutate.v2_exp
│ │ ├── ref_moved_one_branch.exp
│ │ ├── release_cycle.v2_exp
│ │ ├── simple_mutate.v2_exp
│ │ ├── two_mutable_ref.v2_exp
│ │ ├── assign_local_struct.v2_exp
│ │ ├── assign_local_value.v2_exp
│ │ ├── borrow_global_acquires_1.exp
│ │ ├── borrow_global_acquires_2.exp
│ │ ├── borrow_global_acquires_3.exp
│ │ ├── borrow_global_good.v2_exp
│ │ ├── borrow_x_in_if_y_in_else.exp
│ │ ├── copy_loc_borrowed_field.exp
│ │ ├── deref_borrow_field_ok.exp
│ │ ├── deref_borrow_field_ok.v2_exp
│ │ ├── imm_borrow_global.v2_exp
│ │ ├── imm_borrow_loc_trivial.exp
│ │ ├── imm_borrow_loc_trivial.v2_exp
│ │ ├── imm_borrow_loc_valid.v2_exp
│ │ ├── imm_borrow_on_mut_trivial.exp
│ │ ├── mutate_borrow_field_ok.exp
│ │ ├── mutate_resource_holder_2.exp
│ │ ├── mutate_with_borrowed_loc.exp
│ │ ├── ref_moved_one_branch.v2_exp
│ │ ├── return_with_borrowed_loc.exp
│ │ ├── use_prefix_after_move.exp
│ │ ├── use_prefix_after_move.v2_exp
│ │ ├── writeref_borrow_valid1.exp
│ │ ├── writeref_borrow_valid1.v2_exp
│ │ ├── writeref_borrow_valid2.exp
│ │ ├── writeref_borrow_valid2.v2_exp
│ │ ├── borrow_global_acquires_1.v2_exp
│ │ ├── borrow_global_acquires_2.v2_exp
│ │ ├── borrow_global_acquires_3.v2_exp
│ │ ├── borrow_x_in_if_y_in_else.v2_exp
│ │ ├── copy_loc_borrowed_field.v2_exp
│ │ ├── copy_loc_borrowed_indirect.exp
│ │ ├── copy_loc_borrowed_indirect.v2_exp
│ │ ├── imm_borrow_loc_trivial_valid.exp
│ │ ├── imm_borrow_on_mut_trivial.v2_exp
│ │ ├── join_borrow_unavailable_valid.exp
│ │ ├── mutable_borrow_local_twice.exp
│ │ ├── mutable_borrow_local_twice.v2_exp
│ │ ├── mutate_borrow_field_ok.v2_exp
│ │ ├── mutate_resource_holder_2.v2_exp
│ │ ├── mutate_with_borrowed_loc.v2_exp
│ │ └── return_with_borrowed_loc.v2_exp
│ │ ├── control_flow
│ │ ├── break_nested.exp
│ │ ├── break_simple.exp
│ │ ├── dead_return.exp
│ │ ├── break_nested.v2_exp
│ │ ├── break_simple.v2_exp
│ │ ├── break_unreachable.exp
│ │ ├── dead_return.v2_exp
│ │ ├── dead_return_local.exp
│ │ ├── regression_test_496.exp
│ │ ├── regression_test_678.exp
│ │ ├── break_unreachable.v2_exp
│ │ ├── dead_return_local.v2_exp
│ │ ├── regression_test_496.v2_exp
│ │ └── regression_test_678.v2_exp
│ │ ├── locals_safety
│ │ ├── assign_copy.exp
│ │ ├── assign_move.exp
│ │ ├── signer_unused.exp
│ │ ├── assign_copy.v2_exp
│ │ ├── assign_move.v2_exp
│ │ ├── signer_unused.v2_exp
│ │ ├── return_branch_moves.exp
│ │ ├── return_branch_moves.v2_exp
│ │ ├── signer_st_loc_partial.exp
│ │ ├── signer_unused_partial.exp
│ │ ├── return_branch_doesnt_assign.exp
│ │ ├── signer_st_loc_partial.v2_exp
│ │ ├── signer_unused_partial.v2_exp
│ │ ├── deep_return_branch_doesnt_assign.exp
│ │ └── return_branch_doesnt_assign.v2_exp
│ │ ├── signature
│ │ ├── all_as_all_ok.exp
│ │ ├── all_as_all_ok.v2_exp
│ │ ├── reference_in_locals_ok.exp
│ │ ├── resource_as_all_ok.exp
│ │ ├── resource_as_all_ok.v2_exp
│ │ ├── two_type_actuals_ok.exp
│ │ ├── two_type_actuals_ok.v2_exp
│ │ ├── unrestricted_as_all_ok.exp
│ │ ├── reference_in_locals_ok.v2_exp
│ │ └── unrestricted_as_all_ok.v2_exp
│ │ ├── type_safety
│ │ ├── freeze_valid.exp
│ │ ├── freeze_valid.v2_exp
│ │ ├── generic_call.exp
│ │ ├── generic_call.v2_exp
│ │ ├── generic_option.exp
│ │ ├── generic_pack.exp
│ │ ├── generic_unpack.exp
│ │ ├── gerbens_test1.exp
│ │ ├── integers_valid.exp
│ │ ├── signer_equality.exp
│ │ ├── signer_st_loc.exp
│ │ ├── bug_9459_notworking.exp
│ │ ├── bug_9459_working.exp
│ │ ├── bug_9459_working.v2_exp
│ │ ├── generic_builtins.exp
│ │ ├── generic_builtins.v2_exp
│ │ ├── generic_field_borrow.exp
│ │ ├── generic_function_def.exp
│ │ ├── generic_id_function.exp
│ │ ├── generic_option.v2_exp
│ │ ├── generic_pack.v2_exp
│ │ ├── generic_struct_def.exp
│ │ ├── generic_unpack.v2_exp
│ │ ├── gerbens_test1.v2_exp
│ │ ├── integers_valid.v2_exp
│ │ ├── signer_equality.v2_exp
│ │ ├── signer_st_loc.v2_exp
│ │ ├── signer_transitive.exp
│ │ ├── signer_transitive.v2_exp
│ │ ├── signer_write_ref.exp
│ │ ├── signer_write_ref.v2_exp
│ │ ├── unpack_resource.exp
│ │ ├── unpack_resource.v2_exp
│ │ ├── bug_9459_notworking.v2_exp
│ │ ├── equality_resource_refs.exp
│ │ ├── generic_abilities_pack.exp
│ │ ├── generic_abilities_pack.v2_exp
│ │ ├── generic_field_borrow.v2_exp
│ │ ├── generic_function_def.v2_exp
│ │ ├── generic_id_function.v2_exp
│ │ ├── generic_import_struct.exp
│ │ ├── generic_import_struct.v2_exp
│ │ ├── generic_struct_def.v2_exp
│ │ ├── signer_move_to_valid.exp
│ │ ├── signer_move_to_valid.v2_exp
│ │ ├── unrestricted_instantiate.exp
│ │ ├── equality_resource_refs.v2_exp
│ │ ├── generic_abilities_borrow_field.exp
│ │ ├── mut_call_from_get_resource.exp
│ │ ├── mut_call_from_get_resource.v2_exp
│ │ ├── unrestricted_instantiate.v2_exp
│ │ ├── generic_abilities_borrow_field.v2_exp
│ │ ├── generic_abilities_imm_borrow_field.exp
│ │ ├── generic_field_borrow_after_call.exp
│ │ ├── generic_field_borrow_after_call.v2_exp
│ │ └── phantom_params
│ │ │ └── fields_abilities_ok.exp
│ │ ├── stack_usage_verifier
│ │ ├── pop_exact.exp
│ │ ├── consume_stack.exp
│ │ ├── consume_stack.v2_exp
│ │ ├── pop_exact.v2_exp
│ │ ├── integer_stack_balanced.exp
│ │ ├── integer_stack_balanced.v2_exp
│ │ ├── multiple_return_values.exp
│ │ └── multiple_return_values.v2_exp
│ │ ├── dependencies
│ │ ├── access_public_function.exp
│ │ ├── all_fields_accessible.exp
│ │ ├── call_integers_valid.exp
│ │ ├── call_integers_valid.v2_exp
│ │ ├── access_friend_function_valid.exp
│ │ ├── access_public_function.v2_exp
│ │ ├── all_fields_accessible.v2_exp
│ │ ├── access_friend_function_valid.v2_exp
│ │ └── non_internal_function_valid_call.exp
│ │ ├── struct_defs
│ │ ├── module_struct_shared_name.exp
│ │ └── module_struct_shared_name.v2_exp
│ │ └── script_signature
│ │ ├── script_with_generic_type_arg.exp
│ │ └── signer_misplaced_signer_arg.exp
│ ├── move-vm
│ ├── paranoid-tests
│ │ └── tests
│ │ │ ├── ability
│ │ │ ├── drop
│ │ │ │ ├── eq_2.exp
│ │ │ │ ├── neq_2.exp
│ │ │ │ ├── pop_2.exp
│ │ │ │ ├── store_2.exp
│ │ │ │ ├── hot_potato_2.exp
│ │ │ │ └── write_ref_2.exp
│ │ │ ├── copy
│ │ │ │ ├── copy_loc_2.exp
│ │ │ │ └── read_ref_2.exp
│ │ │ └── store
│ │ │ │ ├── hot_potato_store.exp
│ │ │ │ └── invalid_store_2.exp
│ │ │ ├── type_safety
│ │ │ ├── natives
│ │ │ │ └── type_info.exp
│ │ │ ├── struct
│ │ │ │ └── pack_generic.exp
│ │ │ └── simple_instruction
│ │ │ │ └── branch.exp
│ │ │ └── encapsulation_safety
│ │ │ ├── borrow_field_2.exp
│ │ │ └── unpack_generic_2.exp
│ └── transactional-tests
│ │ └── tests
│ │ ├── builtins
│ │ ├── gen_move_to.exp
│ │ ├── move_from.exp
│ │ ├── move_from.v2_exp
│ │ ├── gen_move_to.v2_exp
│ │ ├── get_txn_sender.exp
│ │ ├── get_txn_sender.v2_exp
│ │ ├── vector_ops_all_ok.exp
│ │ ├── vector_ops_len_ok.exp
│ │ ├── vector_ops_pop_ok.exp
│ │ ├── get_published_resource.exp
│ │ ├── has_published_struct.exp
│ │ ├── signer_runtime_dummy.exp
│ │ ├── signer_runtime_move_to.exp
│ │ ├── vector_ops_all_ok.v2_exp
│ │ ├── vector_ops_bound_ok.exp
│ │ ├── vector_ops_bound_ok.v2_exp
│ │ ├── vector_ops_len_ok.v2_exp
│ │ ├── vector_ops_pop_ok.v2_exp
│ │ ├── vector_ops_unpack_ok.exp
│ │ ├── verify_valid_bytearray.exp
│ │ ├── get_published_resource.v2_exp
│ │ ├── has_published_struct.v2_exp
│ │ ├── move_published_resource.exp
│ │ ├── move_published_resource.v2_exp
│ │ ├── signer_runtime_dummy.v2_exp
│ │ ├── signer_runtime_move_to.v2_exp
│ │ ├── struct_borrow_and_modify.exp
│ │ ├── struct_borrow_and_modify.v2_exp
│ │ ├── vector_ops_pack_unpack_ok.exp
│ │ ├── vector_ops_unpack_ok.v2_exp
│ │ ├── vector_ops_using_generics.exp
│ │ ├── verify_valid_bytearray.v2_exp
│ │ ├── vector_ops_borrow_and_modify_ok.exp
│ │ ├── vector_ops_pack_unpack_ok.v2_exp
│ │ ├── vector_ops_using_generics.v2_exp
│ │ ├── read_and_dont_write_to_global_storage.exp
│ │ ├── vector_ops_borrow_and_modify_ok.v2_exp
│ │ ├── move_to_and_from_resource_with_u128_field.exp
│ │ ├── move_to_and_from_resource_with_u64_field.exp
│ │ ├── move_to_and_from_resource_with_u8_field.exp
│ │ ├── move_to_and_from_resource_with_u8_field.v2_exp
│ │ ├── read_and_dont_write_to_global_storage.v2_exp
│ │ ├── move_to_and_from_resource_with_primitive_fields.exp
│ │ ├── move_to_and_from_resource_with_u128_field.v2_exp
│ │ ├── move_to_and_from_resource_with_u64_field.v2_exp
│ │ └── move_to_and_from_resource_with_primitive_fields.v2_exp
│ │ ├── references
│ │ ├── drop_ref.exp
│ │ ├── drop_ref.v2_exp
│ │ ├── deref_move_ok.exp
│ │ ├── deref_move_ok.v2_exp
│ │ ├── deref_parens_ok.exp
│ │ ├── mixed_lvalue.exp
│ │ ├── mixed_lvalue.v2_exp
│ │ ├── mutate_copy_ok.exp
│ │ ├── mutate_move_ok.exp
│ │ ├── mutate_parens_ok.exp
│ │ ├── deref_borrow_local_ok.exp
│ │ ├── deref_move_module_ok.exp
│ │ ├── deref_parens_ok.v2_exp
│ │ ├── mutate_copy_ok.v2_exp
│ │ ├── mutate_move_ok.v2_exp
│ │ ├── mutate_parens_ok.v2_exp
│ │ ├── deref_borrow_local_ok.v2_exp
│ │ ├── deref_move_module_ok.v2_exp
│ │ ├── mutate_borrow_local_ok.exp
│ │ └── mutate_borrow_local_ok.v2_exp
│ │ ├── control_flow
│ │ ├── loop_return.exp
│ │ ├── loop_return.v2_exp
│ │ ├── loop_simple.exp
│ │ ├── loop_simple.v2_exp
│ │ ├── while_false.exp
│ │ ├── while_false.v2_exp
│ │ ├── while_nested.exp
│ │ ├── while_return.exp
│ │ ├── while_simple.exp
│ │ ├── break_accumulator.exp
│ │ ├── loop_nested_breaks.exp
│ │ ├── while_nested.v2_exp
│ │ ├── while_nested_return.exp
│ │ ├── while_return.v2_exp
│ │ ├── while_simple.v2_exp
│ │ ├── break_accumulator.v2_exp
│ │ ├── break_continue_simple.exp
│ │ ├── break_continue_simple.v2_exp
│ │ ├── if_branch_diverges_1.exp
│ │ ├── if_branch_diverges_1.v2_exp
│ │ ├── if_branch_diverges_10.exp
│ │ ├── if_branch_diverges_10.v2_exp
│ │ ├── if_branch_diverges_2.exp
│ │ ├── if_branch_diverges_2.v2_exp
│ │ ├── if_branch_diverges_3.exp
│ │ ├── if_branch_diverges_3.v2_exp
│ │ ├── if_branch_diverges_4.exp
│ │ ├── if_branch_diverges_4.v2_exp
│ │ ├── if_branch_diverges_7.exp
│ │ ├── if_branch_diverges_7.v2_exp
│ │ ├── if_branch_diverges_9.exp
│ │ ├── if_branch_diverges_9.v2_exp
│ │ ├── loop_nested_breaks.v2_exp
│ │ ├── while_nested_return.v2_exp
│ │ ├── break_continue_sum_of_odds.exp
│ │ ├── break_continue_sum_of_odds.v2_exp
│ │ ├── return_in_if_branch_taken.exp
│ │ ├── return_in_if_branch_taken.v2_exp
│ │ ├── return_in_if_branch_taken_local.exp
│ │ ├── return_in_if_branch_taken_local.v2_exp
│ │ ├── return_in_if_branch_taken_no_else.exp
│ │ └── return_in_if_branch_taken_no_else.v2_exp
│ │ ├── instructions
│ │ ├── deref_value.exp
│ │ ├── field_reads.exp
│ │ ├── field_writes.exp
│ │ ├── pack_unpack.exp
│ │ ├── address_equality.exp
│ │ ├── address_equality.v2_exp
│ │ ├── bitwise_operators.exp
│ │ ├── boolean_operators.exp
│ │ ├── deref_value.v2_exp
│ │ ├── deref_value_nested.exp
│ │ ├── field_reads.v2_exp
│ │ ├── field_writes.v2_exp
│ │ ├── operator_precedence.exp
│ │ ├── pack_unpack.v2_exp
│ │ ├── simple_arithmetic.exp
│ │ ├── bitwise_operators.v2_exp
│ │ ├── boolean_operators.v2_exp
│ │ ├── comparison_operators.exp
│ │ ├── comparison_operators.v2_exp
│ │ ├── deref_value_nested.v2_exp
│ │ ├── operator_precedence.v2_exp
│ │ ├── simple_arithmetic.v2_exp
│ │ ├── equality_reference_value.exp
│ │ └── equality_reference_value.v2_exp
│ │ ├── recursion
│ │ ├── direct_recursion.exp
│ │ ├── mutual_recursion.exp
│ │ ├── direct_recursion.v2_exp
│ │ └── mutual_recursion.v2_exp
│ │ ├── example_programs
│ │ ├── coin_wrapper.exp
│ │ └── coin_wrapper.v2_exp
│ │ ├── commands
│ │ ├── local_assigned_many_times.exp
│ │ └── local_assigned_many_times.v2_exp
│ │ ├── entry_points
│ │ ├── all_possible_param_types.exp
│ │ ├── expected_0_args_got_0.exp
│ │ ├── expected_0_args_got_0.v2_exp
│ │ ├── expected_u64_got_u64.exp
│ │ ├── expected_u64_got_u64.v2_exp
│ │ ├── address_arg_is_not_signer.exp
│ │ ├── address_arg_is_not_signer.v2_exp
│ │ ├── all_possible_param_types.v2_exp
│ │ ├── expected_1_signer_arg_got_1.exp
│ │ ├── mixed_signer_inputs_function.exp
│ │ ├── mixed_signer_inputs_scripts.exp
│ │ ├── script_type_args_type_eq.exp
│ │ ├── script_type_args_type_eq.v2_exp
│ │ ├── expected_1_signer_arg_got_1.v2_exp
│ │ ├── expected_u64_addr_got_u64_addr.exp
│ │ ├── expected_u64_addr_got_u64_addr.v2_exp
│ │ ├── mixed_signer_inputs_function.v2_exp
│ │ ├── mixed_signer_inputs_scripts.v2_exp
│ │ ├── expected_u64_u64_address_got_u64_u64_address.exp
│ │ └── expected_u64_u64_address_got_u64_u64_address.v2_exp
│ │ ├── stack_and_function_calls
│ │ ├── pop_weird.exp
│ │ ├── pop_weird.v2_exp
│ │ ├── add_function_calls.exp
│ │ ├── add_function_calls.v2_exp
│ │ ├── assign_expression_list.exp
│ │ ├── assign_function_call.exp
│ │ ├── function_composition.exp
│ │ ├── assign_expression_list.v2_exp
│ │ ├── assign_function_call.v2_exp
│ │ ├── function_composition.v2_exp
│ │ ├── return_expression_lists.exp
│ │ ├── return_expression_lists.v2_exp
│ │ ├── binop_function_calls_as_args.exp
│ │ ├── binop_function_calls_as_args.v2_exp
│ │ ├── many_function_calls_as_args.exp
│ │ ├── many_function_calls_as_args.v2_exp
│ │ ├── multiple_composite_functions.exp
│ │ ├── multiple_composite_functions.v2_exp
│ │ ├── push_args_before_function_call.exp
│ │ ├── pass_args_on_stack_as_expressions.exp
│ │ └── pass_args_on_stack_as_expressions.v2_exp
│ │ ├── module_publishing
│ │ ├── publish_module_and_use.exp
│ │ ├── publish_two_modules.exp
│ │ ├── publish_two_modules.v2_exp
│ │ ├── publish_module_and_use.v2_exp
│ │ ├── publish_module_and_use_2.exp
│ │ ├── publish_module_and_use_2.v2_exp
│ │ ├── publish_module_and_use_3.exp
│ │ ├── publish_module_and_use_3.v2_exp
│ │ ├── republish_module_compatible.exp
│ │ ├── republish_module_compatible.v2_exp
│ │ ├── republish_module_compatible_add_entry.exp
│ │ ├── republish_module_compatible_add_friend.exp
│ │ ├── republish_module_compatible_add_entry.v2_exp
│ │ └── republish_module_compatible_add_friend.v2_exp
│ │ └── native_functions
│ │ ├── non_existant_native_function.exp
│ │ ├── non_existant_native_function.v2_exp
│ │ ├── clever_non_existant_native_function.exp
│ │ └── clever_non_existant_native_function.v2_exp
│ ├── move-ir-compiler
│ └── transactional-tests
│ │ └── tests
│ │ └── specification
│ │ ├── conditions.exp
│ │ └── invariants.exp
│ ├── testing-infra
│ └── transactional-test-runner
│ │ └── tests
│ │ └── vm_test_harness
│ │ ├── simple_init.exp
│ │ ├── single_publish.exp
│ │ ├── leading_comment.exp
│ │ ├── leading_comment.v2_exp
│ │ ├── simple_init.v2_exp
│ │ └── single_publish.v2_exp
│ └── move-examples
│ ├── experimental
│ └── math-puzzle
│ │ └── Move.toml
│ └── diem-framework
│ └── move-packages
│ └── DPN
│ └── sources
│ └── README
├── protos
├── buf.work.yaml
└── typescript
│ └── src
│ ├── index.ts
│ ├── index.aptos.indexer.ts
│ ├── index.aptos.indexer.v1.ts
│ ├── index.aptos.transaction.ts
│ ├── index.aptos.transaction.v1.ts
│ ├── index.aptos.util.timestamp.ts
│ └── index.aptos.util.ts
├── .lycheeignore
├── aptos-move
├── move-examples
│ ├── cli-e2e-tests
│ │ ├── devnet
│ │ │ └── sources
│ │ ├── mainnet
│ │ │ └── sources
│ │ └── testnet
│ │ │ └── sources
│ ├── my_first_dapp
│ │ ├── move
│ │ │ └── .gitignore
│ │ └── client
│ │ │ └── src
│ │ │ └── react-app-env.d.ts
│ ├── src
│ │ └── lib.rs
│ └── move-tutorial
│ │ └── step_1
│ │ └── basic_coin
│ │ └── Move.toml
├── block-executor
│ └── .cargo
│ │ └── config.toml
├── aptos-e2e-comparison-testing
│ └── test-data-mainnet-10m-15
│ │ └── rocks_txn_idx_db
│ │ ├── LOCK
│ │ ├── 000009.log
│ │ ├── 000013.log
│ │ ├── 000017.log
│ │ ├── CURRENT
│ │ └── IDENTITY
├── aptos-transactional-test-harness
│ └── tests
│ │ ├── v2-tests
│ │ └── bug_bbb75fa.exp
│ │ └── aptos_test_harness
│ │ ├── bug_bbb75fa.exp
│ │ ├── bug_bbb75fa.v2_exp
│ │ ├── publish_module.exp
│ │ ├── publish_module.v2_exp
│ │ ├── tool_attributes.exp
│ │ └── tool_attributes.v2_exp
├── framework
│ ├── aptos-stdlib
│ │ ├── doc_template
│ │ │ └── references.md
│ │ └── sources
│ │ │ └── cryptography
│ │ │ ├── ristretto255_elgamal.spec.move
│ │ │ └── ristretto255_pedersen.spec.move
│ ├── aptos-token
│ │ └── doc_template
│ │ │ └── references.md
│ ├── move-stdlib
│ │ └── doc_template
│ │ │ └── references.md
│ ├── aptos-framework
│ │ └── doc_template
│ │ │ └── references.md
│ ├── aptos-token-objects
│ │ └── doc_template
│ │ │ └── references.md
│ └── releases
│ │ └── testnet.mrb
└── e2e-move-tests
│ └── src
│ └── tests
│ ├── init_module.data
│ ├── pack
│ │ └── sources
│ │ │ └── unrelated.move
│ └── pack_initial
│ │ └── sources
│ │ └── unrelated.move
│ ├── code_publishing.data
│ ├── pack_stdlib
│ │ └── Move.toml
│ └── pack_stdlib_incompat
│ │ └── Move.toml
│ └── dependencies.data
│ └── p1
│ └── sources
│ └── test.move
├── .prettierrc
├── .assets
├── aptos.png
└── aptos_banner.png
├── dashboards
├── api.json.gz
├── dag.json.gz
├── ddos.json.gz
├── vault.json.gz
├── logging.json.gz
├── mempool.json.gz
├── network.json.gz
├── outliers.json.gz
├── overview.json.gz
├── storage.json.gz
├── system.json.gz
├── consensus.json.gz
├── execution.json.gz
├── fullnodes.json.gz
├── validator.json.gz
├── quorum-store.json.gz
├── safety-rules.json.gz
├── state-sync-v2.json.gz
├── transactions.json.gz
├── storage-details.json.gz
├── blockchain-health.json.gz
├── main-loop-insight.json.gz
├── node-system-info.json.gz
├── public-fullnodes.json.gz
├── single-node-view.json.gz
├── storage-overview.json.gz
├── end-to-end-txn-latency.json.gz
├── node-resource-metrics.json.gz
├── peer-monitoring-service.json.gz
└── validator-txn-latency.json.gz
├── docker
├── compose
│ ├── aptos-node
│ │ └── blocked.ips
│ └── monitoring
│ │ └── grafana
│ │ └── dashboards
│ │ ├── fullnodes.json
│ │ └── validator.json
└── tools
│ └── boto.cfg
├── consensus
└── src
│ └── rand
│ └── dkg
│ └── mod.rs
├── .actrc
├── devtools
└── assets
│ ├── license_header.txt
│ ├── license_header_utf8.txt
│ └── third_party_license_header_2.txt
├── types
└── src
│ ├── vm
│ └── mod.rs
│ └── test_helpers
│ └── empty_script.mv
└── developer-docs-site
└── README.md
/.node-version:
--------------------------------------------------------------------------------
1 | v16.14.0
2 |
--------------------------------------------------------------------------------
/.python-version:
--------------------------------------------------------------------------------
1 | 3.9.16
2 |
--------------------------------------------------------------------------------
/api/doc/.version:
--------------------------------------------------------------------------------
1 | 1.2.0
2 |
--------------------------------------------------------------------------------
/testsuite/pangu_lib/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/crates/aptos/e2e/cases/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/crates/indexer/migrations/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/keyless/pepper/scripts/install-deps.sh:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/testsuite/pangu_lib/tests/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/crates/aptos-faucet/doc/.version:
--------------------------------------------------------------------------------
1 | 2.0.1
2 |
--------------------------------------------------------------------------------
/testsuite/fuzzer/data/.gitignore:
--------------------------------------------------------------------------------
1 | */build
--------------------------------------------------------------------------------
/testsuite/pangu_lib/fixtures/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/terraform/helm/genesis/.helmignore:
--------------------------------------------------------------------------------
1 | *~
2 | *.swp
--------------------------------------------------------------------------------
/testsuite/pangu_lib/node_commands/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/testsuite/pangu_lib/testnet_commands/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/.github/dep-auditors.json:
--------------------------------------------------------------------------------
1 | [
2 | "davidiw"
3 | ]
4 |
--------------------------------------------------------------------------------
/crates/aptos-faucet/ts-client/.nvmrc:
--------------------------------------------------------------------------------
1 | v16.14.0
2 |
--------------------------------------------------------------------------------
/ecosystem/node-checker/ts-client/.nvmrc:
--------------------------------------------------------------------------------
1 | v16.14.0
2 |
--------------------------------------------------------------------------------
/terraform/helm/aptos-node/.helmignore:
--------------------------------------------------------------------------------
1 | *~
2 | *.swp
--------------------------------------------------------------------------------
/terraform/helm/fullnode/.helmignore:
--------------------------------------------------------------------------------
1 | *~
2 | *.swp
3 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/.gitignore:
--------------------------------------------------------------------------------
1 | /output
2 |
--------------------------------------------------------------------------------
/api/doc/README.md:
--------------------------------------------------------------------------------
1 | # Aptos Node API v1
2 |
3 | todo
4 |
--------------------------------------------------------------------------------
/ecosystem/nft-metadata-crawler/.gitignore:
--------------------------------------------------------------------------------
1 | *.csv
2 | *.yaml
--------------------------------------------------------------------------------
/ecosystem/typescript/aptos-client/.gitignore:
--------------------------------------------------------------------------------
1 | dist/
2 |
--------------------------------------------------------------------------------
/third_party/move/documentation/book/.gitignore:
--------------------------------------------------------------------------------
1 | /book
2 |
--------------------------------------------------------------------------------
/ecosystem/typescript/aptos-client/.prettierignore:
--------------------------------------------------------------------------------
1 | dist/
2 |
--------------------------------------------------------------------------------
/terraform/aptos-node-testnet/README.md:
--------------------------------------------------------------------------------
1 | # Aptos Node Testnet
2 |
--------------------------------------------------------------------------------
/third_party/move/move-prover/lab/data/mono/mono_backend.toml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/protos/buf.work.yaml:
--------------------------------------------------------------------------------
1 | version: v1
2 | directories:
3 | - proto
4 |
--------------------------------------------------------------------------------
/terraform/helm/monitoring/files/dashboards:
--------------------------------------------------------------------------------
1 | ../../../../dashboards
--------------------------------------------------------------------------------
/.lycheeignore:
--------------------------------------------------------------------------------
1 | file://.*
2 | http://localhost.*
3 | http://127.0.0.1.*
4 |
--------------------------------------------------------------------------------
/api/goldens/aptos_api__tests__events_test__test_get_events.json:
--------------------------------------------------------------------------------
1 | []
2 |
--------------------------------------------------------------------------------
/aptos-move/move-examples/cli-e2e-tests/devnet/sources:
--------------------------------------------------------------------------------
1 | ../common/sources/
--------------------------------------------------------------------------------
/aptos-move/move-examples/cli-e2e-tests/mainnet/sources:
--------------------------------------------------------------------------------
1 | ../common/sources/
--------------------------------------------------------------------------------
/aptos-move/move-examples/cli-e2e-tests/testnet/sources:
--------------------------------------------------------------------------------
1 | ../common/sources/
--------------------------------------------------------------------------------
/aptos-move/move-examples/my_first_dapp/move/.gitignore:
--------------------------------------------------------------------------------
1 | build/
2 | .aptos
--------------------------------------------------------------------------------
/crates/aptos-faucet/ts-client/.npmignore:
--------------------------------------------------------------------------------
1 | coverage
2 | node_modules
3 |
--------------------------------------------------------------------------------
/ecosystem/node-checker/ts-client/.npmignore:
--------------------------------------------------------------------------------
1 | coverage
2 | node_modules
3 |
--------------------------------------------------------------------------------
/testsuite/loadtest-k6/.gitignore:
--------------------------------------------------------------------------------
1 | dist
2 | node_modules
3 | !run_*.sh
4 |
--------------------------------------------------------------------------------
/third_party/move/evm/hardhat-move/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | dist
3 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/transactional-tests/tests/v1.unmatched:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/.prettierrc:
--------------------------------------------------------------------------------
1 | {
2 | "trailingComma": "all",
3 | "printWidth": 120
4 | }
5 |
--------------------------------------------------------------------------------
/api/goldens/aptos_api__tests__view_function__test_simple_view.json:
--------------------------------------------------------------------------------
1 | ["100000"]
--------------------------------------------------------------------------------
/api/goldens/aptos_api__tests__view_function__test_view_aggregator.json:
--------------------------------------------------------------------------------
1 | ["10"]
--------------------------------------------------------------------------------
/api/goldens/aptos_api__tests__view_function__test_view_tuple.json:
--------------------------------------------------------------------------------
1 | ["1","2"]
--------------------------------------------------------------------------------
/ecosystem/typescript/aptos-client/.eslintignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | dist/
3 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/tests/.gitattributes:
--------------------------------------------------------------------------------
1 | *.exp text -whitespace
2 |
--------------------------------------------------------------------------------
/third_party/move/move-model/tests/sources/lets_ok.exp:
--------------------------------------------------------------------------------
1 | All good, no errors!
2 |
--------------------------------------------------------------------------------
/third_party/move/move-prover/move-abigen/tests/sources/some_script.mv:
--------------------------------------------------------------------------------
1 | ABC
2 |
--------------------------------------------------------------------------------
/aptos-move/block-executor/.cargo/config.toml:
--------------------------------------------------------------------------------
1 | [env]
2 | RUST_TEST_THREADS = "1"
3 |
--------------------------------------------------------------------------------
/testsuite/fuzzer/fuzz/.gitignore:
--------------------------------------------------------------------------------
1 | target
2 | corpus
3 | artifacts
4 | coverage
5 |
--------------------------------------------------------------------------------
/third_party/move/documentation/book/translations/move-book-zh/.gitignore:
--------------------------------------------------------------------------------
1 | book
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/tests/move_check/unit_test/multiple_errors.unit_test:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/third_party/move/move-model/tests/sources/if_else_ok.exp:
--------------------------------------------------------------------------------
1 | All good, no errors!
2 |
--------------------------------------------------------------------------------
/third_party/move/move-model/tests/sources/lets_ok.v2_exp:
--------------------------------------------------------------------------------
1 | All good, no errors!
2 |
--------------------------------------------------------------------------------
/third_party/move/move-model/tests/sources/schemas_ok.exp:
--------------------------------------------------------------------------------
1 | All good, no errors!
2 |
--------------------------------------------------------------------------------
/third_party/move/move-model/tests/sources/structs_ok.exp:
--------------------------------------------------------------------------------
1 | All good, no errors!
2 |
--------------------------------------------------------------------------------
/third_party/move/move-prover/lab/data/mono/poly_backend.toml:
--------------------------------------------------------------------------------
1 | boogie_poly = true
2 |
--------------------------------------------------------------------------------
/third_party/move/tools/move-package/tests/.gitattributes:
--------------------------------------------------------------------------------
1 | *.exp text -whitespace
2 |
--------------------------------------------------------------------------------
/.assets/aptos.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ferdara/aptos-core/HEAD/.assets/aptos.png
--------------------------------------------------------------------------------
/api/goldens/aptos_api__tests__view_function__test_versioned_simple_view.json:
--------------------------------------------------------------------------------
1 | ["100000"]
--------------------------------------------------------------------------------
/api/goldens/aptos_api__tests__view_function__test_view_gas_used_header.json:
--------------------------------------------------------------------------------
1 | ["100000"]
--------------------------------------------------------------------------------
/aptos-move/aptos-e2e-comparison-testing/test-data-mainnet-10m-15/rocks_txn_idx_db/LOCK:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/terraform/aptos-node/gcp/backend.tfvars:
--------------------------------------------------------------------------------
1 | bucket = ""
2 | prefix = "state/validator"
3 |
--------------------------------------------------------------------------------
/terraform/fullnode/digital_ocean/.gitignore:
--------------------------------------------------------------------------------
1 | *.tfstate
2 | *.tfstate.backup
3 | *.yml
4 |
--------------------------------------------------------------------------------
/terraform/fullnode/gcp/backend.tfvars:
--------------------------------------------------------------------------------
1 | # bucket = ""
2 | # prefix = "state/fullnode"
3 |
--------------------------------------------------------------------------------
/testsuite/fixtures/testFormatJunitXml.fixture:
--------------------------------------------------------------------------------
1 |
2 | blah
3 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/tests/move_check/unit_test/attribute_location.unit_test:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/tests/move_check/unit_test/cross_module_members.unit_test:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/tests/move_check/unit_test/extra_attributes.unit_test:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/tests/move_check/unit_test/other_failures_valid.unit_test:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/tests/move_check/unit_test/valid_test_module.unit_test:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/third_party/move/move-model/tests/sources/conditions_ok.exp:
--------------------------------------------------------------------------------
1 | All good, no errors!
2 |
--------------------------------------------------------------------------------
/third_party/move/move-model/tests/sources/conditions_ok.v2_exp:
--------------------------------------------------------------------------------
1 | All good, no errors!
2 |
--------------------------------------------------------------------------------
/third_party/move/move-model/tests/sources/expressions_ok.exp:
--------------------------------------------------------------------------------
1 | All good, no errors!
2 |
--------------------------------------------------------------------------------
/third_party/move/move-model/tests/sources/expressions_ok.v2_exp:
--------------------------------------------------------------------------------
1 | All good, no errors!
2 |
--------------------------------------------------------------------------------
/third_party/move/move-model/tests/sources/if_else_ok.v2_exp:
--------------------------------------------------------------------------------
1 | All good, no errors!
2 |
--------------------------------------------------------------------------------
/third_party/move/move-model/tests/sources/intrinsic_decl_ok.exp:
--------------------------------------------------------------------------------
1 | All good, no errors!
2 |
--------------------------------------------------------------------------------
/third_party/move/move-model/tests/sources/invariants_ok.exp:
--------------------------------------------------------------------------------
1 | All good, no errors!
2 |
--------------------------------------------------------------------------------
/third_party/move/move-model/tests/sources/invariants_ok.v2_exp:
--------------------------------------------------------------------------------
1 | All good, no errors!
2 |
--------------------------------------------------------------------------------
/third_party/move/move-model/tests/sources/quantifiers_ok.exp:
--------------------------------------------------------------------------------
1 | All good, no errors!
2 |
--------------------------------------------------------------------------------
/third_party/move/move-model/tests/sources/quantifiers_ok.v2_exp:
--------------------------------------------------------------------------------
1 | All good, no errors!
2 |
--------------------------------------------------------------------------------
/third_party/move/move-model/tests/sources/schemas_ok.v2_exp:
--------------------------------------------------------------------------------
1 | All good, no errors!
2 |
--------------------------------------------------------------------------------
/third_party/move/move-model/tests/sources/structs_ok.v2_exp:
--------------------------------------------------------------------------------
1 | All good, no errors!
2 |
--------------------------------------------------------------------------------
/third_party/move/move-model/tests/sources/type_variance_ok.exp:
--------------------------------------------------------------------------------
1 | All good, no errors!
2 |
--------------------------------------------------------------------------------
/third_party/move/tools/move-cli/tests/build_tests/dependency_chain/args.txt:
--------------------------------------------------------------------------------
1 | build -v
2 |
--------------------------------------------------------------------------------
/third_party/move/tools/move-cli/tests/build_tests/dev_address/args.txt:
--------------------------------------------------------------------------------
1 | build -v -d
2 |
--------------------------------------------------------------------------------
/third_party/move/tools/move-cli/tests/build_tests/unbound_address/args.txt:
--------------------------------------------------------------------------------
1 | build -v
2 |
--------------------------------------------------------------------------------
/third_party/move/tools/move-package/tests/test_sources/compilation/one_dep/Move.compile:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/third_party/move/tools/move-package/tests/test_sources/model/basic_no_deps/Move.model:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/third_party/move/tools/move-unit-test/tests/.gitattributes:
--------------------------------------------------------------------------------
1 | *.exp text -whitespace
2 |
--------------------------------------------------------------------------------
/.github/actions/fullnode-sync/requirements.txt:
--------------------------------------------------------------------------------
1 | # All required dependencies
2 | pyyaml
3 |
--------------------------------------------------------------------------------
/aptos-move/aptos-e2e-comparison-testing/test-data-mainnet-10m-15/rocks_txn_idx_db/000009.log:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/aptos-move/aptos-e2e-comparison-testing/test-data-mainnet-10m-15/rocks_txn_idx_db/000013.log:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/aptos-move/aptos-e2e-comparison-testing/test-data-mainnet-10m-15/rocks_txn_idx_db/000017.log:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/fuzz/.gitignore:
--------------------------------------------------------------------------------
1 | target
2 | corpus
3 | artifacts
4 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/tests/more-v1/expansion/no_address.move:
--------------------------------------------------------------------------------
1 | module M {}
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/tests/move_check/expansion/no_address.move:
--------------------------------------------------------------------------------
1 | module M {}
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/tests/move_check/unit_test/expected_failure_not_test.unit_test:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/tests/move_check/unit_test/multiple_test_annotations.unit_test:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/tests/move_check/unit_test/script_with_test_on_main.unit_test:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/tests/move_check/verification/cross_module_valid.verification:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/tests/move_check/verification/double_annotation.verification:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/tests/move_check/verification/single_module_valid.verification:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/third_party/move/move-model/tests/sources/compile_via_model/let.exp:
--------------------------------------------------------------------------------
1 | All good, no errors!
2 |
--------------------------------------------------------------------------------
/third_party/move/move-model/tests/sources/inline_fun_spec_ok.exp:
--------------------------------------------------------------------------------
1 | All good, no errors!
2 |
--------------------------------------------------------------------------------
/third_party/move/move-model/tests/sources/inline_fun_spec_ok.v2_exp:
--------------------------------------------------------------------------------
1 | All good, no errors!
2 |
--------------------------------------------------------------------------------
/third_party/move/move-model/tests/sources/intrinsic_decl_ok.v2_exp:
--------------------------------------------------------------------------------
1 | All good, no errors!
2 |
--------------------------------------------------------------------------------
/third_party/move/move-model/tests/sources/type_variance_ok.v2_exp:
--------------------------------------------------------------------------------
1 | All good, no errors!
2 |
--------------------------------------------------------------------------------
/third_party/move/move-prover/lab/data/struct-as-adt/struct_as_adt.toml:
--------------------------------------------------------------------------------
1 | boogie_exp = true
2 |
--------------------------------------------------------------------------------
/third_party/move/move-prover/lab/data/struct-as-adt/struct_as_vec.toml:
--------------------------------------------------------------------------------
1 | boogie_exp = false
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/paranoid-tests/tests/ability/drop/eq_2.exp:
--------------------------------------------------------------------------------
1 | processed 3 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/paranoid-tests/tests/ability/drop/neq_2.exp:
--------------------------------------------------------------------------------
1 | processed 3 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/paranoid-tests/tests/ability/drop/pop_2.exp:
--------------------------------------------------------------------------------
1 | processed 3 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/paranoid-tests/tests/ability/drop/store_2.exp:
--------------------------------------------------------------------------------
1 | processed 3 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/tools/move-cli/tests/build_tests/circular_dependencies/args.txt:
--------------------------------------------------------------------------------
1 | build -v
2 |
--------------------------------------------------------------------------------
/third_party/move/tools/move-cli/tests/build_tests/empty_module_no_deps/args.txt:
--------------------------------------------------------------------------------
1 | build -v
2 |
--------------------------------------------------------------------------------
/third_party/move/tools/move-cli/tests/build_tests/unbound_dependency/args.txt:
--------------------------------------------------------------------------------
1 | build -v
2 |
--------------------------------------------------------------------------------
/third_party/move/tools/move-package/tests/test_sources/compilation/basic_no_deps/Move.compile:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/third_party/move/tools/move-package/tests/test_sources/compilation/test_symlinks/Move.compile:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/third_party/move/tools/move-package/tests/test_sources/model/multiple_deps_rename/Move.model:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/aptos-move/aptos-transactional-test-harness/tests/v2-tests/bug_bbb75fa.exp:
--------------------------------------------------------------------------------
1 | processed 4 tasks
2 |
--------------------------------------------------------------------------------
/dashboards/api.json.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ferdara/aptos-core/HEAD/dashboards/api.json.gz
--------------------------------------------------------------------------------
/dashboards/dag.json.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ferdara/aptos-core/HEAD/dashboards/dag.json.gz
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/tests/more-v1/parser/address_misspelled.move:
--------------------------------------------------------------------------------
1 | addrexx 0x1:
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/tests/more-v1/parser/invalid_character.move:
--------------------------------------------------------------------------------
1 | address 0x1~
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/tests/move_check/parser/address_misspelled.move:
--------------------------------------------------------------------------------
1 | addrexx 0x1:
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/tests/move_check/parser/invalid_character.move:
--------------------------------------------------------------------------------
1 | address 0x1~
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/tests/move_check/unit_test/attribute_location_invalid.unit_test:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/tests/move_check/unit_test/cross_module_test_only_module.unit_test:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/tests/move_check/unit_test/expected_failure_bad_value.unit_test:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/tests/move_check/unit_test/expected_failure_constants.unit_test:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/tests/move_check/unit_test/invalid_expected_code_name.unit_test:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/tests/move_check/unit_test/invalid_expected_failure_name.unit_test:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/tests/move_check/unit_test/script_with_multiple_on_main.unit_test:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/tests/move_check/unit_test/script_with_multiple_top_level.unit_test:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/tests/move_check/unit_test/script_with_test_top_level.unit_test:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/tests/move_check/unit_test/test_and_test_only_annotation.unit_test:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/tests/move_check/verification/single_module_invalid.verification:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/parser/hexstring.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-model/tests/sources/compile_via_model/assign.exp:
--------------------------------------------------------------------------------
1 | All good, no errors!
2 |
--------------------------------------------------------------------------------
/third_party/move/move-model/tests/sources/compile_via_model/assign.v2_exp:
--------------------------------------------------------------------------------
1 | All good, no errors!
2 |
--------------------------------------------------------------------------------
/third_party/move/move-model/tests/sources/compile_via_model/let.v2_exp:
--------------------------------------------------------------------------------
1 | All good, no errors!
2 |
--------------------------------------------------------------------------------
/third_party/move/move-model/tests/sources/compile_via_model/simple.exp:
--------------------------------------------------------------------------------
1 | All good, no errors!
2 |
--------------------------------------------------------------------------------
/third_party/move/move-model/tests/sources/compile_via_model/simple.v2_exp:
--------------------------------------------------------------------------------
1 | All good, no errors!
2 |
--------------------------------------------------------------------------------
/third_party/move/move-prover/lab/data/test/prover.toml:
--------------------------------------------------------------------------------
1 | move_named_address_values = ["std=0x1"]
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/paranoid-tests/tests/ability/copy/copy_loc_2.exp:
--------------------------------------------------------------------------------
1 | processed 3 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/paranoid-tests/tests/ability/copy/read_ref_2.exp:
--------------------------------------------------------------------------------
1 | processed 3 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/paranoid-tests/tests/ability/drop/hot_potato_2.exp:
--------------------------------------------------------------------------------
1 | processed 3 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/paranoid-tests/tests/ability/drop/write_ref_2.exp:
--------------------------------------------------------------------------------
1 | processed 3 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/builtins/gen_move_to.exp:
--------------------------------------------------------------------------------
1 | processed 9 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/builtins/move_from.exp:
--------------------------------------------------------------------------------
1 | processed 4 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/builtins/move_from.v2_exp:
--------------------------------------------------------------------------------
1 | processed 4 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/references/drop_ref.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/references/drop_ref.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/tools/move-cli/tests/move_unit_tests/assign_dev_addr_for_dep/args.txt:
--------------------------------------------------------------------------------
1 | test
2 |
--------------------------------------------------------------------------------
/third_party/move/tools/move-package/tests/test_sources/compilation/one_dep_renamed/Move.compile:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/third_party/move/tools/move-package/tests/test_sources/compilation/std-lib-override/Move.compile:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/third_party/move/tools/move-package/tests/test_sources/model/basic_no_deps/Move.exp:
--------------------------------------------------------------------------------
1 | Built model
--------------------------------------------------------------------------------
/third_party/move/tools/move-package/tests/test_sources/model/basic_no_deps/Move.v2_exp:
--------------------------------------------------------------------------------
1 | Built model
--------------------------------------------------------------------------------
/third_party/move/tools/move-package/tests/test_sources/model/multiple_deps_no_rename/Move.model:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/.assets/aptos_banner.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ferdara/aptos-core/HEAD/.assets/aptos_banner.png
--------------------------------------------------------------------------------
/api/goldens/aptos_api__tests__events_test__test_get_events_filter_by_start_sequence_number.json:
--------------------------------------------------------------------------------
1 | []
2 |
--------------------------------------------------------------------------------
/dashboards/ddos.json.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ferdara/aptos-core/HEAD/dashboards/ddos.json.gz
--------------------------------------------------------------------------------
/dashboards/vault.json.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ferdara/aptos-core/HEAD/dashboards/vault.json.gz
--------------------------------------------------------------------------------
/docker/compose/aptos-node/blocked.ips:
--------------------------------------------------------------------------------
1 | # Add Blocked Ips here
2 | # Example ipv4
3 | # xxx.xxx.xxx.xxx
--------------------------------------------------------------------------------
/docker/compose/monitoring/grafana/dashboards/fullnodes.json:
--------------------------------------------------------------------------------
1 | ../../../../../dashboards/fullnodes.json
--------------------------------------------------------------------------------
/docker/compose/monitoring/grafana/dashboards/validator.json:
--------------------------------------------------------------------------------
1 | ../../../../../dashboards/validator.json
--------------------------------------------------------------------------------
/terraform/aptos-node/aws/backend.tfvars:
--------------------------------------------------------------------------------
1 | bucket = ""
2 | key = "state/validator"
3 | region = ""
4 |
--------------------------------------------------------------------------------
/terraform/tflint.tfvars:
--------------------------------------------------------------------------------
1 | permissions_boundary_policy = "i_am_a_dummy_permissions_boundary_policy"
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/tests/more-v1/parser/address_not_hex.move:
--------------------------------------------------------------------------------
1 | address 1 {
2 |
3 | }
4 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/tests/move_check/parser/address_not_hex.move:
--------------------------------------------------------------------------------
1 | address 1 {
2 |
3 | }
4 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/tests/move_check/unit_test/expected_failure_constants_invalid.unit_test:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/tests/move_check/unit_test/expected_failure_invalid_literals.unit_test:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/tests/move_check/unit_test/expected_failure_on_non_function.unit_test:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/tests/move_check/unit_test/expected_failure_out_of_range_value.unit_test:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/tests/move_check/unit_test/other_failures_invalid_assignment.unit_test:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/tests/move_check/unit_test/other_failures_invalid_location.unit_test:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/control_flow/sorter.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/inlining/bug_10991.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/inlining/bug_10991a.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/inlining/bug_10991b.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/inlining/bug_10991c.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/inlining/bug_9717.exp:
--------------------------------------------------------------------------------
1 | processed 5 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/inlining/multi_param.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/inlining/objects.exp:
--------------------------------------------------------------------------------
1 | processed 3 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/inlining/resources.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/inlining/shadowing.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/operators/precedence.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/parser/byte_string.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/parser/precedence.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/paranoid-tests/tests/ability/store/hot_potato_store.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/paranoid-tests/tests/ability/store/invalid_store_2.exp:
--------------------------------------------------------------------------------
1 | processed 3 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/paranoid-tests/tests/type_safety/natives/type_info.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/paranoid-tests/tests/type_safety/struct/pack_generic.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/builtins/gen_move_to.v2_exp:
--------------------------------------------------------------------------------
1 | processed 9 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/builtins/get_txn_sender.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/builtins/get_txn_sender.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/builtins/vector_ops_all_ok.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/builtins/vector_ops_len_ok.exp:
--------------------------------------------------------------------------------
1 | processed 3 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/builtins/vector_ops_pop_ok.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/control_flow/loop_return.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/control_flow/loop_return.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/control_flow/loop_simple.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/control_flow/loop_simple.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/control_flow/while_false.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/control_flow/while_false.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/control_flow/while_nested.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/control_flow/while_return.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/control_flow/while_simple.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/instructions/deref_value.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/instructions/field_reads.exp:
--------------------------------------------------------------------------------
1 | processed 3 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/instructions/field_writes.exp:
--------------------------------------------------------------------------------
1 | processed 3 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/instructions/pack_unpack.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/recursion/direct_recursion.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/recursion/mutual_recursion.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/references/deref_move_ok.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/references/deref_move_ok.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/references/deref_parens_ok.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/references/mixed_lvalue.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/references/mixed_lvalue.v2_exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/references/mutate_copy_ok.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/references/mutate_move_ok.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/references/mutate_parens_ok.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/tools/move-package/tests/test_sources/compilation/basic_no_deps_test_mode/Move.compile:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/third_party/move/tools/move-package/tests/test_sources/compilation/case_insensitive_check/Move.compile:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/third_party/move/tools/move-package/tests/test_sources/compilation/multiple_deps_rename/Move.compile:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/third_party/move/tools/move-package/tests/test_sources/compilation/one_dep_with_scripts/Move.compile:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/third_party/move/tools/move-package/tests/test_sources/compilation/std-lib-override/Move.override:
--------------------------------------------------------------------------------
1 | devnet
--------------------------------------------------------------------------------
/aptos-move/aptos-transactional-test-harness/tests/aptos_test_harness/bug_bbb75fa.exp:
--------------------------------------------------------------------------------
1 | processed 4 tasks
2 |
--------------------------------------------------------------------------------
/consensus/src/rand/dkg/mod.rs:
--------------------------------------------------------------------------------
1 | // Copyright © Aptos Foundation
2 | // SPDX-License-Identifier: Apache-2.0
3 |
--------------------------------------------------------------------------------
/dashboards/logging.json.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ferdara/aptos-core/HEAD/dashboards/logging.json.gz
--------------------------------------------------------------------------------
/dashboards/mempool.json.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ferdara/aptos-core/HEAD/dashboards/mempool.json.gz
--------------------------------------------------------------------------------
/dashboards/network.json.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ferdara/aptos-core/HEAD/dashboards/network.json.gz
--------------------------------------------------------------------------------
/dashboards/outliers.json.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ferdara/aptos-core/HEAD/dashboards/outliers.json.gz
--------------------------------------------------------------------------------
/dashboards/overview.json.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ferdara/aptos-core/HEAD/dashboards/overview.json.gz
--------------------------------------------------------------------------------
/dashboards/storage.json.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ferdara/aptos-core/HEAD/dashboards/storage.json.gz
--------------------------------------------------------------------------------
/dashboards/system.json.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ferdara/aptos-core/HEAD/dashboards/system.json.gz
--------------------------------------------------------------------------------
/protos/typescript/src/index.ts:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 |
3 | export * as aptos from "./index.aptos";
4 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/tests/move_check/unit_test/cross_module_members_non_test_function.unit_test:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/tests/move_check/unit_test/cross_module_members_non_test_function2.unit_test:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/tests/move_check/unit_test/named_address_no_value_in_annotation.unit_test:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/tests/move_check/unit_test/other_failures_invalid_location_module.unit_test:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/constants/by_reference.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/constants/empty_vectors.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/constants/empty_vectors2.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/constants/folding_boolean.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/constants/folding_complex.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/constants/folding_equality.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/constants/folding_numeric.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/constants/folding_values.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/constants/folding_vector.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/control_flow/break_nested.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/control_flow/break_simple.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/control_flow/for_empty.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/control_flow/loop_return.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/control_flow/loop_simple.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/control_flow/nested_loops.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/control_flow/while_false.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/control_flow/while_nested.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/control_flow/while_return.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/control_flow/while_simple.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/inlining/mutual_recursion.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-prover/lab/data/opaque/opaque.toml:
--------------------------------------------------------------------------------
1 | # Use the default options (not ignoring opaque)
2 |
--------------------------------------------------------------------------------
/third_party/move/move-prover/tests/xsources/timeout/empty.move:
--------------------------------------------------------------------------------
1 | // Need at least one source in this tree
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/paranoid-tests/tests/encapsulation_safety/borrow_field_2.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/builtins/get_published_resource.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/builtins/has_published_struct.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/builtins/signer_runtime_dummy.exp:
--------------------------------------------------------------------------------
1 | processed 3 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/builtins/signer_runtime_move_to.exp:
--------------------------------------------------------------------------------
1 | processed 4 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/builtins/vector_ops_all_ok.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/builtins/vector_ops_bound_ok.exp:
--------------------------------------------------------------------------------
1 | processed 6 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/builtins/vector_ops_bound_ok.v2_exp:
--------------------------------------------------------------------------------
1 | processed 6 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/builtins/vector_ops_len_ok.v2_exp:
--------------------------------------------------------------------------------
1 | processed 3 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/builtins/vector_ops_pop_ok.v2_exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/builtins/vector_ops_unpack_ok.exp:
--------------------------------------------------------------------------------
1 | processed 4 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/builtins/verify_valid_bytearray.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/control_flow/break_accumulator.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/control_flow/loop_nested_breaks.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/control_flow/while_nested.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/control_flow/while_nested_return.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/control_flow/while_return.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/control_flow/while_simple.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/example_programs/coin_wrapper.exp:
--------------------------------------------------------------------------------
1 | processed 6 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/instructions/address_equality.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/instructions/address_equality.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/instructions/bitwise_operators.exp:
--------------------------------------------------------------------------------
1 | processed 3 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/instructions/boolean_operators.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/instructions/deref_value.v2_exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/instructions/deref_value_nested.exp:
--------------------------------------------------------------------------------
1 | processed 3 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/instructions/field_reads.v2_exp:
--------------------------------------------------------------------------------
1 | processed 3 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/instructions/field_writes.v2_exp:
--------------------------------------------------------------------------------
1 | processed 3 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/instructions/operator_precedence.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/instructions/pack_unpack.v2_exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/instructions/simple_arithmetic.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/recursion/direct_recursion.v2_exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/recursion/mutual_recursion.v2_exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/references/deref_borrow_local_ok.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/references/deref_move_module_ok.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/references/deref_parens_ok.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/references/mutate_copy_ok.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/references/mutate_move_ok.v2_exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/references/mutate_parens_ok.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/tools/move-cli/tests/build_tests/dependency_chain/args.evm.txt:
--------------------------------------------------------------------------------
1 | build -v --arch ethereum
2 |
--------------------------------------------------------------------------------
/third_party/move/tools/move-cli/tests/build_tests/dev_address/args.evm.txt:
--------------------------------------------------------------------------------
1 | build -v -d --arch ethereum
2 |
--------------------------------------------------------------------------------
/third_party/move/tools/move-cli/tests/build_tests/disassemble_script/args.txt:
--------------------------------------------------------------------------------
1 | disassemble --name main
2 |
--------------------------------------------------------------------------------
/third_party/move/tools/move-cli/tests/build_tests/unbound_address/args.evm.txt:
--------------------------------------------------------------------------------
1 | build -v --arch ethereum
2 |
--------------------------------------------------------------------------------
/third_party/move/tools/move-cli/tests/move_unit_tests/assign_dev_addr_for_dep/args.evm.txt:
--------------------------------------------------------------------------------
1 | test --evm
2 |
--------------------------------------------------------------------------------
/third_party/move/tools/move-package/tests/test_sources/compilation/diamond_problem_no_conflict/Move.compile:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/third_party/move/tools/move-package/tests/test_sources/compilation/multiple_deps_rename_one/Move.compile:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/third_party/move/tools/move-package/tests/test_sources/compilation/one_dep_assigned_address/Move.compile:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/third_party/move/tools/move-package/tests/test_sources/model/multiple_deps_no_rename/Move.exp:
--------------------------------------------------------------------------------
1 | Built model
--------------------------------------------------------------------------------
/third_party/move/tools/move-package/tests/test_sources/model/multiple_deps_no_rename/Move.v2_exp:
--------------------------------------------------------------------------------
1 | Built model
--------------------------------------------------------------------------------
/.actrc:
--------------------------------------------------------------------------------
1 | # config file for https://github.com/nektos/act
2 | -P ubuntu-latest=catthehacker/ubuntu:full-latest
3 |
--------------------------------------------------------------------------------
/aptos-move/aptos-e2e-comparison-testing/test-data-mainnet-10m-15/rocks_txn_idx_db/CURRENT:
--------------------------------------------------------------------------------
1 | MANIFEST-000018
2 |
--------------------------------------------------------------------------------
/aptos-move/aptos-transactional-test-harness/tests/aptos_test_harness/bug_bbb75fa.v2_exp:
--------------------------------------------------------------------------------
1 | processed 4 tasks
2 |
--------------------------------------------------------------------------------
/aptos-move/aptos-transactional-test-harness/tests/aptos_test_harness/publish_module.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/aptos-move/aptos-transactional-test-harness/tests/aptos_test_harness/publish_module.v2_exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/aptos-move/aptos-transactional-test-harness/tests/aptos_test_harness/tool_attributes.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/aptos-move/aptos-transactional-test-harness/tests/aptos_test_harness/tool_attributes.v2_exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/aptos-move/framework/aptos-stdlib/doc_template/references.md:
--------------------------------------------------------------------------------
1 | [move-book]: https://aptos.dev/move/book/SUMMARY
2 |
--------------------------------------------------------------------------------
/aptos-move/framework/aptos-token/doc_template/references.md:
--------------------------------------------------------------------------------
1 | [move-book]: https://aptos.dev/move/book/SUMMARY
2 |
--------------------------------------------------------------------------------
/aptos-move/framework/move-stdlib/doc_template/references.md:
--------------------------------------------------------------------------------
1 | [move-book]: https://aptos.dev/move/book/SUMMARY
2 |
--------------------------------------------------------------------------------
/aptos-move/move-examples/my_first_dapp/client/src/react-app-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
--------------------------------------------------------------------------------
/dashboards/consensus.json.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ferdara/aptos-core/HEAD/dashboards/consensus.json.gz
--------------------------------------------------------------------------------
/dashboards/execution.json.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ferdara/aptos-core/HEAD/dashboards/execution.json.gz
--------------------------------------------------------------------------------
/dashboards/fullnodes.json.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ferdara/aptos-core/HEAD/dashboards/fullnodes.json.gz
--------------------------------------------------------------------------------
/dashboards/validator.json.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ferdara/aptos-core/HEAD/dashboards/validator.json.gz
--------------------------------------------------------------------------------
/devtools/assets/license_header.txt:
--------------------------------------------------------------------------------
1 | Copyright (c) Aptos Foundation
2 | SPDX-License-Identifier: Apache-2.0
3 |
--------------------------------------------------------------------------------
/devtools/assets/license_header_utf8.txt:
--------------------------------------------------------------------------------
1 | Copyright © Aptos Foundation
2 | SPDX-License-Identifier: Apache-2.0
3 |
--------------------------------------------------------------------------------
/terraform/helm/vector-log-agent/Chart.yaml:
--------------------------------------------------------------------------------
1 | apiVersion: v2
2 | name: aptos-vector-log-agent
3 | version: 0.2.0
4 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/eq_ok.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/tests/more-v1/parser/native_main.move:
--------------------------------------------------------------------------------
1 | script {
2 | native fun main();
3 | }
4 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/transactional-tests/tests/no-v1-comparison/bug_14762.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/transactional-tests/tests/no-v1-comparison/index.exp:
--------------------------------------------------------------------------------
1 | processed 29 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/transactional-tests/tests/no-v1-comparison/loop_labels.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/tests/move_check/parser/native_main.move:
--------------------------------------------------------------------------------
1 | script {
2 | native fun main();
3 | }
4 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/constants/folding_vector_large.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/constants/nonempty_vectors.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/control_flow/assert_in_while.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/control_flow/break_accumulator.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/control_flow/for_loop_counter.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/control_flow/for_loop_empty.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/control_flow/if_assignment.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/control_flow/immediate_break.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/control_flow/loop_nested_breaks.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/control_flow/nested_for_loops.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/dependencies/dependency_order.exp:
--------------------------------------------------------------------------------
1 | processed 3 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/dependencies/transitive_deps.exp:
--------------------------------------------------------------------------------
1 | processed 3 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/inlining/bug_10991_noparam.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/inlining/bug_10991_noparam2.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/inlining/bug_9717_looponly.exp:
--------------------------------------------------------------------------------
1 | processed 5 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/inlining/eval_ignored_param.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/operators/bitwise_operators.exp:
--------------------------------------------------------------------------------
1 | processed 3 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/operators/boolean_operators.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/operators/comparison_operators.exp:
--------------------------------------------------------------------------------
1 | processed 6 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/parser/expr_binary_operators.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/parser/hex_and_decimal_address.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/parser/hex_and_decimal_numbers.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/parser/num_literal_underscore.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-ir-compiler/transactional-tests/tests/specification/conditions.exp:
--------------------------------------------------------------------------------
1 | processed 5 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-ir-compiler/transactional-tests/tests/specification/invariants.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-prover/lab/data/vector-theories/smt_array.toml:
--------------------------------------------------------------------------------
1 | [backend]
2 | vector_theory = "SmtArray"
3 |
--------------------------------------------------------------------------------
/third_party/move/move-prover/lab/data/vector-theories/smt_seq.toml:
--------------------------------------------------------------------------------
1 | [backend]
2 | vector_theory = "SmtSeq"
3 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/paranoid-tests/tests/encapsulation_safety/unpack_generic_2.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/paranoid-tests/tests/type_safety/simple_instruction/branch.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/builtins/get_published_resource.v2_exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/builtins/has_published_struct.v2_exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/builtins/move_published_resource.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/builtins/move_published_resource.v2_exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/builtins/signer_runtime_dummy.v2_exp:
--------------------------------------------------------------------------------
1 | processed 3 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/builtins/signer_runtime_move_to.v2_exp:
--------------------------------------------------------------------------------
1 | processed 4 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/builtins/struct_borrow_and_modify.exp:
--------------------------------------------------------------------------------
1 | processed 6 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/builtins/struct_borrow_and_modify.v2_exp:
--------------------------------------------------------------------------------
1 | processed 6 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/builtins/vector_ops_pack_unpack_ok.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/builtins/vector_ops_unpack_ok.v2_exp:
--------------------------------------------------------------------------------
1 | processed 4 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/builtins/vector_ops_using_generics.exp:
--------------------------------------------------------------------------------
1 | processed 3 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/builtins/verify_valid_bytearray.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/commands/local_assigned_many_times.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/commands/local_assigned_many_times.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/control_flow/break_accumulator.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/control_flow/break_continue_simple.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/control_flow/break_continue_simple.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/control_flow/if_branch_diverges_1.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/control_flow/if_branch_diverges_1.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/control_flow/if_branch_diverges_10.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/control_flow/if_branch_diverges_10.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/control_flow/if_branch_diverges_2.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/control_flow/if_branch_diverges_2.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/control_flow/if_branch_diverges_3.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/control_flow/if_branch_diverges_3.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/control_flow/if_branch_diverges_4.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/control_flow/if_branch_diverges_4.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/control_flow/if_branch_diverges_7.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/control_flow/if_branch_diverges_7.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/control_flow/if_branch_diverges_9.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/control_flow/if_branch_diverges_9.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/control_flow/loop_nested_breaks.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/control_flow/while_nested_return.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/entry_points/all_possible_param_types.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/entry_points/expected_0_args_got_0.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/entry_points/expected_0_args_got_0.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/entry_points/expected_u64_got_u64.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/entry_points/expected_u64_got_u64.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/example_programs/coin_wrapper.v2_exp:
--------------------------------------------------------------------------------
1 | processed 6 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/instructions/bitwise_operators.v2_exp:
--------------------------------------------------------------------------------
1 | processed 3 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/instructions/boolean_operators.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/instructions/comparison_operators.exp:
--------------------------------------------------------------------------------
1 | processed 6 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/instructions/comparison_operators.v2_exp:
--------------------------------------------------------------------------------
1 | processed 6 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/instructions/deref_value_nested.v2_exp:
--------------------------------------------------------------------------------
1 | processed 3 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/instructions/operator_precedence.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/instructions/simple_arithmetic.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/references/deref_borrow_local_ok.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/references/deref_move_module_ok.v2_exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/references/mutate_borrow_local_ok.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/references/mutate_borrow_local_ok.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/stack_and_function_calls/pop_weird.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/tools/move-cli/tests/build_tests/circular_dependencies/args.evm.txt:
--------------------------------------------------------------------------------
1 | build -v --arch ethereum
2 |
--------------------------------------------------------------------------------
/third_party/move/tools/move-cli/tests/build_tests/empty_module_no_deps/args.evm.txt:
--------------------------------------------------------------------------------
1 | build -v --arch ethereum
2 |
--------------------------------------------------------------------------------
/third_party/move/tools/move-cli/tests/build_tests/include_exclude_stdlib/args.txt:
--------------------------------------------------------------------------------
1 | build -v
2 | -d -v build
3 |
--------------------------------------------------------------------------------
/third_party/move/tools/move-cli/tests/build_tests/unbound_dependency/args.evm.txt:
--------------------------------------------------------------------------------
1 | build -v --arch ethereum
2 |
--------------------------------------------------------------------------------
/third_party/move/tools/move-cli/tests/cross_process_tests/Package1/sources/Dummy.move:
--------------------------------------------------------------------------------
1 | module 0x1::Dummy {}
2 |
--------------------------------------------------------------------------------
/third_party/move/tools/move-cli/tests/cross_process_tests/Package2/sources/Dummy.move:
--------------------------------------------------------------------------------
1 | module 0x1::Dummy {}
2 |
--------------------------------------------------------------------------------
/third_party/move/tools/move-linter/tests/model_ast_lints/multi_attributes_02.exp:
--------------------------------------------------------------------------------
1 |
2 | No errors or warnings!
3 |
--------------------------------------------------------------------------------
/third_party/move/tools/move-package/tests/test_sources/compilation/basic_no_deps_address_assigned/Move.compile:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/api/fuzzing/.gitignore:
--------------------------------------------------------------------------------
1 | # Ignore anything generated by the fuzzing tool.
2 | /Compile
3 | /RestlerLogs
4 | /Results
5 |
--------------------------------------------------------------------------------
/aptos-move/e2e-move-tests/src/tests/init_module.data/pack/sources/unrelated.move:
--------------------------------------------------------------------------------
1 | module 0x1::unrelated {
2 | }
3 |
--------------------------------------------------------------------------------
/aptos-move/framework/aptos-framework/doc_template/references.md:
--------------------------------------------------------------------------------
1 | [move-book]: https://aptos.dev/move/book/SUMMARY
2 |
--------------------------------------------------------------------------------
/aptos-move/move-examples/src/lib.rs:
--------------------------------------------------------------------------------
1 | // Copyright © Aptos Foundation
2 | // SPDX-License-Identifier: Apache-2.0
3 |
--------------------------------------------------------------------------------
/crates/aptos/src/move_tool/aptos_dep_example/pack2/Move.toml:
--------------------------------------------------------------------------------
1 | [package]
2 | name = "Pack2"
3 | version = "0.0.0"
4 |
--------------------------------------------------------------------------------
/dashboards/quorum-store.json.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ferdara/aptos-core/HEAD/dashboards/quorum-store.json.gz
--------------------------------------------------------------------------------
/dashboards/safety-rules.json.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ferdara/aptos-core/HEAD/dashboards/safety-rules.json.gz
--------------------------------------------------------------------------------
/dashboards/state-sync-v2.json.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ferdara/aptos-core/HEAD/dashboards/state-sync-v2.json.gz
--------------------------------------------------------------------------------
/dashboards/transactions.json.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ferdara/aptos-core/HEAD/dashboards/transactions.json.gz
--------------------------------------------------------------------------------
/docker/tools/boto.cfg:
--------------------------------------------------------------------------------
1 | [GSUtil]
2 | default_api_version = 2
3 |
4 | [GoogleCompute]
5 | service_account = default
6 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/control_flow/break_nested.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/control_flow/break_simple.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/control_flow/dead_return.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/locals_safety/assign_copy.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/locals_safety/assign_move.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/locals_safety/signer_unused.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/eq_ok.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/signature/all_as_all_ok.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/signature/all_as_all_ok.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/type_safety/freeze_valid.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/type_safety/freeze_valid.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/type_safety/generic_call.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/type_safety/generic_call.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/type_safety/generic_option.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/type_safety/generic_pack.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/type_safety/generic_unpack.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/type_safety/gerbens_test1.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/type_safety/integers_valid.exp:
--------------------------------------------------------------------------------
1 | processed 6 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/type_safety/signer_equality.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/type_safety/signer_st_loc.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/tests/more-v1/parser/comments_nested_unbalanced.move:
--------------------------------------------------------------------------------
1 | /* /** /** * / */ /** */
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/transactional-tests/tests/no-v1-comparison/op_equal/valid.exp:
--------------------------------------------------------------------------------
1 | processed 9 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/tests/move_check/parser/comments_nested_unbalanced.move:
--------------------------------------------------------------------------------
1 | /* /** /** * / */ /** */
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/control_flow/break_continue_for_loop.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/control_flow/break_continue_simple.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/control_flow/for_loop_empty_range.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/control_flow/for_loop_increment_iter.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/control_flow/if_branch_diverges_1.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/control_flow/if_branch_diverges_10.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/control_flow/if_branch_diverges_2.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/control_flow/if_branch_diverges_3.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/control_flow/if_branch_diverges_4.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/control_flow/if_branch_diverges_5.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/control_flow/if_branch_diverges_6.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/control_flow/if_branch_diverges_7.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/control_flow/if_branch_diverges_8.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/control_flow/if_branch_diverges_9.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/control_flow/if_without_braces_1.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/control_flow/if_without_braces_2.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/control_flow/if_without_braces_3.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/control_flow/if_without_braces_4.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/control_flow/nested_for_while_loops.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/control_flow/return_branch_moves.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/control_flow/while_nested_return.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/evaluation_order/short_circuiting.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/builtins/vector_ops_borrow_and_modify_ok.exp:
--------------------------------------------------------------------------------
1 | processed 4 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/builtins/vector_ops_pack_unpack_ok.v2_exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/builtins/vector_ops_using_generics.v2_exp:
--------------------------------------------------------------------------------
1 | processed 3 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/control_flow/break_continue_sum_of_odds.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/control_flow/break_continue_sum_of_odds.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/control_flow/return_in_if_branch_taken.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/control_flow/return_in_if_branch_taken.v2_exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/entry_points/address_arg_is_not_signer.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/entry_points/address_arg_is_not_signer.v2_exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/entry_points/all_possible_param_types.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/entry_points/expected_1_signer_arg_got_1.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/entry_points/mixed_signer_inputs_function.exp:
--------------------------------------------------------------------------------
1 | processed 4 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/entry_points/mixed_signer_inputs_scripts.exp:
--------------------------------------------------------------------------------
1 | processed 3 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/entry_points/script_type_args_type_eq.exp:
--------------------------------------------------------------------------------
1 | processed 4 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/entry_points/script_type_args_type_eq.v2_exp:
--------------------------------------------------------------------------------
1 | processed 4 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/instructions/equality_reference_value.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/instructions/equality_reference_value.v2_exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/module_publishing/publish_module_and_use.exp:
--------------------------------------------------------------------------------
1 | processed 3 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/module_publishing/publish_two_modules.exp:
--------------------------------------------------------------------------------
1 | processed 4 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/module_publishing/publish_two_modules.v2_exp:
--------------------------------------------------------------------------------
1 | processed 4 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/stack_and_function_calls/pop_weird.v2_exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/testing-infra/transactional-test-runner/tests/vm_test_harness/simple_init.exp:
--------------------------------------------------------------------------------
1 | processed 3 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/testing-infra/transactional-test-runner/tests/vm_test_harness/single_publish.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/tools/move-cli/tests/move_unit_tests/assign_dev_addr_for_dep/args.stackless.txt:
--------------------------------------------------------------------------------
1 | test --stackless
2 |
--------------------------------------------------------------------------------
/third_party/move/tools/move-cli/tests/move_unit_tests/standalone_module_with_dev_addr_assignment/args.txt:
--------------------------------------------------------------------------------
1 | test
2 |
--------------------------------------------------------------------------------
/third_party/move/tools/move-cli/tests/move_unit_tests/standalone_module_with_regular_addr_assignment/args.txt:
--------------------------------------------------------------------------------
1 | test
2 |
--------------------------------------------------------------------------------
/third_party/move/tools/move-package/tests/test_sources/compilation/call_package_fun_from_other_package/Move.compile:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/third_party/move/tools/move-package/tests/test_sources/compilation/diamond_problem_backflow_resolution/Move.compile:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/aptos-move/e2e-move-tests/src/tests/init_module.data/pack_initial/sources/unrelated.move:
--------------------------------------------------------------------------------
1 | module 0x1::unrelated {
2 | }
3 |
--------------------------------------------------------------------------------
/aptos-move/framework/aptos-token-objects/doc_template/references.md:
--------------------------------------------------------------------------------
1 | [move-book]: https://aptos.dev/move/book/SUMMARY
2 |
--------------------------------------------------------------------------------
/dashboards/storage-details.json.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ferdara/aptos-core/HEAD/dashboards/storage-details.json.gz
--------------------------------------------------------------------------------
/terraform/helm/aptos-node/files/test-data/waypoint.txt:
--------------------------------------------------------------------------------
1 | 0:e6e36f45847dd18f1461cba6cb492ff2a4edb348df3b9cf81de87aa73e4377f6
--------------------------------------------------------------------------------
/terraform/helm/fullnode/Chart.yaml:
--------------------------------------------------------------------------------
1 | apiVersion: v2
2 | appVersion: 1.0.0
3 | name: aptos-fullnode
4 | version: 1.0.0
5 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/control_flow/break_nested.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/control_flow/break_simple.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/control_flow/break_unreachable.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/control_flow/dead_return.v2_exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/control_flow/dead_return_local.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/control_flow/regression_test_496.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/control_flow/regression_test_678.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/locals_safety/assign_copy.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/locals_safety/assign_move.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/locals_safety/signer_unused.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/borrow_copy_ok.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/borrow_in_loop.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/deref_eq_good.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/factor_valid_1.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/factor_valid_2.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/imm_borrow_loc.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/move_one_branch.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/nested_mutate.exp:
--------------------------------------------------------------------------------
1 | processed 3 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/release_cycle.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/simple_mutate.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/two_mutable_ref.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/signature/reference_in_locals_ok.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/signature/resource_as_all_ok.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/signature/resource_as_all_ok.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/signature/two_type_actuals_ok.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/signature/two_type_actuals_ok.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/signature/unrestricted_as_all_ok.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/stack_usage_verifier/pop_exact.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/type_safety/bug_9459_notworking.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/type_safety/bug_9459_working.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/type_safety/bug_9459_working.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/type_safety/generic_builtins.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/type_safety/generic_builtins.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/type_safety/generic_field_borrow.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/type_safety/generic_function_def.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/type_safety/generic_id_function.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/type_safety/generic_option.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/type_safety/generic_pack.v2_exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/type_safety/generic_struct_def.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/type_safety/generic_unpack.v2_exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/type_safety/gerbens_test1.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/type_safety/integers_valid.v2_exp:
--------------------------------------------------------------------------------
1 | processed 6 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/type_safety/signer_equality.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/type_safety/signer_st_loc.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/type_safety/signer_transitive.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/type_safety/signer_transitive.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/type_safety/signer_write_ref.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/type_safety/signer_write_ref.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/type_safety/unpack_resource.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/type_safety/unpack_resource.v2_exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/tests/more-v1/expansion/entry_main.move:
--------------------------------------------------------------------------------
1 | script {
2 | entry fun main() {
3 | }
4 | }
5 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/tests/more-v1/expansion/public_main.move:
--------------------------------------------------------------------------------
1 | script {
2 | public fun main() {
3 | }
4 | }
5 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/tests/more-v1/parser/empty_file.move:
--------------------------------------------------------------------------------
1 | // The grammar allows a module file to be empty.
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/transactional-tests/tests/no-v1-comparison/op_equal/eval_order.exp:
--------------------------------------------------------------------------------
1 | processed 6 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/tests/move_check/expansion/entry_main.move:
--------------------------------------------------------------------------------
1 | script {
2 | entry fun main() {
3 | }
4 | }
5 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/tests/move_check/expansion/public_main.move:
--------------------------------------------------------------------------------
1 | script {
2 | public fun main() {
3 | }
4 | }
5 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/tests/move_check/parser/empty_file.move:
--------------------------------------------------------------------------------
1 | // The grammar allows a module file to be empty.
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/control_flow/break_continue_sum_of_odds.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/control_flow/local_assigned_many_times.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/control_flow/return_branch_doesnt_assign.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/control_flow/return_in_if_branch_taken.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-prover/lab/data/cvc/experiments/z3_boogie_array.toml:
--------------------------------------------------------------------------------
1 | [backend]
2 | vector_theory = "BoogieArray"
3 |
--------------------------------------------------------------------------------
/third_party/move/move-prover/lab/data/test/plot.sh:
--------------------------------------------------------------------------------
1 | cargo run --release -- plot --out fun_by_fun.svg prover.fun_data
2 |
--------------------------------------------------------------------------------
/third_party/move/move-prover/lab/data/vector-theories/boogie_array.toml:
--------------------------------------------------------------------------------
1 | [backend]
2 | vector_theory = "BoogieArray"
3 |
--------------------------------------------------------------------------------
/third_party/move/move-prover/lab/data/vector-theories/smt_array_ext.toml:
--------------------------------------------------------------------------------
1 | [backend]
2 | vector_theory = "SmtArrayExt"
3 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/builtins/read_and_dont_write_to_global_storage.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/builtins/vector_ops_borrow_and_modify_ok.v2_exp:
--------------------------------------------------------------------------------
1 | processed 4 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/control_flow/return_in_if_branch_taken_local.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/control_flow/return_in_if_branch_taken_local.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/control_flow/return_in_if_branch_taken_no_else.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/entry_points/expected_1_signer_arg_got_1.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/entry_points/expected_u64_addr_got_u64_addr.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/entry_points/expected_u64_addr_got_u64_addr.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/entry_points/mixed_signer_inputs_function.v2_exp:
--------------------------------------------------------------------------------
1 | processed 4 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/entry_points/mixed_signer_inputs_scripts.v2_exp:
--------------------------------------------------------------------------------
1 | processed 3 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/module_publishing/publish_module_and_use.v2_exp:
--------------------------------------------------------------------------------
1 | processed 3 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/module_publishing/publish_module_and_use_2.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/module_publishing/publish_module_and_use_2.v2_exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/module_publishing/publish_module_and_use_3.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/module_publishing/publish_module_and_use_3.v2_exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/module_publishing/republish_module_compatible.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/native_functions/non_existant_native_function.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/stack_and_function_calls/add_function_calls.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/stack_and_function_calls/add_function_calls.v2_exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/stack_and_function_calls/assign_expression_list.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/stack_and_function_calls/assign_function_call.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/stack_and_function_calls/function_composition.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/testing-infra/transactional-test-runner/tests/vm_test_harness/leading_comment.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/testing-infra/transactional-test-runner/tests/vm_test_harness/leading_comment.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/testing-infra/transactional-test-runner/tests/vm_test_harness/simple_init.v2_exp:
--------------------------------------------------------------------------------
1 | processed 3 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/testing-infra/transactional-test-runner/tests/vm_test_harness/single_publish.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/api/doc/api_spec_ts_sdk_diagram.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ferdara/aptos-core/HEAD/api/doc/api_spec_ts_sdk_diagram.png
--------------------------------------------------------------------------------
/aptos-move/aptos-e2e-comparison-testing/test-data-mainnet-10m-15/rocks_txn_idx_db/IDENTITY:
--------------------------------------------------------------------------------
1 | 68030351-9558-4d6e-aa76-818928bc21b6
--------------------------------------------------------------------------------
/aptos-move/e2e-move-tests/src/tests/code_publishing.data/pack_stdlib/Move.toml:
--------------------------------------------------------------------------------
1 | ../../../../../framework/move-stdlib/Move.toml
--------------------------------------------------------------------------------
/aptos-move/move-examples/move-tutorial/step_1/basic_coin/Move.toml:
--------------------------------------------------------------------------------
1 | [package]
2 | name = "basic_coin"
3 | version = "0.0.0"
4 |
--------------------------------------------------------------------------------
/crates/aptos/src/op/mod.rs:
--------------------------------------------------------------------------------
1 | // Copyright © Aptos Foundation
2 | // SPDX-License-Identifier: Apache-2.0
3 |
4 | pub mod key;
5 |
--------------------------------------------------------------------------------
/dashboards/blockchain-health.json.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ferdara/aptos-core/HEAD/dashboards/blockchain-health.json.gz
--------------------------------------------------------------------------------
/dashboards/main-loop-insight.json.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ferdara/aptos-core/HEAD/dashboards/main-loop-insight.json.gz
--------------------------------------------------------------------------------
/dashboards/node-system-info.json.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ferdara/aptos-core/HEAD/dashboards/node-system-info.json.gz
--------------------------------------------------------------------------------
/dashboards/public-fullnodes.json.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ferdara/aptos-core/HEAD/dashboards/public-fullnodes.json.gz
--------------------------------------------------------------------------------
/dashboards/single-node-view.json.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ferdara/aptos-core/HEAD/dashboards/single-node-view.json.gz
--------------------------------------------------------------------------------
/dashboards/storage-overview.json.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ferdara/aptos-core/HEAD/dashboards/storage-overview.json.gz
--------------------------------------------------------------------------------
/devtools/assets/third_party_license_header_2.txt:
--------------------------------------------------------------------------------
1 | Copyright (c) The Move Contributors
2 | SPDX-License-Identifier: Apache-2.0
3 |
--------------------------------------------------------------------------------
/protos/typescript/src/index.aptos.indexer.ts:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 |
3 | export * as v1 from "./index.aptos.indexer.v1";
4 |
--------------------------------------------------------------------------------
/protos/typescript/src/index.aptos.indexer.v1.ts:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 |
3 | export * from "./aptos/indexer/v1/raw_data";
4 |
--------------------------------------------------------------------------------
/testsuite/fixtures/testMainReport.fixture:
--------------------------------------------------------------------------------
1 | Forge test runner terminated:
2 | Trailing Log Lines:
3 |
4 | Debugging output:
5 |
--------------------------------------------------------------------------------
/testsuite/fuzzer/google-oss-fuzz/build.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash -eu
2 |
3 | cd testsuite/fuzzer
4 | bash fuzz.sh build-oss-fuzz $OUT
5 |
--------------------------------------------------------------------------------
/third_party/move/documentation/tutorial/step_1/BasicCoin/Move.toml:
--------------------------------------------------------------------------------
1 | [package]
2 | name = "BasicCoin"
3 | version = "0.0.0"
4 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/control_flow/break_unreachable.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/control_flow/dead_return_local.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/control_flow/regression_test_496.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/control_flow/regression_test_678.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/dependencies/access_public_function.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/dependencies/all_fields_accessible.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/dependencies/call_integers_valid.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/dependencies/call_integers_valid.v2_exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/locals_safety/return_branch_moves.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/locals_safety/return_branch_moves.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/locals_safety/signer_st_loc_partial.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/locals_safety/signer_unused_partial.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/assign_local_struct.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/assign_local_value.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/borrow_copy_ok.v2_exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/borrow_field_ok.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/borrow_field_ok.v2_exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/borrow_global_good.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/borrow_in_loop.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/copy_loc_borrowed.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/copy_loc_borrowed.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/deref_eq_good.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/factor_valid_1.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/factor_valid_2.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/imm_borrow_global.exp:
--------------------------------------------------------------------------------
1 | processed 3 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/imm_borrow_loc.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/imm_borrow_loc_valid.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/imm_borrow_on_mut.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/imm_borrow_on_mut.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/move_one_branch.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/nested_mutate.v2_exp:
--------------------------------------------------------------------------------
1 | processed 3 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/ref_moved_one_branch.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/release_cycle.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/simple_mutate.v2_exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/two_mutable_ref.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/signature/reference_in_locals_ok.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/signature/unrestricted_as_all_ok.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/stack_usage_verifier/consume_stack.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/stack_usage_verifier/consume_stack.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/stack_usage_verifier/pop_exact.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/type_safety/bug_9459_notworking.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/type_safety/equality_resource_refs.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/type_safety/generic_abilities_pack.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/type_safety/generic_abilities_pack.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/type_safety/generic_field_borrow.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/type_safety/generic_function_def.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/type_safety/generic_id_function.v2_exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/type_safety/generic_import_struct.exp:
--------------------------------------------------------------------------------
1 | processed 3 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/type_safety/generic_import_struct.v2_exp:
--------------------------------------------------------------------------------
1 | processed 3 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/type_safety/generic_struct_def.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/type_safety/signer_move_to_valid.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/type_safety/signer_move_to_valid.v2_exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/type_safety/unrestricted_instantiate.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/tests/more-v1/expansion/top_level_not_named_main.move:
--------------------------------------------------------------------------------
1 | script {
2 | fun foo() {
3 | }
4 | }
5 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/tests/more-v1/parser/function_incomplete.move:
--------------------------------------------------------------------------------
1 | script {
2 | fun main() {
3 | // }
4 | //}
5 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/tests/more-v1/parser/module_missing_lbrace.move:
--------------------------------------------------------------------------------
1 | module M // {
2 | fun f() {}
3 | }
4 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/tests/more-v1/parser/module_missing_rbrace.move:
--------------------------------------------------------------------------------
1 | module M {
2 | fun f() {}
3 | // }
4 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/transactional-tests/tests/no-v1-comparison/op_equal/no_double_eval.exp:
--------------------------------------------------------------------------------
1 | processed 4 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/tests/move_check/expansion/top_level_not_named_main.move:
--------------------------------------------------------------------------------
1 | script {
2 | fun foo() {
3 | }
4 | }
5 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/tests/move_check/parser/function_incomplete.move:
--------------------------------------------------------------------------------
1 | script {
2 | fun main() {
3 | // }
4 | //}
5 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/tests/move_check/parser/module_missing_lbrace.move:
--------------------------------------------------------------------------------
1 | module M // {
2 | fun f() {}
3 | }
4 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/tests/move_check/parser/module_missing_rbrace.move:
--------------------------------------------------------------------------------
1 | module M {
2 | fun f() {}
3 | // }
4 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/control_flow/break_continue_for_loop_nested.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/control_flow/deep_return_branch_doesnt_assign.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/control_flow/return_in_if_branch_taken_local.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-examples/experimental/math-puzzle/Move.toml:
--------------------------------------------------------------------------------
1 | [package]
2 | name = "math-puzzle"
3 | version = "0.0.0"
4 |
--------------------------------------------------------------------------------
/third_party/move/move-prover/lab/data/test/benchmark.data:
--------------------------------------------------------------------------------
1 | # config: default
2 | # time : 2023-08-06 00:11:12.300028 UTC
3 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/builtins/move_to_and_from_resource_with_u128_field.exp:
--------------------------------------------------------------------------------
1 | processed 3 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/builtins/move_to_and_from_resource_with_u64_field.exp:
--------------------------------------------------------------------------------
1 | processed 3 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/builtins/move_to_and_from_resource_with_u8_field.exp:
--------------------------------------------------------------------------------
1 | processed 3 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/builtins/move_to_and_from_resource_with_u8_field.v2_exp:
--------------------------------------------------------------------------------
1 | processed 3 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/builtins/read_and_dont_write_to_global_storage.v2_exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/control_flow/return_in_if_branch_taken_no_else.v2_exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/module_publishing/republish_module_compatible.v2_exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/native_functions/non_existant_native_function.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/stack_and_function_calls/assign_expression_list.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/stack_and_function_calls/assign_function_call.v2_exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/stack_and_function_calls/function_composition.v2_exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/stack_and_function_calls/return_expression_lists.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/stack_and_function_calls/return_expression_lists.v2_exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/tools/move-cli/tests/build_tests/build_with_warnings/args.txt:
--------------------------------------------------------------------------------
1 | build
2 | disassemble --package Test --name m
3 |
--------------------------------------------------------------------------------
/third_party/move/tools/move-cli/tests/move_unit_tests/standalone_module_with_dev_addr_assignment/args.evm.txt:
--------------------------------------------------------------------------------
1 | test --evm
2 |
--------------------------------------------------------------------------------
/third_party/move/tools/move-cli/tests/move_unit_tests/standalone_module_with_regular_addr_assignment/args.evm.txt:
--------------------------------------------------------------------------------
1 | test --evm
2 |
--------------------------------------------------------------------------------
/third_party/move/tools/move-package/tests/test_sources/compilation/case_insensitive_check/sources/a.move:
--------------------------------------------------------------------------------
1 | module 0x1::A { }
2 |
--------------------------------------------------------------------------------
/types/src/vm/mod.rs:
--------------------------------------------------------------------------------
1 | // Copyright © Aptos Foundation
2 | // SPDX-License-Identifier: Apache-2.0
3 |
4 | pub mod modules;
5 |
--------------------------------------------------------------------------------
/aptos-move/e2e-move-tests/src/tests/code_publishing.data/pack_stdlib_incompat/Move.toml:
--------------------------------------------------------------------------------
1 | ../../../../../framework/move-stdlib/Move.toml
--------------------------------------------------------------------------------
/developer-docs-site/README.md:
--------------------------------------------------------------------------------
1 | # Developer Documentation
2 |
3 | This has been moved to https://github.com/aptos-labs/developer-docs
--------------------------------------------------------------------------------
/terraform/aptos-node-testnet/gcp/functions/signed-url/requirements.txt:
--------------------------------------------------------------------------------
1 | functions-framework==3.*
2 | google-cloud-storage==2.14.0
3 |
--------------------------------------------------------------------------------
/terraform/fullnode/aws/backend.tfvars.example:
--------------------------------------------------------------------------------
1 | bucket = "terraform.global"
2 | key = "state/k8s-pfn"
3 | region = "us-west-2"
4 |
--------------------------------------------------------------------------------
/terraform/helm/forge/Chart.yaml:
--------------------------------------------------------------------------------
1 | apiVersion: v2
2 | name: forge
3 | description: Aptos Forge test framework
4 | version: 0.2.0
5 |
--------------------------------------------------------------------------------
/testsuite/smoke-test/src/aptos/account_creation.rs:
--------------------------------------------------------------------------------
1 | // Copyright © Aptos Foundation
2 | // SPDX-License-Identifier: Apache-2.0
3 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/dependencies/access_friend_function_valid.exp:
--------------------------------------------------------------------------------
1 | processed 3 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/dependencies/access_public_function.v2_exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/dependencies/all_fields_accessible.v2_exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/locals_safety/return_branch_doesnt_assign.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/locals_safety/signer_st_loc_partial.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/locals_safety/signer_unused_partial.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/assign_local_struct.v2_exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/assign_local_value.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/borrow_global_acquires_1.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/borrow_global_acquires_2.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/borrow_global_acquires_3.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/borrow_global_good.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/borrow_x_in_if_y_in_else.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/copy_loc_borrowed_field.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/deref_borrow_field_ok.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/deref_borrow_field_ok.v2_exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/imm_borrow_global.v2_exp:
--------------------------------------------------------------------------------
1 | processed 3 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/imm_borrow_loc_trivial.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/imm_borrow_loc_trivial.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/imm_borrow_loc_valid.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/imm_borrow_on_mut_trivial.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/mutate_borrow_field_ok.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/mutate_resource_holder_2.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/mutate_with_borrowed_loc.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/ref_moved_one_branch.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/return_with_borrowed_loc.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/use_prefix_after_move.exp:
--------------------------------------------------------------------------------
1 | processed 3 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/use_prefix_after_move.v2_exp:
--------------------------------------------------------------------------------
1 | processed 3 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/writeref_borrow_valid1.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/writeref_borrow_valid1.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/writeref_borrow_valid2.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/writeref_borrow_valid2.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/struct_defs/module_struct_shared_name.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/struct_defs/module_struct_shared_name.v2_exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/type_safety/equality_resource_refs.v2_exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/type_safety/generic_abilities_borrow_field.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/type_safety/mut_call_from_get_resource.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/type_safety/mut_call_from_get_resource.v2_exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/type_safety/unrestricted_instantiate.v2_exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/tests/ability-check/resources.exp:
--------------------------------------------------------------------------------
1 |
2 | ============ bytecode verification succeeded ========
3 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/tests/more-v1/expansion/duplicate_module.move:
--------------------------------------------------------------------------------
1 | module 0x8675309::M {}
2 | module 0x8675309::M {}
3 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/tests/more-v1/expansion/restricted_address_names.move:
--------------------------------------------------------------------------------
1 | module Self::A {}
2 | module vector::A {}
3 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/tests/more-v1/parser/comments_ok.exp:
--------------------------------------------------------------------------------
1 |
2 | ============ bytecode verification succeeded ========
3 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/tests/more-v1/parser/empty_file.exp:
--------------------------------------------------------------------------------
1 |
2 | ============ bytecode verification succeeded ========
3 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/tests/more-v1/parser/hexstring.exp:
--------------------------------------------------------------------------------
1 |
2 | ============ bytecode verification succeeded ========
3 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/tests/more-v1/parser/let_binding.exp:
--------------------------------------------------------------------------------
1 |
2 | ============ bytecode verification succeeded ========
3 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/tests/reference-safety/bug_12756.exp:
--------------------------------------------------------------------------------
1 |
2 | ============ bytecode verification succeeded ========
3 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/tests/reference-safety/bug_13687.exp:
--------------------------------------------------------------------------------
1 |
2 | ============ bytecode verification succeeded ========
3 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/tests/reference-safety/bug_13912.exp:
--------------------------------------------------------------------------------
1 |
2 | ============ bytecode verification succeeded ========
3 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/tests/reference-safety/eq_ref.exp:
--------------------------------------------------------------------------------
1 |
2 | ============ bytecode verification succeeded ========
3 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/tests/move_check/expansion/duplicate_module.move:
--------------------------------------------------------------------------------
1 | module 0x8675309::M {}
2 | module 0x8675309::M {}
3 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/tests/move_check/expansion/restricted_address_names.move:
--------------------------------------------------------------------------------
1 | module Self::A {}
2 | module vector::A {}
3 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/control_flow/branch_assigns_then_moves_then_assigns.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/transactional-tests/tests/control_flow/return_in_if_branch_taken_no_else.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-prover/lab/data/vector-theories/boogie_array_intern.toml:
--------------------------------------------------------------------------------
1 | [backend]
2 | vector_theory = "BoogieArrayIntern"
3 |
--------------------------------------------------------------------------------
/third_party/move/move-prover/move-docgen/README.md:
--------------------------------------------------------------------------------
1 | For user documentation, see [../doc/user/docgen.md](../doc/user/docgen.md).
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/builtins/move_to_and_from_resource_with_primitive_fields.exp:
--------------------------------------------------------------------------------
1 | processed 3 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/builtins/move_to_and_from_resource_with_u128_field.v2_exp:
--------------------------------------------------------------------------------
1 | processed 3 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/builtins/move_to_and_from_resource_with_u64_field.v2_exp:
--------------------------------------------------------------------------------
1 | processed 3 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/entry_points/expected_u64_u64_address_got_u64_u64_address.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/module_publishing/republish_module_compatible_add_entry.exp:
--------------------------------------------------------------------------------
1 | processed 6 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/module_publishing/republish_module_compatible_add_friend.exp:
--------------------------------------------------------------------------------
1 | processed 4 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/native_functions/clever_non_existant_native_function.exp:
--------------------------------------------------------------------------------
1 | processed 3 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/native_functions/clever_non_existant_native_function.v2_exp:
--------------------------------------------------------------------------------
1 | processed 3 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/stack_and_function_calls/binop_function_calls_as_args.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/stack_and_function_calls/binop_function_calls_as_args.v2_exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/stack_and_function_calls/many_function_calls_as_args.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/stack_and_function_calls/many_function_calls_as_args.v2_exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/stack_and_function_calls/multiple_composite_functions.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/stack_and_function_calls/multiple_composite_functions.v2_exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/stack_and_function_calls/push_args_before_function_call.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/tools/move-cli/tests/build_tests/build_with_warnings/Move.toml:
--------------------------------------------------------------------------------
1 | [package]
2 | name = "Test"
3 | version = "0.0.0"
4 |
--------------------------------------------------------------------------------
/third_party/move/tools/move-cli/tests/build_tests/empty_module_no_deps/Move.toml:
--------------------------------------------------------------------------------
1 | [package]
2 | name = "A"
3 | version = "0.0.0"
4 |
--------------------------------------------------------------------------------
/third_party/move/tools/move-package/tests/test_sources/compilation/call_package_fun_from_other_package/Move.exp:
--------------------------------------------------------------------------------
1 | Compilation error
2 |
--------------------------------------------------------------------------------
/third_party/move/tools/move-package/tests/thread_safety_package_test_sources/Package1/sources/Dummy.move:
--------------------------------------------------------------------------------
1 | module 0x1::Dummy { }
2 |
--------------------------------------------------------------------------------
/third_party/move/tools/move-package/tests/thread_safety_package_test_sources/Package2/sources/Dummy.move:
--------------------------------------------------------------------------------
1 | module 0x1::Dummy { }
2 |
--------------------------------------------------------------------------------
/types/src/test_helpers/empty_script.mv:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ferdara/aptos-core/HEAD/types/src/test_helpers/empty_script.mv
--------------------------------------------------------------------------------
/aptos-move/e2e-move-tests/src/tests/dependencies.data/p1/sources/test.move:
--------------------------------------------------------------------------------
1 | module 0xcafe::m1 {
2 | public entry fun run() {}
3 | }
4 |
--------------------------------------------------------------------------------
/aptos-move/framework/aptos-stdlib/sources/cryptography/ristretto255_elgamal.spec.move:
--------------------------------------------------------------------------------
1 | spec aptos_std::ristretto255_elgamal {
2 | }
3 |
--------------------------------------------------------------------------------
/aptos-move/framework/aptos-stdlib/sources/cryptography/ristretto255_pedersen.spec.move:
--------------------------------------------------------------------------------
1 | spec aptos_std::ristretto255_pedersen {
2 | }
3 |
--------------------------------------------------------------------------------
/aptos-move/framework/releases/testnet.mrb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ferdara/aptos-core/HEAD/aptos-move/framework/releases/testnet.mrb
--------------------------------------------------------------------------------
/dashboards/end-to-end-txn-latency.json.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ferdara/aptos-core/HEAD/dashboards/end-to-end-txn-latency.json.gz
--------------------------------------------------------------------------------
/dashboards/node-resource-metrics.json.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ferdara/aptos-core/HEAD/dashboards/node-resource-metrics.json.gz
--------------------------------------------------------------------------------
/dashboards/peer-monitoring-service.json.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ferdara/aptos-core/HEAD/dashboards/peer-monitoring-service.json.gz
--------------------------------------------------------------------------------
/dashboards/validator-txn-latency.json.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ferdara/aptos-core/HEAD/dashboards/validator-txn-latency.json.gz
--------------------------------------------------------------------------------
/ecosystem/indexer-grpc/indexer-transaction-generator/imported_transactions/README.md:
--------------------------------------------------------------------------------
1 | This folder demonstrates the testing folder structure.
--------------------------------------------------------------------------------
/ecosystem/typescript/sdk_v2/README.md:
--------------------------------------------------------------------------------
1 | ## SDK V2 moved
2 |
3 | The SDK V2 has been moved to https://github.com/aptos-labs/aptos-ts-sdk
4 |
--------------------------------------------------------------------------------
/protos/typescript/src/index.aptos.transaction.ts:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 |
3 | export * as v1 from "./index.aptos.transaction.v1";
4 |
--------------------------------------------------------------------------------
/protos/typescript/src/index.aptos.transaction.v1.ts:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 |
3 | export * from "./aptos/transaction/v1/transaction";
4 |
--------------------------------------------------------------------------------
/protos/typescript/src/index.aptos.util.timestamp.ts:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 |
3 | export * from "./aptos/util/timestamp/timestamp";
4 |
--------------------------------------------------------------------------------
/protos/typescript/src/index.aptos.util.ts:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 |
3 | export * as timestamp from "./index.aptos.util.timestamp";
4 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/dependencies/access_friend_function_valid.v2_exp:
--------------------------------------------------------------------------------
1 | processed 3 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/dependencies/non_internal_function_valid_call.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/locals_safety/deep_return_branch_doesnt_assign.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/locals_safety/return_branch_doesnt_assign.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/borrow_global_acquires_1.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/borrow_global_acquires_2.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/borrow_global_acquires_3.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/borrow_x_in_if_y_in_else.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/copy_loc_borrowed_field.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/copy_loc_borrowed_indirect.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/copy_loc_borrowed_indirect.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/imm_borrow_loc_trivial_valid.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/imm_borrow_on_mut_trivial.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/join_borrow_unavailable_valid.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/mutable_borrow_local_twice.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/mutable_borrow_local_twice.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/mutate_borrow_field_ok.v2_exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/mutate_resource_holder_2.v2_exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/mutate_with_borrowed_loc.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/reference_safety/return_with_borrowed_loc.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/script_signature/script_with_generic_type_arg.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/script_signature/signer_misplaced_signer_arg.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/stack_usage_verifier/integer_stack_balanced.exp:
--------------------------------------------------------------------------------
1 | processed 6 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/stack_usage_verifier/integer_stack_balanced.v2_exp:
--------------------------------------------------------------------------------
1 | processed 6 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/stack_usage_verifier/multiple_return_values.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/stack_usage_verifier/multiple_return_values.v2_exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/type_safety/generic_abilities_borrow_field.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/type_safety/generic_abilities_imm_borrow_field.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/type_safety/generic_field_borrow_after_call.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/type_safety/generic_field_borrow_after_call.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-bytecode-verifier/transactional-tests/tests/type_safety/phantom_params/fields_abilities_ok.exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/tests/ability-check/drop_on_abort.exp:
--------------------------------------------------------------------------------
1 |
2 | ============ bytecode verification succeeded ========
3 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/tests/checking/positional_fields/decl_invalid.move:
--------------------------------------------------------------------------------
1 | module 0x42::test {
2 | struct S(&u8);
3 | }
4 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/tests/checking/variants/variants_empty.move:
--------------------------------------------------------------------------------
1 | module 0x42::variants_empty {
2 | enum T{}
3 | }
4 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/tests/more-v1/expansion/entry_main.exp:
--------------------------------------------------------------------------------
1 |
2 | ============ bytecode verification succeeded ========
3 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/tests/more-v1/expansion/public_friend_main.move:
--------------------------------------------------------------------------------
1 | script {
2 | public(friend) fun main() {
3 | }
4 | }
5 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/tests/more-v1/expansion/use_function.exp:
--------------------------------------------------------------------------------
1 |
2 | ============ bytecode verification succeeded ========
3 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/tests/more-v1/expansion/use_struct.exp:
--------------------------------------------------------------------------------
1 |
2 | ============ bytecode verification succeeded ========
3 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/tests/more-v1/liveness/dead_refs_loop.exp:
--------------------------------------------------------------------------------
1 |
2 | ============ bytecode verification succeeded ========
3 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/tests/more-v1/liveness/loop_weirdness.exp:
--------------------------------------------------------------------------------
1 |
2 | ============ bytecode verification succeeded ========
3 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/tests/more-v1/liveness/trailing_semi.exp:
--------------------------------------------------------------------------------
1 |
2 | ============ bytecode verification succeeded ========
3 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/tests/more-v1/parser/address_not_hex.exp:
--------------------------------------------------------------------------------
1 |
2 | ============ bytecode verification succeeded ========
3 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/tests/more-v1/parser/constant_values.exp:
--------------------------------------------------------------------------------
1 |
2 | ============ bytecode verification succeeded ========
3 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/tests/more-v1/parser/decimal_address.exp:
--------------------------------------------------------------------------------
1 |
2 | ============ bytecode verification succeeded ========
3 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/tests/more-v1/parser/entry_function.exp:
--------------------------------------------------------------------------------
1 |
2 | ============ bytecode verification succeeded ========
3 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/tests/more-v1/parser/expr_if_braces.exp:
--------------------------------------------------------------------------------
1 |
2 | ============ bytecode verification succeeded ========
3 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/tests/more-v1/parser/expr_loop_braces.exp:
--------------------------------------------------------------------------------
1 |
2 | ============ bytecode verification succeeded ========
3 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/tests/more-v1/parser/expr_unary_ops.exp:
--------------------------------------------------------------------------------
1 |
2 | ============ bytecode verification succeeded ========
3 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/tests/more-v1/parser/function_visibility_empty.move:
--------------------------------------------------------------------------------
1 | module M {
2 | public() fun f() {}
3 | }
4 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/tests/more-v1/parser/lambda_no_param.exp:
--------------------------------------------------------------------------------
1 |
2 | ============ bytecode verification succeeded ========
3 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/tests/more-v1/parser/named_address.exp:
--------------------------------------------------------------------------------
1 |
2 | ============ bytecode verification succeeded ========
3 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/tests/more-v1/parser/newline_crlf.exp:
--------------------------------------------------------------------------------
1 |
2 | ============ bytecode verification succeeded ========
3 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/tests/more-v1/parser/not_doc_comment.exp:
--------------------------------------------------------------------------------
1 |
2 | ============ bytecode verification succeeded ========
3 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/tests/more-v1/parser/return_in_binop.exp:
--------------------------------------------------------------------------------
1 |
2 | ============ bytecode verification succeeded ========
3 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/tests/more-v1/parser/struct_public.exp:
--------------------------------------------------------------------------------
1 |
2 | ============ bytecode verification succeeded ========
3 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/tests/more-v1/typing/abort_any_type.exp:
--------------------------------------------------------------------------------
1 |
2 | ============ bytecode verification succeeded ========
3 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/tests/reference-safety/bug_12756.old.exp:
--------------------------------------------------------------------------------
1 |
2 | ============ bytecode verification succeeded ========
3 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/tests/reference-safety/eq_ref.no-opt.exp:
--------------------------------------------------------------------------------
1 |
2 | ============ bytecode verification succeeded ========
3 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/tests/reference-safety/eq_ref.old.exp:
--------------------------------------------------------------------------------
1 |
2 | ============ bytecode verification succeeded ========
3 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/tests/reference-safety/function_ref.exp:
--------------------------------------------------------------------------------
1 |
2 | ============ bytecode verification succeeded ========
3 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/tests/reference-safety/mut_ref_paths.exp:
--------------------------------------------------------------------------------
1 |
2 | ============ bytecode verification succeeded ========
3 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/tests/skip_attribute_checks/testonly.exp:
--------------------------------------------------------------------------------
1 |
2 | ============ bytecode verification succeeded ========
3 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler-v2/transactional-tests/tests/no-v1-comparison/positional_fields/positional_fields.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/tests/move_check/expansion/public_friend_main.move:
--------------------------------------------------------------------------------
1 | script {
2 | public(friend) fun main() {
3 | }
4 | }
5 |
--------------------------------------------------------------------------------
/third_party/move/move-compiler/tests/move_check/parser/function_visibility_empty.move:
--------------------------------------------------------------------------------
1 | module M {
2 | public() fun f() {}
3 | }
4 |
--------------------------------------------------------------------------------
/third_party/move/move-examples/diem-framework/move-packages/DPN/sources/README:
--------------------------------------------------------------------------------
1 | This folder will contain DPN-specific Move modules.
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/builtins/move_to_and_from_resource_with_primitive_fields.v2_exp:
--------------------------------------------------------------------------------
1 | processed 3 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/entry_points/expected_u64_u64_address_got_u64_u64_address.v2_exp:
--------------------------------------------------------------------------------
1 | processed 1 task
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/module_publishing/republish_module_compatible_add_entry.v2_exp:
--------------------------------------------------------------------------------
1 | processed 6 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/module_publishing/republish_module_compatible_add_friend.v2_exp:
--------------------------------------------------------------------------------
1 | processed 4 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/stack_and_function_calls/pass_args_on_stack_as_expressions.exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------
/third_party/move/move-vm/transactional-tests/tests/stack_and_function_calls/pass_args_on_stack_as_expressions.v2_exp:
--------------------------------------------------------------------------------
1 | processed 2 tasks
2 |
--------------------------------------------------------------------------------