@layerzerolabs/protocol-stellar-v2 0.2.22 → 0.2.24
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 +331 -261
- package/.turbo/turbo-lint.log +262 -192
- package/.turbo/turbo-test.log +1696 -1368
- 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 +667 -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,251 +1,319 @@
|
|
|
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:41120) [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
|
+
1d4a870e3b66: Pulling fs layer
|
|
34
|
+
1b2c4c00c303: Pulling fs layer
|
|
35
|
+
73ca50fa4809: Pulling fs layer
|
|
36
|
+
f5a85bd7a844: Pulling fs layer
|
|
37
|
+
c132a28172a5: Pulling fs layer
|
|
38
|
+
1b2c4c00c303: Waiting
|
|
39
|
+
2c1ce468d9f3: Waiting
|
|
40
|
+
67ce8fb56745: Waiting
|
|
41
|
+
73ca50fa4809: Waiting
|
|
42
|
+
6ba0ba49c87d: Waiting
|
|
43
|
+
1cfd9ed002d2: Waiting
|
|
44
|
+
c132a28172a5: Waiting
|
|
45
|
+
43dc8d96fd20: Waiting
|
|
46
|
+
1d4a870e3b66: Waiting
|
|
47
|
+
f6bd9104d248: Verifying Checksum
|
|
48
|
+
f6bd9104d248: Download complete
|
|
49
|
+
67ce8fb56745: Verifying Checksum
|
|
50
|
+
67ce8fb56745: Download complete
|
|
51
|
+
6ba0ba49c87d: Download complete
|
|
52
|
+
f6bd9104d248: Pull complete
|
|
53
|
+
1cfd9ed002d2: Verifying Checksum
|
|
54
|
+
1cfd9ed002d2: Download complete
|
|
55
|
+
4e430a9db1a3: Download complete
|
|
56
|
+
4617420e017b: Verifying Checksum
|
|
57
|
+
4617420e017b: Download complete
|
|
58
|
+
2c1ce468d9f3: Verifying Checksum
|
|
59
|
+
2c1ce468d9f3: Download complete
|
|
60
|
+
1b2c4c00c303: Verifying Checksum
|
|
61
|
+
1b2c4c00c303: Download complete
|
|
62
|
+
73ca50fa4809: Verifying Checksum
|
|
63
|
+
73ca50fa4809: Download complete
|
|
64
|
+
f5a85bd7a844: Verifying Checksum
|
|
65
|
+
f5a85bd7a844: Download complete
|
|
66
|
+
1d4a870e3b66: Download complete
|
|
67
|
+
43dc8d96fd20: Download complete
|
|
68
|
+
c132a28172a5: Verifying Checksum
|
|
69
|
+
c132a28172a5: Download complete
|
|
70
|
+
4617420e017b: Pull complete
|
|
71
|
+
4e430a9db1a3: Pull complete
|
|
72
|
+
67ce8fb56745: Pull complete
|
|
73
|
+
6ba0ba49c87d: Pull complete
|
|
74
|
+
1cfd9ed002d2: Pull complete
|
|
75
|
+
43dc8d96fd20: Pull complete
|
|
76
|
+
2c1ce468d9f3: Pull complete
|
|
77
|
+
1d4a870e3b66: Pull complete
|
|
78
|
+
1b2c4c00c303: Pull complete
|
|
79
|
+
73ca50fa4809: Pull complete
|
|
80
|
+
f5a85bd7a844: Pull complete
|
|
81
|
+
c132a28172a5: Pull complete
|
|
82
|
+
Digest: sha256:08d5619657e93a64aace87c02b6f733cef2ad76736b740f723bab87bead786c7
|
|
83
|
+
Status: Downloaded newer image for 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.0.0
|
|
84
|
+
438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.0.0
|
|
85
|
+
✅ Successfully pulled: 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.0.0
|
|
18
86
|
👤 Running container as UID:GID 1001:1001
|
|
19
87
|
🌍 Using 5 default environment variable(s) for stellar
|
|
20
88
|
🔒 Acquired lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup
|
|
21
89
|
🔒 Acquired lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-config
|
|
22
90
|
🔒 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
|
|
91
|
+
$ 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
|
|
92
|
+
ℹ️ 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
93
|
Updating crates.io index
|
|
26
94
|
Downloading crates ...
|
|
27
|
-
Downloaded
|
|
28
|
-
Downloaded ark-ff-asm v0.4.2
|
|
29
|
-
Downloaded ark-ff-macros v0.4.2
|
|
30
|
-
Downloaded hex-literal v0.4.1
|
|
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
|
|
95
|
+
Downloaded curve25519-dalek-derive v0.1.1
|
|
41
96
|
Downloaded heck v0.5.0
|
|
42
|
-
Downloaded
|
|
97
|
+
Downloaded ref-cast v1.0.25
|
|
98
|
+
Downloaded generic-array v0.14.9
|
|
99
|
+
Downloaded schemars v0.8.22
|
|
43
100
|
Downloaded zeroize_derive v1.4.2
|
|
44
|
-
Downloaded
|
|
45
|
-
Downloaded keccak v0.1.5
|
|
46
|
-
Downloaded smallvec v1.15.1
|
|
47
|
-
Downloaded schemars v0.9.0
|
|
48
|
-
Downloaded wasmi_arena v0.4.1
|
|
101
|
+
Downloaded time-core v0.1.6
|
|
49
102
|
Downloaded zeroize v1.8.2
|
|
103
|
+
Downloaded unicode-ident v1.0.22
|
|
104
|
+
Downloaded static_assertions v1.1.0
|
|
50
105
|
Downloaded wasmparser-nostd v0.100.2
|
|
51
|
-
Downloaded
|
|
106
|
+
Downloaded time v0.3.44
|
|
107
|
+
Downloaded indexmap v2.12.0
|
|
108
|
+
Downloaded libm v0.2.15
|
|
109
|
+
Downloaded soroban-sdk v25.1.0
|
|
52
110
|
Downloaded wasmparser v0.116.1
|
|
53
|
-
Downloaded itertools v0.10.5
|
|
54
|
-
Downloaded syn v1.0.109
|
|
55
111
|
Downloaded zerocopy v0.8.27
|
|
56
|
-
Downloaded
|
|
57
|
-
Downloaded soroban-spec-rust v25.0.1
|
|
58
|
-
Downloaded syn v2.0.108
|
|
59
|
-
Downloaded soroban-sdk v25.0.1
|
|
112
|
+
Downloaded syn v1.0.109
|
|
60
113
|
Downloaded serde_with v3.15.1
|
|
114
|
+
Downloaded syn v2.0.108
|
|
61
115
|
Downloaded curve25519-dalek v4.1.3
|
|
62
|
-
Downloaded
|
|
63
|
-
Downloaded soroban-env-host v25.0.1
|
|
64
|
-
Downloaded soroban-wasmi v0.31.1-soroban.20.0.1
|
|
65
|
-
Downloaded libm v0.2.15
|
|
116
|
+
Downloaded chrono v0.4.42
|
|
66
117
|
Downloaded serde_json v1.0.145
|
|
118
|
+
Downloaded hashbrown v0.16.0
|
|
119
|
+
Downloaded itertools v0.14.0
|
|
120
|
+
Downloaded itertools v0.10.5
|
|
121
|
+
Downloaded heapless v0.8.0
|
|
122
|
+
Downloaded hashbrown v0.13.2
|
|
67
123
|
Downloaded hashbrown v0.12.3
|
|
68
|
-
Downloaded
|
|
69
|
-
Downloaded
|
|
70
|
-
Downloaded
|
|
71
|
-
Downloaded
|
|
72
|
-
Downloaded
|
|
73
|
-
Downloaded
|
|
124
|
+
Downloaded soroban-wasmi v0.31.1-soroban.20.0.1
|
|
125
|
+
Downloaded serde v1.0.228
|
|
126
|
+
Downloaded schemars v1.0.5
|
|
127
|
+
Downloaded ark-bls12-381 v0.4.0
|
|
128
|
+
Downloaded rand v0.8.5
|
|
129
|
+
Downloaded typenum v1.19.0
|
|
130
|
+
Downloaded serde_derive v1.0.228
|
|
131
|
+
Downloaded soroban-env-host v25.0.1
|
|
74
132
|
Downloaded sha3 v0.10.8
|
|
75
|
-
Downloaded ryu v1.0.20
|
|
76
|
-
Downloaded rustc_version v0.4.1
|
|
77
|
-
Downloaded num-bigint v0.4.6
|
|
78
|
-
Downloaded indexmap v2.12.0
|
|
79
|
-
Downloaded indexmap v1.9.3
|
|
80
|
-
Downloaded const-oid v0.9.6
|
|
81
|
-
Downloaded unicode-ident v1.0.22
|
|
82
|
-
Downloaded time-macros v0.2.24
|
|
83
|
-
Downloaded static_assertions v1.1.0
|
|
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
133
|
Downloaded prettyplease v0.2.37
|
|
93
134
|
Downloaded p256 v0.13.2
|
|
94
|
-
Downloaded
|
|
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
|
|
99
|
-
Downloaded thiserror v1.0.69
|
|
100
|
-
Downloaded subtle v2.6.1
|
|
101
|
-
Downloaded soroban-env-macros v25.0.1
|
|
135
|
+
Downloaded hmac v0.12.1
|
|
102
136
|
Downloaded soroban-env-common v25.0.1
|
|
103
|
-
Downloaded serde_core v1.0.228
|
|
104
|
-
Downloaded schemars v1.0.5
|
|
105
|
-
Downloaded ref-cast v1.0.25
|
|
106
|
-
Downloaded rand_core v0.6.4
|
|
107
137
|
Downloaded proc-macro2 v1.0.103
|
|
108
|
-
Downloaded
|
|
109
|
-
Downloaded
|
|
110
|
-
Downloaded group v0.13.0
|
|
138
|
+
Downloaded num-bigint v0.4.6
|
|
139
|
+
Downloaded indexmap v1.9.3
|
|
111
140
|
Downloaded getrandom v0.2.16
|
|
112
|
-
Downloaded
|
|
113
|
-
Downloaded
|
|
114
|
-
Downloaded
|
|
115
|
-
Downloaded
|
|
116
|
-
Downloaded byteorder v1.5.0
|
|
117
|
-
Downloaded autocfg v1.5.0
|
|
118
|
-
Downloaded ark-std v0.4.0
|
|
119
|
-
Downloaded version_check v0.9.5
|
|
120
|
-
Downloaded time-core v0.1.6
|
|
121
|
-
Downloaded thiserror-impl v1.0.69
|
|
122
|
-
Downloaded strsim v0.11.1
|
|
141
|
+
Downloaded ed25519-dalek v2.2.0
|
|
142
|
+
Downloaded libc v0.2.177
|
|
143
|
+
Downloaded base64 v0.22.1
|
|
144
|
+
Downloaded thiserror v1.0.69
|
|
123
145
|
Downloaded stellar-strkey v0.0.16
|
|
124
146
|
Downloaded stellar-strkey v0.0.13
|
|
125
|
-
Downloaded
|
|
126
|
-
Downloaded soroban-
|
|
147
|
+
Downloaded spki v0.7.3
|
|
148
|
+
Downloaded soroban-sdk-macros v25.1.0
|
|
149
|
+
Downloaded smallvec v1.15.1
|
|
127
150
|
Downloaded serde_with_macros v3.15.1
|
|
128
|
-
Downloaded
|
|
129
|
-
Downloaded
|
|
151
|
+
Downloaded sec1 v0.7.3
|
|
152
|
+
Downloaded k256 v0.13.4
|
|
153
|
+
Downloaded group v0.13.0
|
|
154
|
+
Downloaded der v0.7.10
|
|
155
|
+
Downloaded crypto-bigint v0.5.5
|
|
156
|
+
Downloaded version_check v0.9.5
|
|
157
|
+
Downloaded time-macros v0.2.24
|
|
158
|
+
Downloaded strsim v0.11.1
|
|
159
|
+
Downloaded spin v0.9.8
|
|
160
|
+
Downloaded soroban-env-macros v25.0.1
|
|
161
|
+
Downloaded sha2 v0.10.9
|
|
130
162
|
Downloaded quote v1.0.41
|
|
163
|
+
Downloaded primeorder v0.13.6
|
|
131
164
|
Downloaded ppv-lite86 v0.2.21
|
|
132
|
-
Downloaded
|
|
165
|
+
Downloaded paste v1.0.15
|
|
166
|
+
Downloaded once_cell v1.21.3
|
|
133
167
|
Downloaded num-integer v0.1.46
|
|
134
|
-
Downloaded
|
|
135
|
-
Downloaded
|
|
136
|
-
Downloaded
|
|
137
|
-
Downloaded
|
|
138
|
-
Downloaded
|
|
139
|
-
Downloaded
|
|
168
|
+
Downloaded memchr v2.7.6
|
|
169
|
+
Downloaded iana-time-zone v0.1.64
|
|
170
|
+
Downloaded darling_core v0.21.3
|
|
171
|
+
Downloaded darling_core v0.20.11
|
|
172
|
+
Downloaded subtle v2.6.1
|
|
173
|
+
Downloaded stable_deref_trait v1.2.1
|
|
174
|
+
Downloaded soroban-ledger-snapshot v25.1.0
|
|
175
|
+
Downloaded soroban-env-guest v25.0.1
|
|
140
176
|
Downloaded signature v2.2.0
|
|
141
|
-
Downloaded
|
|
142
|
-
Downloaded
|
|
177
|
+
Downloaded serde_core v1.0.228
|
|
178
|
+
Downloaded schemars v0.9.0
|
|
179
|
+
Downloaded ryu v1.0.20
|
|
180
|
+
Downloaded rfc6979 v0.4.0
|
|
181
|
+
Downloaded ref-cast-impl v1.0.25
|
|
143
182
|
Downloaded num-conv v0.1.0
|
|
183
|
+
Downloaded ident_case v1.0.1
|
|
184
|
+
Downloaded elliptic-curve v0.13.8
|
|
185
|
+
Downloaded digest v0.10.7
|
|
186
|
+
Downloaded const-oid v0.9.6
|
|
187
|
+
Downloaded wasmi_core v0.13.0
|
|
188
|
+
Downloaded wasmi_arena v0.4.1
|
|
189
|
+
Downloaded visibility v0.1.1
|
|
190
|
+
Downloaded thiserror-impl v1.0.69
|
|
191
|
+
Downloaded soroban-spec-rust v25.1.0
|
|
192
|
+
Downloaded soroban-spec v25.1.0
|
|
193
|
+
Downloaded soroban-builtin-sdk-macros v25.0.1
|
|
194
|
+
Downloaded semver v1.0.27
|
|
195
|
+
Downloaded rustc_version v0.4.1
|
|
196
|
+
Downloaded num-traits v0.2.19
|
|
197
|
+
Downloaded macro-string v0.1.4
|
|
198
|
+
Downloaded indexmap-nostd v0.4.0
|
|
144
199
|
Downloaded hex v0.4.3
|
|
145
|
-
Downloaded
|
|
146
|
-
Downloaded
|
|
147
|
-
Downloaded
|
|
200
|
+
Downloaded ff v0.13.1
|
|
201
|
+
Downloaded ethnum v1.5.2
|
|
202
|
+
Downloaded either v1.15.0
|
|
203
|
+
Downloaded derivative v2.2.0
|
|
204
|
+
Downloaded darling v0.21.3
|
|
148
205
|
Downloaded darling v0.20.11
|
|
149
|
-
Downloaded
|
|
206
|
+
Downloaded ctor v0.5.0
|
|
207
|
+
Downloaded ark-poly v0.4.2
|
|
208
|
+
Downloaded ark-ec v0.4.2
|
|
209
|
+
Downloaded arbitrary v1.3.2
|
|
210
|
+
Downloaded ahash v0.8.12
|
|
211
|
+
Downloaded rand_core v0.6.4
|
|
212
|
+
Downloaded powerfmt v0.2.0
|
|
213
|
+
Downloaded pkcs8 v0.10.2
|
|
214
|
+
Downloaded keccak v0.1.5
|
|
150
215
|
Downloaded itoa v1.0.15
|
|
151
|
-
Downloaded
|
|
152
|
-
Downloaded
|
|
216
|
+
Downloaded hex-literal v0.4.1
|
|
217
|
+
Downloaded escape-bytes v0.1.1
|
|
218
|
+
Downloaded ed25519 v2.2.3
|
|
219
|
+
Downloaded dyn-clone v1.0.20
|
|
220
|
+
Downloaded dtor v0.1.1
|
|
221
|
+
Downloaded darling_macro v0.20.11
|
|
222
|
+
Downloaded crypto-common v0.1.6
|
|
153
223
|
Downloaded bytes-lit v0.0.5
|
|
224
|
+
Downloaded byteorder v1.5.0
|
|
225
|
+
Downloaded autocfg v1.5.0
|
|
226
|
+
Downloaded ark-serialize-derive v0.4.2
|
|
227
|
+
Downloaded ark-serialize v0.4.2
|
|
154
228
|
Downloaded downcast-rs v1.2.1
|
|
155
|
-
Downloaded
|
|
229
|
+
Downloaded derive_arbitrary v1.3.2
|
|
230
|
+
Downloaded deranged v0.5.5
|
|
231
|
+
Downloaded data-encoding v2.9.0
|
|
232
|
+
Downloaded darling_macro v0.21.3
|
|
156
233
|
Downloaded cfg_eval v0.1.2
|
|
157
|
-
Downloaded
|
|
158
|
-
Downloaded
|
|
159
|
-
Downloaded
|
|
160
|
-
Downloaded
|
|
161
|
-
Downloaded
|
|
162
|
-
Downloaded primeorder v0.13.6
|
|
163
|
-
Downloaded macro-string v0.1.4
|
|
164
|
-
Downloaded hmac v0.12.1
|
|
234
|
+
Downloaded base16ct v0.2.0
|
|
235
|
+
Downloaded ark-std v0.4.0
|
|
236
|
+
Downloaded ark-ff v0.4.2
|
|
237
|
+
Downloaded rand_chacha v0.3.1
|
|
238
|
+
Downloaded num-derive v0.4.2
|
|
165
239
|
Downloaded hash32 v0.3.1
|
|
166
|
-
Downloaded
|
|
167
|
-
Downloaded
|
|
168
|
-
Downloaded base64 v0.22.1
|
|
240
|
+
Downloaded ecdsa v0.16.9
|
|
241
|
+
Downloaded crate-git-revision v0.0.6
|
|
169
242
|
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
|
|
243
|
+
Downloaded block-buffer v0.10.4
|
|
244
|
+
Downloaded base64ct v1.8.0
|
|
177
245
|
Downloaded ark-bn254 v0.4.0
|
|
178
|
-
Downloaded arbitrary v1.3.2
|
|
179
|
-
Downloaded ahash v0.8.12
|
|
180
246
|
Downloaded fnv v1.0.7
|
|
181
|
-
Downloaded
|
|
182
|
-
Downloaded
|
|
183
|
-
Downloaded
|
|
184
|
-
Downloaded
|
|
185
|
-
Downloaded
|
|
247
|
+
Downloaded equivalent v1.0.2
|
|
248
|
+
Downloaded dtor-proc-macro v0.0.6
|
|
249
|
+
Downloaded ark-ff-macros v0.4.2
|
|
250
|
+
Downloaded ctor-proc-macro v0.0.6
|
|
251
|
+
Downloaded cfg-if v1.0.4
|
|
252
|
+
Downloaded ark-ff-asm v0.4.2
|
|
253
|
+
Downloaded stellar-xdr v25.0.0
|
|
186
254
|
Compiling proc-macro2 v1.0.103
|
|
187
|
-
Compiling unicode-ident v1.0.22
|
|
188
255
|
Compiling quote v1.0.41
|
|
256
|
+
Compiling unicode-ident v1.0.22
|
|
189
257
|
Compiling serde_core v1.0.228
|
|
190
258
|
Compiling serde v1.0.228
|
|
191
259
|
Compiling serde_json v1.0.145
|
|
260
|
+
Compiling memchr v2.7.6
|
|
192
261
|
Compiling ryu v1.0.20
|
|
193
262
|
Compiling itoa v1.0.15
|
|
194
|
-
Compiling memchr v2.7.6
|
|
195
|
-
Compiling ident_case v1.0.1
|
|
196
263
|
Compiling strsim v0.11.1
|
|
197
264
|
Compiling fnv v1.0.7
|
|
198
|
-
Compiling
|
|
265
|
+
Compiling ident_case v1.0.1
|
|
199
266
|
Compiling version_check v0.9.5
|
|
267
|
+
Compiling typenum v1.19.0
|
|
200
268
|
Compiling autocfg v1.5.0
|
|
201
269
|
Compiling schemars v0.8.22
|
|
202
270
|
Compiling dyn-clone v1.0.20
|
|
271
|
+
Compiling cpufeatures v0.2.17
|
|
203
272
|
Compiling data-encoding v2.9.0
|
|
204
273
|
Compiling cfg-if v1.0.4
|
|
205
|
-
Compiling cpufeatures v0.2.17
|
|
206
|
-
Compiling either v1.15.0
|
|
207
274
|
Compiling escape-bytes v0.1.1
|
|
275
|
+
Compiling either v1.15.0
|
|
208
276
|
Compiling ethnum v1.5.2
|
|
209
277
|
Compiling semver v1.0.27
|
|
210
|
-
Compiling equivalent v1.0.2
|
|
211
278
|
Compiling thiserror v1.0.69
|
|
279
|
+
Compiling equivalent v1.0.2
|
|
212
280
|
Compiling hashbrown v0.16.0
|
|
213
281
|
Compiling prettyplease v0.2.37
|
|
282
|
+
Compiling base64 v0.22.1
|
|
214
283
|
Compiling generic-array v0.14.9
|
|
215
|
-
Compiling num-traits v0.2.19
|
|
216
284
|
Compiling heapless v0.8.0
|
|
217
|
-
Compiling
|
|
285
|
+
Compiling num-traits v0.2.19
|
|
218
286
|
Compiling byteorder v1.5.0
|
|
219
|
-
Compiling
|
|
287
|
+
Compiling itertools v0.10.5
|
|
220
288
|
Compiling rustc_version v0.4.1
|
|
221
|
-
Compiling static_assertions v1.1.0
|
|
222
|
-
Compiling hash32 v0.3.1
|
|
223
289
|
Compiling heck v0.5.0
|
|
290
|
+
Compiling hash32 v0.3.1
|
|
291
|
+
Compiling static_assertions v1.1.0
|
|
224
292
|
Compiling stable_deref_trait v1.2.1
|
|
225
293
|
Compiling itertools v0.14.0
|
|
226
294
|
Compiling indexmap v2.12.0
|
|
227
295
|
Compiling syn v2.0.108
|
|
228
296
|
Compiling num-integer v0.1.46
|
|
229
297
|
Compiling wasmparser v0.116.1
|
|
298
|
+
Compiling num-bigint v0.4.6
|
|
230
299
|
Compiling crypto-common v0.1.6
|
|
231
300
|
Compiling block-buffer v0.10.4
|
|
232
301
|
Compiling digest v0.10.7
|
|
233
|
-
Compiling num-bigint v0.4.6
|
|
234
302
|
Compiling sha2 v0.10.9
|
|
235
303
|
Compiling darling_core v0.21.3
|
|
236
304
|
Compiling darling_core v0.20.11
|
|
237
305
|
Compiling macro-string v0.1.4
|
|
238
306
|
Compiling serde_derive v1.0.228
|
|
239
307
|
Compiling cfg_eval v0.1.2
|
|
240
|
-
Compiling num-derive v0.4.2
|
|
241
308
|
Compiling thiserror-impl v1.0.69
|
|
309
|
+
Compiling num-derive v0.4.2
|
|
242
310
|
Compiling bytes-lit v0.0.5
|
|
243
311
|
Compiling visibility v0.1.1
|
|
244
312
|
Compiling common-macros v0.0.1 (/workspace/contracts/protocol/stellar/contracts/common-macros)
|
|
245
|
-
Compiling darling_macro v0.20.11
|
|
246
313
|
Compiling darling_macro v0.21.3
|
|
247
|
-
Compiling
|
|
314
|
+
Compiling darling_macro v0.20.11
|
|
248
315
|
Compiling darling v0.21.3
|
|
316
|
+
Compiling darling v0.20.11
|
|
249
317
|
Compiling serde_with_macros v3.15.1
|
|
250
318
|
Compiling crate-git-revision v0.0.6
|
|
251
319
|
Compiling hex v0.4.3
|
|
@@ -253,20 +321,20 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
253
321
|
Compiling stellar-xdr v25.0.0
|
|
254
322
|
Compiling soroban-env-common v25.0.1
|
|
255
323
|
Compiling stellar-strkey v0.0.16
|
|
256
|
-
Compiling soroban-sdk v25.0
|
|
324
|
+
Compiling soroban-sdk v25.1.0
|
|
257
325
|
Compiling serde_with v3.15.1
|
|
258
|
-
Compiling soroban-spec v25.0
|
|
326
|
+
Compiling soroban-spec v25.1.0
|
|
259
327
|
Compiling soroban-env-macros v25.0.1
|
|
260
|
-
Compiling soroban-spec-rust v25.0
|
|
261
|
-
Compiling soroban-sdk-macros v25.0.1
|
|
328
|
+
Compiling soroban-spec-rust v25.1.0
|
|
262
329
|
Compiling soroban-env-guest v25.0.1
|
|
330
|
+
Compiling soroban-sdk-macros v25.1.0
|
|
263
331
|
Compiling utils v0.0.1 (/workspace/contracts/protocol/stellar/contracts/utils)
|
|
264
332
|
Compiling endpoint-v2 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/endpoint-v2)
|
|
265
|
-
Finished `release` profile [optimized] target(s) in
|
|
333
|
+
Finished `release` profile [optimized] target(s) in 1m 04s
|
|
266
334
|
ℹ️ Build Summary:
|
|
267
|
-
Wasm File: target/wasm32v1-none/release/endpoint_v2.wasm (
|
|
268
|
-
Wasm Hash:
|
|
269
|
-
Wasm Size:
|
|
335
|
+
Wasm File: target/wasm32v1-none/release/endpoint_v2.wasm (58012 bytes)
|
|
336
|
+
Wasm Hash: a61e80a56e38489a25f922ab29ad783434135f64ca9b9c7ab2ca7a7432f2ef7d
|
|
337
|
+
Wasm Size: 58012 bytes
|
|
270
338
|
Exported Functions: 60 found
|
|
271
339
|
• __constructor
|
|
272
340
|
• accept_ownership
|
|
@@ -330,14 +398,14 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
330
398
|
• zro
|
|
331
399
|
✅ Build Complete
|
|
332
400
|
|
|
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
|
|
401
|
+
ℹ️ 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
402
|
Compiling byteorder v1.5.0
|
|
403
|
+
Compiling escape-bytes v0.1.1
|
|
336
404
|
Compiling stable_deref_trait v1.2.1
|
|
337
|
-
Compiling ethnum v1.5.2
|
|
338
405
|
Compiling static_assertions v1.1.0
|
|
339
|
-
Compiling
|
|
406
|
+
Compiling ethnum v1.5.2
|
|
340
407
|
Compiling num-traits v0.2.19
|
|
408
|
+
Compiling data-encoding v2.9.0
|
|
341
409
|
Compiling cfg-if v1.0.4
|
|
342
410
|
Compiling stellar-xdr v25.0.0
|
|
343
411
|
Compiling hash32 v0.3.1
|
|
@@ -345,17 +413,17 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
345
413
|
Compiling stellar-strkey v0.0.16
|
|
346
414
|
Compiling soroban-env-common v25.0.1
|
|
347
415
|
Compiling soroban-env-guest v25.0.1
|
|
348
|
-
Compiling soroban-sdk v25.0
|
|
416
|
+
Compiling soroban-sdk v25.1.0
|
|
349
417
|
Compiling utils v0.0.1 (/workspace/contracts/protocol/stellar/contracts/utils)
|
|
350
418
|
Compiling endpoint-v2 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/endpoint-v2)
|
|
351
419
|
Compiling message-lib-common v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/message-lib-common)
|
|
352
420
|
Compiling uln302 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/uln-302)
|
|
353
421
|
Compiling layerzero-views v0.0.1 (/workspace/contracts/protocol/stellar/contracts/layerzero-views)
|
|
354
|
-
Finished `release` profile [optimized] target(s) in
|
|
422
|
+
Finished `release` profile [optimized] target(s) in 16.43s
|
|
355
423
|
ℹ️ Build Summary:
|
|
356
|
-
Wasm File: target/wasm32v1-none/release/layerzero_views.wasm (
|
|
357
|
-
Wasm Hash:
|
|
358
|
-
Wasm Size:
|
|
424
|
+
Wasm File: target/wasm32v1-none/release/layerzero_views.wasm (36129 bytes)
|
|
425
|
+
Wasm Hash: d871b71ff5f540d1a9a72ec62e1e481a531804047b538de2f5cde3c30b5c52f5
|
|
426
|
+
Wasm Size: 36129 bytes
|
|
359
427
|
Exported Functions: 24 found
|
|
360
428
|
• __constructor
|
|
361
429
|
• accept_ownership
|
|
@@ -386,11 +454,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
386
454
|
ℹ️ 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
455
|
Compiling message-lib-common v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/message-lib-common)
|
|
388
456
|
Compiling uln302 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/uln-302)
|
|
389
|
-
Finished `release` profile [optimized] target(s) in
|
|
457
|
+
Finished `release` profile [optimized] target(s) in 2.11s
|
|
390
458
|
ℹ️ Build Summary:
|
|
391
|
-
Wasm File: target/wasm32v1-none/release/uln302.wasm (
|
|
392
|
-
Wasm Hash:
|
|
393
|
-
Wasm Size:
|
|
459
|
+
Wasm File: target/wasm32v1-none/release/uln302.wasm (58799 bytes)
|
|
460
|
+
Wasm Hash: 54eb2be51ef372723ba480eadbae41481aaf498c5e183cbcbb73cbee63edd7f0
|
|
461
|
+
Wasm Size: 58799 bytes
|
|
394
462
|
Exported Functions: 38 found
|
|
395
463
|
• __constructor
|
|
396
464
|
• accept_ownership
|
|
@@ -434,11 +502,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
434
502
|
|
|
435
503
|
ℹ️ 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
504
|
Compiling upgrader v0.0.1 (/workspace/contracts/protocol/stellar/contracts/upgrader)
|
|
437
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
505
|
+
Finished `release` profile [optimized] target(s) in 0.51s
|
|
438
506
|
ℹ️ Build Summary:
|
|
439
|
-
Wasm File: target/wasm32v1-none/release/upgrader.wasm (
|
|
440
|
-
Wasm Hash:
|
|
441
|
-
Wasm Size:
|
|
507
|
+
Wasm File: target/wasm32v1-none/release/upgrader.wasm (5329 bytes)
|
|
508
|
+
Wasm Hash: bc5993c9cefc30e892532d78cb8a0c6eb5cc6723fec6f595dae266ad016275be
|
|
509
|
+
Wasm Size: 5329 bytes
|
|
442
510
|
Exported Functions: 2 found
|
|
443
511
|
• upgrade
|
|
444
512
|
• upgrade_and_migrate
|
|
@@ -446,11 +514,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
446
514
|
|
|
447
515
|
ℹ️ 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
516
|
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.
|
|
517
|
+
Finished `release` profile [optimized] target(s) in 0.57s
|
|
450
518
|
ℹ️ Build Summary:
|
|
451
|
-
Wasm File: target/wasm32v1-none/release/blocked_message_lib.wasm (
|
|
452
|
-
Wasm Hash:
|
|
453
|
-
Wasm Size:
|
|
519
|
+
Wasm File: target/wasm32v1-none/release/blocked_message_lib.wasm (15077 bytes)
|
|
520
|
+
Wasm Hash: d6773cb3781a3f8f31d373b9ece39e950fa8a19b6443e2599e52be18e7865961
|
|
521
|
+
Wasm Size: 15077 bytes
|
|
454
522
|
Exported Functions: 7 found
|
|
455
523
|
• get_config
|
|
456
524
|
• is_supported_eid
|
|
@@ -463,11 +531,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
463
531
|
|
|
464
532
|
ℹ️ 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
533
|
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.
|
|
534
|
+
Finished `release` profile [optimized] target(s) in 0.91s
|
|
467
535
|
ℹ️ Build Summary:
|
|
468
|
-
Wasm File: target/wasm32v1-none/release/simple_message_lib.wasm (
|
|
469
|
-
Wasm Hash:
|
|
470
|
-
Wasm Size:
|
|
536
|
+
Wasm File: target/wasm32v1-none/release/simple_message_lib.wasm (29825 bytes)
|
|
537
|
+
Wasm Hash: 7fc53277b7b586f0f3ad33720d904eb8ea21110b9c064a67317b4b9048127d41
|
|
538
|
+
Wasm Size: 29825 bytes
|
|
471
539
|
Exported Functions: 31 found
|
|
472
540
|
• __constructor
|
|
473
541
|
• accept_ownership
|
|
@@ -504,11 +572,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
504
572
|
|
|
505
573
|
ℹ️ 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
574
|
Compiling treasury v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/treasury)
|
|
507
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
575
|
+
Finished `release` profile [optimized] target(s) in 0.85s
|
|
508
576
|
ℹ️ Build Summary:
|
|
509
|
-
Wasm File: target/wasm32v1-none/release/treasury.wasm (
|
|
510
|
-
Wasm Hash:
|
|
511
|
-
Wasm Size:
|
|
577
|
+
Wasm File: target/wasm32v1-none/release/treasury.wasm (28404 bytes)
|
|
578
|
+
Wasm Hash: 6a62e6549fd7e72ac1c63cd2d3040fd833840367e36bab205c6142ed592bf55d
|
|
579
|
+
Wasm Size: 28404 bytes
|
|
512
580
|
Exported Functions: 21 found
|
|
513
581
|
• __constructor
|
|
514
582
|
• accept_ownership
|
|
@@ -537,11 +605,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
537
605
|
Compiling oapp-macros v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp-macros)
|
|
538
606
|
Compiling oapp v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp)
|
|
539
607
|
Compiling counter v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/counter)
|
|
540
|
-
Finished `release` profile [optimized] target(s) in
|
|
608
|
+
Finished `release` profile [optimized] target(s) in 2.32s
|
|
541
609
|
ℹ️ Build Summary:
|
|
542
|
-
Wasm File: target/wasm32v1-none/release/counter.wasm (
|
|
543
|
-
Wasm Hash:
|
|
544
|
-
Wasm Size:
|
|
610
|
+
Wasm File: target/wasm32v1-none/release/counter.wasm (40680 bytes)
|
|
611
|
+
Wasm Hash: e031afc9dc07436fdb36aac32169ea184720496f3c7a9890aec65f777258336d
|
|
612
|
+
Wasm Size: 40680 bytes
|
|
545
613
|
Exported Functions: 35 found
|
|
546
614
|
• __constructor
|
|
547
615
|
• accept_ownership
|
|
@@ -584,11 +652,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
584
652
|
Compiling fee-lib-interfaces v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/fee-lib-interfaces)
|
|
585
653
|
Compiling worker v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/worker)
|
|
586
654
|
Compiling dvn v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/dvn)
|
|
587
|
-
Finished `release` profile [optimized] target(s) in
|
|
655
|
+
Finished `release` profile [optimized] target(s) in 2.05s
|
|
588
656
|
ℹ️ Build Summary:
|
|
589
|
-
Wasm File: target/wasm32v1-none/release/dvn.wasm (
|
|
590
|
-
Wasm Hash:
|
|
591
|
-
Wasm Size:
|
|
657
|
+
Wasm File: target/wasm32v1-none/release/dvn.wasm (56479 bytes)
|
|
658
|
+
Wasm Hash: 1712d4e0a74d9b3a5a42aff8ff587d4a559d43bd8137aea1a5c3184d433896dd
|
|
659
|
+
Wasm Size: 56479 bytes
|
|
592
660
|
Exported Functions: 51 found
|
|
593
661
|
• __check_auth
|
|
594
662
|
• __constructor
|
|
@@ -646,11 +714,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
646
714
|
ℹ️ 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
715
|
Compiling fee-lib-interfaces v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/fee-lib-interfaces)
|
|
648
716
|
Compiling dvn-fee-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/dvn-fee-lib)
|
|
649
|
-
Finished `release` profile [optimized] target(s) in
|
|
717
|
+
Finished `release` profile [optimized] target(s) in 1.02s
|
|
650
718
|
ℹ️ Build Summary:
|
|
651
|
-
Wasm File: target/wasm32v1-none/release/dvn_fee_lib.wasm (
|
|
652
|
-
Wasm Hash:
|
|
653
|
-
Wasm Size:
|
|
719
|
+
Wasm File: target/wasm32v1-none/release/dvn_fee_lib.wasm (22027 bytes)
|
|
720
|
+
Wasm Hash: 124985c0672b559ce89a85b405e6ca3b1e1838d03da4c85edec74efec449eb3f
|
|
721
|
+
Wasm Size: 22027 bytes
|
|
654
722
|
Exported Functions: 18 found
|
|
655
723
|
• __constructor
|
|
656
724
|
• accept_ownership
|
|
@@ -674,11 +742,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
674
742
|
|
|
675
743
|
ℹ️ 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
744
|
Compiling executor v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor)
|
|
677
|
-
Finished `release` profile [optimized] target(s) in
|
|
745
|
+
Finished `release` profile [optimized] target(s) in 1.44s
|
|
678
746
|
ℹ️ Build Summary:
|
|
679
|
-
Wasm File: target/wasm32v1-none/release/executor.wasm (
|
|
680
|
-
Wasm Hash:
|
|
681
|
-
Wasm Size:
|
|
747
|
+
Wasm File: target/wasm32v1-none/release/executor.wasm (56531 bytes)
|
|
748
|
+
Wasm Hash: e5a4eee90ddc18340e6246821de2fd98e5bf50163fcce06bdcbcbf53f2b8fcd4
|
|
749
|
+
Wasm Size: 56531 bytes
|
|
682
750
|
Exported Functions: 49 found
|
|
683
751
|
• __check_auth
|
|
684
752
|
• __constructor
|
|
@@ -733,11 +801,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
733
801
|
|
|
734
802
|
ℹ️ 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
803
|
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.
|
|
804
|
+
Finished `release` profile [optimized] target(s) in 0.87s
|
|
737
805
|
ℹ️ Build Summary:
|
|
738
|
-
Wasm File: target/wasm32v1-none/release/executor_fee_lib.wasm (
|
|
739
|
-
Wasm Hash:
|
|
740
|
-
Wasm Size:
|
|
806
|
+
Wasm File: target/wasm32v1-none/release/executor_fee_lib.wasm (34907 bytes)
|
|
807
|
+
Wasm Hash: c2585633f3a40f18d491bc7bbe43859f102caae277d6b5b7d1096135eeae180e
|
|
808
|
+
Wasm Size: 34907 bytes
|
|
741
809
|
Exported Functions: 19 found
|
|
742
810
|
• __constructor
|
|
743
811
|
• accept_ownership
|
|
@@ -765,11 +833,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
765
833
|
Compiling worker v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/worker)
|
|
766
834
|
Compiling executor v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor)
|
|
767
835
|
Compiling executor-helper v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor-helper)
|
|
768
|
-
Finished `release` profile [optimized] target(s) in 1.
|
|
836
|
+
Finished `release` profile [optimized] target(s) in 1.80s
|
|
769
837
|
ℹ️ Build Summary:
|
|
770
|
-
Wasm File: target/wasm32v1-none/release/executor_helper.wasm (
|
|
771
|
-
Wasm Hash:
|
|
772
|
-
Wasm Size:
|
|
838
|
+
Wasm File: target/wasm32v1-none/release/executor_helper.wasm (24759 bytes)
|
|
839
|
+
Wasm Hash: fc8138d22fe41796ab4c7dd551b425628b7a7d42d20bc4ec1ba2a4740104a9c6
|
|
840
|
+
Wasm Size: 24759 bytes
|
|
773
841
|
Exported Functions: 6 found
|
|
774
842
|
• compose
|
|
775
843
|
• execute
|
|
@@ -781,11 +849,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
781
849
|
|
|
782
850
|
ℹ️ 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
851
|
Compiling price-feed v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/price-feed)
|
|
784
|
-
Finished `release` profile [optimized] target(s) in
|
|
852
|
+
Finished `release` profile [optimized] target(s) in 1.06s
|
|
785
853
|
ℹ️ Build Summary:
|
|
786
|
-
Wasm File: target/wasm32v1-none/release/price_feed.wasm (
|
|
787
|
-
Wasm Hash:
|
|
788
|
-
Wasm Size:
|
|
854
|
+
Wasm File: target/wasm32v1-none/release/price_feed.wasm (33115 bytes)
|
|
855
|
+
Wasm Hash: bc1441eb80671ff57ab3e33c478da9f75b65b270257adbfb6f0d5073e8511ae2
|
|
856
|
+
Wasm Size: 33115 bytes
|
|
789
857
|
Exported Functions: 32 found
|
|
790
858
|
• __constructor
|
|
791
859
|
• accept_ownership
|
|
@@ -824,11 +892,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
824
892
|
ℹ️ 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
893
|
Compiling oft-core v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft-core)
|
|
826
894
|
Compiling oft v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft)
|
|
827
|
-
Finished `release` profile [optimized] target(s) in
|
|
895
|
+
Finished `release` profile [optimized] target(s) in 2.20s
|
|
828
896
|
ℹ️ Build Summary:
|
|
829
|
-
Wasm File: target/wasm32v1-none/release/oft.wasm (
|
|
830
|
-
Wasm Hash:
|
|
831
|
-
Wasm Size:
|
|
897
|
+
Wasm File: target/wasm32v1-none/release/oft.wasm (60817 bytes)
|
|
898
|
+
Wasm Hash: ecf9c8191d272ba8c743e743738241148f509549b9a5ab41be11ad50e1bffd0f
|
|
899
|
+
Wasm Size: 60817 bytes
|
|
832
900
|
Exported Functions: 49 found
|
|
833
901
|
• __constructor
|
|
834
902
|
• accept_ownership
|
|
@@ -881,7 +949,7 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
881
949
|
• ttl_configs
|
|
882
950
|
✅ Build Complete
|
|
883
951
|
|
|
884
|
-
⏱️ stellar contract build
|
|
952
|
+
⏱️ stellar contract build: 2:14.324 (m:ss.mmm)
|
|
885
953
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
|
|
886
954
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-config
|
|
887
955
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup
|
|
@@ -894,8 +962,12 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
894
962
|
📦 Using 4 default cache volume(s) for stellar
|
|
895
963
|
✅ stellar-25.0.0 (Latest stable release)
|
|
896
964
|
🔧 stellar version: 25.0.0
|
|
965
|
+
(node:85560) [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.
|
|
966
|
+
Reparsing as ES module because module syntax was detected. This incurs a performance overhead.
|
|
967
|
+
To eliminate this warning, add "type": "module" to /home/runner/work/monorepo-internal/monorepo-internal/package.json.
|
|
968
|
+
(Use `node --trace-warnings ...` to show where the warning was created)
|
|
897
969
|
$ docker image inspect --format {{.Id}} 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.0.0
|
|
898
|
-
sha256:
|
|
970
|
+
sha256:57520026e52d8bfec50ae6363977a40712bfa2549bac8ceed62a150f1d58a8d2
|
|
899
971
|
✅ Using cached Docker image: 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.0.0
|
|
900
972
|
👤 Running container as UID:GID 1001:1001
|
|
901
973
|
🌍 Using 5 default environment variable(s) for stellar
|
|
@@ -905,19 +977,17 @@ sha256:3b1e577a4303ad4a4df7bc898df7b4c89fa8e14faab5e73fc574869af49f9b3b
|
|
|
905
977
|
🔒 Acquired lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
|
|
906
978
|
$ 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
979
|
Downloading crates ...
|
|
908
|
-
Downloaded
|
|
909
|
-
Downloaded sha2 v0.9.9
|
|
980
|
+
Downloaded heck v0.4.1
|
|
910
981
|
Downloaded include_dir_macros v0.7.4
|
|
911
982
|
Downloaded opaque-debug v0.3.1
|
|
912
|
-
Downloaded
|
|
913
|
-
Downloaded include_dir v0.7.4
|
|
914
|
-
Downloaded soroban-spec-typescript v23.1.4
|
|
915
|
-
Downloaded base64 v0.21.7
|
|
916
|
-
Downloaded anyhow v1.0.100
|
|
917
|
-
Downloaded heck v0.4.1
|
|
983
|
+
Downloaded sha2 v0.9.9
|
|
918
984
|
Downloaded glob v0.3.3
|
|
985
|
+
Downloaded soroban-spec-typescript v25.1.0
|
|
986
|
+
Downloaded base64 v0.21.7
|
|
987
|
+
Downloaded digest v0.9.0
|
|
919
988
|
Downloaded block-buffer v0.9.0
|
|
920
|
-
Downloaded
|
|
989
|
+
Downloaded include_dir v0.7.4
|
|
990
|
+
Downloaded anyhow v1.0.100
|
|
921
991
|
Compiling proc-macro2 v1.0.103
|
|
922
992
|
Compiling quote v1.0.41
|
|
923
993
|
Compiling unicode-ident v1.0.22
|
|
@@ -926,9 +996,9 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
926
996
|
Compiling version_check v0.9.5
|
|
927
997
|
Compiling typenum v1.19.0
|
|
928
998
|
Compiling serde v1.0.228
|
|
929
|
-
Compiling ryu v1.0.20
|
|
930
|
-
Compiling memchr v2.7.6
|
|
931
999
|
Compiling itoa v1.0.15
|
|
1000
|
+
Compiling memchr v2.7.6
|
|
1001
|
+
Compiling ryu v1.0.20
|
|
932
1002
|
Compiling ident_case v1.0.1
|
|
933
1003
|
Compiling fnv v1.0.7
|
|
934
1004
|
Compiling strsim v0.11.1
|
|
@@ -938,32 +1008,32 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
938
1008
|
Compiling cpufeatures v0.2.17
|
|
939
1009
|
Compiling hashbrown v0.16.0
|
|
940
1010
|
Compiling data-encoding v2.9.0
|
|
941
|
-
Compiling equivalent v1.0.2
|
|
942
1011
|
Compiling thiserror v1.0.69
|
|
943
|
-
Compiling
|
|
1012
|
+
Compiling equivalent v1.0.2
|
|
944
1013
|
Compiling base64 v0.22.1
|
|
945
|
-
Compiling generic-array v0.14.9
|
|
946
1014
|
Compiling prettyplease v0.2.37
|
|
1015
|
+
Compiling semver v1.0.27
|
|
947
1016
|
Compiling escape-bytes v0.1.1
|
|
1017
|
+
Compiling generic-array v0.14.9
|
|
948
1018
|
Compiling ethnum v1.5.2
|
|
949
|
-
Compiling anyhow v1.0.100
|
|
950
|
-
Compiling either v1.15.0
|
|
951
1019
|
Compiling glob v0.3.3
|
|
952
1020
|
Compiling opaque-debug v0.3.1
|
|
953
|
-
Compiling
|
|
1021
|
+
Compiling either v1.15.0
|
|
1022
|
+
Compiling anyhow v1.0.100
|
|
954
1023
|
Compiling heck v0.4.1
|
|
955
|
-
Compiling base64 v0.21.7
|
|
956
1024
|
Compiling indexmap v2.12.0
|
|
1025
|
+
Compiling base64 v0.21.7
|
|
1026
|
+
Compiling itertools v0.10.5
|
|
957
1027
|
Compiling syn v2.0.108
|
|
958
|
-
Compiling
|
|
1028
|
+
Compiling wasmparser v0.116.1
|
|
959
1029
|
Compiling block-buffer v0.10.4
|
|
1030
|
+
Compiling crypto-common v0.1.6
|
|
960
1031
|
Compiling digest v0.9.0
|
|
961
1032
|
Compiling block-buffer v0.9.0
|
|
962
|
-
Compiling wasmparser v0.116.1
|
|
963
|
-
Compiling digest v0.10.7
|
|
964
1033
|
Compiling sha2 v0.9.9
|
|
965
|
-
Compiling
|
|
1034
|
+
Compiling digest v0.10.7
|
|
966
1035
|
Compiling sha2 v0.10.9
|
|
1036
|
+
Compiling include_dir_macros v0.7.4
|
|
967
1037
|
Compiling include_dir v0.7.4
|
|
968
1038
|
Compiling darling_core v0.21.3
|
|
969
1039
|
Compiling serde_derive v1.0.228
|
|
@@ -972,106 +1042,106 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
972
1042
|
Compiling crate-git-revision v0.0.6
|
|
973
1043
|
Compiling darling_macro v0.21.3
|
|
974
1044
|
Compiling stellar-strkey v0.0.13
|
|
975
|
-
Compiling stellar-xdr
|
|
1045
|
+
Compiling stellar-xdr v25.0.0
|
|
976
1046
|
Compiling hex v0.4.3
|
|
977
1047
|
Compiling darling v0.21.3
|
|
978
1048
|
Compiling serde_with_macros v3.15.1
|
|
979
1049
|
Compiling serde_with v3.15.1
|
|
980
|
-
Compiling soroban-spec
|
|
981
|
-
Compiling soroban-spec-typescript
|
|
1050
|
+
Compiling soroban-spec v25.1.0
|
|
1051
|
+
Compiling soroban-spec-typescript v25.1.0
|
|
982
1052
|
Compiling ts-bindings-gen v0.0.1 (/workspace/contracts/protocol/stellar/tools/ts-bindings-gen)
|
|
983
|
-
Finished `dev` profile [unoptimized + debuginfo] target(s) in
|
|
1053
|
+
Finished `dev` profile [unoptimized + debuginfo] target(s) in 1m 22s
|
|
984
1054
|
Running `target/debug/ts-bindings-gen`
|
|
985
1055
|
🚀 Generating TypeScript bindings for Stellar contracts...
|
|
986
1056
|
|
|
987
1057
|
📦 Processing contract: endpoint_v2
|
|
988
1058
|
WASM: target/wasm32v1-none/release/endpoint_v2.wasm
|
|
989
1059
|
Output: sdk/src/generated/endpoint.ts
|
|
990
|
-
WASM size:
|
|
1060
|
+
WASM size: 58012 bytes (56.65 KB)
|
|
991
1061
|
Generating bindings...
|
|
992
1062
|
✓ Generated: sdk/src/generated/endpoint.ts
|
|
993
1063
|
📦 Processing contract: simple_message_lib
|
|
994
1064
|
WASM: target/wasm32v1-none/release/simple_message_lib.wasm
|
|
995
1065
|
Output: sdk/src/generated/sml.ts
|
|
996
|
-
WASM size:
|
|
1066
|
+
WASM size: 29825 bytes (29.13 KB)
|
|
997
1067
|
Generating bindings...
|
|
998
1068
|
✓ Generated: sdk/src/generated/sml.ts
|
|
999
1069
|
📦 Processing contract: blocked_message_lib
|
|
1000
1070
|
WASM: target/wasm32v1-none/release/blocked_message_lib.wasm
|
|
1001
1071
|
Output: sdk/src/generated/bml.ts
|
|
1002
|
-
WASM size:
|
|
1072
|
+
WASM size: 15077 bytes (14.72 KB)
|
|
1003
1073
|
Generating bindings...
|
|
1004
1074
|
✓ Generated: sdk/src/generated/bml.ts
|
|
1005
1075
|
📦 Processing contract: uln302
|
|
1006
1076
|
WASM: target/wasm32v1-none/release/uln302.wasm
|
|
1007
1077
|
Output: sdk/src/generated/uln302.ts
|
|
1008
|
-
WASM size:
|
|
1078
|
+
WASM size: 58799 bytes (57.42 KB)
|
|
1009
1079
|
Generating bindings...
|
|
1010
1080
|
✓ Generated: sdk/src/generated/uln302.ts
|
|
1011
1081
|
📦 Processing contract: treasury
|
|
1012
1082
|
WASM: target/wasm32v1-none/release/treasury.wasm
|
|
1013
1083
|
Output: sdk/src/generated/treasury.ts
|
|
1014
|
-
WASM size:
|
|
1084
|
+
WASM size: 28404 bytes (27.74 KB)
|
|
1015
1085
|
Generating bindings...
|
|
1016
1086
|
✓ Generated: sdk/src/generated/treasury.ts
|
|
1017
1087
|
📦 Processing contract: upgrader
|
|
1018
1088
|
WASM: target/wasm32v1-none/release/upgrader.wasm
|
|
1019
1089
|
Output: sdk/src/generated/upgrader.ts
|
|
1020
|
-
WASM size:
|
|
1090
|
+
WASM size: 5329 bytes (5.20 KB)
|
|
1021
1091
|
Generating bindings...
|
|
1022
1092
|
✓ Generated: sdk/src/generated/upgrader.ts
|
|
1023
1093
|
📦 Processing contract: dvn
|
|
1024
1094
|
WASM: target/wasm32v1-none/release/dvn.wasm
|
|
1025
1095
|
Output: sdk/src/generated/dvn.ts
|
|
1026
|
-
WASM size:
|
|
1096
|
+
WASM size: 56479 bytes (55.16 KB)
|
|
1027
1097
|
Generating bindings...
|
|
1028
1098
|
✓ Generated: sdk/src/generated/dvn.ts
|
|
1029
1099
|
📦 Processing contract: dvn_fee_lib
|
|
1030
1100
|
WASM: target/wasm32v1-none/release/dvn_fee_lib.wasm
|
|
1031
1101
|
Output: sdk/src/generated/dvn_fee_lib.ts
|
|
1032
|
-
WASM size:
|
|
1102
|
+
WASM size: 22027 bytes (21.51 KB)
|
|
1033
1103
|
Generating bindings...
|
|
1034
1104
|
✓ Generated: sdk/src/generated/dvn_fee_lib.ts
|
|
1035
1105
|
📦 Processing contract: executor
|
|
1036
1106
|
WASM: target/wasm32v1-none/release/executor.wasm
|
|
1037
1107
|
Output: sdk/src/generated/executor.ts
|
|
1038
|
-
WASM size:
|
|
1108
|
+
WASM size: 56531 bytes (55.21 KB)
|
|
1039
1109
|
Generating bindings...
|
|
1040
1110
|
✓ Generated: sdk/src/generated/executor.ts
|
|
1041
1111
|
📦 Processing contract: executor_fee_lib
|
|
1042
1112
|
WASM: target/wasm32v1-none/release/executor_fee_lib.wasm
|
|
1043
1113
|
Output: sdk/src/generated/executor_fee_lib.ts
|
|
1044
|
-
WASM size:
|
|
1114
|
+
WASM size: 34907 bytes (34.09 KB)
|
|
1045
1115
|
Generating bindings...
|
|
1046
1116
|
✓ Generated: sdk/src/generated/executor_fee_lib.ts
|
|
1047
1117
|
📦 Processing contract: executor_helper
|
|
1048
1118
|
WASM: target/wasm32v1-none/release/executor_helper.wasm
|
|
1049
1119
|
Output: sdk/src/generated/executor_helper.ts
|
|
1050
|
-
WASM size:
|
|
1120
|
+
WASM size: 24759 bytes (24.18 KB)
|
|
1051
1121
|
Generating bindings...
|
|
1052
1122
|
✓ Generated: sdk/src/generated/executor_helper.ts
|
|
1053
1123
|
📦 Processing contract: price_feed
|
|
1054
1124
|
WASM: target/wasm32v1-none/release/price_feed.wasm
|
|
1055
1125
|
Output: sdk/src/generated/price_feed.ts
|
|
1056
|
-
WASM size:
|
|
1126
|
+
WASM size: 33115 bytes (32.34 KB)
|
|
1057
1127
|
Generating bindings...
|
|
1058
1128
|
✓ Generated: sdk/src/generated/price_feed.ts
|
|
1059
1129
|
📦 Processing contract: counter
|
|
1060
1130
|
WASM: target/wasm32v1-none/release/counter.wasm
|
|
1061
1131
|
Output: sdk/src/generated/counter.ts
|
|
1062
|
-
WASM size:
|
|
1132
|
+
WASM size: 40680 bytes (39.73 KB)
|
|
1063
1133
|
Generating bindings...
|
|
1064
1134
|
✓ Generated: sdk/src/generated/counter.ts
|
|
1065
1135
|
📦 Processing contract: oft
|
|
1066
1136
|
WASM: target/wasm32v1-none/release/oft.wasm
|
|
1067
1137
|
Output: sdk/src/generated/oft.ts
|
|
1068
|
-
WASM size:
|
|
1138
|
+
WASM size: 60817 bytes (59.39 KB)
|
|
1069
1139
|
Generating bindings...
|
|
1070
1140
|
✓ Generated: sdk/src/generated/oft.ts
|
|
1071
1141
|
📦 Processing contract: layerzero_views
|
|
1072
1142
|
WASM: target/wasm32v1-none/release/layerzero_views.wasm
|
|
1073
1143
|
Output: sdk/src/generated/layerzero_view.ts
|
|
1074
|
-
WASM size:
|
|
1144
|
+
WASM size: 36129 bytes (35.28 KB)
|
|
1075
1145
|
Generating bindings...
|
|
1076
1146
|
✓ Generated: sdk/src/generated/layerzero_view.ts
|
|
1077
1147
|
|
|
@@ -1094,7 +1164,7 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
1094
1164
|
- counter.ts
|
|
1095
1165
|
- oft.ts
|
|
1096
1166
|
- layerzero_view.ts
|
|
1097
|
-
⏱️ bash -c cargo run -p ts-bindings-gen:
|
|
1167
|
+
⏱️ bash -c cargo run -p ts-bindings-gen: 1:23.354 (m:ss.mmm)
|
|
1098
1168
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
|
|
1099
1169
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-config
|
|
1100
1170
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup
|