@layerzerolabs/protocol-stellar-v2 0.2.13 → 0.2.18
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 +484 -337
- package/.turbo/turbo-lint.log +126 -56
- package/.turbo/turbo-test.log +1403 -984
- package/Cargo.lock +142 -3
- package/Cargo.toml +5 -1
- package/contracts/ERROR_SPEC.md +44 -0
- package/contracts/common-macros/src/auth.rs +113 -0
- package/contracts/common-macros/src/contract_ttl.rs +84 -0
- package/contracts/common-macros/src/lib.rs +219 -29
- package/contracts/common-macros/src/lz_contract.rs +83 -0
- package/contracts/common-macros/src/storage.rs +1 -1
- package/contracts/common-macros/src/tests/{ownable.rs → auth.rs} +48 -15
- package/contracts/common-macros/src/tests/contract_ttl.rs +662 -0
- package/contracts/common-macros/src/tests/mod.rs +3 -2
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__auth__snapshot_generated_multisig_code.snap +20 -0
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__auth__snapshot_generated_ownable_code.snap +24 -0
- package/contracts/common-macros/src/tests/snapshots/{common_macros__tests__ownable__snapshot_only_owner_preserves_function_signature.snap → common_macros__tests__auth__snapshot_only_auth_preserves_function_signature.snap} +4 -4
- package/contracts/common-macros/src/tests/snapshots/{common_macros__tests__contract_impl__snapshot_generated_contract_impl_code.snap → common_macros__tests__contract_ttl__snapshot_generated_contractimpl_code.snap} +26 -10
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__contract_ttl__snapshot_generated_contracttrait_code.snap +69 -0
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__storage__snapshot_generated_storage_code.snap +48 -48
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__ttl_configurable__snapshot_generated_ttl_configurable_code.snap +7 -41
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__upgradeable__snapshot_generated_upgradeable_code.snap +21 -0
- package/contracts/common-macros/src/tests/upgradeable.rs +31 -0
- package/contracts/common-macros/src/ttl_configurable.rs +21 -66
- package/contracts/common-macros/src/ttl_extendable.rs +36 -0
- package/contracts/common-macros/src/upgradeable.rs +76 -0
- package/contracts/common-macros/src/utils.rs +9 -0
- package/contracts/endpoint-v2/src/constants.rs +4 -4
- package/contracts/endpoint-v2/src/endpoint_v2.rs +58 -36
- package/contracts/endpoint-v2/src/errors.rs +4 -3
- package/contracts/endpoint-v2/src/events.rs +1 -1
- package/contracts/endpoint-v2/src/message_lib_manager.rs +18 -5
- package/contracts/endpoint-v2/src/messaging_channel.rs +11 -1
- package/contracts/endpoint-v2/src/messaging_composer.rs +11 -1
- package/contracts/endpoint-v2/src/storage.rs +1 -1
- package/contracts/endpoint-v2/src/tests/endpoint_setup.rs +175 -8
- package/contracts/endpoint-v2/src/tests/endpoint_v2/build_outbound_packet.rs +76 -0
- package/contracts/endpoint-v2/src/tests/endpoint_v2/clear.rs +342 -159
- package/contracts/endpoint-v2/src/tests/endpoint_v2/delegate.rs +3 -15
- package/contracts/endpoint-v2/src/tests/endpoint_v2/initializable.rs +20 -31
- package/contracts/endpoint-v2/src/tests/endpoint_v2/lz_receive_alert.rs +126 -164
- package/contracts/endpoint-v2/src/tests/endpoint_v2/mod.rs +1 -0
- package/contracts/endpoint-v2/src/tests/endpoint_v2/native_token.rs +0 -1
- package/contracts/endpoint-v2/src/tests/endpoint_v2/owner.rs +0 -1
- package/contracts/endpoint-v2/src/tests/endpoint_v2/pay_messaging_fees.rs +311 -304
- package/contracts/endpoint-v2/src/tests/endpoint_v2/quote.rs +423 -96
- package/contracts/endpoint-v2/src/tests/endpoint_v2/recover_token.rs +1 -1
- package/contracts/endpoint-v2/src/tests/endpoint_v2/require_oapp_auth.rs +47 -20
- package/contracts/endpoint-v2/src/tests/endpoint_v2/send.rs +373 -403
- package/contracts/endpoint-v2/src/tests/endpoint_v2/set_delegate.rs +96 -22
- package/contracts/endpoint-v2/src/tests/endpoint_v2/set_zro.rs +62 -10
- package/contracts/endpoint-v2/src/tests/endpoint_v2/transfer_ownership.rs +4 -4
- package/contracts/endpoint-v2/src/tests/endpoint_v2/ttl_config.rs +8 -11
- package/contracts/endpoint-v2/src/tests/endpoint_v2/verifiable.rs +81 -30
- package/contracts/endpoint-v2/src/tests/endpoint_v2/verify.rs +209 -76
- package/contracts/endpoint-v2/src/tests/endpoint_v2/zro.rs +0 -1
- package/contracts/endpoint-v2/src/tests/message_lib_manager/default_receive_library.rs +24 -0
- package/contracts/endpoint-v2/src/tests/message_lib_manager/default_receive_library_timeout.rs +40 -0
- package/contracts/endpoint-v2/src/tests/message_lib_manager/default_send_library.rs +24 -0
- package/contracts/endpoint-v2/src/tests/message_lib_manager/get_config.rs +108 -0
- package/contracts/endpoint-v2/src/tests/message_lib_manager/get_library_index.rs +52 -0
- package/contracts/endpoint-v2/src/tests/message_lib_manager/get_receive_library.rs +92 -0
- package/contracts/endpoint-v2/src/tests/message_lib_manager/get_registered_libraries.rs +74 -0
- package/contracts/endpoint-v2/src/tests/message_lib_manager/get_send_library.rs +83 -0
- package/contracts/endpoint-v2/src/tests/message_lib_manager/is_registered_library.rs +32 -0
- package/contracts/endpoint-v2/src/tests/message_lib_manager/is_supported_eid.rs +28 -0
- package/contracts/endpoint-v2/src/tests/message_lib_manager/is_valid_receive_library.rs +261 -0
- package/contracts/endpoint-v2/src/tests/message_lib_manager/mod.rs +16 -0
- package/contracts/endpoint-v2/src/tests/message_lib_manager/receive_library_timeout.rs +62 -0
- package/contracts/endpoint-v2/src/tests/message_lib_manager/register_library.rs +65 -43
- package/contracts/endpoint-v2/src/tests/message_lib_manager/registered_libraries_count.rs +42 -0
- package/contracts/endpoint-v2/src/tests/message_lib_manager/require_receive_lib_for_eid.rs +61 -0
- package/contracts/endpoint-v2/src/tests/message_lib_manager/require_registered.rs +4 -6
- package/contracts/endpoint-v2/src/tests/message_lib_manager/require_send_lib_for_eid.rs +59 -0
- package/contracts/endpoint-v2/src/tests/message_lib_manager/require_supported_eid.rs +16 -2
- package/contracts/endpoint-v2/src/tests/message_lib_manager/set_config.rs +155 -51
- package/contracts/endpoint-v2/src/tests/message_lib_manager/set_default_receive_lib_timeout.rs +114 -92
- package/contracts/endpoint-v2/src/tests/message_lib_manager/set_default_receive_library.rs +235 -132
- package/contracts/endpoint-v2/src/tests/message_lib_manager/set_default_send_library.rs +93 -87
- package/contracts/endpoint-v2/src/tests/message_lib_manager/set_receive_library.rs +346 -245
- package/contracts/endpoint-v2/src/tests/message_lib_manager/set_receive_library_timeout.rs +406 -60
- package/contracts/endpoint-v2/src/tests/message_lib_manager/set_send_library.rs +252 -78
- package/contracts/endpoint-v2/src/tests/message_lib_manager/timeout.rs +102 -0
- package/contracts/endpoint-v2/src/tests/messaging_channel/burn.rs +212 -273
- package/contracts/endpoint-v2/src/tests/messaging_channel/clear_payload.rs +203 -0
- package/contracts/endpoint-v2/src/tests/messaging_channel/inbound.rs +94 -0
- package/contracts/endpoint-v2/src/tests/messaging_channel/inbound_nonce.rs +78 -248
- package/contracts/endpoint-v2/src/tests/messaging_channel/inbound_payload_hash.rs +7 -282
- package/contracts/endpoint-v2/src/tests/messaging_channel/lazy_inbound_nonce.rs +6 -274
- package/contracts/endpoint-v2/src/tests/messaging_channel/mod.rs +3 -2
- package/contracts/endpoint-v2/src/tests/messaging_channel/next_guid.rs +86 -178
- package/contracts/endpoint-v2/src/tests/messaging_channel/nilify.rs +328 -212
- package/contracts/endpoint-v2/src/tests/messaging_channel/outbound.rs +68 -0
- package/contracts/endpoint-v2/src/tests/messaging_channel/outbound_nonce.rs +6 -209
- package/contracts/endpoint-v2/src/tests/messaging_channel/skip.rs +207 -159
- package/contracts/endpoint-v2/src/tests/messaging_composer/clear_compose.rs +142 -153
- package/contracts/endpoint-v2/src/tests/messaging_composer/compose_queue.rs +6 -179
- package/contracts/endpoint-v2/src/tests/messaging_composer/lz_compose_alert.rs +163 -221
- package/contracts/endpoint-v2/src/tests/messaging_composer/send_compose.rs +90 -121
- package/contracts/endpoint-v2/src/tests/mock.rs +18 -4
- package/contracts/endpoint-v2/src/tests/util/build_payload.rs +4 -70
- package/contracts/endpoint-v2/src/tests/util/compute_guid.rs +2 -1
- package/contracts/endpoint-v2/src/tests/util/keccak256.rs +17 -106
- package/contracts/layerzero-views/Cargo.toml +35 -0
- package/contracts/layerzero-views/src/errors.rs +10 -0
- package/contracts/layerzero-views/src/layerzero_view.rs +226 -0
- package/contracts/layerzero-views/src/lib.rs +38 -0
- package/contracts/layerzero-views/src/storage.rs +18 -0
- package/contracts/layerzero-views/src/tests/layerzero_view_tests.rs +423 -0
- package/contracts/layerzero-views/src/tests/mod.rs +4 -0
- package/contracts/layerzero-views/src/tests/setup.rs +377 -0
- package/contracts/layerzero-views/src/types.rs +50 -0
- package/contracts/macro-integration-tests/Cargo.toml +30 -0
- package/contracts/macro-integration-tests/src/lib.rs +1 -0
- package/contracts/macro-integration-tests/tests/runtime/ownable/initialization.rs +62 -0
- package/contracts/macro-integration-tests/tests/runtime/ownable/mod.rs +22 -0
- package/contracts/macro-integration-tests/tests/runtime/ownable/only_auth_guard.rs +97 -0
- package/contracts/macro-integration-tests/tests/runtime/ownable/ownership_transfer.rs +101 -0
- package/contracts/macro-integration-tests/tests/runtime/storage/keyed_roundtrip.rs +225 -0
- package/contracts/macro-integration-tests/tests/runtime/storage/mod.rs +4 -0
- package/contracts/macro-integration-tests/tests/runtime/storage/name_override_runtime.rs +52 -0
- package/contracts/macro-integration-tests/tests/runtime/storage/ttl_extension.rs +261 -0
- package/contracts/macro-integration-tests/tests/runtime/storage/unkeyed_roundtrip.rs +137 -0
- package/contracts/macro-integration-tests/tests/runtime/ttl_configurable/configuration.rs +113 -0
- package/contracts/macro-integration-tests/tests/runtime/ttl_configurable/freeze.rs +139 -0
- package/contracts/macro-integration-tests/tests/runtime/ttl_configurable/mod.rs +2 -0
- package/contracts/macro-integration-tests/tests/runtime.rs +5 -0
- package/contracts/macro-integration-tests/tests/ui/error/fail/attr_not_empty.rs +12 -0
- package/contracts/macro-integration-tests/tests/ui/error/fail/attr_not_empty.stderr +7 -0
- package/contracts/macro-integration-tests/tests/ui/error/fail/decreasing_discriminant.rs +12 -0
- package/contracts/macro-integration-tests/tests/ui/error/fail/decreasing_discriminant.stderr +7 -0
- package/contracts/macro-integration-tests/tests/ui/error/fail/non_int_discriminant.rs +21 -0
- package/contracts/macro-integration-tests/tests/ui/error/fail/non_int_discriminant.stderr +7 -0
- package/contracts/macro-integration-tests/tests/ui/error/fail/non_unit_variant.rs +13 -0
- package/contracts/macro-integration-tests/tests/ui/error/fail/non_unit_variant.stderr +7 -0
- package/contracts/macro-integration-tests/tests/ui/error/pass/attr_on_variant_allowed.rs +20 -0
- package/contracts/macro-integration-tests/tests/ui/error/pass/basic_auto_discriminants.rs +15 -0
- package/contracts/macro-integration-tests/tests/ui/error/pass/mixed_discriminants.rs +16 -0
- package/contracts/macro-integration-tests/tests/ui/ownable/fail/only_auth_missing_env.rs +22 -0
- package/contracts/macro-integration-tests/tests/ui/ownable/fail/only_auth_missing_env.stderr +16 -0
- package/contracts/macro-integration-tests/tests/ui/ownable/pass/minimal_contract.rs +26 -0
- package/contracts/macro-integration-tests/tests/ui/ownable/pass/namespacing_and_imports.rs +21 -0
- package/contracts/macro-integration-tests/tests/ui/ownable/pass/only_auth_env_param_variants.rs +46 -0
- package/contracts/macro-integration-tests/tests/ui/storage/fail/invalid_storage_type_param.rs +13 -0
- package/contracts/macro-integration-tests/tests/ui/storage/fail/invalid_storage_type_param.stderr +7 -0
- package/contracts/macro-integration-tests/tests/ui/storage/fail/missing_storage_type_param.rs +13 -0
- package/contracts/macro-integration-tests/tests/ui/storage/fail/missing_storage_type_param.stderr +7 -0
- package/contracts/macro-integration-tests/tests/ui/storage/fail/multiple_storage_kinds.rs +10 -0
- package/contracts/macro-integration-tests/tests/ui/storage/fail/multiple_storage_kinds.stderr +7 -0
- package/contracts/macro-integration-tests/tests/ui/storage/fail/multiple_type_params.rs +12 -0
- package/contracts/macro-integration-tests/tests/ui/storage/fail/multiple_type_params.stderr +7 -0
- package/contracts/macro-integration-tests/tests/ui/storage/fail/no_ttl_extension_on_non_persistent.rs +10 -0
- package/contracts/macro-integration-tests/tests/ui/storage/fail/no_ttl_extension_on_non_persistent.stderr +7 -0
- package/contracts/macro-integration-tests/tests/ui/storage/fail/non_enum_input.rs +10 -0
- package/contracts/macro-integration-tests/tests/ui/storage/fail/non_enum_input.stderr +7 -0
- package/contracts/macro-integration-tests/tests/ui/storage/fail/storage_attr_rejects_args.rs +12 -0
- package/contracts/macro-integration-tests/tests/ui/storage/fail/storage_attr_rejects_args.stderr +7 -0
- package/contracts/macro-integration-tests/tests/ui/storage/fail/tuple_variant_rejected.rs +13 -0
- package/contracts/macro-integration-tests/tests/ui/storage/fail/tuple_variant_rejected.stderr +7 -0
- package/contracts/macro-integration-tests/tests/ui/storage/fail/unknown_variant_attr.rs +13 -0
- package/contracts/macro-integration-tests/tests/ui/storage/fail/unknown_variant_attr.stderr +7 -0
- package/contracts/macro-integration-tests/tests/ui/storage/pass/default_value_on_variant.rs +14 -0
- package/contracts/macro-integration-tests/tests/ui/storage/pass/enum_instance_unit_basic.rs +14 -0
- package/contracts/macro-integration-tests/tests/ui/storage/pass/enum_persistent_named_fields_keyed.rs +16 -0
- package/contracts/macro-integration-tests/tests/ui/storage/pass/enum_temporary_unit_option.rs +15 -0
- package/contracts/macro-integration-tests/tests/ui/storage/pass/name_override.rs +14 -0
- package/contracts/macro-integration-tests/tests/ui/storage/pass/no_auto_ttl_extension.rs +19 -0
- package/contracts/macro-integration-tests/tests/ui/storage/pass/ttl_provider_basic.rs +15 -0
- package/contracts/macro-integration-tests/tests/ui/ttl_configurable/pass/minimal_contract.rs +44 -0
- package/contracts/macro-integration-tests/tests/ui_error.rs +11 -0
- package/contracts/macro-integration-tests/tests/ui_ownable.rs +11 -0
- package/contracts/macro-integration-tests/tests/ui_storage.rs +11 -0
- package/contracts/macro-integration-tests/tests/ui_ttl_configurable.rs +12 -0
- package/contracts/message-libs/blocked-message-lib/src/lib.rs +17 -17
- package/contracts/message-libs/message-lib-common/src/errors.rs +7 -2
- package/contracts/message-libs/message-lib-common/src/tests/packet_codec_v1/decode_packet_header.rs +64 -0
- package/contracts/message-libs/message-lib-common/src/tests/packet_codec_v1/encode_packet.rs +58 -0
- package/contracts/message-libs/message-lib-common/src/tests/packet_codec_v1/encode_packet_header.rs +138 -0
- package/contracts/message-libs/message-lib-common/src/tests/packet_codec_v1/mod.rs +6 -0
- package/contracts/message-libs/message-lib-common/src/tests/packet_codec_v1/payload.rs +30 -0
- package/contracts/message-libs/message-lib-common/src/tests/packet_codec_v1/payload_hash.rs +15 -0
- package/contracts/message-libs/message-lib-common/src/tests/packet_codec_v1/test_helper.rs +39 -0
- package/contracts/message-libs/message-lib-common/src/tests/worker_options/append_dvn_option.rs +57 -0
- package/contracts/message-libs/message-lib-common/src/tests/worker_options/append_lz_receive_option.rs +49 -0
- package/contracts/message-libs/message-lib-common/src/tests/worker_options/append_native_drop_option.rs +73 -0
- package/contracts/message-libs/message-lib-common/src/tests/worker_options/convert_legacy_options.rs +280 -0
- package/contracts/message-libs/message-lib-common/src/tests/worker_options/extract_type_3_options.rs +126 -0
- package/contracts/message-libs/message-lib-common/src/tests/worker_options/left_pad_to_bytes32.rs +48 -0
- package/contracts/message-libs/message-lib-common/src/tests/worker_options/mod.rs +7 -0
- package/contracts/message-libs/message-lib-common/src/tests/worker_options/split_worker_options.rs +139 -0
- package/contracts/message-libs/message-lib-common/src/worker_options.rs +31 -1
- package/contracts/message-libs/simple-message-lib/src/simple_message_lib.rs +7 -9
- package/contracts/message-libs/treasury/src/errors.rs +2 -3
- package/contracts/message-libs/treasury/src/events.rs +1 -1
- package/contracts/message-libs/treasury/src/interfaces/zro_fee_lib.rs +2 -2
- package/contracts/message-libs/treasury/src/lib.rs +3 -3
- package/contracts/message-libs/treasury/src/storage.rs +3 -1
- package/contracts/message-libs/treasury/src/tests/treasury_tests.rs +1 -1
- package/contracts/message-libs/treasury/src/treasury.rs +23 -26
- package/contracts/message-libs/uln-302/Cargo.toml +1 -1
- package/contracts/message-libs/uln-302/src/errors.rs +0 -5
- package/contracts/message-libs/uln-302/src/events.rs +5 -6
- package/contracts/message-libs/uln-302/src/receive_uln.rs +37 -56
- package/contracts/message-libs/uln-302/src/send_uln.rs +112 -138
- package/contracts/message-libs/uln-302/src/storage.rs +5 -5
- package/contracts/message-libs/uln-302/src/tests/receive_uln302/effective_receive_uln_config.rs +5 -7
- package/contracts/message-libs/uln-302/src/tests/receive_uln302/set_default_receive_uln_configs.rs +3 -3
- package/contracts/message-libs/uln-302/src/tests/send_uln302/effective_send_uln_config.rs +6 -9
- package/contracts/message-libs/uln-302/src/tests/send_uln302/set_default_executor_configs.rs +2 -2
- package/contracts/message-libs/uln-302/src/tests/send_uln302/set_default_send_uln_configs.rs +3 -3
- package/contracts/message-libs/uln-302/src/tests/setup.rs +9 -0
- package/contracts/message-libs/uln-302/src/tests/testing_utils.rs +5 -0
- package/contracts/message-libs/uln-302/src/tests/uln302/get_app_receive_uln_config.rs +1 -2
- package/contracts/message-libs/uln-302/src/tests/uln302/get_app_send_uln_config.rs +1 -2
- package/contracts/message-libs/uln-302/src/tests/uln302/set_config.rs +37 -55
- package/contracts/message-libs/uln-302/src/uln302.rs +10 -25
- package/contracts/oapps/counter/Cargo.toml +14 -1
- package/contracts/oapps/counter/integration_tests/mod.rs +4 -1
- package/contracts/oapps/counter/integration_tests/setup_sml.rs +169 -0
- package/contracts/oapps/counter/integration_tests/setup_uln.rs +997 -0
- package/contracts/oapps/counter/integration_tests/signing.rs +62 -0
- package/contracts/oapps/counter/integration_tests/test_with_sml.rs +24 -55
- package/contracts/oapps/counter/integration_tests/test_with_uln.rs +314 -0
- package/contracts/oapps/counter/integration_tests/utils.rs +196 -53
- package/contracts/oapps/counter/src/counter.rs +67 -44
- package/contracts/oapps/counter/src/tests/mod.rs +0 -13
- package/contracts/oapps/counter/src/tests/test_counter.rs +5 -7
- package/contracts/oapps/oapp/src/errors.rs +5 -1
- package/contracts/oapps/oapp/src/macro_tests/test_macros.rs +318 -221
- package/contracts/oapps/oapp/src/oapp_core.rs +36 -21
- package/contracts/oapps/oapp/src/oapp_options_type3.rs +48 -12
- package/contracts/oapps/oapp/src/oapp_receiver.rs +106 -41
- package/contracts/oapps/oapp/src/oapp_sender.rs +26 -34
- package/contracts/oapps/oapp/src/tests/test_oapp_core.rs +9 -9
- package/contracts/oapps/oapp/src/tests/test_oapp_options_type3.rs +25 -18
- package/contracts/oapps/oapp/src/tests/test_oapp_receiver.rs +7 -8
- package/contracts/oapps/oapp/src/tests/test_oapp_sender.rs +14 -16
- package/contracts/oapps/oapp-macros/src/generators.rs +128 -0
- package/contracts/oapps/oapp-macros/src/lib.rs +211 -0
- package/contracts/oapps/oft/integration-tests/setup.rs +34 -9
- package/contracts/oapps/oft/integration-tests/utils.rs +1 -1
- package/contracts/oapps/oft/src/errors.rs +6 -1
- package/contracts/oapps/oft/src/extensions/oft_fee.rs +13 -13
- package/contracts/oapps/oft/src/extensions/pausable.rs +5 -5
- package/contracts/oapps/oft/src/extensions/rate_limiter.rs +23 -23
- package/contracts/oapps/oft/src/lib.rs +4 -2
- package/contracts/oapps/oft/src/oft.rs +31 -71
- package/contracts/oapps/oft/src/oft_impl.rs +201 -0
- package/contracts/oapps/oft/src/oft_types/lock_unlock.rs +2 -4
- package/contracts/oapps/oft/src/oft_types/mint_burn.rs +1 -4
- package/contracts/oapps/oft/src/storage.rs +2 -0
- package/contracts/oapps/oft/src/tests/extensions/setup.rs +60 -31
- package/contracts/oapps/oft/src/tests/extensions/test_oft_fee.rs +5 -3
- package/contracts/oapps/oft/src/tests/extensions/test_pausable.rs +5 -3
- package/contracts/oapps/oft/src/tests/extensions/test_rate_limiter.rs +6 -4
- package/contracts/oapps/oft/src/tests/test_decimals.rs +2 -2
- package/contracts/oapps/oft/src/tests/test_oft_msg_codec.rs +1 -2
- package/contracts/oapps/oft/src/tests/test_send.rs +4 -4
- package/contracts/oapps/oft/src/tests/test_utils.rs +122 -81
- package/contracts/oapps/oft/src/types.rs +20 -0
- package/contracts/oapps/oft-std/Cargo.toml +6 -0
- package/contracts/oapps/oft-std/integration-tests/extensions/mod.rs +3 -0
- package/contracts/oapps/oft-std/integration-tests/extensions/test_oft_fee.rs +157 -0
- package/contracts/oapps/oft-std/integration-tests/extensions/test_pausable.rs +162 -0
- package/contracts/oapps/oft-std/integration-tests/extensions/test_rate_limiter.rs +186 -0
- package/contracts/oapps/oft-std/integration-tests/mod.rs +3 -0
- package/contracts/oapps/{counter/integration_tests → oft-std/integration-tests}/setup.rs +76 -30
- package/contracts/oapps/oft-std/integration-tests/utils.rs +427 -0
- package/contracts/oapps/oft-std/src/lib.rs +12 -1
- package/contracts/oapps/oft-std/src/oft.rs +141 -26
- package/contracts/upgrader/Cargo.toml +19 -0
- package/contracts/upgrader/src/lib.rs +96 -0
- package/contracts/upgrader/src/tests/mod.rs +1 -0
- package/contracts/upgrader/src/tests/test_data/test_upgradeable_contract1.wasm +0 -0
- package/contracts/upgrader/src/tests/test_data/test_upgradeable_contract2.wasm +0 -0
- package/contracts/upgrader/src/tests/test_upgrader.rs +120 -0
- package/contracts/utils/src/auth.rs +44 -0
- package/contracts/utils/src/errors.rs +32 -5
- package/contracts/utils/src/lib.rs +5 -1
- package/contracts/utils/src/multisig.rs +211 -0
- package/contracts/utils/src/ownable.rs +50 -60
- package/contracts/utils/src/tests/buffer_reader.rs +6 -6
- package/contracts/utils/src/tests/buffer_writer.rs +6 -6
- package/contracts/utils/src/tests/bytes_ext.rs +2 -4
- package/contracts/utils/src/tests/mod.rs +4 -1
- package/contracts/utils/src/tests/multisig.rs +731 -0
- package/contracts/utils/src/tests/option_ext.rs +18 -0
- package/contracts/utils/src/tests/ownable.rs +22 -70
- package/contracts/utils/src/tests/ttl_configurable.rs +607 -0
- package/contracts/utils/src/tests/upgradeable.rs +290 -0
- package/contracts/utils/src/ttl_configurable.rs +153 -0
- package/contracts/utils/src/ttl_extendable.rs +27 -0
- package/contracts/utils/src/upgradeable.rs +56 -0
- package/contracts/workers/dvn/Cargo.toml +2 -2
- package/contracts/workers/dvn/src/auth.rs +24 -35
- package/contracts/workers/dvn/src/dvn.rs +23 -14
- package/contracts/workers/dvn/src/errors.rs +1 -7
- package/contracts/workers/dvn/src/events.rs +1 -14
- package/contracts/workers/dvn/src/interfaces/dvn.rs +2 -2
- package/contracts/workers/dvn/src/interfaces/mod.rs +0 -2
- package/contracts/workers/dvn/src/storage.rs +3 -13
- package/contracts/workers/dvn/src/tests/auth.rs +4 -4
- package/contracts/workers/dvn/src/tests/dvn.rs +1 -2
- package/contracts/workers/dvn/src/tests/multisig/set_signer.rs +7 -8
- package/contracts/workers/dvn/src/tests/multisig/set_threshold.rs +11 -8
- package/contracts/workers/dvn/src/tests/multisig/verify_signatures.rs +11 -12
- package/contracts/workers/dvn/src/tests/setup.rs +5 -5
- package/contracts/workers/dvn-fee-lib/Cargo.toml +0 -1
- package/contracts/workers/dvn-fee-lib/src/dvn_fee_lib.rs +45 -16
- package/contracts/workers/dvn-fee-lib/src/errors.rs +3 -2
- package/contracts/workers/dvn-fee-lib/src/lib.rs +5 -11
- package/contracts/workers/dvn-fee-lib/src/tests/dvn_fee_lib.rs +30 -16
- package/contracts/workers/executor/src/auth.rs +80 -16
- package/contracts/workers/executor/src/executor.rs +17 -29
- package/contracts/workers/executor/src/storage.rs +2 -9
- package/contracts/workers/executor-fee-lib/Cargo.toml +1 -1
- package/contracts/workers/executor-fee-lib/src/errors.rs +9 -7
- package/contracts/workers/executor-fee-lib/src/executor_fee_lib.rs +153 -121
- package/contracts/workers/executor-helper/Cargo.toml +1 -6
- package/contracts/workers/executor-helper/src/executor_helper.rs +53 -73
- package/contracts/workers/executor-helper/src/lib.rs +1 -7
- package/contracts/workers/price-feed/Cargo.toml +1 -2
- package/contracts/workers/price-feed/src/errors.rs +3 -2
- package/contracts/workers/price-feed/src/lib.rs +5 -6
- package/contracts/workers/price-feed/src/price_feed.rs +42 -23
- package/contracts/workers/worker/Cargo.toml +4 -0
- package/contracts/workers/worker/src/errors.rs +4 -0
- package/contracts/workers/worker/src/interfaces/price_feed.rs +3 -3
- package/contracts/workers/worker/src/lib.rs +2 -2
- package/contracts/workers/worker/src/tests/mod.rs +4 -0
- package/contracts/workers/worker/src/tests/setup.rs +147 -0
- package/contracts/workers/worker/src/tests/worker.rs +502 -0
- package/contracts/workers/worker/src/worker.rs +28 -30
- package/package.json +8 -5
- package/sdk/.turbo/turbo-build.log +1 -0
- package/sdk/.turbo/turbo-test.log +1009 -0
- package/sdk/dist/generated/bml.d.ts +104 -37
- package/sdk/dist/generated/bml.js +83 -42
- package/sdk/dist/generated/counter.d.ts +334 -175
- package/sdk/dist/generated/counter.js +109 -63
- package/sdk/dist/generated/dvn.d.ts +1985 -0
- package/sdk/dist/generated/dvn.js +326 -0
- package/sdk/dist/generated/dvn_fee_lib.d.ts +690 -0
- package/sdk/dist/generated/dvn_fee_lib.js +163 -0
- package/sdk/dist/generated/endpoint.d.ts +155 -46
- package/sdk/dist/generated/endpoint.js +93 -50
- package/sdk/dist/generated/executor.d.ts +1841 -0
- package/sdk/dist/generated/executor.js +312 -0
- package/sdk/dist/generated/executor_fee_lib.d.ts +1083 -0
- package/sdk/dist/generated/executor_fee_lib.js +255 -0
- package/sdk/dist/generated/executor_helper.d.ts +981 -0
- package/sdk/dist/generated/executor_helper.js +236 -0
- package/sdk/dist/generated/oft_std.d.ts +1722 -0
- package/sdk/dist/generated/oft_std.js +316 -0
- package/sdk/dist/generated/price_feed.d.ts +1077 -0
- package/sdk/dist/generated/price_feed.js +210 -0
- package/sdk/dist/generated/sml.d.ts +171 -56
- package/sdk/dist/generated/sml.js +111 -62
- package/sdk/dist/generated/treasury.d.ts +896 -0
- package/sdk/dist/generated/treasury.js +219 -0
- package/sdk/dist/generated/uln302.d.ts +175 -75
- package/sdk/dist/generated/uln302.js +126 -82
- package/sdk/dist/generated/upgrader.d.ts +70 -0
- package/sdk/dist/generated/upgrader.js +19 -0
- package/sdk/dist/index.d.ts +10 -0
- package/sdk/dist/index.js +14 -0
- package/sdk/dist/wasm/blocked-message-lib.d.ts +1 -0
- package/sdk/dist/wasm/blocked-message-lib.js +2 -0
- package/sdk/dist/wasm/counter.d.ts +1 -0
- package/sdk/dist/wasm/counter.js +2 -0
- package/sdk/dist/wasm/dvn-fee-lib.d.ts +1 -0
- package/sdk/dist/wasm/dvn-fee-lib.js +2 -0
- package/sdk/dist/wasm/dvn.d.ts +1 -0
- package/sdk/dist/wasm/dvn.js +2 -0
- package/sdk/dist/wasm/endpoint-v2.d.ts +1 -0
- package/sdk/dist/wasm/endpoint-v2.js +2 -0
- package/sdk/dist/wasm/executor-fee-lib.d.ts +1 -0
- package/sdk/dist/wasm/executor-fee-lib.js +2 -0
- package/sdk/dist/wasm/executor-helper.d.ts +1 -0
- package/sdk/dist/wasm/executor-helper.js +2 -0
- package/sdk/dist/wasm/executor.d.ts +1 -0
- package/sdk/dist/wasm/executor.js +2 -0
- package/sdk/dist/wasm/layerzero-views.d.ts +1 -0
- package/sdk/dist/wasm/layerzero-views.js +2 -0
- package/sdk/dist/wasm/oft-std.d.ts +1 -0
- package/sdk/dist/wasm/oft-std.js +2 -0
- package/sdk/dist/wasm/price-feed.d.ts +1 -0
- package/sdk/dist/wasm/price-feed.js +2 -0
- package/sdk/dist/wasm/simple-message-lib.d.ts +1 -0
- package/sdk/dist/wasm/simple-message-lib.js +2 -0
- package/sdk/dist/wasm/treasury.d.ts +1 -0
- package/sdk/dist/wasm/treasury.js +2 -0
- package/sdk/dist/wasm/uln302.d.ts +1 -0
- package/sdk/dist/wasm/uln302.js +2 -0
- package/sdk/dist/wasm/upgrader.d.ts +1 -0
- package/sdk/dist/wasm/upgrader.js +2 -0
- package/sdk/dist/wasm.d.ts +15 -0
- package/sdk/dist/wasm.js +15 -0
- package/sdk/package.json +7 -4
- package/sdk/src/index.ts +17 -0
- package/sdk/test/counter-sml.test.ts +376 -0
- package/sdk/test/counter-uln.test.ts +493 -0
- package/sdk/test/{oft.test.ts → oft-sml.test.ts} +187 -323
- package/sdk/test/suites/constants.ts +22 -2
- package/sdk/test/suites/dummyContractClient.ts +169 -0
- package/sdk/test/suites/globalSetup.ts +450 -0
- package/sdk/test/suites/localnet.ts +23 -6
- package/sdk/test/upgrader.test.ts +300 -0
- package/sdk/test/utils.ts +558 -85
- package/sdk/vitest.config.ts +21 -0
- package/tools/ts-bindings-gen/src/main.rs +12 -1
- package/turbo.json +2 -0
- package/contracts/common-macros/src/contract_impl.rs +0 -47
- package/contracts/common-macros/src/ownable.rs +0 -59
- package/contracts/common-macros/src/tests/contract_impl.rs +0 -381
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__ownable__snapshot_generated_ownable_code.snap +0 -32
- package/contracts/endpoint-v2/src/tests/messaging_channel/clear.rs +0 -316
- package/contracts/endpoint-v2/src/tests/messaging_channel/internal.rs +0 -388
- package/contracts/message-libs/message-lib-common/src/tests/packet_codec_v1.rs +0 -162
- package/contracts/message-libs/message-lib-common/src/tests/worker_options.rs +0 -319
- package/contracts/oapp-macros/src/lib.rs +0 -154
- package/contracts/oapp-macros/src/oapp_core.rs +0 -40
- package/contracts/oapp-macros/src/oapp_full.rs +0 -21
- package/contracts/oapp-macros/src/oapp_options_type3.rs +0 -31
- package/contracts/oapp-macros/src/oapp_receiver.rs +0 -48
- package/contracts/oapp-macros/src/oapp_sender.rs +0 -21
- package/contracts/oapp-macros/src/util.rs +0 -107
- package/contracts/oapps/oft/src/constants.rs +0 -5
- package/contracts/oapps/oft/src/default_oft_impl.rs +0 -146
- package/contracts/utils/src/tests/ttl.rs +0 -421
- package/contracts/utils/src/ttl.rs +0 -123
- package/contracts/workers/dvn/src/interfaces/multisig.rs +0 -56
- package/contracts/workers/dvn/src/multisig.rs +0 -153
- package/sdk/test/index.test.ts +0 -376
- /package/contracts/{oapp-macros → oapps/oapp-macros}/Cargo.toml +0 -0
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,11 +1,14 @@
|
|
|
1
|
+
WARN Issue while reading "/home/runner/work/monorepo-internal/monorepo-internal/.npmrc". Failed to replace env in config: ${NPM_TOKEN}
|
|
1
2
|
|
|
2
3
|
> @layerzerolabs/protocol-stellar-v2@0.0.1 build /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar
|
|
3
|
-
> pnpm build:contracts && pnpm generate:sdk
|
|
4
|
+
> pnpm build:contracts:sandbox && pnpm generate:sdk && pnpm build:wasm
|
|
4
5
|
|
|
6
|
+
WARN Issue while reading "/home/runner/work/monorepo-internal/monorepo-internal/.npmrc". Failed to replace env in config: ${NPM_TOKEN}
|
|
5
7
|
|
|
6
|
-
> @layerzerolabs/protocol-stellar-v2@0.0.1 build:contracts /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar
|
|
7
|
-
> pnpm exec lz-tool stellar contract build
|
|
8
|
+
> @layerzerolabs/protocol-stellar-v2@0.0.1 build:contracts:sandbox /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar
|
|
9
|
+
> pnpm exec lz-tool stellar contract build --features sandbox
|
|
8
10
|
|
|
11
|
+
WARN Issue while reading "/home/runner/work/monorepo-internal/monorepo-internal/.npmrc". Failed to replace env in config: ${NPM_TOKEN}
|
|
9
12
|
📦 Using 4 default cache volume(s) for stellar
|
|
10
13
|
✅ stellar-23.1.4 (Stellar CLI with UID/GID support for permission fixes)
|
|
11
14
|
🔧 stellar version: 23.1.4
|
|
@@ -28,43 +31,38 @@ f83e34e44849: Pulling fs layer
|
|
|
28
31
|
8bc2eeec2bb3: Pulling fs layer
|
|
29
32
|
2965c99ac5df: Pulling fs layer
|
|
30
33
|
66f4137c2c7c: Pulling fs layer
|
|
34
|
+
889cdda75b95: Waiting
|
|
31
35
|
1b86cc28e881: Waiting
|
|
32
|
-
|
|
36
|
+
2c1ce468d9f3: Waiting
|
|
33
37
|
f83e34e44849: Waiting
|
|
34
|
-
8a4f031cd7ce: Waiting
|
|
35
|
-
8bc2eeec2bb3: Waiting
|
|
36
38
|
2ff845d4f468: Waiting
|
|
37
|
-
|
|
39
|
+
8a4f031cd7ce: Waiting
|
|
40
|
+
a7d3f750d5ec: Waiting
|
|
38
41
|
2965c99ac5df: Waiting
|
|
39
|
-
889cdda75b95: Waiting
|
|
40
42
|
66f4137c2c7c: Waiting
|
|
41
43
|
f6bd9104d248: Verifying Checksum
|
|
42
44
|
f6bd9104d248: Download complete
|
|
43
|
-
f6bd9104d248: Pull complete
|
|
44
45
|
889cdda75b95: Verifying Checksum
|
|
45
46
|
889cdda75b95: Download complete
|
|
47
|
+
f6bd9104d248: Pull complete
|
|
46
48
|
a7d3f750d5ec: Verifying Checksum
|
|
47
49
|
a7d3f750d5ec: Download complete
|
|
50
|
+
8a4f031cd7ce: Verifying Checksum
|
|
51
|
+
8a4f031cd7ce: Download complete
|
|
48
52
|
e9886d99af76: Verifying Checksum
|
|
49
53
|
e9886d99af76: Download complete
|
|
54
|
+
2c1ce468d9f3: Download complete
|
|
50
55
|
4617420e017b: Verifying Checksum
|
|
51
56
|
4617420e017b: Download complete
|
|
52
|
-
2c1ce468d9f3: Verifying Checksum
|
|
53
|
-
2c1ce468d9f3: Download complete
|
|
54
|
-
8a4f031cd7ce: Verifying Checksum
|
|
55
|
-
8a4f031cd7ce: Download complete
|
|
56
|
-
2ff845d4f468: Verifying Checksum
|
|
57
57
|
2ff845d4f468: Download complete
|
|
58
|
+
8bc2eeec2bb3: Download complete
|
|
58
59
|
f83e34e44849: Verifying Checksum
|
|
59
60
|
f83e34e44849: Download complete
|
|
60
|
-
1b86cc28e881: Verifying Checksum
|
|
61
|
-
1b86cc28e881: Download complete
|
|
62
|
-
8bc2eeec2bb3: Verifying Checksum
|
|
63
|
-
8bc2eeec2bb3: Download complete
|
|
64
61
|
2965c99ac5df: Verifying Checksum
|
|
65
62
|
2965c99ac5df: Download complete
|
|
66
|
-
66f4137c2c7c: Verifying Checksum
|
|
67
63
|
66f4137c2c7c: Download complete
|
|
64
|
+
1b86cc28e881: Verifying Checksum
|
|
65
|
+
1b86cc28e881: Download complete
|
|
68
66
|
4617420e017b: Pull complete
|
|
69
67
|
e9886d99af76: Pull complete
|
|
70
68
|
889cdda75b95: Pull complete
|
|
@@ -86,207 +84,207 @@ Status: Downloaded newer image for 438003944538.dkr.ecr.us-east-1.amazonaws.com/
|
|
|
86
84
|
🔒 Acquired lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup
|
|
87
85
|
🔒 Acquired lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-config
|
|
88
86
|
🔒 Acquired lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
|
|
89
|
-
$ 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_23.1.4_patch_6 stellar contract build
|
|
90
|
-
ℹ️ 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
|
|
87
|
+
$ 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_23.1.4_patch_6 stellar contract build --features sandbox
|
|
88
|
+
ℹ️ 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 --features=sandbox
|
|
91
89
|
Updating crates.io index
|
|
92
90
|
Updating git repository `https://github.com/OpenZeppelin/stellar-contracts.git`
|
|
93
91
|
Downloading crates ...
|
|
94
|
-
Downloaded ark-ff-asm v0.4.2
|
|
95
92
|
Downloaded ark-ff-macros v0.4.2
|
|
93
|
+
Downloaded rustc_version v0.4.1
|
|
96
94
|
Downloaded ark-serialize v0.4.2
|
|
97
|
-
Downloaded
|
|
95
|
+
Downloaded ark-ff-asm v0.4.2
|
|
96
|
+
Downloaded ark-poly v0.4.2
|
|
97
|
+
Downloaded darling_macro v0.20.11
|
|
98
|
+
Downloaded ark-ff v0.4.2
|
|
99
|
+
Downloaded hmac v0.12.1
|
|
100
|
+
Downloaded base64 v0.22.1
|
|
101
|
+
Downloaded hashbrown v0.13.2
|
|
102
|
+
Downloaded semver v1.0.27
|
|
103
|
+
Downloaded static_assertions v1.1.0
|
|
98
104
|
Downloaded serde_core v1.0.228
|
|
99
|
-
Downloaded
|
|
105
|
+
Downloaded thiserror-impl v1.0.69
|
|
106
|
+
Downloaded zeroize v1.8.2
|
|
107
|
+
Downloaded wasmi_core v0.13.0
|
|
108
|
+
Downloaded soroban-wasmi v0.31.1-soroban.20.0.1
|
|
109
|
+
Downloaded zeroize_derive v1.4.2
|
|
110
|
+
Downloaded visibility v0.1.1
|
|
111
|
+
Downloaded serde_with_macros v3.15.1
|
|
112
|
+
Downloaded soroban-env-macros v23.0.1
|
|
113
|
+
Downloaded stellar-strkey v0.0.13
|
|
114
|
+
Downloaded wasmi_arena v0.4.1
|
|
115
|
+
Downloaded time-macros v0.2.24
|
|
116
|
+
Downloaded soroban-sdk-macros v23.4.0
|
|
117
|
+
Downloaded syn v2.0.108
|
|
118
|
+
Downloaded syn v1.0.109
|
|
119
|
+
Downloaded soroban-spec-rust v23.4.0
|
|
120
|
+
Downloaded typenum v1.19.0
|
|
100
121
|
Downloaded soroban-env-guest v23.0.1
|
|
101
122
|
Downloaded unicode-ident v1.0.22
|
|
102
|
-
Downloaded
|
|
123
|
+
Downloaded group v0.13.0
|
|
103
124
|
Downloaded wasmparser-nostd v0.100.2
|
|
104
125
|
Downloaded wasmparser v0.116.1
|
|
105
|
-
Downloaded
|
|
106
|
-
Downloaded
|
|
107
|
-
Downloaded
|
|
108
|
-
Downloaded
|
|
109
|
-
Downloaded
|
|
110
|
-
Downloaded
|
|
111
|
-
Downloaded rand v0.8.5
|
|
112
|
-
Downloaded zerocopy v0.8.27
|
|
126
|
+
Downloaded time v0.3.44
|
|
127
|
+
Downloaded num-conv v0.1.0
|
|
128
|
+
Downloaded iana-time-zone v0.1.64
|
|
129
|
+
Downloaded ethnum v1.5.2
|
|
130
|
+
Downloaded escape-bytes v0.1.1
|
|
131
|
+
Downloaded elliptic-curve v0.13.8
|
|
113
132
|
Downloaded sha3 v0.10.8
|
|
114
|
-
Downloaded hashbrown v0.13.2
|
|
115
133
|
Downloaded ident_case v1.0.1
|
|
134
|
+
Downloaded derive_arbitrary v1.3.2
|
|
135
|
+
Downloaded cfg_eval v0.1.2
|
|
136
|
+
Downloaded ed25519 v2.2.3
|
|
137
|
+
Downloaded ecdsa v0.16.9
|
|
138
|
+
Downloaded ref-cast v1.0.25
|
|
139
|
+
Downloaded block-buffer v0.10.4
|
|
140
|
+
Downloaded dyn-clone v1.0.20
|
|
141
|
+
Downloaded darling_macro v0.21.3
|
|
142
|
+
Downloaded hex-literal v0.4.1
|
|
143
|
+
Downloaded rfc6979 v0.4.0
|
|
144
|
+
Downloaded num-derive v0.4.2
|
|
145
|
+
Downloaded ref-cast-impl v1.0.25
|
|
146
|
+
Downloaded macro-string v0.1.4
|
|
147
|
+
Downloaded rand_chacha v0.3.1
|
|
116
148
|
Downloaded quote v1.0.41
|
|
117
|
-
Downloaded
|
|
149
|
+
Downloaded getrandom v0.2.16
|
|
150
|
+
Downloaded proc-macro2 v1.0.103
|
|
118
151
|
Downloaded rand_core v0.6.4
|
|
119
|
-
Downloaded
|
|
120
|
-
Downloaded
|
|
121
|
-
Downloaded
|
|
122
|
-
Downloaded strsim v0.11.1
|
|
123
|
-
Downloaded soroban-spec v23.4.0
|
|
124
|
-
Downloaded dtor v0.1.1
|
|
125
|
-
Downloaded serde_with v3.15.1
|
|
126
|
-
Downloaded serde_json v1.0.145
|
|
127
|
-
Downloaded ark-ec v0.4.2
|
|
128
|
-
Downloaded ark-bls12-381 v0.4.0
|
|
152
|
+
Downloaded rand v0.8.5
|
|
153
|
+
Downloaded num-bigint v0.4.6
|
|
154
|
+
Downloaded zerocopy v0.8.27
|
|
129
155
|
Downloaded libm v0.2.15
|
|
130
156
|
Downloaded itertools v0.14.0
|
|
131
|
-
Downloaded itertools v0.10.5
|
|
132
|
-
Downloaded indexmap v2.12.0
|
|
133
157
|
Downloaded hashbrown v0.16.0
|
|
134
|
-
Downloaded
|
|
135
|
-
Downloaded rfc6979 v0.4.0
|
|
136
|
-
Downloaded libc v0.2.177
|
|
137
|
-
Downloaded stellar-xdr v23.0.0
|
|
138
|
-
Downloaded paste v1.0.15
|
|
139
|
-
Downloaded schemars v1.0.5
|
|
140
|
-
Downloaded num-bigint v0.4.6
|
|
141
|
-
Downloaded soroban-wasmi v0.31.1-soroban.20.0.1
|
|
158
|
+
Downloaded itertools v0.10.5
|
|
142
159
|
Downloaded memchr v2.7.6
|
|
143
160
|
Downloaded k256 v0.13.4
|
|
144
|
-
Downloaded
|
|
145
|
-
Downloaded
|
|
161
|
+
Downloaded chrono v0.4.42
|
|
162
|
+
Downloaded indexmap v2.12.0
|
|
163
|
+
Downloaded ed25519-dalek v2.2.0
|
|
164
|
+
Downloaded curve25519-dalek v4.1.3
|
|
165
|
+
Downloaded der v0.7.10
|
|
166
|
+
Downloaded darling_core v0.21.3
|
|
167
|
+
Downloaded darling_core v0.20.11
|
|
146
168
|
Downloaded prettyplease v0.2.37
|
|
147
169
|
Downloaded p256 v0.13.2
|
|
148
|
-
Downloaded num-traits v0.2.19
|
|
149
170
|
Downloaded indexmap v1.9.3
|
|
150
|
-
Downloaded iana-time-zone v0.1.64
|
|
151
|
-
Downloaded ff v0.13.1
|
|
152
|
-
Downloaded ethnum v1.5.2
|
|
153
|
-
Downloaded ed25519 v2.2.3
|
|
154
|
-
Downloaded der v0.7.10
|
|
155
|
-
Downloaded curve25519-dalek v4.1.3
|
|
156
|
-
Downloaded crypto-bigint v0.5.5
|
|
157
|
-
Downloaded chrono v0.4.42
|
|
158
|
-
Downloaded primeorder v0.13.6
|
|
159
171
|
Downloaded once_cell v1.21.3
|
|
172
|
+
Downloaded num-traits v0.2.19
|
|
173
|
+
Downloaded hashbrown v0.12.3
|
|
174
|
+
Downloaded derivative v2.2.0
|
|
175
|
+
Downloaded darling v0.21.3
|
|
176
|
+
Downloaded const-oid v0.9.6
|
|
177
|
+
Downloaded darling v0.20.11
|
|
178
|
+
Downloaded crypto-common v0.1.6
|
|
179
|
+
Downloaded ark-std v0.4.0
|
|
180
|
+
Downloaded primeorder v0.13.6
|
|
181
|
+
Downloaded ppv-lite86 v0.2.21
|
|
182
|
+
Downloaded pkcs8 v0.10.2
|
|
160
183
|
Downloaded num-integer v0.1.46
|
|
161
|
-
Downloaded
|
|
162
|
-
Downloaded hex-literal v0.4.1
|
|
163
|
-
Downloaded group v0.13.0
|
|
164
|
-
Downloaded generic-array v0.14.9
|
|
165
|
-
Downloaded escape-bytes v0.1.1
|
|
184
|
+
Downloaded dtor v0.1.1
|
|
166
185
|
Downloaded digest v0.10.7
|
|
167
186
|
Downloaded deranged v0.5.5
|
|
187
|
+
Downloaded data-encoding v2.9.0
|
|
188
|
+
Downloaded libc v0.2.177
|
|
168
189
|
Downloaded ctor-proc-macro v0.0.6
|
|
169
|
-
Downloaded
|
|
170
|
-
Downloaded
|
|
171
|
-
Downloaded soroban-ledger-snapshot v23.4.0
|
|
172
|
-
Downloaded soroban-builtin-sdk-macros v23.0.1
|
|
173
|
-
Downloaded ref-cast-impl v1.0.25
|
|
174
|
-
Downloaded ref-cast v1.0.25
|
|
175
|
-
Downloaded rand_chacha v0.3.1
|
|
190
|
+
Downloaded base64ct v1.8.0
|
|
191
|
+
Downloaded autocfg v1.5.0
|
|
176
192
|
Downloaded powerfmt v0.2.0
|
|
177
|
-
Downloaded
|
|
178
|
-
Downloaded
|
|
179
|
-
Downloaded num-conv v0.1.0
|
|
180
|
-
Downloaded keccak v0.1.5
|
|
181
|
-
Downloaded itoa v1.0.15
|
|
193
|
+
Downloaded paste v1.0.15
|
|
194
|
+
Downloaded indexmap-nostd v0.4.0
|
|
182
195
|
Downloaded hex v0.4.3
|
|
183
|
-
Downloaded heck v0.5.0
|
|
184
|
-
Downloaded ed25519-dalek v2.2.0
|
|
185
|
-
Downloaded dtor-proc-macro v0.0.6
|
|
186
|
-
Downloaded derive_arbitrary v1.3.2
|
|
187
|
-
Downloaded darling_macro v0.21.3
|
|
188
|
-
Downloaded darling v0.21.3
|
|
189
196
|
Downloaded ark-serialize-derive v0.4.2
|
|
190
|
-
Downloaded
|
|
191
|
-
Downloaded fnv v1.0.7
|
|
192
|
-
Downloaded either v1.15.0
|
|
197
|
+
Downloaded itoa v1.0.15
|
|
193
198
|
Downloaded curve25519-dalek-derive v0.1.1
|
|
194
|
-
Downloaded ctor v0.5.0
|
|
195
|
-
Downloaded schemars v0.8.22
|
|
196
|
-
Downloaded macro-string v0.1.4
|
|
197
|
-
Downloaded getrandom v0.2.16
|
|
198
|
-
Downloaded ecdsa v0.16.9
|
|
199
|
-
Downloaded darling_macro v0.20.11
|
|
200
|
-
Downloaded darling_core v0.20.11
|
|
201
|
-
Downloaded cfg-if v1.0.4
|
|
202
|
-
Downloaded base64 v0.22.1
|
|
203
|
-
Downloaded typenum v1.19.0
|
|
204
|
-
Downloaded time-macros v0.2.24
|
|
205
|
-
Downloaded thiserror v1.0.69
|
|
206
|
-
Downloaded soroban-spec-rust v23.4.0
|
|
207
|
-
Downloaded soroban-env-macros v23.0.1
|
|
208
|
-
Downloaded soroban-env-common v23.0.1
|
|
209
|
-
Downloaded dyn-clone v1.0.20
|
|
210
|
-
Downloaded downcast-rs v1.2.1
|
|
211
|
-
Downloaded darling_core v0.21.3
|
|
212
199
|
Downloaded crate-git-revision v0.0.6
|
|
213
200
|
Downloaded cpufeatures v0.2.17
|
|
214
|
-
Downloaded base64ct v1.8.0
|
|
215
201
|
Downloaded base16ct v0.2.0
|
|
216
|
-
Downloaded
|
|
217
|
-
Downloaded
|
|
218
|
-
Downloaded
|
|
202
|
+
Downloaded keccak v0.1.5
|
|
203
|
+
Downloaded cfg-if v1.0.4
|
|
204
|
+
Downloaded downcast-rs v1.2.1
|
|
205
|
+
Downloaded bytes-lit v0.0.5
|
|
206
|
+
Downloaded heck v0.5.0
|
|
207
|
+
Downloaded generic-array v0.14.9
|
|
208
|
+
Downloaded fnv v1.0.7
|
|
209
|
+
Downloaded equivalent v1.0.2
|
|
210
|
+
Downloaded ctor v0.5.0
|
|
211
|
+
Downloaded ff v0.13.1
|
|
212
|
+
Downloaded either v1.15.0
|
|
213
|
+
Downloaded dtor-proc-macro v0.0.6
|
|
214
|
+
Downloaded subtle v2.6.1
|
|
215
|
+
Downloaded spin v0.9.8
|
|
219
216
|
Downloaded soroban-env-host v23.0.1
|
|
217
|
+
Downloaded soroban-builtin-sdk-macros v23.0.1
|
|
218
|
+
Downloaded serde_with v3.15.1
|
|
219
|
+
Downloaded serde_json v1.0.145
|
|
220
|
+
Downloaded soroban-sdk v23.4.0
|
|
221
|
+
Downloaded soroban-env-common v23.0.1
|
|
220
222
|
Downloaded smallvec v1.15.1
|
|
221
|
-
Downloaded semver v1.0.27
|
|
222
|
-
Downloaded schemars v0.9.0
|
|
223
|
-
Downloaded equivalent v1.0.2
|
|
224
|
-
Downloaded derivative v2.2.0
|
|
225
|
-
Downloaded data-encoding v2.9.0
|
|
226
|
-
Downloaded wasmi_arena v0.4.1
|
|
227
|
-
Downloaded thiserror-impl v1.0.69
|
|
228
|
-
Downloaded syn v1.0.109
|
|
229
|
-
Downloaded static_assertions v1.1.0
|
|
230
223
|
Downloaded sha2 v0.10.9
|
|
231
|
-
Downloaded const-oid v0.9.6
|
|
232
|
-
Downloaded block-buffer v0.10.4
|
|
233
|
-
Downloaded ark-std v0.4.0
|
|
234
224
|
Downloaded time-core v0.1.6
|
|
235
|
-
Downloaded
|
|
236
|
-
Downloaded
|
|
237
|
-
Downloaded
|
|
238
|
-
Downloaded
|
|
225
|
+
Downloaded thiserror v1.0.69
|
|
226
|
+
Downloaded strsim v0.11.1
|
|
227
|
+
Downloaded spki v0.7.3
|
|
228
|
+
Downloaded soroban-ledger-snapshot v23.4.0
|
|
239
229
|
Downloaded signature v2.2.0
|
|
240
|
-
Downloaded
|
|
230
|
+
Downloaded version_check v0.9.5
|
|
231
|
+
Downloaded soroban-spec v23.4.0
|
|
232
|
+
Downloaded schemars v0.9.0
|
|
241
233
|
Downloaded serde_derive v1.0.228
|
|
242
|
-
Downloaded rustc_version v0.4.1
|
|
243
234
|
Downloaded serde v1.0.228
|
|
244
|
-
Downloaded
|
|
245
|
-
Downloaded
|
|
235
|
+
Downloaded schemars v1.0.5
|
|
236
|
+
Downloaded ryu v1.0.20
|
|
237
|
+
Downloaded schemars v0.8.22
|
|
238
|
+
Downloaded sec1 v0.7.3
|
|
239
|
+
Downloaded ark-bls12-381 v0.4.0
|
|
240
|
+
Downloaded crypto-bigint v0.5.5
|
|
241
|
+
Downloaded ark-ec v0.4.2
|
|
246
242
|
Downloaded arbitrary v1.3.2
|
|
243
|
+
Downloaded ahash v0.8.12
|
|
244
|
+
Downloaded stellar-xdr v23.0.0
|
|
247
245
|
Compiling proc-macro2 v1.0.103
|
|
248
|
-
Compiling unicode-ident v1.0.22
|
|
249
246
|
Compiling quote v1.0.41
|
|
247
|
+
Compiling unicode-ident v1.0.22
|
|
250
248
|
Compiling serde_core v1.0.228
|
|
251
249
|
Compiling serde v1.0.228
|
|
252
250
|
Compiling serde_json v1.0.145
|
|
251
|
+
Compiling itoa v1.0.15
|
|
253
252
|
Compiling memchr v2.7.6
|
|
254
253
|
Compiling ryu v1.0.20
|
|
255
|
-
Compiling
|
|
254
|
+
Compiling ident_case v1.0.1
|
|
256
255
|
Compiling strsim v0.11.1
|
|
257
256
|
Compiling fnv v1.0.7
|
|
258
|
-
Compiling ident_case v1.0.1
|
|
259
257
|
Compiling typenum v1.19.0
|
|
260
258
|
Compiling version_check v0.9.5
|
|
261
259
|
Compiling autocfg v1.5.0
|
|
262
260
|
Compiling schemars v0.8.22
|
|
263
261
|
Compiling dyn-clone v1.0.20
|
|
264
|
-
Compiling cpufeatures v0.2.17
|
|
265
|
-
Compiling data-encoding v2.9.0
|
|
266
262
|
Compiling cfg-if v1.0.4
|
|
267
|
-
Compiling
|
|
268
|
-
Compiling
|
|
263
|
+
Compiling data-encoding v2.9.0
|
|
264
|
+
Compiling cpufeatures v0.2.17
|
|
269
265
|
Compiling escape-bytes v0.1.1
|
|
266
|
+
Compiling ethnum v1.5.2
|
|
270
267
|
Compiling either v1.15.0
|
|
271
|
-
Compiling num-traits v0.2.19
|
|
272
268
|
Compiling semver v1.0.27
|
|
273
|
-
Compiling thiserror v1.0.69
|
|
274
|
-
Compiling equivalent v1.0.2
|
|
275
269
|
Compiling hashbrown v0.16.0
|
|
276
270
|
Compiling prettyplease v0.2.37
|
|
277
|
-
Compiling
|
|
271
|
+
Compiling thiserror v1.0.69
|
|
272
|
+
Compiling equivalent v1.0.2
|
|
273
|
+
Compiling generic-array v0.14.9
|
|
278
274
|
Compiling base64 v0.22.1
|
|
279
|
-
Compiling
|
|
275
|
+
Compiling num-traits v0.2.19
|
|
276
|
+
Compiling itertools v0.10.5
|
|
280
277
|
Compiling heck v0.5.0
|
|
281
278
|
Compiling static_assertions v1.1.0
|
|
282
|
-
Compiling
|
|
279
|
+
Compiling rustc_version v0.4.1
|
|
283
280
|
Compiling itertools v0.14.0
|
|
284
|
-
Compiling
|
|
281
|
+
Compiling indexmap v2.12.0
|
|
282
|
+
Compiling syn v2.0.108
|
|
285
283
|
Compiling num-integer v0.1.46
|
|
286
|
-
Compiling
|
|
284
|
+
Compiling wasmparser v0.116.1
|
|
287
285
|
Compiling block-buffer v0.10.4
|
|
286
|
+
Compiling crypto-common v0.1.6
|
|
288
287
|
Compiling num-bigint v0.4.6
|
|
289
|
-
Compiling syn v2.0.108
|
|
290
288
|
Compiling digest v0.10.7
|
|
291
289
|
Compiling sha2 v0.10.9
|
|
292
290
|
Compiling darling_core v0.21.3
|
|
@@ -294,10 +292,10 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
294
292
|
Compiling macro-string v0.1.4
|
|
295
293
|
Compiling serde_derive v1.0.228
|
|
296
294
|
Compiling cfg_eval v0.1.2
|
|
297
|
-
Compiling thiserror-impl v1.0.69
|
|
298
295
|
Compiling num-derive v0.4.2
|
|
299
|
-
Compiling
|
|
296
|
+
Compiling thiserror-impl v1.0.69
|
|
300
297
|
Compiling visibility v0.1.1
|
|
298
|
+
Compiling bytes-lit v0.0.5
|
|
301
299
|
Compiling common-macros v0.0.1 (/workspace/contracts/protocol/stellar/contracts/common-macros)
|
|
302
300
|
Compiling darling_macro v0.20.11
|
|
303
301
|
Compiling darling_macro v0.21.3
|
|
@@ -314,16 +312,17 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
314
312
|
Compiling soroban-spec v23.4.0
|
|
315
313
|
Compiling soroban-env-macros v23.0.1
|
|
316
314
|
Compiling soroban-spec-rust v23.4.0
|
|
317
|
-
Compiling soroban-env-guest v23.0.1
|
|
318
315
|
Compiling soroban-sdk-macros v23.4.0
|
|
316
|
+
Compiling soroban-env-guest v23.0.1
|
|
319
317
|
Compiling utils v0.0.1 (/workspace/contracts/protocol/stellar/contracts/utils)
|
|
320
318
|
Compiling endpoint-v2 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/endpoint-v2)
|
|
321
|
-
Finished `release` profile [optimized] target(s) in
|
|
319
|
+
Finished `release` profile [optimized] target(s) in 33.23s
|
|
322
320
|
ℹ️ Build Summary:
|
|
323
321
|
Wasm File: target/wasm32v1-none/release/endpoint_v2.wasm
|
|
324
|
-
Wasm Hash:
|
|
325
|
-
Exported Functions:
|
|
322
|
+
Wasm Hash: b86e25337989703e3702f05c14078ed60d3d82510f8a9335204aef32a849c9cb
|
|
323
|
+
Exported Functions: 57 found
|
|
326
324
|
• __constructor
|
|
325
|
+
• authorizer
|
|
327
326
|
• burn
|
|
328
327
|
• clear
|
|
329
328
|
• clear_compose
|
|
@@ -380,23 +379,105 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
380
379
|
• verify
|
|
381
380
|
• zro
|
|
382
381
|
✅ Build Complete
|
|
382
|
+
ℹ️ 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 --features=sandbox
|
|
383
|
+
Compiling escape-bytes v0.1.1
|
|
384
|
+
Compiling ethnum v1.5.2
|
|
385
|
+
Compiling static_assertions v1.1.0
|
|
386
|
+
Compiling num-traits v0.2.19
|
|
387
|
+
Compiling cfg-if v1.0.4
|
|
388
|
+
Compiling stellar-xdr v23.0.0
|
|
389
|
+
Compiling soroban-env-common v23.0.1
|
|
390
|
+
Compiling soroban-env-guest v23.0.1
|
|
391
|
+
Compiling soroban-sdk v23.4.0
|
|
392
|
+
Compiling utils v0.0.1 (/workspace/contracts/protocol/stellar/contracts/utils)
|
|
393
|
+
Compiling endpoint-v2 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/endpoint-v2)
|
|
394
|
+
Compiling message-lib-common v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/message-lib-common)
|
|
395
|
+
Compiling uln302 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/uln-302)
|
|
396
|
+
Compiling layerzero-views v0.0.1 (/workspace/contracts/protocol/stellar/contracts/layerzero-views)
|
|
397
|
+
Finished `release` profile [optimized] target(s) in 8.08s
|
|
398
|
+
ℹ️ Build Summary:
|
|
399
|
+
Wasm File: target/wasm32v1-none/release/layerzero_views.wasm
|
|
400
|
+
Wasm Hash: 6ec38542b4a5517275b53185085722098e1965a9bbdbd6497d6cca444634f819
|
|
401
|
+
Exported Functions: 19 found
|
|
402
|
+
• __constructor
|
|
403
|
+
• authorizer
|
|
404
|
+
• endpoint
|
|
405
|
+
• executable
|
|
406
|
+
• extend_instance_ttl
|
|
407
|
+
• freeze_ttl_configs
|
|
408
|
+
• initializable
|
|
409
|
+
• is_ttl_configs_frozen
|
|
410
|
+
• local_eid
|
|
411
|
+
• migrate
|
|
412
|
+
• owner
|
|
413
|
+
• renounce_ownership
|
|
414
|
+
• set_ttl_configs
|
|
415
|
+
• transfer_ownership
|
|
416
|
+
• ttl_configs
|
|
417
|
+
• uln302
|
|
418
|
+
• uln_verifiable
|
|
419
|
+
• upgrade
|
|
420
|
+
• verifiable
|
|
421
|
+
✅ Build Complete
|
|
422
|
+
ℹ️ 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
|
|
423
|
+
Compiling message-lib-common v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/message-lib-common)
|
|
424
|
+
Compiling uln302 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/uln-302)
|
|
425
|
+
Finished `release` profile [optimized] target(s) in 1.09s
|
|
426
|
+
ℹ️ Build Summary:
|
|
427
|
+
Wasm File: target/wasm32v1-none/release/uln302.wasm
|
|
428
|
+
Wasm Hash: dd27c711128d08f43737043bad6cd149fea952c166c50878a023906eed6984e4
|
|
429
|
+
Exported Functions: 35 found
|
|
430
|
+
• __constructor
|
|
431
|
+
• authorizer
|
|
432
|
+
• commit_verification
|
|
433
|
+
• confirmations
|
|
434
|
+
• default_executor_config
|
|
435
|
+
• default_receive_uln_config
|
|
436
|
+
• default_send_uln_config
|
|
437
|
+
• effective_executor_config
|
|
438
|
+
• effective_receive_uln_config
|
|
439
|
+
• effective_send_uln_config
|
|
440
|
+
• endpoint
|
|
441
|
+
• extend_instance_ttl
|
|
442
|
+
• freeze_ttl_configs
|
|
443
|
+
• get_config
|
|
444
|
+
• is_supported_eid
|
|
445
|
+
• is_ttl_configs_frozen
|
|
446
|
+
• message_lib_type
|
|
447
|
+
• oapp_executor_config
|
|
448
|
+
• oapp_receive_uln_config
|
|
449
|
+
• oapp_send_uln_config
|
|
450
|
+
• owner
|
|
451
|
+
• quote
|
|
452
|
+
• renounce_ownership
|
|
453
|
+
• send
|
|
454
|
+
• set_config
|
|
455
|
+
• set_default_executor_configs
|
|
456
|
+
• set_default_receive_uln_configs
|
|
457
|
+
• set_default_send_uln_configs
|
|
458
|
+
• set_ttl_configs
|
|
459
|
+
• transfer_ownership
|
|
460
|
+
• treasury
|
|
461
|
+
• ttl_configs
|
|
462
|
+
• verifiable
|
|
463
|
+
• verify
|
|
464
|
+
• version
|
|
465
|
+
✅ Build Complete
|
|
466
|
+
ℹ️ 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
|
|
467
|
+
Compiling upgrader v0.0.1 (/workspace/contracts/protocol/stellar/contracts/upgrader)
|
|
468
|
+
Finished `release` profile [optimized] target(s) in 0.23s
|
|
469
|
+
ℹ️ Build Summary:
|
|
470
|
+
Wasm File: target/wasm32v1-none/release/upgrader.wasm
|
|
471
|
+
Wasm Hash: 250cba854264d9d437c960e9f8ed838dbf39876947b4fb84c5a209a39b794da6
|
|
472
|
+
Exported Functions: 1 found
|
|
473
|
+
• upgrade_and_migrate
|
|
474
|
+
✅ Build Complete
|
|
383
475
|
ℹ️ 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
|
|
384
|
-
Compiling escape-bytes v0.1.1
|
|
385
|
-
Compiling ethnum v1.5.2
|
|
386
|
-
Compiling static_assertions v1.1.0
|
|
387
|
-
Compiling num-traits v0.2.19
|
|
388
|
-
Compiling cfg-if v1.0.4
|
|
389
|
-
Compiling stellar-xdr v23.0.0
|
|
390
|
-
Compiling soroban-env-common v23.0.1
|
|
391
|
-
Compiling soroban-env-guest v23.0.1
|
|
392
|
-
Compiling soroban-sdk v23.4.0
|
|
393
|
-
Compiling utils v0.0.1 (/workspace/contracts/protocol/stellar/contracts/utils)
|
|
394
|
-
Compiling endpoint-v2 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/endpoint-v2)
|
|
395
476
|
Compiling blocked-message-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/blocked-message-lib)
|
|
396
|
-
Finished `release` profile [optimized] target(s) in
|
|
477
|
+
Finished `release` profile [optimized] target(s) in 0.29s
|
|
397
478
|
ℹ️ Build Summary:
|
|
398
479
|
Wasm File: target/wasm32v1-none/release/blocked_message_lib.wasm
|
|
399
|
-
Wasm Hash:
|
|
480
|
+
Wasm Hash: b32e570b435389080032458c4d985fe3ad064bcd5b08113b3c7a1e52e09c21b6
|
|
400
481
|
Exported Functions: 7 found
|
|
401
482
|
• get_config
|
|
402
483
|
• is_supported_eid
|
|
@@ -407,14 +488,14 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
407
488
|
• version
|
|
408
489
|
✅ Build Complete
|
|
409
490
|
ℹ️ 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
|
|
410
|
-
Compiling message-lib-common v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/message-lib-common)
|
|
411
491
|
Compiling simple-message-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/simple-message-lib)
|
|
412
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
492
|
+
Finished `release` profile [optimized] target(s) in 0.47s
|
|
413
493
|
ℹ️ Build Summary:
|
|
414
494
|
Wasm File: target/wasm32v1-none/release/simple_message_lib.wasm
|
|
415
|
-
Wasm Hash:
|
|
416
|
-
Exported Functions:
|
|
495
|
+
Wasm Hash: fc3c7cd3f0249916cff4c361a1930507c61b1de4f84c0c591481323285589e70
|
|
496
|
+
Exported Functions: 28 found
|
|
417
497
|
• __constructor
|
|
498
|
+
• authorizer
|
|
418
499
|
• endpoint
|
|
419
500
|
• extend_instance_ttl
|
|
420
501
|
• fee_recipient
|
|
@@ -447,9 +528,10 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
447
528
|
Finished `release` profile [optimized] target(s) in 0.42s
|
|
448
529
|
ℹ️ Build Summary:
|
|
449
530
|
Wasm File: target/wasm32v1-none/release/treasury.wasm
|
|
450
|
-
Wasm Hash:
|
|
451
|
-
Exported Functions:
|
|
531
|
+
Wasm Hash: 9586e202580ed2950991a997af897a2ca73b85e373120fd0ec6bb6d2a7b2a8d9
|
|
532
|
+
Exported Functions: 18 found
|
|
452
533
|
• __constructor
|
|
534
|
+
• authorizer
|
|
453
535
|
• extend_instance_ttl
|
|
454
536
|
• fee_enabled
|
|
455
537
|
• freeze_ttl_configs
|
|
@@ -467,59 +549,18 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
467
549
|
• withdraw_token
|
|
468
550
|
• zro_fee_lib
|
|
469
551
|
✅ Build Complete
|
|
470
|
-
ℹ️ 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
|
|
471
|
-
Compiling uln302 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/uln-302)
|
|
472
|
-
Finished `release` profile [optimized] target(s) in 0.91s
|
|
473
|
-
ℹ️ Build Summary:
|
|
474
|
-
Wasm File: target/wasm32v1-none/release/uln302.wasm
|
|
475
|
-
Wasm Hash: 3fbb162da892f0651529258b0c2cf284e1b9c58cfe9d9484ef3b5d589d8dbcf1
|
|
476
|
-
Exported Functions: 34 found
|
|
477
|
-
• __constructor
|
|
478
|
-
• commit_verification
|
|
479
|
-
• confirmations
|
|
480
|
-
• default_executor_config
|
|
481
|
-
• default_receive_uln_config
|
|
482
|
-
• default_send_uln_config
|
|
483
|
-
• effective_executor_config
|
|
484
|
-
• effective_receive_uln_config
|
|
485
|
-
• effective_send_uln_config
|
|
486
|
-
• endpoint
|
|
487
|
-
• extend_instance_ttl
|
|
488
|
-
• freeze_ttl_configs
|
|
489
|
-
• get_config
|
|
490
|
-
• is_supported_eid
|
|
491
|
-
• is_ttl_configs_frozen
|
|
492
|
-
• message_lib_type
|
|
493
|
-
• oapp_executor_config
|
|
494
|
-
• oapp_receive_uln_config
|
|
495
|
-
• oapp_send_uln_config
|
|
496
|
-
• owner
|
|
497
|
-
• quote
|
|
498
|
-
• renounce_ownership
|
|
499
|
-
• send
|
|
500
|
-
• set_config
|
|
501
|
-
• set_default_executor_configs
|
|
502
|
-
• set_default_receive_uln_configs
|
|
503
|
-
• set_default_send_uln_configs
|
|
504
|
-
• set_ttl_configs
|
|
505
|
-
• transfer_ownership
|
|
506
|
-
• treasury
|
|
507
|
-
• ttl_configs
|
|
508
|
-
• verifiable
|
|
509
|
-
• verify
|
|
510
|
-
• version
|
|
511
|
-
✅ Build Complete
|
|
512
552
|
ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/oapps/counter/Cargo.toml --crate-type=cdylib --target=wasm32v1-none --release
|
|
513
|
-
Compiling oapp-macros v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapp-macros)
|
|
553
|
+
Compiling oapp-macros v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp-macros)
|
|
514
554
|
Compiling oapp v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp)
|
|
515
555
|
Compiling counter v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/counter)
|
|
516
|
-
Finished `release` profile [optimized] target(s) in 1.
|
|
556
|
+
Finished `release` profile [optimized] target(s) in 1.18s
|
|
517
557
|
ℹ️ Build Summary:
|
|
518
558
|
Wasm File: target/wasm32v1-none/release/counter.wasm
|
|
519
|
-
Wasm Hash:
|
|
520
|
-
Exported Functions:
|
|
559
|
+
Wasm Hash: 18404f479f5466a66b07e3a44c751b3cb012dd185874584c98603a7974d3d8af
|
|
560
|
+
Exported Functions: 32 found
|
|
521
561
|
• __constructor
|
|
522
562
|
• allow_initialize_path
|
|
563
|
+
• authorizer
|
|
523
564
|
• combine_options
|
|
524
565
|
• composed_count
|
|
525
566
|
• count
|
|
@@ -550,40 +591,41 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
550
591
|
• transfer_ownership
|
|
551
592
|
• ttl_configs
|
|
552
593
|
✅ Build Complete
|
|
553
|
-
ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/workers/
|
|
594
|
+
ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/workers/dvn/Cargo.toml --crate-type=cdylib --target=wasm32v1-none --release
|
|
554
595
|
Compiling worker v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/worker)
|
|
555
|
-
Compiling
|
|
556
|
-
Finished `release` profile [optimized] target(s) in 1.
|
|
596
|
+
Compiling dvn v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/dvn)
|
|
597
|
+
Finished `release` profile [optimized] target(s) in 1.30s
|
|
557
598
|
ℹ️ Build Summary:
|
|
558
|
-
Wasm File: target/wasm32v1-none/release/
|
|
559
|
-
Wasm Hash:
|
|
560
|
-
Exported Functions:
|
|
599
|
+
Wasm File: target/wasm32v1-none/release/dvn.wasm
|
|
600
|
+
Wasm Hash: e3856e8f0951e48af74ef84c83633161642b910fc82093e6b611b55c58033e5e
|
|
601
|
+
Exported Functions: 49 found
|
|
561
602
|
• __check_auth
|
|
562
603
|
• __constructor
|
|
563
604
|
• admins
|
|
564
605
|
• allowlist_size
|
|
565
606
|
• assign_job
|
|
607
|
+
• authorizer
|
|
566
608
|
• default_multiplier_bps
|
|
567
609
|
• deposit_address
|
|
568
610
|
• dst_config
|
|
569
|
-
• endpoint
|
|
570
611
|
• extend_instance_ttl
|
|
571
612
|
• freeze_ttl_configs
|
|
572
613
|
• get_fee
|
|
614
|
+
• get_signers
|
|
573
615
|
• get_supported_option_types
|
|
574
616
|
• has_acl
|
|
617
|
+
• hash_call_data
|
|
575
618
|
• is_admin
|
|
576
619
|
• is_on_allowlist
|
|
577
620
|
• is_on_denylist
|
|
621
|
+
• is_signer
|
|
578
622
|
• is_supported_message_lib
|
|
579
623
|
• is_ttl_configs_frozen
|
|
580
|
-
• is_whitelisted_fn
|
|
581
624
|
• message_libs
|
|
582
|
-
•
|
|
583
|
-
• owner
|
|
625
|
+
• migrate
|
|
584
626
|
• paused
|
|
585
627
|
• price_feed
|
|
586
|
-
•
|
|
628
|
+
• quorum_change_admin
|
|
587
629
|
• set_admin
|
|
588
630
|
• set_allowlist
|
|
589
631
|
• set_default_multiplier_bps
|
|
@@ -592,88 +634,75 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
592
634
|
• set_dst_config
|
|
593
635
|
• set_paused
|
|
594
636
|
• set_price_feed
|
|
637
|
+
• set_signer
|
|
595
638
|
• set_supported_message_lib
|
|
596
639
|
• set_supported_option_types
|
|
640
|
+
• set_threshold
|
|
597
641
|
• set_ttl_configs
|
|
598
|
-
• set_whitelisted_fn
|
|
599
642
|
• set_worker_fee_lib
|
|
600
|
-
•
|
|
643
|
+
• threshold
|
|
644
|
+
• total_signers
|
|
601
645
|
• ttl_configs
|
|
602
|
-
•
|
|
646
|
+
• upgrade
|
|
647
|
+
• verify_n_signatures
|
|
648
|
+
• verify_signatures
|
|
649
|
+
• vid
|
|
603
650
|
• worker_fee_lib
|
|
604
651
|
✅ Build Complete
|
|
605
|
-
ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/
|
|
606
|
-
Compiling
|
|
607
|
-
|
|
608
|
-
Finished `release` profile [optimized] target(s) in 1.03s
|
|
652
|
+
ℹ️ 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
|
|
653
|
+
Compiling dvn-fee-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/dvn-fee-lib)
|
|
654
|
+
Finished `release` profile [optimized] target(s) in 0.35s
|
|
609
655
|
ℹ️ Build Summary:
|
|
610
|
-
Wasm File: target/wasm32v1-none/release/
|
|
611
|
-
Wasm Hash:
|
|
612
|
-
Exported Functions:
|
|
656
|
+
Wasm File: target/wasm32v1-none/release/dvn_fee_lib.wasm
|
|
657
|
+
Wasm Hash: 67aedc35b7d2dbf1e84011a2b7e6faf9dfecd5d187e6ccfcd3950b2d45fc71a9
|
|
658
|
+
Exported Functions: 13 found
|
|
613
659
|
• __constructor
|
|
614
|
-
•
|
|
615
|
-
• approval_required
|
|
616
|
-
• combine_options
|
|
617
|
-
• decimal_conversion_rate
|
|
618
|
-
• endpoint
|
|
619
|
-
• enforced_options
|
|
660
|
+
• authorizer
|
|
620
661
|
• extend_instance_ttl
|
|
621
662
|
• freeze_ttl_configs
|
|
622
|
-
•
|
|
623
|
-
• is_lock_unlock
|
|
663
|
+
• get_fee
|
|
624
664
|
• is_ttl_configs_frozen
|
|
625
|
-
•
|
|
626
|
-
• next_nonce
|
|
627
|
-
• oapp_version
|
|
628
|
-
• oft_version
|
|
665
|
+
• migrate
|
|
629
666
|
• owner
|
|
630
|
-
• peer
|
|
631
|
-
• quote_oft
|
|
632
|
-
• quote_send
|
|
633
667
|
• renounce_ownership
|
|
634
|
-
• send
|
|
635
|
-
• set_delegate
|
|
636
|
-
• set_enforced_options
|
|
637
|
-
• set_peer
|
|
638
668
|
• set_ttl_configs
|
|
639
|
-
• shared_decimals
|
|
640
|
-
• token
|
|
641
669
|
• transfer_ownership
|
|
642
670
|
• ttl_configs
|
|
671
|
+
• upgrade
|
|
643
672
|
✅ Build Complete
|
|
644
|
-
ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/workers/
|
|
645
|
-
Compiling
|
|
646
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
673
|
+
ℹ️ 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
|
|
674
|
+
Compiling executor v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor)
|
|
675
|
+
Finished `release` profile [optimized] target(s) in 0.72s
|
|
647
676
|
ℹ️ Build Summary:
|
|
648
|
-
Wasm File: target/wasm32v1-none/release/
|
|
649
|
-
Wasm Hash:
|
|
650
|
-
Exported Functions:
|
|
677
|
+
Wasm File: target/wasm32v1-none/release/executor.wasm
|
|
678
|
+
Wasm Hash: 46bd394defe8fcacaffa8d09f6e546ca85c414d67a399584799bde1c33b98bc9
|
|
679
|
+
Exported Functions: 44 found
|
|
651
680
|
• __check_auth
|
|
652
681
|
• __constructor
|
|
653
682
|
• admins
|
|
654
683
|
• allowlist_size
|
|
655
684
|
• assign_job
|
|
685
|
+
• authorizer
|
|
656
686
|
• default_multiplier_bps
|
|
657
687
|
• deposit_address
|
|
658
688
|
• dst_config
|
|
689
|
+
• endpoint
|
|
659
690
|
• extend_instance_ttl
|
|
660
691
|
• freeze_ttl_configs
|
|
661
692
|
• get_fee
|
|
662
|
-
• get_signers
|
|
663
693
|
• get_supported_option_types
|
|
664
694
|
• has_acl
|
|
665
|
-
• hash_call_data
|
|
666
695
|
• is_admin
|
|
667
696
|
• is_on_allowlist
|
|
668
697
|
• is_on_denylist
|
|
669
|
-
• is_signer
|
|
670
698
|
• is_supported_message_lib
|
|
671
699
|
• is_ttl_configs_frozen
|
|
672
700
|
• message_libs
|
|
701
|
+
• migrate
|
|
702
|
+
• native_drop
|
|
673
703
|
• owner
|
|
674
704
|
• paused
|
|
675
705
|
• price_feed
|
|
676
|
-
• quorum_change_admin
|
|
677
706
|
• renounce_ownership
|
|
678
707
|
• set_admin
|
|
679
708
|
• set_allowlist
|
|
@@ -683,75 +712,77 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
683
712
|
• set_dst_config
|
|
684
713
|
• set_paused
|
|
685
714
|
• set_price_feed
|
|
686
|
-
• set_signer
|
|
687
715
|
• set_supported_message_lib
|
|
688
716
|
• set_supported_option_types
|
|
689
|
-
• set_threshold
|
|
690
717
|
• set_ttl_configs
|
|
691
718
|
• set_worker_fee_lib
|
|
692
|
-
• threshold
|
|
693
|
-
• total_signers
|
|
694
719
|
• transfer_ownership
|
|
695
720
|
• ttl_configs
|
|
696
|
-
•
|
|
697
|
-
•
|
|
698
|
-
• vid
|
|
721
|
+
• upgrade
|
|
722
|
+
• withdraw_token
|
|
699
723
|
• worker_fee_lib
|
|
700
724
|
✅ Build Complete
|
|
701
|
-
ℹ️ 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
|
|
702
|
-
Compiling dvn-fee-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/dvn-fee-lib)
|
|
703
|
-
Finished `release` profile [optimized] target(s) in 0.28s
|
|
704
|
-
ℹ️ Build Summary:
|
|
705
|
-
Wasm File: target/wasm32v1-none/release/dvn_fee_lib.wasm
|
|
706
|
-
Wasm Hash: 07dfc18ac8e2318f91a7212b586ea8284c002a1a043a13b4cd3bbc7a4ba966fe
|
|
707
|
-
Exported Functions: 1 found
|
|
708
|
-
• get_fee
|
|
709
|
-
✅ Build Complete
|
|
710
725
|
ℹ️ 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
|
|
711
726
|
Compiling executor-fee-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor-fee-lib)
|
|
712
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
727
|
+
Finished `release` profile [optimized] target(s) in 0.40s
|
|
713
728
|
ℹ️ Build Summary:
|
|
714
729
|
Wasm File: target/wasm32v1-none/release/executor_fee_lib.wasm
|
|
715
|
-
Wasm Hash:
|
|
716
|
-
Exported Functions:
|
|
730
|
+
Wasm Hash: 37b458810f6efd38c4e7a568f64b9e4bff8542360def48b7bb3de7352b2c3a41
|
|
731
|
+
Exported Functions: 14 found
|
|
732
|
+
• __constructor
|
|
733
|
+
• authorizer
|
|
734
|
+
• extend_instance_ttl
|
|
735
|
+
• freeze_ttl_configs
|
|
717
736
|
• get_fee
|
|
737
|
+
• is_ttl_configs_frozen
|
|
738
|
+
• migrate
|
|
739
|
+
• owner
|
|
740
|
+
• renounce_ownership
|
|
741
|
+
• set_ttl_configs
|
|
742
|
+
• transfer_ownership
|
|
743
|
+
• ttl_configs
|
|
744
|
+
• upgrade
|
|
718
745
|
• version
|
|
719
746
|
✅ Build Complete
|
|
720
747
|
ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/workers/executor-helper/Cargo.toml --crate-type=cdylib --target=wasm32v1-none --release
|
|
721
748
|
Compiling worker v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/worker)
|
|
722
|
-
Compiling message-lib-common v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/message-lib-common)
|
|
723
749
|
Compiling executor v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor)
|
|
724
750
|
Compiling executor-helper v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor-helper)
|
|
725
|
-
Finished `release` profile [optimized] target(s) in 1.
|
|
751
|
+
Finished `release` profile [optimized] target(s) in 1.11s
|
|
726
752
|
ℹ️ Build Summary:
|
|
727
753
|
Wasm File: target/wasm32v1-none/release/executor_helper.wasm
|
|
728
|
-
Wasm Hash:
|
|
729
|
-
Exported Functions:
|
|
754
|
+
Wasm Hash: 5dd035ee62d871f20d7ef66dfacb38a9207f05d406f9504d05983442a5499e15
|
|
755
|
+
Exported Functions: 6 found
|
|
730
756
|
• compose
|
|
731
757
|
• execute
|
|
758
|
+
• lz_compose_alert
|
|
759
|
+
• lz_receive_alert
|
|
732
760
|
• native_drop
|
|
733
761
|
• native_drop_and_execute
|
|
734
762
|
✅ Build Complete
|
|
735
763
|
ℹ️ 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
|
|
764
|
+
Compiling worker v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/worker)
|
|
736
765
|
Compiling price-feed v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/price-feed)
|
|
737
|
-
Finished `release` profile [optimized] target(s) in
|
|
766
|
+
Finished `release` profile [optimized] target(s) in 1.09s
|
|
738
767
|
ℹ️ Build Summary:
|
|
739
768
|
Wasm File: target/wasm32v1-none/release/price_feed.wasm
|
|
740
|
-
Wasm Hash:
|
|
741
|
-
Exported Functions:
|
|
769
|
+
Wasm Hash: f7d079796608eeafd46070b4a73ebaa8327d7f73cd9aa826dd9699b497976381
|
|
770
|
+
Exported Functions: 27 found
|
|
742
771
|
• __constructor
|
|
743
772
|
• arbitrum_compression_percent
|
|
744
773
|
• arbitrum_price_ext
|
|
774
|
+
• authorizer
|
|
745
775
|
• eid_to_model_type
|
|
746
776
|
• estimate_fee_by_eid
|
|
747
777
|
• extend_instance_ttl
|
|
748
778
|
• freeze_ttl_configs
|
|
749
779
|
• get_price
|
|
750
780
|
• get_price_ratio_denominator
|
|
781
|
+
• is_price_updater
|
|
751
782
|
• is_ttl_configs_frozen
|
|
783
|
+
• migrate
|
|
752
784
|
• native_token_price_usd
|
|
753
785
|
• owner
|
|
754
|
-
• price_updater
|
|
755
786
|
• renounce_ownership
|
|
756
787
|
• set_arbitrum_compression_percent
|
|
757
788
|
• set_eid_to_model_type
|
|
@@ -763,15 +794,74 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
763
794
|
• set_ttl_configs
|
|
764
795
|
• transfer_ownership
|
|
765
796
|
• ttl_configs
|
|
797
|
+
• upgrade
|
|
798
|
+
✅ Build Complete
|
|
799
|
+
ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/oapps/oft-std/Cargo.toml --crate-type=cdylib --target=wasm32v1-none --release
|
|
800
|
+
Compiling oft v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft)
|
|
801
|
+
Compiling oft-std v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft-std)
|
|
802
|
+
Finished `release` profile [optimized] target(s) in 1.22s
|
|
803
|
+
ℹ️ Build Summary:
|
|
804
|
+
Wasm File: target/wasm32v1-none/release/oft_std.wasm
|
|
805
|
+
Wasm Hash: 1755d6982c64bd05dab4882627748c1d0808dd4ea177bc53ef6cbbed3f4aa08b
|
|
806
|
+
Exported Functions: 47 found
|
|
807
|
+
• __constructor
|
|
808
|
+
• allow_initialize_path
|
|
809
|
+
• approval_required
|
|
810
|
+
• authorizer
|
|
811
|
+
• combine_options
|
|
812
|
+
• decimal_conversion_rate
|
|
813
|
+
• default_fee_bps
|
|
814
|
+
• effective_fee_bps
|
|
815
|
+
• endpoint
|
|
816
|
+
• enforced_options
|
|
817
|
+
• extend_instance_ttl
|
|
818
|
+
• fee_bps
|
|
819
|
+
• fee_deposit_address
|
|
820
|
+
• freeze_ttl_configs
|
|
821
|
+
• has_fee_bps
|
|
822
|
+
• is_compose_msg_sender
|
|
823
|
+
• is_paused
|
|
824
|
+
• is_ttl_configs_frozen
|
|
825
|
+
• lz_receive
|
|
826
|
+
• mode
|
|
827
|
+
• next_nonce
|
|
828
|
+
• oapp_version
|
|
829
|
+
• oft_version
|
|
830
|
+
• owner
|
|
831
|
+
• peer
|
|
832
|
+
• quote_oft
|
|
833
|
+
• quote_send
|
|
834
|
+
• rate_limit_capacity
|
|
835
|
+
• rate_limit_config
|
|
836
|
+
• rate_limit_in_flight
|
|
837
|
+
• renounce_ownership
|
|
838
|
+
• send
|
|
839
|
+
• set_default_fee_bps
|
|
840
|
+
• set_delegate
|
|
841
|
+
• set_enforced_options
|
|
842
|
+
• set_fee_bps
|
|
843
|
+
• set_fee_deposit_address
|
|
844
|
+
• set_paused
|
|
845
|
+
• set_peer
|
|
846
|
+
• set_rate_limit
|
|
847
|
+
• set_ttl_configs
|
|
848
|
+
• shared_decimals
|
|
849
|
+
• token
|
|
850
|
+
• transfer_ownership
|
|
851
|
+
• ttl_configs
|
|
852
|
+
• unset_fee_bps
|
|
853
|
+
• unset_rate_limit
|
|
766
854
|
✅ Build Complete
|
|
767
|
-
⏱️ stellar contract build:
|
|
855
|
+
⏱️ stellar contract build --features sandbox: 1:05.190 (m:ss.mmm)
|
|
768
856
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
|
|
769
857
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-config
|
|
770
858
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup
|
|
859
|
+
WARN Issue while reading "/home/runner/work/monorepo-internal/monorepo-internal/.npmrc". Failed to replace env in config: ${NPM_TOKEN}
|
|
771
860
|
|
|
772
861
|
> @layerzerolabs/protocol-stellar-v2@0.0.1 generate:sdk /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar
|
|
773
862
|
> pnpm exec lz-tool --script "cargo run -p ts-bindings-gen" stellar
|
|
774
863
|
|
|
864
|
+
WARN Issue while reading "/home/runner/work/monorepo-internal/monorepo-internal/.npmrc". Failed to replace env in config: ${NPM_TOKEN}
|
|
775
865
|
📦 Using 4 default cache volume(s) for stellar
|
|
776
866
|
✅ stellar-23.1.4 (Stellar CLI with UID/GID support for permission fixes)
|
|
777
867
|
🔧 stellar version: 23.1.4
|
|
@@ -786,80 +876,80 @@ sha256:2477334a514bfb7b9dd6b51d49e5c2ef2ca47d8f4fca31ca4209be570fec6423
|
|
|
786
876
|
🔒 Acquired lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
|
|
787
877
|
$ 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_23.1.4_patch_6 bash -c $'cargo run -p ts-bindings-gen'
|
|
788
878
|
Downloading crates ...
|
|
789
|
-
Downloaded include_dir_macros v0.7.4
|
|
790
879
|
Downloaded opaque-debug v0.3.1
|
|
880
|
+
Downloaded digest v0.9.0
|
|
881
|
+
Downloaded glob v0.3.3
|
|
882
|
+
Downloaded sha2 v0.9.9
|
|
791
883
|
Downloaded block-buffer v0.9.0
|
|
884
|
+
Downloaded anyhow v1.0.100
|
|
885
|
+
Downloaded include_dir_macros v0.7.4
|
|
792
886
|
Downloaded heck v0.4.1
|
|
793
|
-
Downloaded sha2 v0.9.9
|
|
794
|
-
Downloaded include_dir v0.7.4
|
|
795
|
-
Downloaded digest v0.9.0
|
|
796
887
|
Downloaded base64 v0.21.7
|
|
797
|
-
Downloaded anyhow v1.0.100
|
|
798
|
-
Downloaded glob v0.3.3
|
|
799
888
|
Downloaded soroban-spec-typescript v23.1.4
|
|
889
|
+
Downloaded include_dir v0.7.4
|
|
800
890
|
Compiling proc-macro2 v1.0.103
|
|
801
891
|
Compiling quote v1.0.41
|
|
802
892
|
Compiling unicode-ident v1.0.22
|
|
803
893
|
Compiling serde_json v1.0.145
|
|
894
|
+
Compiling serde_core v1.0.228
|
|
804
895
|
Compiling version_check v0.9.5
|
|
805
896
|
Compiling typenum v1.19.0
|
|
806
|
-
Compiling serde_core v1.0.228
|
|
807
897
|
Compiling serde v1.0.228
|
|
808
|
-
Compiling ryu v1.0.20
|
|
809
898
|
Compiling memchr v2.7.6
|
|
899
|
+
Compiling ryu v1.0.20
|
|
810
900
|
Compiling itoa v1.0.15
|
|
811
901
|
Compiling fnv v1.0.7
|
|
812
902
|
Compiling ident_case v1.0.1
|
|
813
903
|
Compiling strsim v0.11.1
|
|
814
|
-
Compiling generic-array v0.14.9
|
|
815
904
|
Compiling schemars v0.8.22
|
|
816
905
|
Compiling cpufeatures v0.2.17
|
|
817
|
-
Compiling dyn-clone v1.0.20
|
|
818
906
|
Compiling cfg-if v1.0.4
|
|
907
|
+
Compiling dyn-clone v1.0.20
|
|
819
908
|
Compiling thiserror v1.0.69
|
|
820
|
-
Compiling data-encoding v2.9.0
|
|
821
|
-
Compiling hashbrown v0.16.0
|
|
822
909
|
Compiling equivalent v1.0.2
|
|
823
|
-
Compiling
|
|
824
|
-
Compiling
|
|
910
|
+
Compiling hashbrown v0.16.0
|
|
911
|
+
Compiling data-encoding v2.9.0
|
|
825
912
|
Compiling escape-bytes v0.1.1
|
|
826
|
-
Compiling
|
|
913
|
+
Compiling generic-array v0.14.9
|
|
827
914
|
Compiling ethnum v1.5.2
|
|
828
|
-
Compiling
|
|
829
|
-
Compiling
|
|
830
|
-
Compiling
|
|
915
|
+
Compiling prettyplease v0.2.37
|
|
916
|
+
Compiling semver v1.0.27
|
|
917
|
+
Compiling base64 v0.22.1
|
|
831
918
|
Compiling opaque-debug v0.3.1
|
|
832
919
|
Compiling anyhow v1.0.100
|
|
920
|
+
Compiling either v1.15.0
|
|
921
|
+
Compiling glob v0.3.3
|
|
833
922
|
Compiling base64 v0.21.7
|
|
834
|
-
Compiling heck v0.4.1
|
|
835
923
|
Compiling itertools v0.10.5
|
|
836
|
-
Compiling
|
|
924
|
+
Compiling indexmap v2.12.0
|
|
925
|
+
Compiling heck v0.4.1
|
|
837
926
|
Compiling syn v2.0.108
|
|
838
|
-
Compiling include_dir_macros v0.7.4
|
|
839
927
|
Compiling block-buffer v0.10.4
|
|
840
928
|
Compiling crypto-common v0.1.6
|
|
841
|
-
Compiling digest v0.9.0
|
|
842
929
|
Compiling block-buffer v0.9.0
|
|
930
|
+
Compiling digest v0.9.0
|
|
843
931
|
Compiling digest v0.10.7
|
|
844
932
|
Compiling sha2 v0.9.9
|
|
933
|
+
Compiling wasmparser v0.116.1
|
|
934
|
+
Compiling include_dir_macros v0.7.4
|
|
845
935
|
Compiling sha2 v0.10.9
|
|
936
|
+
Compiling include_dir v0.7.4
|
|
846
937
|
Compiling darling_core v0.21.3
|
|
847
938
|
Compiling serde_derive v1.0.228
|
|
848
|
-
Compiling cfg_eval v0.1.2
|
|
849
939
|
Compiling thiserror-impl v1.0.69
|
|
850
|
-
Compiling
|
|
851
|
-
Compiling include_dir v0.7.4
|
|
852
|
-
Compiling darling v0.21.3
|
|
853
|
-
Compiling serde_with_macros v3.15.1
|
|
940
|
+
Compiling cfg_eval v0.1.2
|
|
854
941
|
Compiling crate-git-revision v0.0.6
|
|
942
|
+
Compiling darling_macro v0.21.3
|
|
855
943
|
Compiling stellar-strkey v0.0.13
|
|
856
944
|
Compiling stellar-xdr v23.0.0
|
|
857
945
|
Compiling hex v0.4.3
|
|
946
|
+
Compiling darling v0.21.3
|
|
947
|
+
Compiling serde_with_macros v3.15.1
|
|
858
948
|
Compiling serde_with v3.15.1
|
|
859
949
|
Compiling soroban-spec v23.4.0
|
|
860
950
|
Compiling soroban-spec-typescript v23.1.4
|
|
861
951
|
Compiling ts-bindings-gen v0.0.1 (/workspace/contracts/protocol/stellar/tools/ts-bindings-gen)
|
|
862
|
-
Finished `dev` profile [unoptimized + debuginfo] target(s) in
|
|
952
|
+
Finished `dev` profile [unoptimized + debuginfo] target(s) in 42.89s
|
|
863
953
|
Running `target/debug/ts-bindings-gen`
|
|
864
954
|
🚀 Generating TypeScript bindings for Stellar contracts...
|
|
865
955
|
|
|
@@ -883,21 +973,51 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
883
973
|
Output: sdk/src/generated/uln302.ts
|
|
884
974
|
Generating bindings...
|
|
885
975
|
✓ Generated: sdk/src/generated/uln302.ts
|
|
886
|
-
📦 Processing contract:
|
|
887
|
-
WASM: target/wasm32v1-none/release/
|
|
888
|
-
Output: sdk/src/generated/
|
|
976
|
+
📦 Processing contract: treasury
|
|
977
|
+
WASM: target/wasm32v1-none/release/treasury.wasm
|
|
978
|
+
Output: sdk/src/generated/treasury.ts
|
|
889
979
|
Generating bindings...
|
|
890
|
-
✓ Generated: sdk/src/generated/
|
|
980
|
+
✓ Generated: sdk/src/generated/treasury.ts
|
|
981
|
+
📦 Processing contract: upgrader
|
|
982
|
+
WASM: target/wasm32v1-none/release/upgrader.wasm
|
|
983
|
+
Output: sdk/src/generated/upgrader.ts
|
|
984
|
+
Generating bindings...
|
|
985
|
+
✓ Generated: sdk/src/generated/upgrader.ts
|
|
986
|
+
📦 Processing contract: dvn
|
|
987
|
+
WASM: target/wasm32v1-none/release/dvn.wasm
|
|
988
|
+
Output: sdk/src/generated/dvn.ts
|
|
989
|
+
Generating bindings...
|
|
990
|
+
✓ Generated: sdk/src/generated/dvn.ts
|
|
991
|
+
📦 Processing contract: dvn_fee_lib
|
|
992
|
+
WASM: target/wasm32v1-none/release/dvn_fee_lib.wasm
|
|
993
|
+
Output: sdk/src/generated/dvn_fee_lib.ts
|
|
994
|
+
Generating bindings...
|
|
995
|
+
✓ Generated: sdk/src/generated/dvn_fee_lib.ts
|
|
891
996
|
📦 Processing contract: executor
|
|
892
997
|
WASM: target/wasm32v1-none/release/executor.wasm
|
|
893
998
|
Output: sdk/src/generated/executor.ts
|
|
894
999
|
Generating bindings...
|
|
895
1000
|
✓ Generated: sdk/src/generated/executor.ts
|
|
1001
|
+
📦 Processing contract: executor_fee_lib
|
|
1002
|
+
WASM: target/wasm32v1-none/release/executor_fee_lib.wasm
|
|
1003
|
+
Output: sdk/src/generated/executor_fee_lib.ts
|
|
1004
|
+
Generating bindings...
|
|
1005
|
+
✓ Generated: sdk/src/generated/executor_fee_lib.ts
|
|
896
1006
|
📦 Processing contract: executor_helper
|
|
897
1007
|
WASM: target/wasm32v1-none/release/executor_helper.wasm
|
|
898
1008
|
Output: sdk/src/generated/executor_helper.ts
|
|
899
1009
|
Generating bindings...
|
|
900
1010
|
✓ Generated: sdk/src/generated/executor_helper.ts
|
|
1011
|
+
📦 Processing contract: price_feed
|
|
1012
|
+
WASM: target/wasm32v1-none/release/price_feed.wasm
|
|
1013
|
+
Output: sdk/src/generated/price_feed.ts
|
|
1014
|
+
Generating bindings...
|
|
1015
|
+
✓ Generated: sdk/src/generated/price_feed.ts
|
|
1016
|
+
📦 Processing contract: counter
|
|
1017
|
+
WASM: target/wasm32v1-none/release/counter.wasm
|
|
1018
|
+
Output: sdk/src/generated/counter.ts
|
|
1019
|
+
Generating bindings...
|
|
1020
|
+
✓ Generated: sdk/src/generated/counter.ts
|
|
901
1021
|
📦 Processing contract: oft_std
|
|
902
1022
|
WASM: target/wasm32v1-none/release/oft_std.wasm
|
|
903
1023
|
Output: sdk/src/generated/oft_std.ts
|
|
@@ -905,18 +1025,45 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
905
1025
|
✓ Generated: sdk/src/generated/oft_std.ts
|
|
906
1026
|
|
|
907
1027
|
✅ TypeScript binding generation complete!
|
|
908
|
-
Generated
|
|
1028
|
+
Generated 14 contract(s)
|
|
909
1029
|
|
|
910
1030
|
📦 Generated files in sdk/src/generated/:
|
|
911
1031
|
- endpoint.ts
|
|
912
1032
|
- sml.ts
|
|
913
1033
|
- bml.ts
|
|
914
1034
|
- uln302.ts
|
|
915
|
-
-
|
|
1035
|
+
- treasury.ts
|
|
1036
|
+
- upgrader.ts
|
|
1037
|
+
- dvn.ts
|
|
1038
|
+
- dvn_fee_lib.ts
|
|
916
1039
|
- executor.ts
|
|
1040
|
+
- executor_fee_lib.ts
|
|
917
1041
|
- executor_helper.ts
|
|
1042
|
+
- price_feed.ts
|
|
1043
|
+
- counter.ts
|
|
918
1044
|
- oft_std.ts
|
|
919
|
-
⏱️ bash -c cargo run -p ts-bindings-gen:
|
|
1045
|
+
⏱️ bash -c cargo run -p ts-bindings-gen: 43.284s
|
|
920
1046
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
|
|
921
1047
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-config
|
|
922
1048
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup
|
|
1049
|
+
WARN Issue while reading "/home/runner/work/monorepo-internal/monorepo-internal/.npmrc". Failed to replace env in config: ${NPM_TOKEN}
|
|
1050
|
+
|
|
1051
|
+
> @layerzerolabs/protocol-stellar-v2@0.0.1 build:wasm /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar
|
|
1052
|
+
> lz-tool extra stellar build-typescript-sdk target sdk/src
|
|
1053
|
+
|
|
1054
|
+
✅ blocked_message_lib.wasm -> wasm/blocked-message-lib.ts (13241 bytes)
|
|
1055
|
+
✅ counter.wasm -> wasm/counter.ts (37218 bytes)
|
|
1056
|
+
✅ dvn.wasm -> wasm/dvn.ts (56263 bytes)
|
|
1057
|
+
✅ dvn_fee_lib.wasm -> wasm/dvn-fee-lib.ts (20368 bytes)
|
|
1058
|
+
✅ endpoint_v2.wasm -> wasm/endpoint-v2.ts (55941 bytes)
|
|
1059
|
+
✅ executor.wasm -> wasm/executor.ts (53108 bytes)
|
|
1060
|
+
✅ executor_fee_lib.wasm -> wasm/executor-fee-lib.ts (32063 bytes)
|
|
1061
|
+
✅ executor_helper.wasm -> wasm/executor-helper.ts (27388 bytes)
|
|
1062
|
+
✅ layerzero_views.wasm -> wasm/layerzero-views.ts (30051 bytes)
|
|
1063
|
+
✅ oft_std.wasm -> wasm/oft-std.ts (56449 bytes)
|
|
1064
|
+
✅ price_feed.wasm -> wasm/price-feed.ts (32046 bytes)
|
|
1065
|
+
✅ simple_message_lib.wasm -> wasm/simple-message-lib.ts (26121 bytes)
|
|
1066
|
+
✅ treasury.wasm -> wasm/treasury.ts (24293 bytes)
|
|
1067
|
+
✅ uln302.wasm -> wasm/uln302.ts (54211 bytes)
|
|
1068
|
+
✅ upgrader.wasm -> wasm/upgrader.ts (1597 bytes)
|
|
1069
|
+
✅ Generated wasm.ts (15 contracts)
|