@layerzerolabs/protocol-stellar-v2 0.2.21 → 0.2.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +347 -271
- package/.turbo/turbo-lint.log +277 -208
- package/.turbo/turbo-test.log +1700 -1370
- package/Cargo.lock +22 -51
- package/Cargo.toml +6 -1
- package/contracts/common-macros/src/auth.rs +10 -9
- package/contracts/common-macros/src/contract_ttl.rs +1 -4
- package/contracts/common-macros/src/error.rs +1 -3
- package/contracts/common-macros/src/lib.rs +65 -61
- package/contracts/common-macros/src/storage.rs +212 -65
- package/contracts/common-macros/src/tests/auth.rs +75 -6
- package/contracts/common-macros/src/tests/contract_ttl.rs +383 -350
- package/contracts/common-macros/src/tests/error.rs +9 -21
- package/contracts/common-macros/src/tests/lz_contract.rs +80 -0
- package/contracts/common-macros/src/tests/mod.rs +2 -0
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__auth__snapshot_generated_multisig_code.snap +20 -3
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__auth__snapshot_generated_ownable_code.snap +28 -1
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__contract_ttl__snapshot_generated_contractimpl_code.snap +8 -43
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__contract_ttl__snapshot_generated_contracttrait_code.snap +6 -29
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__lz_contract__snapshot_generated_lz_contract_code.snap +31 -0
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__ttl_extendable__snapshot_generated_ttl_extendable_code.snap +8 -0
- package/contracts/common-macros/src/tests/storage/extract_fields.rs +87 -0
- package/contracts/common-macros/src/tests/storage/gen_accessor_methods.rs +223 -0
- package/contracts/common-macros/src/tests/storage/gen_args.rs +65 -0
- package/contracts/common-macros/src/tests/storage/gen_enum_variant.rs +78 -0
- package/contracts/common-macros/src/tests/storage/gen_key.rs +108 -0
- package/contracts/common-macros/src/tests/storage/gen_params.rs +105 -0
- package/contracts/common-macros/src/tests/{storage.rs → storage/generate_storage.rs} +54 -129
- package/contracts/common-macros/src/tests/storage/is_primitive_type.rs +48 -0
- package/contracts/common-macros/src/tests/storage/mod.rs +16 -0
- package/contracts/common-macros/src/tests/storage/parse_default.rs +164 -0
- package/contracts/common-macros/src/tests/storage/parse_name.rs +159 -0
- package/contracts/common-macros/src/tests/storage/parse_no_ttl_extension.rs +124 -0
- package/contracts/common-macros/src/tests/storage/parse_storage_type.rs +174 -0
- package/contracts/common-macros/src/tests/storage/snapshots/common_macros__tests__storage__generate_storage__snapshot_generated_storage_code.snap +412 -0
- package/contracts/common-macros/src/tests/storage/storage_kind.rs +39 -0
- package/contracts/common-macros/src/tests/storage/test_setup.rs +25 -0
- package/contracts/common-macros/src/tests/storage/validate_attrs.rs +138 -0
- package/contracts/common-macros/src/tests/storage/variant_config.rs +226 -0
- package/contracts/common-macros/src/tests/test_helpers.rs +4 -10
- package/contracts/common-macros/src/tests/ttl_configurable.rs +2 -2
- package/contracts/common-macros/src/tests/ttl_extendable.rs +32 -0
- package/contracts/common-macros/src/tests/upgradeable.rs +118 -2
- package/contracts/common-macros/src/ttl_configurable.rs +1 -4
- package/contracts/common-macros/src/upgradeable.rs +21 -3
- package/contracts/endpoint-v2/Cargo.toml +0 -4
- package/contracts/endpoint-v2/src/endpoint_v2.rs +37 -17
- package/contracts/endpoint-v2/src/errors.rs +26 -1
- package/contracts/endpoint-v2/src/interfaces/layerzero_endpoint_v2.rs +1 -1
- package/contracts/endpoint-v2/src/interfaces/message_lib_manager.rs +4 -4
- package/contracts/endpoint-v2/src/interfaces/messaging_composer.rs +2 -2
- package/contracts/endpoint-v2/src/lib.rs +0 -1
- package/contracts/endpoint-v2/src/message_lib_manager.rs +39 -8
- package/contracts/endpoint-v2/src/messaging_channel.rs +36 -4
- package/contracts/endpoint-v2/src/messaging_composer.rs +18 -4
- package/contracts/endpoint-v2/src/storage.rs +9 -1
- package/contracts/endpoint-v2/src/tests/endpoint_setup.rs +2 -2
- package/contracts/endpoint-v2/src/tests/endpoint_v2/pay_messaging_fees.rs +1 -1
- package/contracts/endpoint-v2/src/tests/endpoint_v2/require_oapp_auth.rs +2 -2
- package/contracts/endpoint-v2/src/tests/message_lib_manager/register_library.rs +3 -3
- package/contracts/endpoint-v2/src/tests/message_lib_manager/require_receive_lib_for_eid.rs +5 -5
- package/contracts/endpoint-v2/src/tests/message_lib_manager/require_registered.rs +2 -2
- package/contracts/endpoint-v2/src/tests/message_lib_manager/require_send_lib_for_eid.rs +5 -5
- package/contracts/endpoint-v2/src/tests/message_lib_manager/require_supported_eid.rs +3 -3
- package/contracts/endpoint-v2/src/tests/messaging_channel/nilify.rs +1 -1
- package/contracts/endpoint-v2/src/tests/messaging_composer/clear_compose.rs +4 -3
- package/contracts/endpoint-v2/src/tests/messaging_composer/lz_compose_alert.rs +7 -2
- package/contracts/endpoint-v2/src/tests/messaging_composer/mod.rs +4 -0
- package/contracts/endpoint-v2/src/tests/messaging_composer/send_compose.rs +7 -2
- package/contracts/layerzero-views/src/layerzero_view.rs +0 -1
- package/contracts/layerzero-views/src/tests/mod.rs +1 -0
- package/contracts/layerzero-views/src/tests/types_tests.rs +31 -0
- package/contracts/layerzero-views/src/types.rs +2 -3
- package/contracts/macro-integration-tests/tests/runtime/contract_ttl/constructor.rs +61 -0
- package/contracts/macro-integration-tests/tests/runtime/contract_ttl/contract_impl_ttl_extension.rs +97 -0
- package/contracts/macro-integration-tests/tests/runtime/contract_ttl/contract_trait_ttl_extension.rs +99 -0
- package/contracts/macro-integration-tests/tests/runtime/contract_ttl/mod.rs +3 -0
- package/contracts/macro-integration-tests/tests/runtime/lz_contract/mod.rs +5 -0
- package/contracts/macro-integration-tests/tests/runtime/lz_contract/wrapper_default.rs +86 -0
- package/contracts/macro-integration-tests/tests/runtime/lz_contract/wrapper_multisig.rs +47 -0
- package/contracts/macro-integration-tests/tests/runtime/lz_contract/wrapper_multisig_upgradeable.rs +77 -0
- package/contracts/macro-integration-tests/tests/runtime/lz_contract/wrapper_upgradeable.rs +114 -0
- package/contracts/macro-integration-tests/tests/runtime/lz_contract/wrapper_upgradeable_no_migration.rs +105 -0
- package/contracts/macro-integration-tests/tests/runtime/multisig/admin_entrypoints.rs +242 -0
- package/contracts/macro-integration-tests/tests/runtime/multisig/mod.rs +9 -0
- package/contracts/macro-integration-tests/tests/runtime/multisig/self_auth.rs +54 -0
- package/contracts/macro-integration-tests/tests/runtime/ownable/initialization.rs +13 -0
- package/contracts/macro-integration-tests/tests/runtime/ownable/mod.rs +1 -0
- package/contracts/macro-integration-tests/tests/runtime/ownable/ownership_transfer.rs +70 -1
- package/contracts/macro-integration-tests/tests/runtime/ownable/two_step_transfer.rs +219 -0
- package/contracts/macro-integration-tests/tests/runtime/storage/keyed_roundtrip.rs +41 -0
- package/contracts/macro-integration-tests/tests/runtime/storage/ttl_extension.rs +48 -16
- package/contracts/macro-integration-tests/tests/runtime/storage/unkeyed_roundtrip.rs +10 -0
- package/contracts/macro-integration-tests/tests/runtime/ttl_configurable/configuration.rs +96 -3
- package/contracts/macro-integration-tests/tests/runtime/ttl_configurable/freeze.rs +4 -0
- package/contracts/macro-integration-tests/tests/runtime/ttl_extendable/extend_instance_ttl.rs +64 -0
- package/contracts/macro-integration-tests/tests/runtime/ttl_extendable/mod.rs +16 -0
- package/contracts/macro-integration-tests/tests/runtime/upgradeable/migrate_guard_and_state.rs +305 -0
- package/contracts/macro-integration-tests/tests/runtime/upgradeable/mod.rs +3 -0
- package/contracts/macro-integration-tests/tests/runtime/upgradeable/no_migration.rs +59 -0
- package/contracts/macro-integration-tests/tests/runtime/upgradeable/upgrade_then_migrate.rs +88 -0
- package/contracts/macro-integration-tests/tests/runtime.rs +5 -0
- package/contracts/macro-integration-tests/tests/ui/contract_impl/fail/not_impl_item.rs +6 -0
- package/contracts/macro-integration-tests/tests/ui/contract_impl/fail/not_impl_item.stderr +7 -0
- package/contracts/macro-integration-tests/tests/ui/contract_impl/pass/basic.rs +102 -0
- package/contracts/macro-integration-tests/tests/ui/contract_trait/fail/not_a_trait.rs +6 -0
- package/contracts/macro-integration-tests/tests/ui/contract_trait/fail/not_a_trait.stderr +7 -0
- package/contracts/macro-integration-tests/tests/ui/contract_trait/pass/basic.rs +83 -0
- package/contracts/macro-integration-tests/tests/ui/error/fail/discriminant_too_large.rs +11 -0
- package/contracts/macro-integration-tests/tests/ui/error/fail/discriminant_too_large.stderr +7 -0
- package/contracts/macro-integration-tests/tests/ui/error/fail/non_enum_input.rs +11 -0
- package/contracts/macro-integration-tests/tests/ui/error/fail/non_enum_input.stderr +7 -0
- package/contracts/macro-integration-tests/tests/ui/error/pass/basic.rs +22 -0
- package/contracts/macro-integration-tests/tests/ui/lz_contract/fail/invalid_option.rs +6 -0
- package/contracts/macro-integration-tests/tests/ui/lz_contract/fail/invalid_option.stderr +7 -0
- package/contracts/macro-integration-tests/tests/ui/lz_contract/fail/multisig_rejects_ownable_api.rs +20 -0
- package/contracts/macro-integration-tests/tests/ui/lz_contract/fail/multisig_rejects_ownable_api.stderr +20 -0
- package/contracts/macro-integration-tests/tests/ui/lz_contract/fail/not_a_struct.rs +8 -0
- package/contracts/macro-integration-tests/tests/ui/lz_contract/fail/not_a_struct.stderr +7 -0
- package/contracts/macro-integration-tests/tests/ui/lz_contract/fail/upgradeable_invalid_inner_option.rs +10 -0
- package/contracts/macro-integration-tests/tests/ui/lz_contract/fail/upgradeable_invalid_inner_option.stderr +7 -0
- package/contracts/macro-integration-tests/tests/ui/lz_contract/fail/upgradeable_missing_internal.rs +20 -0
- package/contracts/macro-integration-tests/tests/ui/lz_contract/fail/upgradeable_missing_internal.stderr +86 -0
- package/contracts/macro-integration-tests/tests/ui/lz_contract/pass/basic.rs +45 -0
- package/contracts/macro-integration-tests/tests/ui/lz_contract/pass/multisig.rs +34 -0
- package/contracts/macro-integration-tests/tests/ui/lz_contract/pass/multisig_upgradeable.rs +30 -0
- package/contracts/macro-integration-tests/tests/ui/lz_contract/pass/upgradeable.rs +39 -0
- package/contracts/macro-integration-tests/tests/ui/lz_contract/pass/upgradeable_no_migration.rs +28 -0
- package/contracts/macro-integration-tests/tests/ui/multisig/fail/non_struct_input.rs +8 -0
- package/contracts/macro-integration-tests/tests/ui/multisig/fail/non_struct_input.stderr +7 -0
- package/contracts/macro-integration-tests/tests/ui/multisig/fail/rejects_ownable_api.rs +20 -0
- package/contracts/macro-integration-tests/tests/ui/multisig/fail/rejects_ownable_api.stderr +12 -0
- package/contracts/macro-integration-tests/tests/ui/multisig/fail/rejects_ownable_trait.rs +20 -0
- package/contracts/macro-integration-tests/tests/ui/multisig/fail/rejects_ownable_trait.stderr +5 -0
- package/contracts/macro-integration-tests/tests/ui/multisig/pass/basic.rs +49 -0
- package/contracts/macro-integration-tests/tests/ui/ownable/fail/non_struct_input.rs +8 -0
- package/contracts/macro-integration-tests/tests/ui/ownable/fail/non_struct_input.stderr +7 -0
- package/contracts/macro-integration-tests/tests/ui/ownable/fail/only_auth_missing_auth.rs +19 -0
- package/contracts/macro-integration-tests/tests/ui/ownable/fail/only_auth_missing_auth.stderr +12 -0
- package/contracts/macro-integration-tests/tests/ui/ownable/fail/only_auth_missing_env.rs +1 -1
- package/contracts/macro-integration-tests/tests/ui/ownable/fail/only_auth_missing_env.stderr +0 -8
- package/contracts/macro-integration-tests/tests/ui/ownable/pass/basic.rs +39 -0
- package/contracts/macro-integration-tests/tests/ui/ownable/pass/only_auth_env_param_variants.rs +7 -1
- package/contracts/macro-integration-tests/tests/ui/storage/fail/invalid_storage_type_param.stderr +1 -1
- package/contracts/macro-integration-tests/tests/ui/storage/fail/missing_storage_type_param.stderr +1 -1
- package/contracts/macro-integration-tests/tests/ui/storage/fail/multiple_default_values.rs +11 -0
- package/contracts/macro-integration-tests/tests/ui/storage/fail/multiple_default_values.stderr +7 -0
- package/contracts/macro-integration-tests/tests/ui/storage/fail/multiple_name_attrs.rs +11 -0
- package/contracts/macro-integration-tests/tests/ui/storage/fail/multiple_name_attrs.stderr +7 -0
- package/contracts/macro-integration-tests/tests/ui/storage/fail/multiple_no_ttl_extension.rs +11 -0
- package/contracts/macro-integration-tests/tests/ui/storage/fail/multiple_no_ttl_extension.stderr +7 -0
- package/contracts/macro-integration-tests/tests/ui/storage/fail/multiple_type_params.stderr +1 -1
- package/contracts/macro-integration-tests/tests/ui/storage/fail/no_ttl_extension_rejects_args.rs +13 -0
- package/contracts/macro-integration-tests/tests/ui/storage/fail/no_ttl_extension_rejects_args.stderr +7 -0
- package/contracts/macro-integration-tests/tests/ui/storage/pass/api_surface.rs +102 -0
- package/contracts/macro-integration-tests/tests/ui/storage/pass/basic.rs +43 -0
- package/contracts/macro-integration-tests/tests/ui/storage/pass/multi_key.rs +38 -0
- package/contracts/macro-integration-tests/tests/ui/ttl_configurable/fail/missing_auth_trait.rs +14 -0
- package/contracts/macro-integration-tests/tests/ui/ttl_configurable/fail/missing_auth_trait.stderr +71 -0
- package/contracts/macro-integration-tests/tests/ui/ttl_configurable/fail/non_struct_input.rs +8 -0
- package/contracts/macro-integration-tests/tests/ui/ttl_configurable/fail/non_struct_input.stderr +7 -0
- package/contracts/macro-integration-tests/tests/ui/ttl_configurable/pass/{minimal_contract.rs → basic.rs} +2 -0
- package/contracts/macro-integration-tests/tests/ui/ttl_configurable/pass/multisig_contract.rs +28 -0
- package/contracts/macro-integration-tests/tests/ui/ttl_configurable/pass/ownable_contract.rs +32 -0
- package/contracts/macro-integration-tests/tests/ui/ttl_extendable/fail/non_struct_input.rs +8 -0
- package/contracts/macro-integration-tests/tests/ui/ttl_extendable/fail/non_struct_input.stderr +7 -0
- package/contracts/macro-integration-tests/tests/ui/ttl_extendable/pass/basic.rs +23 -0
- package/contracts/macro-integration-tests/tests/ui/ttl_extendable/pass/no_user_contractimpl.rs +21 -0
- package/contracts/macro-integration-tests/tests/ui/upgradeable/fail/attr_args.rs +11 -0
- package/contracts/macro-integration-tests/tests/ui/upgradeable/fail/attr_args.stderr +29 -0
- package/contracts/macro-integration-tests/tests/ui/upgradeable/fail/missing_auth_trait.rs +20 -0
- package/contracts/macro-integration-tests/tests/ui/upgradeable/fail/missing_auth_trait.stderr +71 -0
- package/contracts/macro-integration-tests/tests/ui/upgradeable/fail/missing_upgradeable_internal.rs +10 -0
- package/contracts/macro-integration-tests/tests/ui/upgradeable/fail/missing_upgradeable_internal.stderr +79 -0
- package/contracts/macro-integration-tests/tests/ui/upgradeable/fail/non_struct_input.rs +8 -0
- package/contracts/macro-integration-tests/tests/ui/upgradeable/fail/non_struct_input.stderr +7 -0
- package/contracts/macro-integration-tests/tests/ui/upgradeable/pass/basic.rs +43 -0
- package/contracts/macro-integration-tests/tests/ui/upgradeable/pass/multisig_contract.rs +35 -0
- package/contracts/macro-integration-tests/tests/ui/upgradeable/pass/no_migration.rs +30 -0
- package/contracts/macro-integration-tests/tests/ui/upgradeable/pass/no_user_contractimpl.rs +29 -0
- package/contracts/macro-integration-tests/tests/ui_contract_impl.rs +12 -0
- package/contracts/macro-integration-tests/tests/ui_contract_trait.rs +12 -0
- package/contracts/macro-integration-tests/tests/ui_lz_contract.rs +11 -0
- package/contracts/macro-integration-tests/tests/ui_multisig.rs +11 -0
- package/contracts/macro-integration-tests/tests/ui_ttl_extendable.rs +12 -0
- package/contracts/macro-integration-tests/tests/ui_upgradeable.rs +11 -0
- package/contracts/message-libs/blocked-message-lib/Cargo.toml +1 -1
- package/contracts/message-libs/blocked-message-lib/src/lib.rs +4 -1
- package/contracts/message-libs/blocked-message-lib/src/tests/blocked_message_lib_tests.rs +108 -0
- package/contracts/message-libs/blocked-message-lib/src/tests/mod.rs +4 -0
- package/contracts/message-libs/blocked-message-lib/src/tests/setup.rs +40 -0
- package/contracts/message-libs/simple-message-lib/src/lib.rs +1 -1
- package/contracts/message-libs/simple-message-lib/src/tests/mod.rs +2 -0
- package/contracts/message-libs/simple-message-lib/src/tests/setup.rs +124 -0
- package/contracts/message-libs/simple-message-lib/src/tests/simple_message_lib_tests.rs +309 -0
- package/contracts/message-libs/uln-302/src/errors.rs +21 -0
- package/contracts/message-libs/uln-302/src/interfaces/receive_uln.rs +1 -1
- package/contracts/message-libs/uln-302/src/receive_uln.rs +6 -4
- package/contracts/message-libs/uln-302/src/send_uln.rs +15 -6
- package/contracts/message-libs/uln-302/src/storage.rs +5 -5
- package/contracts/message-libs/uln-302/src/tests/uln302/get_config.rs +71 -0
- package/contracts/message-libs/uln-302/src/tests/uln302/mod.rs +1 -0
- package/contracts/message-libs/uln-302/src/uln302.rs +3 -0
- package/contracts/oapps/counter/Cargo.toml +2 -0
- package/contracts/oapps/counter/integration_tests/mod.rs +1 -0
- package/contracts/oapps/counter/integration_tests/setup_sml.rs +6 -4
- package/contracts/oapps/counter/integration_tests/setup_uln.rs +12 -5
- package/contracts/oapps/counter/integration_tests/test_with_blocked.rs +67 -0
- package/contracts/oapps/counter/src/tests/mod.rs +1 -0
- package/contracts/oapps/counter/src/tests/test_u256_ext.rs +48 -0
- package/contracts/oapps/oapp/src/lib.rs +0 -3
- package/contracts/oapps/oapp/src/tests/mod.rs +1 -0
- package/contracts/oapps/oft/integration-tests/setup.rs +2 -3
- package/contracts/oapps/oft/src/lib.rs +3 -0
- package/contracts/oapps/oft/src/tests/extensions/mod.rs +3 -0
- package/contracts/oapps/oft/src/tests/extensions/oft_fee.rs +240 -0
- package/contracts/oapps/oft/src/tests/extensions/pausable.rs +141 -0
- package/contracts/oapps/oft/src/tests/extensions/rate_limiter.rs +447 -0
- package/contracts/oapps/oft/src/tests/mod.rs +2 -0
- package/contracts/oapps/oft/src/tests/oft_types/lock_unlock.rs +180 -0
- package/contracts/oapps/oft/src/tests/oft_types/mod.rs +1 -0
- package/contracts/oapps/oft-core/integration-tests/setup.rs +2 -3
- package/contracts/oapps/oft-core/src/lib.rs +2 -2
- package/contracts/oapps/oft-core/src/tests/mod.rs +1 -1
- package/contracts/oapps/oft-core/src/tests/{test_oft_version.rs → test_oft_version_and_approval.rs} +9 -0
- package/contracts/oapps/oft-core/src/tests/test_utils.rs +0 -43
- package/contracts/upgrader/src/tests/test_upgrader.rs +18 -0
- package/contracts/utils/src/auth.rs +2 -2
- package/contracts/utils/src/buffer_reader.rs +61 -10
- package/contracts/utils/src/buffer_writer.rs +35 -20
- package/contracts/utils/src/bytes_ext.rs +1 -2
- package/contracts/utils/src/errors.rs +5 -3
- package/contracts/utils/src/multisig.rs +59 -36
- package/contracts/utils/src/option_ext.rs +3 -3
- package/contracts/utils/src/ownable.rs +12 -6
- package/contracts/utils/src/tests/auth.rs +179 -0
- package/contracts/utils/src/tests/buffer_reader.rs +203 -1
- package/contracts/utils/src/tests/buffer_writer.rs +176 -5
- package/contracts/utils/src/tests/mod.rs +2 -0
- package/contracts/utils/src/tests/multisig.rs +170 -141
- package/contracts/utils/src/tests/option_ext.rs +1 -1
- package/contracts/utils/src/tests/ownable.rs +156 -161
- package/contracts/utils/src/tests/test_helper.rs +21 -1
- package/contracts/utils/src/tests/testing_utils.rs +84 -2
- package/contracts/utils/src/tests/ttl_configurable.rs +66 -86
- package/contracts/utils/src/tests/ttl_extendable.rs +64 -0
- package/contracts/utils/src/tests/upgradeable.rs +115 -6
- package/contracts/utils/src/ttl_configurable.rs +22 -12
- package/contracts/utils/src/ttl_extendable.rs +1 -3
- package/contracts/utils/src/upgradeable.rs +21 -24
- package/contracts/workers/dvn/src/auth.rs +1 -1
- package/contracts/workers/dvn/src/interfaces/dvn.rs +2 -2
- package/contracts/workers/dvn/src/storage.rs +1 -1
- package/contracts/workers/dvn/src/tests/auth.rs +136 -3
- package/contracts/workers/dvn/src/tests/mod.rs +0 -1
- package/contracts/workers/dvn/src/tests/setup.rs +4 -10
- package/contracts/workers/executor-helper/src/tests/executor_helper.rs +279 -0
- package/contracts/workers/executor-helper/src/tests/setup.rs +106 -1
- package/contracts/workers/worker/src/worker.rs +1 -1
- package/docs/oft-guide.md +5 -5
- package/package.json +5 -7
- package/sdk/.turbo/turbo-test.log +662 -466
- package/sdk/LICENSE +23 -0
- package/sdk/dist/generated/bml.d.ts +101 -106
- package/sdk/dist/generated/bml.js +108 -26
- package/sdk/dist/generated/counter.d.ts +123 -484
- package/sdk/dist/generated/counter.js +103 -25
- package/sdk/dist/generated/dvn.d.ts +141 -699
- package/sdk/dist/generated/dvn.js +106 -28
- package/sdk/dist/generated/dvn_fee_lib.d.ts +31 -248
- package/sdk/dist/generated/dvn_fee_lib.js +27 -24
- package/sdk/dist/generated/endpoint.d.ts +158 -836
- package/sdk/dist/generated/endpoint.js +107 -29
- package/sdk/dist/generated/executor.d.ts +139 -671
- package/sdk/dist/generated/executor.js +106 -28
- package/sdk/dist/generated/executor_fee_lib.d.ts +109 -264
- package/sdk/dist/generated/executor_fee_lib.js +106 -28
- package/sdk/dist/generated/executor_helper.d.ts +95 -92
- package/sdk/dist/generated/executor_helper.js +103 -25
- package/sdk/dist/generated/layerzero_view.d.ts +178 -335
- package/sdk/dist/generated/layerzero_view.js +172 -33
- package/sdk/dist/generated/oft.d.ts +137 -680
- package/sdk/dist/generated/oft.js +103 -25
- package/sdk/dist/generated/price_feed.d.ts +45 -444
- package/sdk/dist/generated/price_feed.js +27 -24
- package/sdk/dist/generated/sml.d.ts +119 -428
- package/sdk/dist/generated/sml.js +103 -25
- package/sdk/dist/generated/treasury.d.ts +109 -288
- package/sdk/dist/generated/treasury.js +103 -25
- package/sdk/dist/generated/uln302.d.ts +190 -527
- package/sdk/dist/generated/uln302.js +170 -31
- package/sdk/dist/generated/upgrader.d.ts +14 -34
- package/sdk/dist/generated/upgrader.js +24 -21
- package/sdk/package.json +3 -4
- package/sdk/test/counter-sml.test.ts +218 -142
- package/sdk/test/counter-uln.test.ts +189 -145
- package/sdk/test/oft-sml.test.ts +173 -156
- package/sdk/test/suites/constants.ts +7 -1
- package/sdk/test/suites/globalSetup.ts +140 -74
- package/sdk/turbo.json +1 -1
- package/tools/ts-bindings-gen/Cargo.toml +4 -4
- package/tools/ts-bindings-gen/src/main.rs +4 -0
- package/turbo.json +3 -0
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__storage__snapshot_generated_storage_code.snap +0 -1072
- package/contracts/endpoint-v2/src/constants.rs +0 -52
- package/contracts/macro-integration-tests/tests/ui/error/fail/attr_not_empty.rs +0 -12
- package/contracts/macro-integration-tests/tests/ui/error/fail/attr_not_empty.stderr +0 -7
- package/contracts/macro-integration-tests/tests/ui/error/pass/attr_on_variant_allowed.rs +0 -20
- package/contracts/macro-integration-tests/tests/ui/error/pass/basic_auto_discriminants.rs +0 -15
- package/contracts/macro-integration-tests/tests/ui/error/pass/mixed_discriminants.rs +0 -16
- package/contracts/macro-integration-tests/tests/ui/ownable/pass/minimal_contract.rs +0 -26
- package/contracts/macro-integration-tests/tests/ui/ownable/pass/namespacing_and_imports.rs +0 -21
- package/contracts/macro-integration-tests/tests/ui/storage/fail/storage_attr_rejects_args.rs +0 -12
- package/contracts/macro-integration-tests/tests/ui/storage/fail/storage_attr_rejects_args.stderr +0 -7
- package/contracts/macro-integration-tests/tests/ui/storage/pass/default_value_on_variant.rs +0 -14
- package/contracts/macro-integration-tests/tests/ui/storage/pass/enum_instance_unit_basic.rs +0 -14
- package/contracts/macro-integration-tests/tests/ui/storage/pass/enum_persistent_named_fields_keyed.rs +0 -16
- package/contracts/macro-integration-tests/tests/ui/storage/pass/enum_temporary_unit_option.rs +0 -15
- package/contracts/macro-integration-tests/tests/ui/storage/pass/name_override.rs +0 -14
- package/contracts/macro-integration-tests/tests/ui/storage/pass/no_auto_ttl_extension.rs +0 -19
- package/contracts/macro-integration-tests/tests/ui/storage/pass/ttl_provider_basic.rs +0 -15
- package/contracts/message-libs/simple-message-lib/src/test.rs +0 -280
- package/contracts/oapps/oapp/src/macro_tests/mod.rs +0 -1
- package/contracts/workers/dvn/src/tests/multisig/mod.rs +0 -3
- package/contracts/workers/dvn/src/tests/multisig/set_signer.rs +0 -132
- package/contracts/workers/dvn/src/tests/multisig/set_threshold.rs +0 -109
- package/contracts/workers/dvn/src/tests/multisig/verify_signatures.rs +0 -106
- /package/contracts/oapps/oapp/src/{macro_tests → tests}/test_macros.rs +0 -0
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,234 +1,308 @@
|
|
|
1
1
|
WARN Issue while reading "/home/runner/work/monorepo-internal/monorepo-internal/.npmrc". Failed to replace env in config: ${NPM_TOKEN}
|
|
2
2
|
|
|
3
3
|
> @layerzerolabs/protocol-stellar-v2@0.0.1 build /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar
|
|
4
|
-
> pnpm build:contracts
|
|
4
|
+
> pnpm build:contracts && pnpm generate:sdk
|
|
5
5
|
|
|
6
6
|
WARN Issue while reading "/home/runner/work/monorepo-internal/monorepo-internal/.npmrc". Failed to replace env in config: ${NPM_TOKEN}
|
|
7
7
|
|
|
8
|
-
> @layerzerolabs/protocol-stellar-v2@0.0.1 build:contracts
|
|
9
|
-
> pnpm exec lz-tool stellar contract build
|
|
8
|
+
> @layerzerolabs/protocol-stellar-v2@0.0.1 build:contracts /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar
|
|
9
|
+
> pnpm exec lz-tool stellar contract build
|
|
10
10
|
|
|
11
11
|
WARN Issue while reading "/home/runner/work/monorepo-internal/monorepo-internal/.npmrc". Failed to replace env in config: ${NPM_TOKEN}
|
|
12
12
|
📦 Using 4 default cache volume(s) for stellar
|
|
13
13
|
✅ stellar-25.0.0 (Latest stable release)
|
|
14
14
|
🔧 stellar version: 25.0.0
|
|
15
|
+
(node:16024) [MODULE_TYPELESS_PACKAGE_JSON] Warning: Module type of file:///home/runner/work/monorepo-internal/monorepo-internal/configs/vm-tooling/values/docker-image-repo.ts is not specified and it doesn't parse as CommonJS.
|
|
16
|
+
Reparsing as ES module because module syntax was detected. This incurs a performance overhead.
|
|
17
|
+
To eliminate this warning, add "type": "module" to /home/runner/work/monorepo-internal/monorepo-internal/package.json.
|
|
18
|
+
(Use `node --trace-warnings ...` to show where the warning was created)
|
|
15
19
|
$ docker image inspect --format {{.Id}} 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.0.0
|
|
16
|
-
|
|
17
|
-
|
|
20
|
+
Error response from daemon: No such image: 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.0.0
|
|
21
|
+
|
|
22
|
+
📥 Pulling Docker image from: 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.0.0
|
|
23
|
+
$ docker pull 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.0.0
|
|
24
|
+
stellar_25.0.0: Pulling from layerzerolabs/stellar-tooling
|
|
25
|
+
f6bd9104d248: Pulling fs layer
|
|
26
|
+
4617420e017b: Pulling fs layer
|
|
27
|
+
4e430a9db1a3: Pulling fs layer
|
|
28
|
+
67ce8fb56745: Pulling fs layer
|
|
29
|
+
6ba0ba49c87d: Pulling fs layer
|
|
30
|
+
1cfd9ed002d2: Pulling fs layer
|
|
31
|
+
43dc8d96fd20: Pulling fs layer
|
|
32
|
+
2c1ce468d9f3: Pulling fs layer
|
|
33
|
+
f6bd9104d248: Waiting
|
|
34
|
+
1d4a870e3b66: Pulling fs layer
|
|
35
|
+
1b2c4c00c303: Pulling fs layer
|
|
36
|
+
4617420e017b: Waiting
|
|
37
|
+
4e430a9db1a3: Waiting
|
|
38
|
+
73ca50fa4809: Pulling fs layer
|
|
39
|
+
67ce8fb56745: Waiting
|
|
40
|
+
6ba0ba49c87d: Waiting
|
|
41
|
+
f5a85bd7a844: Pulling fs layer
|
|
42
|
+
1cfd9ed002d2: Waiting
|
|
43
|
+
43dc8d96fd20: Waiting
|
|
44
|
+
2c1ce468d9f3: Waiting
|
|
45
|
+
c132a28172a5: Pulling fs layer
|
|
46
|
+
1d4a870e3b66: Waiting
|
|
47
|
+
1b2c4c00c303: Waiting
|
|
48
|
+
73ca50fa4809: Waiting
|
|
49
|
+
f5a85bd7a844: Waiting
|
|
50
|
+
c132a28172a5: Waiting
|
|
51
|
+
f6bd9104d248: Download complete
|
|
52
|
+
f6bd9104d248: Pull complete
|
|
53
|
+
67ce8fb56745: Verifying Checksum
|
|
54
|
+
67ce8fb56745: Download complete
|
|
55
|
+
4617420e017b: Verifying Checksum
|
|
56
|
+
4617420e017b: Download complete
|
|
57
|
+
4e430a9db1a3: Verifying Checksum
|
|
58
|
+
4e430a9db1a3: Download complete
|
|
59
|
+
6ba0ba49c87d: Verifying Checksum
|
|
60
|
+
6ba0ba49c87d: Download complete
|
|
61
|
+
2c1ce468d9f3: Download complete
|
|
62
|
+
1cfd9ed002d2: Verifying Checksum
|
|
63
|
+
1cfd9ed002d2: Download complete
|
|
64
|
+
1d4a870e3b66: Verifying Checksum
|
|
65
|
+
1d4a870e3b66: Download complete
|
|
66
|
+
1b2c4c00c303: Verifying Checksum
|
|
67
|
+
1b2c4c00c303: Download complete
|
|
68
|
+
73ca50fa4809: Verifying Checksum
|
|
69
|
+
73ca50fa4809: Download complete
|
|
70
|
+
f5a85bd7a844: Verifying Checksum
|
|
71
|
+
f5a85bd7a844: Download complete
|
|
72
|
+
43dc8d96fd20: Verifying Checksum
|
|
73
|
+
43dc8d96fd20: Download complete
|
|
74
|
+
c132a28172a5: Verifying Checksum
|
|
75
|
+
c132a28172a5: Download complete
|
|
76
|
+
4617420e017b: Pull complete
|
|
77
|
+
4e430a9db1a3: Pull complete
|
|
78
|
+
67ce8fb56745: Pull complete
|
|
79
|
+
6ba0ba49c87d: Pull complete
|
|
80
|
+
1cfd9ed002d2: Pull complete
|
|
81
|
+
43dc8d96fd20: Pull complete
|
|
82
|
+
2c1ce468d9f3: Pull complete
|
|
83
|
+
1d4a870e3b66: Pull complete
|
|
84
|
+
1b2c4c00c303: Pull complete
|
|
85
|
+
73ca50fa4809: Pull complete
|
|
86
|
+
f5a85bd7a844: Pull complete
|
|
87
|
+
c132a28172a5: Pull complete
|
|
88
|
+
Digest: sha256:08d5619657e93a64aace87c02b6f733cef2ad76736b740f723bab87bead786c7
|
|
89
|
+
Status: Downloaded newer image for 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.0.0
|
|
90
|
+
438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.0.0
|
|
91
|
+
✅ Successfully pulled: 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.0.0
|
|
18
92
|
👤 Running container as UID:GID 1001:1001
|
|
19
93
|
🌍 Using 5 default environment variable(s) for stellar
|
|
20
94
|
🔒 Acquired lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup
|
|
21
95
|
🔒 Acquired lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-config
|
|
22
96
|
🔒 Acquired lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
|
|
23
|
-
$ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_LINKER=clang -e CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER=clang -e $'CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUSTFLAGS=-C link-arg=-fuse-ld=mold' -e $'CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_RUSTFLAGS=-C link-arg=-fuse-ld=mold' -e LOCAL_UID=1001 -e LOCAL_GID=1001 -v /home/runner/work/monorepo-internal/monorepo-internal:/workspace -w /workspace/contracts/protocol/stellar -v lz-tooling-cache-stellar-config:/cache/stellar -v lz-tooling-cache-stellar-cargo:/cache/cargo -v lz-tooling-cache-stellar-rustup:/cache/rustup -v /home/runner/.sccache:/cache/sccache 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.0.0 stellar contract build
|
|
24
|
-
ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/endpoint-v2/Cargo.toml --crate-type=cdylib --target=wasm32v1-none --release
|
|
97
|
+
$ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_LINKER=clang -e CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER=clang -e $'CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUSTFLAGS=-C link-arg=-fuse-ld=mold' -e $'CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_RUSTFLAGS=-C link-arg=-fuse-ld=mold' -e LOCAL_UID=1001 -e LOCAL_GID=1001 -v /home/runner/work/monorepo-internal/monorepo-internal:/workspace -w /workspace/contracts/protocol/stellar -v lz-tooling-cache-stellar-config:/cache/stellar -v lz-tooling-cache-stellar-cargo:/cache/cargo -v lz-tooling-cache-stellar-rustup:/cache/rustup -v /home/runner/.sccache:/cache/sccache 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.0.0 stellar contract build
|
|
98
|
+
ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/endpoint-v2/Cargo.toml --crate-type=cdylib --target=wasm32v1-none --release
|
|
25
99
|
Updating crates.io index
|
|
26
100
|
Downloading crates ...
|
|
27
|
-
Downloaded
|
|
28
|
-
Downloaded
|
|
29
|
-
Downloaded
|
|
30
|
-
Downloaded
|
|
31
|
-
Downloaded once_cell v1.21.3
|
|
32
|
-
Downloaded elliptic-curve v0.13.8
|
|
33
|
-
Downloaded escape-bytes v0.1.1
|
|
34
|
-
Downloaded k256 v0.13.4
|
|
35
|
-
Downloaded rand_chacha v0.3.1
|
|
36
|
-
Downloaded ethnum v1.5.2
|
|
37
|
-
Downloaded visibility v0.1.1
|
|
38
|
-
Downloaded dtor-proc-macro v0.0.6
|
|
39
|
-
Downloaded powerfmt v0.2.0
|
|
40
|
-
Downloaded block-buffer v0.10.4
|
|
41
|
-
Downloaded heck v0.5.0
|
|
42
|
-
Downloaded ed25519 v2.2.3
|
|
101
|
+
Downloaded rustc_version v0.4.1
|
|
102
|
+
Downloaded rfc6979 v0.4.0
|
|
103
|
+
Downloaded ref-cast v1.0.25
|
|
104
|
+
Downloaded stellar-strkey v0.0.13
|
|
43
105
|
Downloaded zeroize_derive v1.4.2
|
|
44
|
-
Downloaded base16ct v0.2.0
|
|
45
|
-
Downloaded keccak v0.1.5
|
|
46
|
-
Downloaded smallvec v1.15.1
|
|
47
|
-
Downloaded schemars v0.9.0
|
|
48
106
|
Downloaded wasmi_arena v0.4.1
|
|
107
|
+
Downloaded subtle v2.6.1
|
|
49
108
|
Downloaded zeroize v1.8.2
|
|
50
|
-
Downloaded
|
|
109
|
+
Downloaded strsim v0.11.1
|
|
110
|
+
Downloaded version_check v0.9.5
|
|
111
|
+
Downloaded spin v0.9.8
|
|
112
|
+
Downloaded unicode-ident v1.0.22
|
|
113
|
+
Downloaded soroban-env-common v25.0.1
|
|
114
|
+
Downloaded serde v1.0.228
|
|
51
115
|
Downloaded typenum v1.19.0
|
|
116
|
+
Downloaded wasmparser-nostd v0.100.2
|
|
117
|
+
Downloaded soroban-sdk v25.1.0
|
|
118
|
+
Downloaded time v0.3.44
|
|
119
|
+
Downloaded soroban-wasmi v0.31.1-soroban.20.0.1
|
|
52
120
|
Downloaded wasmparser v0.116.1
|
|
53
|
-
Downloaded
|
|
54
|
-
Downloaded
|
|
121
|
+
Downloaded curve25519-dalek v4.1.3
|
|
122
|
+
Downloaded serde_with v3.15.1
|
|
55
123
|
Downloaded zerocopy v0.8.27
|
|
56
|
-
Downloaded
|
|
57
|
-
Downloaded
|
|
124
|
+
Downloaded syn v1.0.109
|
|
125
|
+
Downloaded libc v0.2.177
|
|
58
126
|
Downloaded syn v2.0.108
|
|
59
|
-
Downloaded
|
|
60
|
-
Downloaded
|
|
61
|
-
Downloaded
|
|
62
|
-
Downloaded
|
|
63
|
-
Downloaded
|
|
64
|
-
Downloaded
|
|
65
|
-
Downloaded libm v0.2.15
|
|
127
|
+
Downloaded k256 v0.13.4
|
|
128
|
+
Downloaded num-bigint v0.4.6
|
|
129
|
+
Downloaded derivative v2.2.0
|
|
130
|
+
Downloaded indexmap-nostd v0.4.0
|
|
131
|
+
Downloaded hashbrown v0.13.2
|
|
132
|
+
Downloaded ctor v0.5.0
|
|
66
133
|
Downloaded serde_json v1.0.145
|
|
67
|
-
Downloaded
|
|
68
|
-
Downloaded
|
|
69
|
-
Downloaded
|
|
70
|
-
Downloaded
|
|
71
|
-
Downloaded
|
|
134
|
+
Downloaded indexmap v2.12.0
|
|
135
|
+
Downloaded block-buffer v0.10.4
|
|
136
|
+
Downloaded itertools v0.14.0
|
|
137
|
+
Downloaded group v0.13.0
|
|
138
|
+
Downloaded ark-bls12-381 v0.4.0
|
|
139
|
+
Downloaded libm v0.2.15
|
|
140
|
+
Downloaded hmac v0.12.1
|
|
141
|
+
Downloaded hashbrown v0.16.0
|
|
142
|
+
Downloaded soroban-env-host v25.0.1
|
|
143
|
+
Downloaded ark-ff v0.4.2
|
|
144
|
+
Downloaded soroban-sdk-macros v25.1.0
|
|
145
|
+
Downloaded itertools v0.10.5
|
|
146
|
+
Downloaded hex v0.4.3
|
|
147
|
+
Downloaded hash32 v0.3.1
|
|
148
|
+
Downloaded ed25519 v2.2.3
|
|
149
|
+
Downloaded derive_arbitrary v1.3.2
|
|
150
|
+
Downloaded darling_macro v0.21.3
|
|
151
|
+
Downloaded bytes-lit v0.0.5
|
|
152
|
+
Downloaded byteorder v1.5.0
|
|
153
|
+
Downloaded base64ct v1.8.0
|
|
154
|
+
Downloaded ark-serialize-derive v0.4.2
|
|
155
|
+
Downloaded ark-poly v0.4.2
|
|
156
|
+
Downloaded ark-ff-macros v0.4.2
|
|
157
|
+
Downloaded ark-ff-asm v0.4.2
|
|
72
158
|
Downloaded sha2 v0.10.9
|
|
73
|
-
Downloaded
|
|
159
|
+
Downloaded p256 v0.13.2
|
|
160
|
+
Downloaded memchr v2.7.6
|
|
74
161
|
Downloaded sha3 v0.10.8
|
|
75
|
-
Downloaded
|
|
76
|
-
Downloaded rustc_version v0.4.1
|
|
77
|
-
Downloaded num-bigint v0.4.6
|
|
78
|
-
Downloaded indexmap v2.12.0
|
|
162
|
+
Downloaded itoa v1.0.15
|
|
79
163
|
Downloaded indexmap v1.9.3
|
|
80
|
-
Downloaded
|
|
81
|
-
Downloaded
|
|
164
|
+
Downloaded hex-literal v0.4.1
|
|
165
|
+
Downloaded heck v0.5.0
|
|
166
|
+
Downloaded getrandom v0.2.16
|
|
167
|
+
Downloaded generic-array v0.14.9
|
|
168
|
+
Downloaded escape-bytes v0.1.1
|
|
169
|
+
Downloaded ctor-proc-macro v0.0.6
|
|
82
170
|
Downloaded time-macros v0.2.24
|
|
83
|
-
Downloaded
|
|
84
|
-
Downloaded spki v0.7.3
|
|
85
|
-
Downloaded spin v0.9.8
|
|
86
|
-
Downloaded soroban-sdk-macros v25.0.1
|
|
87
|
-
Downloaded soroban-ledger-snapshot v25.0.1
|
|
88
|
-
Downloaded soroban-env-guest v25.0.1
|
|
89
|
-
Downloaded semver v1.0.27
|
|
90
|
-
Downloaded rfc6979 v0.4.0
|
|
91
|
-
Downloaded ref-cast-impl v1.0.25
|
|
92
|
-
Downloaded prettyplease v0.2.37
|
|
93
|
-
Downloaded p256 v0.13.2
|
|
94
|
-
Downloaded libc v0.2.177
|
|
95
|
-
Downloaded num-traits v0.2.19
|
|
96
|
-
Downloaded hashbrown v0.16.0
|
|
97
|
-
Downloaded ed25519-dalek v2.2.0
|
|
98
|
-
Downloaded wasmi_core v0.13.0
|
|
171
|
+
Downloaded thiserror-impl v1.0.69
|
|
99
172
|
Downloaded thiserror v1.0.69
|
|
100
|
-
Downloaded
|
|
173
|
+
Downloaded soroban-spec-rust v25.1.0
|
|
101
174
|
Downloaded soroban-env-macros v25.0.1
|
|
102
|
-
Downloaded
|
|
103
|
-
Downloaded
|
|
104
|
-
Downloaded
|
|
105
|
-
Downloaded
|
|
106
|
-
Downloaded
|
|
175
|
+
Downloaded smallvec v1.15.1
|
|
176
|
+
Downloaded semver v1.0.27
|
|
177
|
+
Downloaded num-derive v0.4.2
|
|
178
|
+
Downloaded num-conv v0.1.0
|
|
179
|
+
Downloaded macro-string v0.1.4
|
|
180
|
+
Downloaded heapless v0.8.0
|
|
181
|
+
Downloaded hashbrown v0.12.3
|
|
182
|
+
Downloaded elliptic-curve v0.13.8
|
|
183
|
+
Downloaded ed25519-dalek v2.2.0
|
|
184
|
+
Downloaded deranged v0.5.5
|
|
185
|
+
Downloaded der v0.7.10
|
|
186
|
+
Downloaded crypto-common v0.1.6
|
|
187
|
+
Downloaded base16ct v0.2.0
|
|
188
|
+
Downloaded ark-serialize v0.4.2
|
|
189
|
+
Downloaded ark-ec v0.4.2
|
|
190
|
+
Downloaded ark-bn254 v0.4.0
|
|
191
|
+
Downloaded stable_deref_trait v1.2.1
|
|
107
192
|
Downloaded proc-macro2 v1.0.103
|
|
108
193
|
Downloaded paste v1.0.15
|
|
194
|
+
Downloaded once_cell v1.21.3
|
|
195
|
+
Downloaded num-traits v0.2.19
|
|
196
|
+
Downloaded keccak v0.1.5
|
|
109
197
|
Downloaded iana-time-zone v0.1.64
|
|
110
|
-
Downloaded
|
|
111
|
-
Downloaded
|
|
112
|
-
Downloaded
|
|
113
|
-
Downloaded
|
|
114
|
-
Downloaded
|
|
198
|
+
Downloaded fnv v1.0.7
|
|
199
|
+
Downloaded ff v0.13.1
|
|
200
|
+
Downloaded ethnum v1.5.2
|
|
201
|
+
Downloaded equivalent v1.0.2
|
|
202
|
+
Downloaded either v1.15.0
|
|
203
|
+
Downloaded dtor v0.1.1
|
|
204
|
+
Downloaded digest v0.10.7
|
|
115
205
|
Downloaded data-encoding v2.9.0
|
|
116
|
-
Downloaded
|
|
206
|
+
Downloaded darling_core v0.20.11
|
|
207
|
+
Downloaded crypto-bigint v0.5.5
|
|
208
|
+
Downloaded const-oid v0.9.6
|
|
209
|
+
Downloaded chrono v0.4.42
|
|
210
|
+
Downloaded base64 v0.22.1
|
|
117
211
|
Downloaded autocfg v1.5.0
|
|
118
212
|
Downloaded ark-std v0.4.0
|
|
119
|
-
Downloaded
|
|
120
|
-
Downloaded
|
|
121
|
-
Downloaded thiserror-impl v1.0.69
|
|
122
|
-
Downloaded strsim v0.11.1
|
|
213
|
+
Downloaded arbitrary v1.3.2
|
|
214
|
+
Downloaded wasmi_core v0.13.0
|
|
123
215
|
Downloaded stellar-strkey v0.0.16
|
|
124
|
-
Downloaded
|
|
125
|
-
Downloaded
|
|
126
|
-
Downloaded soroban-spec v25.0
|
|
127
|
-
Downloaded
|
|
128
|
-
Downloaded
|
|
129
|
-
Downloaded
|
|
216
|
+
Downloaded static_assertions v1.1.0
|
|
217
|
+
Downloaded spki v0.7.3
|
|
218
|
+
Downloaded soroban-spec v25.1.0
|
|
219
|
+
Downloaded sec1 v0.7.3
|
|
220
|
+
Downloaded rand_chacha v0.3.1
|
|
221
|
+
Downloaded rand v0.8.5
|
|
130
222
|
Downloaded quote v1.0.41
|
|
131
|
-
Downloaded
|
|
223
|
+
Downloaded prettyplease v0.2.37
|
|
132
224
|
Downloaded pkcs8 v0.10.2
|
|
133
225
|
Downloaded num-integer v0.1.46
|
|
134
|
-
Downloaded ff v0.13.1
|
|
135
|
-
Downloaded ctor-proc-macro v0.0.6
|
|
136
|
-
Downloaded ark-serialize-derive v0.4.2
|
|
137
|
-
Downloaded ark-serialize v0.4.2
|
|
138
|
-
Downloaded num-derive v0.4.2
|
|
139
|
-
Downloaded indexmap-nostd v0.4.0
|
|
140
|
-
Downloaded signature v2.2.0
|
|
141
|
-
Downloaded rand v0.8.5
|
|
142
|
-
Downloaded stellar-xdr v25.0.0
|
|
143
|
-
Downloaded num-conv v0.1.0
|
|
144
|
-
Downloaded hex v0.4.3
|
|
145
|
-
Downloaded time v0.3.44
|
|
146
|
-
Downloaded generic-array v0.14.9
|
|
147
|
-
Downloaded darling_macro v0.20.11
|
|
148
|
-
Downloaded darling v0.20.11
|
|
149
|
-
Downloaded crypto-common v0.1.6
|
|
150
|
-
Downloaded itoa v1.0.15
|
|
151
226
|
Downloaded ident_case v1.0.1
|
|
152
|
-
Downloaded
|
|
153
|
-
Downloaded bytes-lit v0.0.5
|
|
227
|
+
Downloaded dtor-proc-macro v0.0.6
|
|
154
228
|
Downloaded downcast-rs v1.2.1
|
|
155
|
-
Downloaded
|
|
156
|
-
Downloaded cfg_eval v0.1.2
|
|
157
|
-
Downloaded cfg-if v1.0.4
|
|
158
|
-
Downloaded dtor v0.1.1
|
|
229
|
+
Downloaded darling_core v0.21.3
|
|
159
230
|
Downloaded darling v0.21.3
|
|
231
|
+
Downloaded darling v0.20.11
|
|
160
232
|
Downloaded crate-git-revision v0.0.6
|
|
161
|
-
Downloaded chrono v0.4.42
|
|
162
|
-
Downloaded primeorder v0.13.6
|
|
163
|
-
Downloaded macro-string v0.1.4
|
|
164
|
-
Downloaded hmac v0.12.1
|
|
165
|
-
Downloaded hash32 v0.3.1
|
|
166
|
-
Downloaded digest v0.10.7
|
|
167
|
-
Downloaded derive_arbitrary v1.3.2
|
|
168
|
-
Downloaded base64 v0.22.1
|
|
169
233
|
Downloaded cpufeatures v0.2.17
|
|
170
|
-
Downloaded
|
|
171
|
-
Downloaded
|
|
172
|
-
Downloaded ark-ff v0.4.2
|
|
173
|
-
Downloaded memchr v2.7.6
|
|
174
|
-
Downloaded heapless v0.8.0
|
|
175
|
-
Downloaded hashbrown v0.13.2
|
|
176
|
-
Downloaded equivalent v1.0.2
|
|
177
|
-
Downloaded ark-bn254 v0.4.0
|
|
178
|
-
Downloaded arbitrary v1.3.2
|
|
179
|
-
Downloaded ahash v0.8.12
|
|
180
|
-
Downloaded fnv v1.0.7
|
|
234
|
+
Downloaded soroban-builtin-sdk-macros v25.0.1
|
|
235
|
+
Downloaded stellar-xdr v25.0.0
|
|
181
236
|
Downloaded dyn-clone v1.0.20
|
|
182
|
-
Downloaded
|
|
183
|
-
Downloaded
|
|
184
|
-
Downloaded
|
|
185
|
-
Downloaded
|
|
237
|
+
Downloaded darling_macro v0.20.11
|
|
238
|
+
Downloaded curve25519-dalek-derive v0.1.1
|
|
239
|
+
Downloaded time-core v0.1.6
|
|
240
|
+
Downloaded soroban-env-guest v25.0.1
|
|
241
|
+
Downloaded serde_derive v1.0.228
|
|
242
|
+
Downloaded ppv-lite86 v0.2.21
|
|
243
|
+
Downloaded powerfmt v0.2.0
|
|
244
|
+
Downloaded ecdsa v0.16.9
|
|
245
|
+
Downloaded cfg_eval v0.1.2
|
|
246
|
+
Downloaded ahash v0.8.12
|
|
247
|
+
Downloaded visibility v0.1.1
|
|
248
|
+
Downloaded soroban-ledger-snapshot v25.1.0
|
|
249
|
+
Downloaded signature v2.2.0
|
|
250
|
+
Downloaded serde_core v1.0.228
|
|
251
|
+
Downloaded schemars v1.0.5
|
|
252
|
+
Downloaded schemars v0.9.0
|
|
253
|
+
Downloaded cfg-if v1.0.4
|
|
254
|
+
Downloaded serde_with_macros v3.15.1
|
|
255
|
+
Downloaded schemars v0.8.22
|
|
256
|
+
Downloaded ryu v1.0.20
|
|
257
|
+
Downloaded rand_core v0.6.4
|
|
258
|
+
Downloaded primeorder v0.13.6
|
|
259
|
+
Downloaded ref-cast-impl v1.0.25
|
|
186
260
|
Compiling proc-macro2 v1.0.103
|
|
187
261
|
Compiling unicode-ident v1.0.22
|
|
188
262
|
Compiling quote v1.0.41
|
|
189
263
|
Compiling serde_core v1.0.228
|
|
190
264
|
Compiling serde v1.0.228
|
|
191
265
|
Compiling serde_json v1.0.145
|
|
192
|
-
Compiling ryu v1.0.20
|
|
193
|
-
Compiling itoa v1.0.15
|
|
194
266
|
Compiling memchr v2.7.6
|
|
195
|
-
Compiling
|
|
196
|
-
Compiling
|
|
267
|
+
Compiling itoa v1.0.15
|
|
268
|
+
Compiling ryu v1.0.20
|
|
197
269
|
Compiling fnv v1.0.7
|
|
198
|
-
Compiling
|
|
270
|
+
Compiling strsim v0.11.1
|
|
271
|
+
Compiling ident_case v1.0.1
|
|
199
272
|
Compiling version_check v0.9.5
|
|
273
|
+
Compiling typenum v1.19.0
|
|
200
274
|
Compiling autocfg v1.5.0
|
|
201
275
|
Compiling schemars v0.8.22
|
|
202
276
|
Compiling dyn-clone v1.0.20
|
|
277
|
+
Compiling cpufeatures v0.2.17
|
|
203
278
|
Compiling data-encoding v2.9.0
|
|
204
279
|
Compiling cfg-if v1.0.4
|
|
205
|
-
Compiling cpufeatures v0.2.17
|
|
206
280
|
Compiling either v1.15.0
|
|
207
|
-
Compiling escape-bytes v0.1.1
|
|
208
281
|
Compiling ethnum v1.5.2
|
|
282
|
+
Compiling generic-array v0.14.9
|
|
283
|
+
Compiling escape-bytes v0.1.1
|
|
209
284
|
Compiling semver v1.0.27
|
|
210
|
-
Compiling equivalent v1.0.2
|
|
211
285
|
Compiling thiserror v1.0.69
|
|
286
|
+
Compiling equivalent v1.0.2
|
|
212
287
|
Compiling hashbrown v0.16.0
|
|
213
288
|
Compiling prettyplease v0.2.37
|
|
214
|
-
Compiling generic-array v0.14.9
|
|
215
289
|
Compiling num-traits v0.2.19
|
|
290
|
+
Compiling base64 v0.22.1
|
|
216
291
|
Compiling heapless v0.8.0
|
|
217
|
-
Compiling itertools v0.10.5
|
|
218
292
|
Compiling byteorder v1.5.0
|
|
219
|
-
Compiling
|
|
293
|
+
Compiling itertools v0.10.5
|
|
220
294
|
Compiling rustc_version v0.4.1
|
|
221
|
-
Compiling
|
|
295
|
+
Compiling stable_deref_trait v1.2.1
|
|
222
296
|
Compiling hash32 v0.3.1
|
|
297
|
+
Compiling static_assertions v1.1.0
|
|
223
298
|
Compiling heck v0.5.0
|
|
224
|
-
Compiling stable_deref_trait v1.2.1
|
|
225
299
|
Compiling itertools v0.14.0
|
|
226
300
|
Compiling indexmap v2.12.0
|
|
227
|
-
Compiling syn v2.0.108
|
|
228
301
|
Compiling num-integer v0.1.46
|
|
229
|
-
Compiling
|
|
302
|
+
Compiling syn v2.0.108
|
|
230
303
|
Compiling crypto-common v0.1.6
|
|
231
304
|
Compiling block-buffer v0.10.4
|
|
305
|
+
Compiling wasmparser v0.116.1
|
|
232
306
|
Compiling digest v0.10.7
|
|
233
307
|
Compiling num-bigint v0.4.6
|
|
234
308
|
Compiling sha2 v0.10.9
|
|
@@ -237,10 +311,10 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
237
311
|
Compiling macro-string v0.1.4
|
|
238
312
|
Compiling serde_derive v1.0.228
|
|
239
313
|
Compiling cfg_eval v0.1.2
|
|
240
|
-
Compiling num-derive v0.4.2
|
|
241
314
|
Compiling thiserror-impl v1.0.69
|
|
242
|
-
Compiling
|
|
315
|
+
Compiling num-derive v0.4.2
|
|
243
316
|
Compiling visibility v0.1.1
|
|
317
|
+
Compiling bytes-lit v0.0.5
|
|
244
318
|
Compiling common-macros v0.0.1 (/workspace/contracts/protocol/stellar/contracts/common-macros)
|
|
245
319
|
Compiling darling_macro v0.20.11
|
|
246
320
|
Compiling darling_macro v0.21.3
|
|
@@ -253,20 +327,20 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
253
327
|
Compiling stellar-xdr v25.0.0
|
|
254
328
|
Compiling soroban-env-common v25.0.1
|
|
255
329
|
Compiling stellar-strkey v0.0.16
|
|
256
|
-
Compiling soroban-sdk v25.0
|
|
330
|
+
Compiling soroban-sdk v25.1.0
|
|
257
331
|
Compiling serde_with v3.15.1
|
|
258
|
-
Compiling soroban-spec v25.0
|
|
332
|
+
Compiling soroban-spec v25.1.0
|
|
259
333
|
Compiling soroban-env-macros v25.0.1
|
|
260
|
-
Compiling soroban-spec-rust v25.0
|
|
261
|
-
Compiling soroban-sdk-macros v25.0
|
|
334
|
+
Compiling soroban-spec-rust v25.1.0
|
|
335
|
+
Compiling soroban-sdk-macros v25.1.0
|
|
262
336
|
Compiling soroban-env-guest v25.0.1
|
|
263
337
|
Compiling utils v0.0.1 (/workspace/contracts/protocol/stellar/contracts/utils)
|
|
264
338
|
Compiling endpoint-v2 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/endpoint-v2)
|
|
265
|
-
Finished `release` profile [optimized] target(s) in
|
|
339
|
+
Finished `release` profile [optimized] target(s) in 52.86s
|
|
266
340
|
ℹ️ Build Summary:
|
|
267
|
-
Wasm File: target/wasm32v1-none/release/endpoint_v2.wasm (
|
|
268
|
-
Wasm Hash:
|
|
269
|
-
Wasm Size:
|
|
341
|
+
Wasm File: target/wasm32v1-none/release/endpoint_v2.wasm (58012 bytes)
|
|
342
|
+
Wasm Hash: a61e80a56e38489a25f922ab29ad783434135f64ca9b9c7ab2ca7a7432f2ef7d
|
|
343
|
+
Wasm Size: 58012 bytes
|
|
270
344
|
Exported Functions: 60 found
|
|
271
345
|
• __constructor
|
|
272
346
|
• accept_ownership
|
|
@@ -330,14 +404,14 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
330
404
|
• zro
|
|
331
405
|
✅ Build Complete
|
|
332
406
|
|
|
333
|
-
ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/layerzero-views/Cargo.toml --crate-type=cdylib --target=wasm32v1-none --release
|
|
334
|
-
Compiling escape-bytes v0.1.1
|
|
407
|
+
ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/layerzero-views/Cargo.toml --crate-type=cdylib --target=wasm32v1-none --release
|
|
335
408
|
Compiling byteorder v1.5.0
|
|
409
|
+
Compiling escape-bytes v0.1.1
|
|
336
410
|
Compiling stable_deref_trait v1.2.1
|
|
337
411
|
Compiling ethnum v1.5.2
|
|
412
|
+
Compiling num-traits v0.2.19
|
|
338
413
|
Compiling static_assertions v1.1.0
|
|
339
414
|
Compiling data-encoding v2.9.0
|
|
340
|
-
Compiling num-traits v0.2.19
|
|
341
415
|
Compiling cfg-if v1.0.4
|
|
342
416
|
Compiling stellar-xdr v25.0.0
|
|
343
417
|
Compiling hash32 v0.3.1
|
|
@@ -345,17 +419,17 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
345
419
|
Compiling stellar-strkey v0.0.16
|
|
346
420
|
Compiling soroban-env-common v25.0.1
|
|
347
421
|
Compiling soroban-env-guest v25.0.1
|
|
348
|
-
Compiling soroban-sdk v25.0
|
|
422
|
+
Compiling soroban-sdk v25.1.0
|
|
349
423
|
Compiling utils v0.0.1 (/workspace/contracts/protocol/stellar/contracts/utils)
|
|
350
424
|
Compiling endpoint-v2 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/endpoint-v2)
|
|
351
425
|
Compiling message-lib-common v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/message-lib-common)
|
|
352
426
|
Compiling uln302 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/uln-302)
|
|
353
427
|
Compiling layerzero-views v0.0.1 (/workspace/contracts/protocol/stellar/contracts/layerzero-views)
|
|
354
|
-
Finished `release` profile [optimized] target(s) in
|
|
428
|
+
Finished `release` profile [optimized] target(s) in 13.51s
|
|
355
429
|
ℹ️ Build Summary:
|
|
356
|
-
Wasm File: target/wasm32v1-none/release/layerzero_views.wasm (
|
|
357
|
-
Wasm Hash:
|
|
358
|
-
Wasm Size:
|
|
430
|
+
Wasm File: target/wasm32v1-none/release/layerzero_views.wasm (36129 bytes)
|
|
431
|
+
Wasm Hash: d871b71ff5f540d1a9a72ec62e1e481a531804047b538de2f5cde3c30b5c52f5
|
|
432
|
+
Wasm Size: 36129 bytes
|
|
359
433
|
Exported Functions: 24 found
|
|
360
434
|
• __constructor
|
|
361
435
|
• accept_ownership
|
|
@@ -386,11 +460,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
386
460
|
ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/message-libs/uln-302/Cargo.toml --crate-type=cdylib --target=wasm32v1-none --release
|
|
387
461
|
Compiling message-lib-common v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/message-lib-common)
|
|
388
462
|
Compiling uln302 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/uln-302)
|
|
389
|
-
Finished `release` profile [optimized] target(s) in 1.
|
|
463
|
+
Finished `release` profile [optimized] target(s) in 1.59s
|
|
390
464
|
ℹ️ Build Summary:
|
|
391
|
-
Wasm File: target/wasm32v1-none/release/uln302.wasm (
|
|
392
|
-
Wasm Hash:
|
|
393
|
-
Wasm Size:
|
|
465
|
+
Wasm File: target/wasm32v1-none/release/uln302.wasm (58799 bytes)
|
|
466
|
+
Wasm Hash: 54eb2be51ef372723ba480eadbae41481aaf498c5e183cbcbb73cbee63edd7f0
|
|
467
|
+
Wasm Size: 58799 bytes
|
|
394
468
|
Exported Functions: 38 found
|
|
395
469
|
• __constructor
|
|
396
470
|
• accept_ownership
|
|
@@ -434,11 +508,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
434
508
|
|
|
435
509
|
ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/upgrader/Cargo.toml --crate-type=cdylib --target=wasm32v1-none --release
|
|
436
510
|
Compiling upgrader v0.0.1 (/workspace/contracts/protocol/stellar/contracts/upgrader)
|
|
437
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
511
|
+
Finished `release` profile [optimized] target(s) in 0.34s
|
|
438
512
|
ℹ️ Build Summary:
|
|
439
|
-
Wasm File: target/wasm32v1-none/release/upgrader.wasm (
|
|
440
|
-
Wasm Hash:
|
|
441
|
-
Wasm Size:
|
|
513
|
+
Wasm File: target/wasm32v1-none/release/upgrader.wasm (5329 bytes)
|
|
514
|
+
Wasm Hash: bc5993c9cefc30e892532d78cb8a0c6eb5cc6723fec6f595dae266ad016275be
|
|
515
|
+
Wasm Size: 5329 bytes
|
|
442
516
|
Exported Functions: 2 found
|
|
443
517
|
• upgrade
|
|
444
518
|
• upgrade_and_migrate
|
|
@@ -446,11 +520,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
446
520
|
|
|
447
521
|
ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/message-libs/blocked-message-lib/Cargo.toml --crate-type=cdylib --target=wasm32v1-none --release
|
|
448
522
|
Compiling blocked-message-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/blocked-message-lib)
|
|
449
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
523
|
+
Finished `release` profile [optimized] target(s) in 0.44s
|
|
450
524
|
ℹ️ Build Summary:
|
|
451
|
-
Wasm File: target/wasm32v1-none/release/blocked_message_lib.wasm (
|
|
452
|
-
Wasm Hash:
|
|
453
|
-
Wasm Size:
|
|
525
|
+
Wasm File: target/wasm32v1-none/release/blocked_message_lib.wasm (15077 bytes)
|
|
526
|
+
Wasm Hash: d6773cb3781a3f8f31d373b9ece39e950fa8a19b6443e2599e52be18e7865961
|
|
527
|
+
Wasm Size: 15077 bytes
|
|
454
528
|
Exported Functions: 7 found
|
|
455
529
|
• get_config
|
|
456
530
|
• is_supported_eid
|
|
@@ -463,11 +537,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
463
537
|
|
|
464
538
|
ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/message-libs/simple-message-lib/Cargo.toml --crate-type=cdylib --target=wasm32v1-none --release
|
|
465
539
|
Compiling simple-message-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/simple-message-lib)
|
|
466
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
540
|
+
Finished `release` profile [optimized] target(s) in 0.68s
|
|
467
541
|
ℹ️ Build Summary:
|
|
468
|
-
Wasm File: target/wasm32v1-none/release/simple_message_lib.wasm (
|
|
469
|
-
Wasm Hash:
|
|
470
|
-
Wasm Size:
|
|
542
|
+
Wasm File: target/wasm32v1-none/release/simple_message_lib.wasm (29825 bytes)
|
|
543
|
+
Wasm Hash: 7fc53277b7b586f0f3ad33720d904eb8ea21110b9c064a67317b4b9048127d41
|
|
544
|
+
Wasm Size: 29825 bytes
|
|
471
545
|
Exported Functions: 31 found
|
|
472
546
|
• __constructor
|
|
473
547
|
• accept_ownership
|
|
@@ -504,11 +578,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
504
578
|
|
|
505
579
|
ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/message-libs/treasury/Cargo.toml --crate-type=cdylib --target=wasm32v1-none --release
|
|
506
580
|
Compiling treasury v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/treasury)
|
|
507
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
581
|
+
Finished `release` profile [optimized] target(s) in 0.64s
|
|
508
582
|
ℹ️ Build Summary:
|
|
509
|
-
Wasm File: target/wasm32v1-none/release/treasury.wasm (
|
|
510
|
-
Wasm Hash:
|
|
511
|
-
Wasm Size:
|
|
583
|
+
Wasm File: target/wasm32v1-none/release/treasury.wasm (28404 bytes)
|
|
584
|
+
Wasm Hash: 6a62e6549fd7e72ac1c63cd2d3040fd833840367e36bab205c6142ed592bf55d
|
|
585
|
+
Wasm Size: 28404 bytes
|
|
512
586
|
Exported Functions: 21 found
|
|
513
587
|
• __constructor
|
|
514
588
|
• accept_ownership
|
|
@@ -537,11 +611,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
537
611
|
Compiling oapp-macros v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp-macros)
|
|
538
612
|
Compiling oapp v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp)
|
|
539
613
|
Compiling counter v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/counter)
|
|
540
|
-
Finished `release` profile [optimized] target(s) in 1.
|
|
614
|
+
Finished `release` profile [optimized] target(s) in 1.62s
|
|
541
615
|
ℹ️ Build Summary:
|
|
542
|
-
Wasm File: target/wasm32v1-none/release/counter.wasm (
|
|
543
|
-
Wasm Hash:
|
|
544
|
-
Wasm Size:
|
|
616
|
+
Wasm File: target/wasm32v1-none/release/counter.wasm (40680 bytes)
|
|
617
|
+
Wasm Hash: e031afc9dc07436fdb36aac32169ea184720496f3c7a9890aec65f777258336d
|
|
618
|
+
Wasm Size: 40680 bytes
|
|
545
619
|
Exported Functions: 35 found
|
|
546
620
|
• __constructor
|
|
547
621
|
• accept_ownership
|
|
@@ -584,11 +658,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
584
658
|
Compiling fee-lib-interfaces v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/fee-lib-interfaces)
|
|
585
659
|
Compiling worker v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/worker)
|
|
586
660
|
Compiling dvn v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/dvn)
|
|
587
|
-
Finished `release` profile [optimized] target(s) in 1.
|
|
661
|
+
Finished `release` profile [optimized] target(s) in 1.74s
|
|
588
662
|
ℹ️ Build Summary:
|
|
589
|
-
Wasm File: target/wasm32v1-none/release/dvn.wasm (
|
|
590
|
-
Wasm Hash:
|
|
591
|
-
Wasm Size:
|
|
663
|
+
Wasm File: target/wasm32v1-none/release/dvn.wasm (56479 bytes)
|
|
664
|
+
Wasm Hash: 1712d4e0a74d9b3a5a42aff8ff587d4a559d43bd8137aea1a5c3184d433896dd
|
|
665
|
+
Wasm Size: 56479 bytes
|
|
592
666
|
Exported Functions: 51 found
|
|
593
667
|
• __check_auth
|
|
594
668
|
• __constructor
|
|
@@ -646,11 +720,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
646
720
|
ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/workers/dvn-fee-lib/Cargo.toml --crate-type=cdylib --target=wasm32v1-none --release
|
|
647
721
|
Compiling fee-lib-interfaces v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/fee-lib-interfaces)
|
|
648
722
|
Compiling dvn-fee-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/dvn-fee-lib)
|
|
649
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
723
|
+
Finished `release` profile [optimized] target(s) in 0.96s
|
|
650
724
|
ℹ️ Build Summary:
|
|
651
|
-
Wasm File: target/wasm32v1-none/release/dvn_fee_lib.wasm (
|
|
652
|
-
Wasm Hash:
|
|
653
|
-
Wasm Size:
|
|
725
|
+
Wasm File: target/wasm32v1-none/release/dvn_fee_lib.wasm (22027 bytes)
|
|
726
|
+
Wasm Hash: 124985c0672b559ce89a85b405e6ca3b1e1838d03da4c85edec74efec449eb3f
|
|
727
|
+
Wasm Size: 22027 bytes
|
|
654
728
|
Exported Functions: 18 found
|
|
655
729
|
• __constructor
|
|
656
730
|
• accept_ownership
|
|
@@ -674,11 +748,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
674
748
|
|
|
675
749
|
ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/workers/executor/Cargo.toml --crate-type=cdylib --target=wasm32v1-none --release
|
|
676
750
|
Compiling executor v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor)
|
|
677
|
-
Finished `release` profile [optimized] target(s) in
|
|
751
|
+
Finished `release` profile [optimized] target(s) in 1.15s
|
|
678
752
|
ℹ️ Build Summary:
|
|
679
|
-
Wasm File: target/wasm32v1-none/release/executor.wasm (
|
|
680
|
-
Wasm Hash:
|
|
681
|
-
Wasm Size:
|
|
753
|
+
Wasm File: target/wasm32v1-none/release/executor.wasm (56531 bytes)
|
|
754
|
+
Wasm Hash: e5a4eee90ddc18340e6246821de2fd98e5bf50163fcce06bdcbcbf53f2b8fcd4
|
|
755
|
+
Wasm Size: 56531 bytes
|
|
682
756
|
Exported Functions: 49 found
|
|
683
757
|
• __check_auth
|
|
684
758
|
• __constructor
|
|
@@ -733,11 +807,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
733
807
|
|
|
734
808
|
ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/workers/executor-fee-lib/Cargo.toml --crate-type=cdylib --target=wasm32v1-none --release
|
|
735
809
|
Compiling executor-fee-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor-fee-lib)
|
|
736
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
810
|
+
Finished `release` profile [optimized] target(s) in 0.67s
|
|
737
811
|
ℹ️ Build Summary:
|
|
738
|
-
Wasm File: target/wasm32v1-none/release/executor_fee_lib.wasm (
|
|
739
|
-
Wasm Hash:
|
|
740
|
-
Wasm Size:
|
|
812
|
+
Wasm File: target/wasm32v1-none/release/executor_fee_lib.wasm (34907 bytes)
|
|
813
|
+
Wasm Hash: c2585633f3a40f18d491bc7bbe43859f102caae277d6b5b7d1096135eeae180e
|
|
814
|
+
Wasm Size: 34907 bytes
|
|
741
815
|
Exported Functions: 19 found
|
|
742
816
|
• __constructor
|
|
743
817
|
• accept_ownership
|
|
@@ -765,11 +839,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
765
839
|
Compiling worker v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/worker)
|
|
766
840
|
Compiling executor v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor)
|
|
767
841
|
Compiling executor-helper v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor-helper)
|
|
768
|
-
Finished `release` profile [optimized] target(s) in 1.
|
|
842
|
+
Finished `release` profile [optimized] target(s) in 1.58s
|
|
769
843
|
ℹ️ Build Summary:
|
|
770
|
-
Wasm File: target/wasm32v1-none/release/executor_helper.wasm (
|
|
771
|
-
Wasm Hash:
|
|
772
|
-
Wasm Size:
|
|
844
|
+
Wasm File: target/wasm32v1-none/release/executor_helper.wasm (24759 bytes)
|
|
845
|
+
Wasm Hash: fc8138d22fe41796ab4c7dd551b425628b7a7d42d20bc4ec1ba2a4740104a9c6
|
|
846
|
+
Wasm Size: 24759 bytes
|
|
773
847
|
Exported Functions: 6 found
|
|
774
848
|
• compose
|
|
775
849
|
• execute
|
|
@@ -781,11 +855,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
781
855
|
|
|
782
856
|
ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/workers/price-feed/Cargo.toml --crate-type=cdylib --target=wasm32v1-none --release
|
|
783
857
|
Compiling price-feed v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/price-feed)
|
|
784
|
-
Finished `release` profile [optimized] target(s) in
|
|
858
|
+
Finished `release` profile [optimized] target(s) in 1.01s
|
|
785
859
|
ℹ️ Build Summary:
|
|
786
|
-
Wasm File: target/wasm32v1-none/release/price_feed.wasm (
|
|
787
|
-
Wasm Hash:
|
|
788
|
-
Wasm Size:
|
|
860
|
+
Wasm File: target/wasm32v1-none/release/price_feed.wasm (33115 bytes)
|
|
861
|
+
Wasm Hash: bc1441eb80671ff57ab3e33c478da9f75b65b270257adbfb6f0d5073e8511ae2
|
|
862
|
+
Wasm Size: 33115 bytes
|
|
789
863
|
Exported Functions: 32 found
|
|
790
864
|
• __constructor
|
|
791
865
|
• accept_ownership
|
|
@@ -824,11 +898,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
824
898
|
ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/oapps/oft/Cargo.toml --crate-type=cdylib --target=wasm32v1-none --release
|
|
825
899
|
Compiling oft-core v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft-core)
|
|
826
900
|
Compiling oft v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft)
|
|
827
|
-
Finished `release` profile [optimized] target(s) in
|
|
901
|
+
Finished `release` profile [optimized] target(s) in 2.30s
|
|
828
902
|
ℹ️ Build Summary:
|
|
829
|
-
Wasm File: target/wasm32v1-none/release/oft.wasm (
|
|
830
|
-
Wasm Hash:
|
|
831
|
-
Wasm Size:
|
|
903
|
+
Wasm File: target/wasm32v1-none/release/oft.wasm (60817 bytes)
|
|
904
|
+
Wasm Hash: ecf9c8191d272ba8c743e743738241148f509549b9a5ab41be11ad50e1bffd0f
|
|
905
|
+
Wasm Size: 60817 bytes
|
|
832
906
|
Exported Functions: 49 found
|
|
833
907
|
• __constructor
|
|
834
908
|
• accept_ownership
|
|
@@ -881,7 +955,7 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
881
955
|
• ttl_configs
|
|
882
956
|
✅ Build Complete
|
|
883
957
|
|
|
884
|
-
⏱️ stellar contract build
|
|
958
|
+
⏱️ stellar contract build: 1:39.649 (m:ss.mmm)
|
|
885
959
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
|
|
886
960
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-config
|
|
887
961
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup
|
|
@@ -894,8 +968,12 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
894
968
|
📦 Using 4 default cache volume(s) for stellar
|
|
895
969
|
✅ stellar-25.0.0 (Latest stable release)
|
|
896
970
|
🔧 stellar version: 25.0.0
|
|
971
|
+
(node:41189) [MODULE_TYPELESS_PACKAGE_JSON] Warning: Module type of file:///home/runner/work/monorepo-internal/monorepo-internal/configs/vm-tooling/values/docker-image-repo.ts is not specified and it doesn't parse as CommonJS.
|
|
972
|
+
Reparsing as ES module because module syntax was detected. This incurs a performance overhead.
|
|
973
|
+
To eliminate this warning, add "type": "module" to /home/runner/work/monorepo-internal/monorepo-internal/package.json.
|
|
974
|
+
(Use `node --trace-warnings ...` to show where the warning was created)
|
|
897
975
|
$ docker image inspect --format {{.Id}} 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.0.0
|
|
898
|
-
sha256:
|
|
976
|
+
sha256:57520026e52d8bfec50ae6363977a40712bfa2549bac8ceed62a150f1d58a8d2
|
|
899
977
|
✅ Using cached Docker image: 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.0.0
|
|
900
978
|
👤 Running container as UID:GID 1001:1001
|
|
901
979
|
🌍 Using 5 default environment variable(s) for stellar
|
|
@@ -905,173 +983,171 @@ sha256:3b1e577a4303ad4a4df7bc898df7b4c89fa8e14faab5e73fc574869af49f9b3b
|
|
|
905
983
|
🔒 Acquired lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
|
|
906
984
|
$ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_LINKER=clang -e CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER=clang -e $'CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUSTFLAGS=-C link-arg=-fuse-ld=mold' -e $'CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_RUSTFLAGS=-C link-arg=-fuse-ld=mold' -e LOCAL_UID=1001 -e LOCAL_GID=1001 -v /home/runner/work/monorepo-internal/monorepo-internal:/workspace -w /workspace/contracts/protocol/stellar -v lz-tooling-cache-stellar-config:/cache/stellar -v lz-tooling-cache-stellar-cargo:/cache/cargo -v lz-tooling-cache-stellar-rustup:/cache/rustup -v /home/runner/.sccache:/cache/sccache 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.0.0 bash -c $'cargo run -p ts-bindings-gen'
|
|
907
985
|
Downloading crates ...
|
|
908
|
-
Downloaded
|
|
986
|
+
Downloaded block-buffer v0.9.0
|
|
909
987
|
Downloaded sha2 v0.9.9
|
|
910
|
-
Downloaded
|
|
911
|
-
Downloaded opaque-debug v0.3.1
|
|
912
|
-
Downloaded soroban-spec v23.4.0
|
|
988
|
+
Downloaded glob v0.3.3
|
|
913
989
|
Downloaded include_dir v0.7.4
|
|
914
|
-
Downloaded soroban-spec-typescript
|
|
990
|
+
Downloaded soroban-spec-typescript v25.1.0
|
|
991
|
+
Downloaded opaque-debug v0.3.1
|
|
915
992
|
Downloaded base64 v0.21.7
|
|
916
|
-
Downloaded anyhow v1.0.100
|
|
917
993
|
Downloaded heck v0.4.1
|
|
918
|
-
Downloaded
|
|
919
|
-
Downloaded
|
|
920
|
-
Downloaded
|
|
994
|
+
Downloaded digest v0.9.0
|
|
995
|
+
Downloaded anyhow v1.0.100
|
|
996
|
+
Downloaded include_dir_macros v0.7.4
|
|
921
997
|
Compiling proc-macro2 v1.0.103
|
|
922
|
-
Compiling quote v1.0.41
|
|
923
998
|
Compiling unicode-ident v1.0.22
|
|
999
|
+
Compiling quote v1.0.41
|
|
924
1000
|
Compiling serde_json v1.0.145
|
|
925
|
-
Compiling serde_core v1.0.228
|
|
926
1001
|
Compiling version_check v0.9.5
|
|
927
1002
|
Compiling typenum v1.19.0
|
|
1003
|
+
Compiling serde_core v1.0.228
|
|
928
1004
|
Compiling serde v1.0.228
|
|
1005
|
+
Compiling itoa v1.0.15
|
|
929
1006
|
Compiling ryu v1.0.20
|
|
930
1007
|
Compiling memchr v2.7.6
|
|
931
|
-
Compiling
|
|
1008
|
+
Compiling strsim v0.11.1
|
|
932
1009
|
Compiling ident_case v1.0.1
|
|
933
1010
|
Compiling fnv v1.0.7
|
|
934
|
-
Compiling strsim v0.11.1
|
|
935
1011
|
Compiling schemars v0.8.22
|
|
936
|
-
Compiling cfg-if v1.0.4
|
|
937
|
-
Compiling dyn-clone v1.0.20
|
|
938
1012
|
Compiling cpufeatures v0.2.17
|
|
1013
|
+
Compiling dyn-clone v1.0.20
|
|
1014
|
+
Compiling cfg-if v1.0.4
|
|
1015
|
+
Compiling generic-array v0.14.9
|
|
1016
|
+
Compiling equivalent v1.0.2
|
|
939
1017
|
Compiling hashbrown v0.16.0
|
|
940
1018
|
Compiling data-encoding v2.9.0
|
|
941
|
-
Compiling equivalent v1.0.2
|
|
942
1019
|
Compiling thiserror v1.0.69
|
|
943
|
-
Compiling semver v1.0.27
|
|
944
1020
|
Compiling base64 v0.22.1
|
|
945
|
-
Compiling generic-array v0.14.9
|
|
946
1021
|
Compiling prettyplease v0.2.37
|
|
947
1022
|
Compiling escape-bytes v0.1.1
|
|
1023
|
+
Compiling semver v1.0.27
|
|
948
1024
|
Compiling ethnum v1.5.2
|
|
949
|
-
Compiling anyhow v1.0.100
|
|
950
|
-
Compiling either v1.15.0
|
|
951
|
-
Compiling glob v0.3.3
|
|
952
1025
|
Compiling opaque-debug v0.3.1
|
|
953
|
-
Compiling
|
|
1026
|
+
Compiling glob v0.3.3
|
|
1027
|
+
Compiling either v1.15.0
|
|
1028
|
+
Compiling anyhow v1.0.100
|
|
954
1029
|
Compiling heck v0.4.1
|
|
955
|
-
Compiling
|
|
1030
|
+
Compiling itertools v0.10.5
|
|
956
1031
|
Compiling indexmap v2.12.0
|
|
957
|
-
Compiling
|
|
1032
|
+
Compiling base64 v0.21.7
|
|
958
1033
|
Compiling crypto-common v0.1.6
|
|
959
1034
|
Compiling block-buffer v0.10.4
|
|
960
|
-
Compiling digest v0.9.0
|
|
961
1035
|
Compiling block-buffer v0.9.0
|
|
962
|
-
Compiling
|
|
1036
|
+
Compiling digest v0.9.0
|
|
1037
|
+
Compiling syn v2.0.108
|
|
963
1038
|
Compiling digest v0.10.7
|
|
964
1039
|
Compiling sha2 v0.9.9
|
|
965
|
-
Compiling
|
|
1040
|
+
Compiling wasmparser v0.116.1
|
|
966
1041
|
Compiling sha2 v0.10.9
|
|
1042
|
+
Compiling include_dir_macros v0.7.4
|
|
967
1043
|
Compiling include_dir v0.7.4
|
|
968
1044
|
Compiling darling_core v0.21.3
|
|
969
1045
|
Compiling serde_derive v1.0.228
|
|
970
|
-
Compiling cfg_eval v0.1.2
|
|
971
1046
|
Compiling thiserror-impl v1.0.69
|
|
1047
|
+
Compiling cfg_eval v0.1.2
|
|
972
1048
|
Compiling crate-git-revision v0.0.6
|
|
973
1049
|
Compiling darling_macro v0.21.3
|
|
974
1050
|
Compiling stellar-strkey v0.0.13
|
|
975
|
-
Compiling stellar-xdr
|
|
1051
|
+
Compiling stellar-xdr v25.0.0
|
|
976
1052
|
Compiling hex v0.4.3
|
|
977
1053
|
Compiling darling v0.21.3
|
|
978
1054
|
Compiling serde_with_macros v3.15.1
|
|
979
1055
|
Compiling serde_with v3.15.1
|
|
980
|
-
Compiling soroban-spec
|
|
981
|
-
Compiling soroban-spec-typescript
|
|
1056
|
+
Compiling soroban-spec v25.1.0
|
|
1057
|
+
Compiling soroban-spec-typescript v25.1.0
|
|
982
1058
|
Compiling ts-bindings-gen v0.0.1 (/workspace/contracts/protocol/stellar/tools/ts-bindings-gen)
|
|
983
|
-
Finished `dev` profile [unoptimized + debuginfo] target(s) in
|
|
1059
|
+
Finished `dev` profile [unoptimized + debuginfo] target(s) in 1m 48s
|
|
984
1060
|
Running `target/debug/ts-bindings-gen`
|
|
985
1061
|
🚀 Generating TypeScript bindings for Stellar contracts...
|
|
986
1062
|
|
|
987
1063
|
📦 Processing contract: endpoint_v2
|
|
988
1064
|
WASM: target/wasm32v1-none/release/endpoint_v2.wasm
|
|
989
1065
|
Output: sdk/src/generated/endpoint.ts
|
|
990
|
-
WASM size:
|
|
1066
|
+
WASM size: 58012 bytes (56.65 KB)
|
|
991
1067
|
Generating bindings...
|
|
992
1068
|
✓ Generated: sdk/src/generated/endpoint.ts
|
|
993
1069
|
📦 Processing contract: simple_message_lib
|
|
994
1070
|
WASM: target/wasm32v1-none/release/simple_message_lib.wasm
|
|
995
1071
|
Output: sdk/src/generated/sml.ts
|
|
996
|
-
WASM size:
|
|
1072
|
+
WASM size: 29825 bytes (29.13 KB)
|
|
997
1073
|
Generating bindings...
|
|
998
1074
|
✓ Generated: sdk/src/generated/sml.ts
|
|
999
1075
|
📦 Processing contract: blocked_message_lib
|
|
1000
1076
|
WASM: target/wasm32v1-none/release/blocked_message_lib.wasm
|
|
1001
1077
|
Output: sdk/src/generated/bml.ts
|
|
1002
|
-
WASM size:
|
|
1078
|
+
WASM size: 15077 bytes (14.72 KB)
|
|
1003
1079
|
Generating bindings...
|
|
1004
1080
|
✓ Generated: sdk/src/generated/bml.ts
|
|
1005
1081
|
📦 Processing contract: uln302
|
|
1006
1082
|
WASM: target/wasm32v1-none/release/uln302.wasm
|
|
1007
1083
|
Output: sdk/src/generated/uln302.ts
|
|
1008
|
-
WASM size:
|
|
1084
|
+
WASM size: 58799 bytes (57.42 KB)
|
|
1009
1085
|
Generating bindings...
|
|
1010
1086
|
✓ Generated: sdk/src/generated/uln302.ts
|
|
1011
1087
|
📦 Processing contract: treasury
|
|
1012
1088
|
WASM: target/wasm32v1-none/release/treasury.wasm
|
|
1013
1089
|
Output: sdk/src/generated/treasury.ts
|
|
1014
|
-
WASM size:
|
|
1090
|
+
WASM size: 28404 bytes (27.74 KB)
|
|
1015
1091
|
Generating bindings...
|
|
1016
1092
|
✓ Generated: sdk/src/generated/treasury.ts
|
|
1017
1093
|
📦 Processing contract: upgrader
|
|
1018
1094
|
WASM: target/wasm32v1-none/release/upgrader.wasm
|
|
1019
1095
|
Output: sdk/src/generated/upgrader.ts
|
|
1020
|
-
WASM size:
|
|
1096
|
+
WASM size: 5329 bytes (5.20 KB)
|
|
1021
1097
|
Generating bindings...
|
|
1022
1098
|
✓ Generated: sdk/src/generated/upgrader.ts
|
|
1023
1099
|
📦 Processing contract: dvn
|
|
1024
1100
|
WASM: target/wasm32v1-none/release/dvn.wasm
|
|
1025
1101
|
Output: sdk/src/generated/dvn.ts
|
|
1026
|
-
WASM size:
|
|
1102
|
+
WASM size: 56479 bytes (55.16 KB)
|
|
1027
1103
|
Generating bindings...
|
|
1028
1104
|
✓ Generated: sdk/src/generated/dvn.ts
|
|
1029
1105
|
📦 Processing contract: dvn_fee_lib
|
|
1030
1106
|
WASM: target/wasm32v1-none/release/dvn_fee_lib.wasm
|
|
1031
1107
|
Output: sdk/src/generated/dvn_fee_lib.ts
|
|
1032
|
-
WASM size:
|
|
1108
|
+
WASM size: 22027 bytes (21.51 KB)
|
|
1033
1109
|
Generating bindings...
|
|
1034
1110
|
✓ Generated: sdk/src/generated/dvn_fee_lib.ts
|
|
1035
1111
|
📦 Processing contract: executor
|
|
1036
1112
|
WASM: target/wasm32v1-none/release/executor.wasm
|
|
1037
1113
|
Output: sdk/src/generated/executor.ts
|
|
1038
|
-
WASM size:
|
|
1114
|
+
WASM size: 56531 bytes (55.21 KB)
|
|
1039
1115
|
Generating bindings...
|
|
1040
1116
|
✓ Generated: sdk/src/generated/executor.ts
|
|
1041
1117
|
📦 Processing contract: executor_fee_lib
|
|
1042
1118
|
WASM: target/wasm32v1-none/release/executor_fee_lib.wasm
|
|
1043
1119
|
Output: sdk/src/generated/executor_fee_lib.ts
|
|
1044
|
-
WASM size:
|
|
1120
|
+
WASM size: 34907 bytes (34.09 KB)
|
|
1045
1121
|
Generating bindings...
|
|
1046
1122
|
✓ Generated: sdk/src/generated/executor_fee_lib.ts
|
|
1047
1123
|
📦 Processing contract: executor_helper
|
|
1048
1124
|
WASM: target/wasm32v1-none/release/executor_helper.wasm
|
|
1049
1125
|
Output: sdk/src/generated/executor_helper.ts
|
|
1050
|
-
WASM size:
|
|
1126
|
+
WASM size: 24759 bytes (24.18 KB)
|
|
1051
1127
|
Generating bindings...
|
|
1052
1128
|
✓ Generated: sdk/src/generated/executor_helper.ts
|
|
1053
1129
|
📦 Processing contract: price_feed
|
|
1054
1130
|
WASM: target/wasm32v1-none/release/price_feed.wasm
|
|
1055
1131
|
Output: sdk/src/generated/price_feed.ts
|
|
1056
|
-
WASM size:
|
|
1132
|
+
WASM size: 33115 bytes (32.34 KB)
|
|
1057
1133
|
Generating bindings...
|
|
1058
1134
|
✓ Generated: sdk/src/generated/price_feed.ts
|
|
1059
1135
|
📦 Processing contract: counter
|
|
1060
1136
|
WASM: target/wasm32v1-none/release/counter.wasm
|
|
1061
1137
|
Output: sdk/src/generated/counter.ts
|
|
1062
|
-
WASM size:
|
|
1138
|
+
WASM size: 40680 bytes (39.73 KB)
|
|
1063
1139
|
Generating bindings...
|
|
1064
1140
|
✓ Generated: sdk/src/generated/counter.ts
|
|
1065
1141
|
📦 Processing contract: oft
|
|
1066
1142
|
WASM: target/wasm32v1-none/release/oft.wasm
|
|
1067
1143
|
Output: sdk/src/generated/oft.ts
|
|
1068
|
-
WASM size:
|
|
1144
|
+
WASM size: 60817 bytes (59.39 KB)
|
|
1069
1145
|
Generating bindings...
|
|
1070
1146
|
✓ Generated: sdk/src/generated/oft.ts
|
|
1071
1147
|
📦 Processing contract: layerzero_views
|
|
1072
1148
|
WASM: target/wasm32v1-none/release/layerzero_views.wasm
|
|
1073
1149
|
Output: sdk/src/generated/layerzero_view.ts
|
|
1074
|
-
WASM size:
|
|
1150
|
+
WASM size: 36129 bytes (35.28 KB)
|
|
1075
1151
|
Generating bindings...
|
|
1076
1152
|
✓ Generated: sdk/src/generated/layerzero_view.ts
|
|
1077
1153
|
|
|
@@ -1094,7 +1170,7 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
1094
1170
|
- counter.ts
|
|
1095
1171
|
- oft.ts
|
|
1096
1172
|
- layerzero_view.ts
|
|
1097
|
-
⏱️ bash -c cargo run -p ts-bindings-gen:
|
|
1173
|
+
⏱️ bash -c cargo run -p ts-bindings-gen: 1:49.507 (m:ss.mmm)
|
|
1098
1174
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
|
|
1099
1175
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-config
|
|
1100
1176
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup
|