@layerzerolabs/protocol-stellar-v2 0.2.13 → 0.2.15
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 +384 -278
- package/.turbo/turbo-lint.log +110 -78
- package/.turbo/turbo-test.log +1248 -1014
- package/Cargo.lock +130 -3
- package/Cargo.toml +2 -1
- package/contracts/common-macros/src/contract_impl.rs +6 -1
- package/contracts/common-macros/src/lib.rs +47 -8
- package/contracts/common-macros/src/ownable.rs +7 -25
- package/contracts/common-macros/src/storage.rs +1 -1
- package/contracts/common-macros/src/tests/contract_impl.rs +5 -0
- package/contracts/common-macros/src/tests/mod.rs +1 -0
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__contract_impl__snapshot_generated_contract_impl_code.snap +23 -7
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__ownable__snapshot_generated_ownable_code.snap +5 -25
- 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 +5 -25
- 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 +14 -44
- package/contracts/common-macros/src/upgradeable.rs +76 -0
- package/contracts/endpoint-v2/src/endpoint_v2.rs +25 -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 +61 -9
- 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 +3 -5
- 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 +15 -1
- 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 +229 -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_owner_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/extend_instance_ttl.rs +50 -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 +3 -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_owner_missing_env.rs +22 -0
- package/contracts/macro-integration-tests/tests/ui/ownable/fail/only_owner_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 +22 -0
- package/contracts/macro-integration-tests/tests/ui/ownable/pass/only_owner_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/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 +50 -0
- package/contracts/message-libs/message-lib-common/src/tests/worker_options/append_native_drop_option.rs +74 -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 +2 -2
- package/contracts/message-libs/treasury/src/errors.rs +0 -1
- package/contracts/message-libs/treasury/src/lib.rs +3 -3
- package/contracts/message-libs/treasury/src/storage.rs +2 -0
- package/contracts/message-libs/treasury/src/treasury.rs +12 -13
- 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 +24 -54
- package/contracts/message-libs/uln-302/src/send_uln.rs +89 -135
- 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 +8 -5
- package/contracts/oapps/counter/src/counter.rs +0 -1
- package/contracts/oapps/oapp/src/macro_tests/test_macros.rs +306 -224
- package/contracts/oapps/oapp/src/tests/test_oapp_core.rs +0 -1
- package/contracts/oapps/oapp/src/tests/test_oapp_options_type3.rs +0 -1
- package/contracts/oapps/oapp/src/tests/test_oapp_receiver.rs +0 -1
- package/contracts/oapps/oapp/src/tests/test_oapp_sender.rs +0 -1
- package/contracts/{oapp-macros → oapps/oapp-macros}/src/oapp_core.rs +1 -0
- package/contracts/oapps/oft/integration-tests/setup.rs +10 -3
- package/contracts/oapps/oft/integration-tests/utils.rs +1 -1
- package/contracts/oapps/oft/src/default_oft_impl.rs +9 -3
- package/contracts/oapps/oft/src/extensions/oft_fee.rs +5 -5
- package/contracts/oapps/oft/src/extensions/pausable.rs +1 -1
- package/contracts/oapps/oft/src/extensions/rate_limiter.rs +18 -18
- package/contracts/oapps/oft/src/oft.rs +9 -9
- package/contracts/oapps/oft/src/oft_types/lock_unlock.rs +1 -1
- package/contracts/oapps/oft/src/tests/extensions/setup.rs +26 -11
- package/contracts/oapps/oft/src/tests/extensions/test_rate_limiter.rs +1 -1
- package/contracts/oapps/oft/src/tests/test_send.rs +4 -4
- package/contracts/oapps/oft/src/tests/test_utils.rs +93 -74
- 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/oft-std/integration-tests/setup.rs +245 -0
- 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 +122 -25
- 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/errors.rs +6 -1
- package/contracts/utils/src/lib.rs +2 -1
- package/contracts/utils/src/ownable.rs +49 -61
- package/contracts/utils/src/tests/mod.rs +3 -1
- package/contracts/utils/src/tests/option_ext.rs +21 -0
- package/contracts/utils/src/tests/ownable.rs +10 -69
- package/contracts/utils/src/tests/ttl_configurable.rs +596 -0
- package/contracts/utils/src/tests/upgradeable.rs +288 -0
- package/contracts/utils/src/{ttl.rs → ttl_configurable.rs} +67 -52
- package/contracts/utils/src/upgradeable.rs +54 -0
- package/contracts/workers/dvn/Cargo.toml +1 -1
- package/contracts/workers/dvn/src/auth.rs +21 -32
- package/contracts/workers/dvn/src/dvn.rs +40 -3
- package/contracts/workers/dvn/src/errors.rs +1 -0
- package/contracts/workers/dvn/src/multisig.rs +10 -6
- package/contracts/workers/dvn/src/tests/multisig/set_threshold.rs +2 -2
- package/contracts/workers/dvn/src/tests/multisig/verify_signatures.rs +4 -4
- package/contracts/workers/dvn-fee-lib/Cargo.toml +1 -2
- package/contracts/workers/dvn-fee-lib/src/dvn_fee_lib.rs +46 -14
- 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/executor.rs +16 -2
- package/contracts/workers/executor-fee-lib/src/errors.rs +9 -7
- package/contracts/workers/executor-fee-lib/src/executor_fee_lib.rs +154 -119
- package/contracts/workers/executor-helper/Cargo.toml +0 -5
- package/contracts/workers/executor-helper/src/lib.rs +1 -7
- package/contracts/workers/price-feed/Cargo.toml +0 -1
- 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 +39 -17
- package/contracts/workers/worker/Cargo.toml +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 +501 -0
- package/contracts/workers/worker/src/worker.rs +10 -16
- package/package.json +3 -3
- package/sdk/dist/generated/bml.d.ts +40 -30
- package/sdk/dist/generated/bml.js +16 -11
- package/sdk/dist/generated/counter.d.ts +168 -134
- package/sdk/dist/generated/counter.js +26 -21
- package/sdk/dist/generated/dvn.d.ts +1932 -0
- package/sdk/dist/generated/dvn.js +288 -0
- package/sdk/dist/generated/dvn_fee_lib.d.ts +615 -0
- package/sdk/dist/generated/dvn_fee_lib.js +123 -0
- package/sdk/dist/generated/endpoint.d.ts +75 -41
- package/sdk/dist/generated/endpoint.js +22 -17
- package/sdk/dist/generated/executor.d.ts +1809 -0
- package/sdk/dist/generated/executor.js +269 -0
- package/sdk/dist/generated/executor_fee_lib.d.ts +999 -0
- package/sdk/dist/generated/executor_fee_lib.js +208 -0
- package/sdk/dist/generated/executor_helper.d.ts +869 -0
- package/sdk/dist/generated/executor_helper.js +187 -0
- package/sdk/dist/generated/oft_std.d.ts +1544 -0
- package/sdk/dist/generated/oft_std.js +271 -0
- package/sdk/dist/generated/price_feed.d.ts +1002 -0
- package/sdk/dist/generated/price_feed.js +170 -0
- package/sdk/dist/generated/sml.d.ts +75 -41
- package/sdk/dist/generated/sml.js +22 -17
- package/sdk/dist/generated/uln302.d.ts +79 -60
- package/sdk/dist/generated/uln302.js +37 -37
- package/sdk/dist/generated/upgrader.d.ts +70 -0
- package/sdk/dist/generated/upgrader.js +19 -0
- package/sdk/dist/index.d.ts +8 -0
- package/sdk/dist/index.js +11 -0
- package/sdk/package.json +4 -3
- package/sdk/src/index.ts +13 -0
- package/sdk/test/index.test.ts +0 -1
- package/sdk/test/oft.test.ts +12 -23
- package/sdk/test/suites/testUpgradeable.ts +169 -0
- package/sdk/test/upgrader.test.ts +309 -0
- package/tools/ts-bindings-gen/src/main.rs +11 -1
- 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/utils/src/tests/ttl.rs +0 -421
- /package/contracts/{oapp-macros → oapps/oapp-macros}/Cargo.toml +0 -0
- /package/contracts/{oapp-macros → oapps/oapp-macros}/src/lib.rs +0 -0
- /package/contracts/{oapp-macros → oapps/oapp-macros}/src/oapp_full.rs +0 -0
- /package/contracts/{oapp-macros → oapps/oapp-macros}/src/oapp_options_type3.rs +0 -0
- /package/contracts/{oapp-macros → oapps/oapp-macros}/src/oapp_receiver.rs +0 -0
- /package/contracts/{oapp-macros → oapps/oapp-macros}/src/oapp_sender.rs +0 -0
- /package/contracts/{oapp-macros → oapps/oapp-macros}/src/util.rs +0 -0
package/.turbo/turbo-build.log
CHANGED
|
@@ -28,39 +28,37 @@ f83e34e44849: Pulling fs layer
|
|
|
28
28
|
8bc2eeec2bb3: Pulling fs layer
|
|
29
29
|
2965c99ac5df: Pulling fs layer
|
|
30
30
|
66f4137c2c7c: Pulling fs layer
|
|
31
|
-
1b86cc28e881: Waiting
|
|
32
|
-
a7d3f750d5ec: Waiting
|
|
33
|
-
f83e34e44849: Waiting
|
|
34
|
-
8a4f031cd7ce: Waiting
|
|
35
|
-
8bc2eeec2bb3: Waiting
|
|
36
31
|
2ff845d4f468: Waiting
|
|
32
|
+
8a4f031cd7ce: Waiting
|
|
37
33
|
2c1ce468d9f3: Waiting
|
|
38
|
-
|
|
34
|
+
f83e34e44849: Waiting
|
|
35
|
+
1b86cc28e881: Waiting
|
|
36
|
+
8bc2eeec2bb3: Waiting
|
|
39
37
|
889cdda75b95: Waiting
|
|
38
|
+
a7d3f750d5ec: Waiting
|
|
39
|
+
2965c99ac5df: Waiting
|
|
40
40
|
66f4137c2c7c: Waiting
|
|
41
41
|
f6bd9104d248: Verifying Checksum
|
|
42
42
|
f6bd9104d248: Download complete
|
|
43
|
-
f6bd9104d248: Pull complete
|
|
44
43
|
889cdda75b95: Verifying Checksum
|
|
45
44
|
889cdda75b95: Download complete
|
|
45
|
+
f6bd9104d248: Pull complete
|
|
46
46
|
a7d3f750d5ec: Verifying Checksum
|
|
47
47
|
a7d3f750d5ec: Download complete
|
|
48
|
+
8a4f031cd7ce: Verifying Checksum
|
|
49
|
+
8a4f031cd7ce: Download complete
|
|
48
50
|
e9886d99af76: Verifying Checksum
|
|
49
51
|
e9886d99af76: Download complete
|
|
50
|
-
4617420e017b: Verifying Checksum
|
|
51
|
-
4617420e017b: Download complete
|
|
52
52
|
2c1ce468d9f3: Verifying Checksum
|
|
53
53
|
2c1ce468d9f3: Download complete
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
2ff845d4f468: Verifying Checksum
|
|
57
|
-
2ff845d4f468: Download complete
|
|
54
|
+
4617420e017b: Verifying Checksum
|
|
55
|
+
4617420e017b: Download complete
|
|
58
56
|
f83e34e44849: Verifying Checksum
|
|
59
57
|
f83e34e44849: Download complete
|
|
60
|
-
1b86cc28e881: Verifying Checksum
|
|
61
|
-
1b86cc28e881: Download complete
|
|
62
|
-
8bc2eeec2bb3: Verifying Checksum
|
|
63
58
|
8bc2eeec2bb3: Download complete
|
|
59
|
+
1b86cc28e881: Download complete
|
|
60
|
+
2ff845d4f468: Verifying Checksum
|
|
61
|
+
2ff845d4f468: Download complete
|
|
64
62
|
2965c99ac5df: Verifying Checksum
|
|
65
63
|
2965c99ac5df: Download complete
|
|
66
64
|
66f4137c2c7c: Verifying Checksum
|
|
@@ -91,204 +89,204 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
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
|
-
Downloaded ark-ff-macros v0.4.2
|
|
96
92
|
Downloaded ark-serialize v0.4.2
|
|
93
|
+
Downloaded ark-ff-macros v0.4.2
|
|
94
|
+
Downloaded ark-poly v0.4.2
|
|
95
|
+
Downloaded ark-ec v0.4.2
|
|
96
|
+
Downloaded ark-ff-asm v0.4.2
|
|
97
|
+
Downloaded arbitrary v1.3.2
|
|
98
|
+
Downloaded ahash v0.8.12
|
|
99
|
+
Downloaded ark-std v0.4.0
|
|
100
|
+
Downloaded rustc_version v0.4.1
|
|
101
|
+
Downloaded either v1.15.0
|
|
102
|
+
Downloaded group v0.13.0
|
|
103
|
+
Downloaded ppv-lite86 v0.2.21
|
|
104
|
+
Downloaded hmac v0.12.1
|
|
105
|
+
Downloaded downcast-rs v1.2.1
|
|
106
|
+
Downloaded const-oid v0.9.6
|
|
107
|
+
Downloaded rand_chacha v0.3.1
|
|
108
|
+
Downloaded ref-cast-impl v1.0.25
|
|
109
|
+
Downloaded sec1 v0.7.3
|
|
110
|
+
Downloaded rand_core v0.6.4
|
|
97
111
|
Downloaded ryu v1.0.20
|
|
98
|
-
Downloaded
|
|
99
|
-
Downloaded
|
|
100
|
-
Downloaded soroban-env-guest v23.0.1
|
|
101
|
-
Downloaded unicode-ident v1.0.22
|
|
112
|
+
Downloaded soroban-spec v23.4.0
|
|
113
|
+
Downloaded schemars v0.8.22
|
|
102
114
|
Downloaded zeroize_derive v1.4.2
|
|
103
|
-
Downloaded wasmparser-nostd v0.100.2
|
|
104
|
-
Downloaded wasmparser v0.116.1
|
|
105
|
-
Downloaded version_check v0.9.5
|
|
106
|
-
Downloaded syn v2.0.108
|
|
107
|
-
Downloaded soroban-sdk-macros v23.4.0
|
|
108
115
|
Downloaded stellar-strkey v0.0.13
|
|
109
|
-
Downloaded
|
|
110
|
-
Downloaded
|
|
111
|
-
Downloaded
|
|
112
|
-
Downloaded zerocopy v0.8.27
|
|
113
|
-
Downloaded sha3 v0.10.8
|
|
114
|
-
Downloaded hashbrown v0.13.2
|
|
115
|
-
Downloaded ident_case v1.0.1
|
|
116
|
-
Downloaded quote v1.0.41
|
|
117
|
-
Downloaded ppv-lite86 v0.2.21
|
|
118
|
-
Downloaded rand_core v0.6.4
|
|
116
|
+
Downloaded static_assertions v1.1.0
|
|
117
|
+
Downloaded k256 v0.13.4
|
|
118
|
+
Downloaded itertools v0.10.5
|
|
119
119
|
Downloaded zeroize v1.8.2
|
|
120
|
-
Downloaded
|
|
121
|
-
Downloaded
|
|
122
|
-
Downloaded
|
|
123
|
-
Downloaded
|
|
124
|
-
Downloaded
|
|
120
|
+
Downloaded thiserror v1.0.69
|
|
121
|
+
Downloaded serde_core v1.0.228
|
|
122
|
+
Downloaded typenum v1.19.0
|
|
123
|
+
Downloaded serde v1.0.228
|
|
124
|
+
Downloaded wasmparser-nostd v0.100.2
|
|
125
|
+
Downloaded time v0.3.44
|
|
126
|
+
Downloaded wasmparser v0.116.1
|
|
127
|
+
Downloaded soroban-wasmi v0.31.1-soroban.20.0.1
|
|
125
128
|
Downloaded serde_with v3.15.1
|
|
129
|
+
Downloaded soroban-sdk v23.4.0
|
|
130
|
+
Downloaded zerocopy v0.8.27
|
|
131
|
+
Downloaded syn v1.0.109
|
|
126
132
|
Downloaded serde_json v1.0.145
|
|
127
|
-
Downloaded
|
|
128
|
-
Downloaded
|
|
129
|
-
Downloaded
|
|
133
|
+
Downloaded syn v2.0.108
|
|
134
|
+
Downloaded ed25519-dalek v2.2.0
|
|
135
|
+
Downloaded hashbrown v0.12.3
|
|
136
|
+
Downloaded soroban-sdk-macros v23.4.0
|
|
137
|
+
Downloaded soroban-env-common v23.0.1
|
|
138
|
+
Downloaded smallvec v1.15.1
|
|
139
|
+
Downloaded sha2 v0.10.9
|
|
140
|
+
Downloaded soroban-env-host v23.0.1
|
|
141
|
+
Downloaded serde_with_macros v3.15.1
|
|
142
|
+
Downloaded schemars v0.9.0
|
|
130
143
|
Downloaded itertools v0.14.0
|
|
131
|
-
Downloaded
|
|
144
|
+
Downloaded wasmi_core v0.13.0
|
|
145
|
+
Downloaded unicode-ident v1.0.22
|
|
146
|
+
Downloaded time-macros v0.2.24
|
|
147
|
+
Downloaded thiserror-impl v1.0.69
|
|
148
|
+
Downloaded spki v0.7.3
|
|
149
|
+
Downloaded spin v0.9.8
|
|
150
|
+
Downloaded darling_core v0.20.11
|
|
151
|
+
Downloaded curve25519-dalek v4.1.3
|
|
152
|
+
Downloaded chrono v0.4.42
|
|
132
153
|
Downloaded indexmap v2.12.0
|
|
133
154
|
Downloaded hashbrown v0.16.0
|
|
134
|
-
Downloaded
|
|
135
|
-
Downloaded
|
|
155
|
+
Downloaded crypto-bigint v0.5.5
|
|
156
|
+
Downloaded soroban-env-macros v23.0.1
|
|
157
|
+
Downloaded serde_derive v1.0.228
|
|
158
|
+
Downloaded semver v1.0.27
|
|
159
|
+
Downloaded hashbrown v0.13.2
|
|
160
|
+
Downloaded wasmi_arena v0.4.1
|
|
161
|
+
Downloaded visibility v0.1.1
|
|
136
162
|
Downloaded libc v0.2.177
|
|
137
|
-
Downloaded
|
|
138
|
-
Downloaded
|
|
139
|
-
Downloaded
|
|
140
|
-
Downloaded
|
|
141
|
-
Downloaded
|
|
163
|
+
Downloaded version_check v0.9.5
|
|
164
|
+
Downloaded time-core v0.1.6
|
|
165
|
+
Downloaded sha3 v0.10.8
|
|
166
|
+
Downloaded subtle v2.6.1
|
|
167
|
+
Downloaded strsim v0.11.1
|
|
168
|
+
Downloaded soroban-spec-rust v23.4.0
|
|
169
|
+
Downloaded signature v2.2.0
|
|
170
|
+
Downloaded rand v0.8.5
|
|
171
|
+
Downloaded proc-macro2 v1.0.103
|
|
142
172
|
Downloaded memchr v2.7.6
|
|
143
|
-
Downloaded
|
|
144
|
-
Downloaded elliptic-curve v0.13.8
|
|
145
|
-
Downloaded ark-ff v0.4.2
|
|
146
|
-
Downloaded prettyplease v0.2.37
|
|
147
|
-
Downloaded p256 v0.13.2
|
|
148
|
-
Downloaded num-traits v0.2.19
|
|
173
|
+
Downloaded libm v0.2.15
|
|
149
174
|
Downloaded indexmap v1.9.3
|
|
150
|
-
Downloaded
|
|
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
|
|
175
|
+
Downloaded autocfg v1.5.0
|
|
158
176
|
Downloaded primeorder v0.13.6
|
|
177
|
+
Downloaded powerfmt v0.2.0
|
|
159
178
|
Downloaded once_cell v1.21.3
|
|
160
|
-
Downloaded num-
|
|
161
|
-
Downloaded
|
|
162
|
-
Downloaded
|
|
163
|
-
Downloaded group v0.13.0
|
|
179
|
+
Downloaded num-traits v0.2.19
|
|
180
|
+
Downloaded num-derive v0.4.2
|
|
181
|
+
Downloaded num-bigint v0.4.6
|
|
164
182
|
Downloaded generic-array v0.14.9
|
|
165
|
-
Downloaded
|
|
166
|
-
Downloaded
|
|
167
|
-
Downloaded
|
|
168
|
-
Downloaded
|
|
169
|
-
Downloaded
|
|
183
|
+
Downloaded ff v0.13.1
|
|
184
|
+
Downloaded ethnum v1.5.2
|
|
185
|
+
Downloaded ecdsa v0.16.9
|
|
186
|
+
Downloaded der v0.7.10
|
|
187
|
+
Downloaded data-encoding v2.9.0
|
|
188
|
+
Downloaded darling_core v0.21.3
|
|
189
|
+
Downloaded cpufeatures v0.2.17
|
|
170
190
|
Downloaded bytes-lit v0.0.5
|
|
191
|
+
Downloaded base64 v0.22.1
|
|
171
192
|
Downloaded soroban-ledger-snapshot v23.4.0
|
|
193
|
+
Downloaded soroban-env-guest v23.0.1
|
|
172
194
|
Downloaded soroban-builtin-sdk-macros v23.0.1
|
|
173
|
-
Downloaded
|
|
195
|
+
Downloaded schemars v1.0.5
|
|
196
|
+
Downloaded rfc6979 v0.4.0
|
|
174
197
|
Downloaded ref-cast v1.0.25
|
|
175
|
-
Downloaded
|
|
176
|
-
Downloaded
|
|
177
|
-
Downloaded pkcs8 v0.10.2
|
|
178
|
-
Downloaded num-derive v0.4.2
|
|
179
|
-
Downloaded num-conv v0.1.0
|
|
198
|
+
Downloaded prettyplease v0.2.37
|
|
199
|
+
Downloaded paste v1.0.15
|
|
180
200
|
Downloaded keccak v0.1.5
|
|
181
|
-
Downloaded itoa v1.0.15
|
|
182
201
|
Downloaded hex v0.4.3
|
|
183
202
|
Downloaded heck v0.5.0
|
|
184
|
-
Downloaded
|
|
203
|
+
Downloaded derivative v2.2.0
|
|
204
|
+
Downloaded ctor-proc-macro v0.0.6
|
|
205
|
+
Downloaded macro-string v0.1.4
|
|
206
|
+
Downloaded iana-time-zone v0.1.64
|
|
207
|
+
Downloaded fnv v1.0.7
|
|
208
|
+
Downloaded escape-bytes v0.1.1
|
|
209
|
+
Downloaded equivalent v1.0.2
|
|
210
|
+
Downloaded elliptic-curve v0.13.8
|
|
211
|
+
Downloaded dyn-clone v1.0.20
|
|
185
212
|
Downloaded dtor-proc-macro v0.0.6
|
|
186
|
-
Downloaded
|
|
187
|
-
Downloaded
|
|
213
|
+
Downloaded p256 v0.13.2
|
|
214
|
+
Downloaded digest v0.10.7
|
|
215
|
+
Downloaded darling_macro v0.20.11
|
|
216
|
+
Downloaded itoa v1.0.15
|
|
217
|
+
Downloaded ident_case v1.0.1
|
|
218
|
+
Downloaded hex-literal v0.4.1
|
|
219
|
+
Downloaded dtor v0.1.1
|
|
188
220
|
Downloaded darling v0.21.3
|
|
221
|
+
Downloaded cfg_eval v0.1.2
|
|
222
|
+
Downloaded cfg-if v1.0.4
|
|
223
|
+
Downloaded base16ct v0.2.0
|
|
189
224
|
Downloaded ark-serialize-derive v0.4.2
|
|
190
|
-
Downloaded
|
|
191
|
-
Downloaded fnv v1.0.7
|
|
192
|
-
Downloaded either v1.15.0
|
|
193
|
-
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
|
|
225
|
+
Downloaded indexmap-nostd v0.4.0
|
|
197
226
|
Downloaded getrandom v0.2.16
|
|
198
|
-
Downloaded
|
|
199
|
-
Downloaded
|
|
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
|
-
Downloaded crate-git-revision v0.0.6
|
|
213
|
-
Downloaded cpufeatures v0.2.17
|
|
227
|
+
Downloaded darling_macro v0.21.3
|
|
228
|
+
Downloaded crypto-common v0.1.6
|
|
214
229
|
Downloaded base64ct v1.8.0
|
|
215
|
-
Downloaded
|
|
216
|
-
Downloaded
|
|
217
|
-
Downloaded
|
|
218
|
-
Downloaded
|
|
219
|
-
Downloaded
|
|
220
|
-
Downloaded
|
|
221
|
-
Downloaded
|
|
222
|
-
Downloaded
|
|
223
|
-
Downloaded
|
|
224
|
-
Downloaded
|
|
225
|
-
Downloaded
|
|
226
|
-
Downloaded
|
|
227
|
-
Downloaded
|
|
228
|
-
Downloaded
|
|
229
|
-
Downloaded
|
|
230
|
-
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
|
-
Downloaded time-core v0.1.6
|
|
235
|
-
Downloaded subtle v2.6.1
|
|
236
|
-
Downloaded soroban-sdk v23.4.0
|
|
237
|
-
Downloaded darling v0.20.11
|
|
238
|
-
Downloaded cfg_eval v0.1.2
|
|
239
|
-
Downloaded signature v2.2.0
|
|
240
|
-
Downloaded serde_with_macros v3.15.1
|
|
241
|
-
Downloaded serde_derive v1.0.228
|
|
242
|
-
Downloaded rustc_version v0.4.1
|
|
243
|
-
Downloaded serde v1.0.228
|
|
244
|
-
Downloaded ahash v0.8.12
|
|
245
|
-
Downloaded ark-poly v0.4.2
|
|
246
|
-
Downloaded arbitrary v1.3.2
|
|
230
|
+
Downloaded quote v1.0.41
|
|
231
|
+
Downloaded pkcs8 v0.10.2
|
|
232
|
+
Downloaded num-integer v0.1.46
|
|
233
|
+
Downloaded num-conv v0.1.0
|
|
234
|
+
Downloaded darling v0.20.11
|
|
235
|
+
Downloaded curve25519-dalek-derive v0.1.1
|
|
236
|
+
Downloaded crate-git-revision v0.0.6
|
|
237
|
+
Downloaded block-buffer v0.10.4
|
|
238
|
+
Downloaded derive_arbitrary v1.3.2
|
|
239
|
+
Downloaded deranged v0.5.5
|
|
240
|
+
Downloaded ed25519 v2.2.3
|
|
241
|
+
Downloaded ctor v0.5.0
|
|
242
|
+
Downloaded ark-ff v0.4.2
|
|
243
|
+
Downloaded ark-bls12-381 v0.4.0
|
|
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
|
|
253
|
-
Compiling memchr v2.7.6
|
|
254
251
|
Compiling ryu v1.0.20
|
|
255
252
|
Compiling itoa v1.0.15
|
|
253
|
+
Compiling memchr v2.7.6
|
|
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
|
-
Compiling typenum v1.19.0
|
|
260
257
|
Compiling version_check v0.9.5
|
|
258
|
+
Compiling typenum v1.19.0
|
|
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
262
|
Compiling data-encoding v2.9.0
|
|
266
263
|
Compiling cfg-if v1.0.4
|
|
264
|
+
Compiling cpufeatures v0.2.17
|
|
265
|
+
Compiling either v1.15.0
|
|
267
266
|
Compiling ethnum v1.5.2
|
|
268
|
-
Compiling generic-array v0.14.9
|
|
269
267
|
Compiling escape-bytes v0.1.1
|
|
270
|
-
Compiling either v1.15.0
|
|
271
|
-
Compiling num-traits v0.2.19
|
|
272
268
|
Compiling semver v1.0.27
|
|
269
|
+
Compiling prettyplease v0.2.37
|
|
270
|
+
Compiling hashbrown v0.16.0
|
|
271
|
+
Compiling generic-array v0.14.9
|
|
273
272
|
Compiling thiserror v1.0.69
|
|
274
273
|
Compiling equivalent v1.0.2
|
|
275
|
-
Compiling
|
|
276
|
-
Compiling prettyplease v0.2.37
|
|
277
|
-
Compiling itertools v0.10.5
|
|
274
|
+
Compiling num-traits v0.2.19
|
|
278
275
|
Compiling base64 v0.22.1
|
|
279
|
-
Compiling
|
|
280
|
-
Compiling heck v0.5.0
|
|
276
|
+
Compiling itertools v0.10.5
|
|
281
277
|
Compiling static_assertions v1.1.0
|
|
282
|
-
Compiling
|
|
278
|
+
Compiling heck v0.5.0
|
|
279
|
+
Compiling rustc_version v0.4.1
|
|
283
280
|
Compiling itertools v0.14.0
|
|
281
|
+
Compiling indexmap v2.12.0
|
|
282
|
+
Compiling syn v2.0.108
|
|
284
283
|
Compiling wasmparser v0.116.1
|
|
285
|
-
Compiling num-integer v0.1.46
|
|
286
284
|
Compiling crypto-common v0.1.6
|
|
287
285
|
Compiling block-buffer v0.10.4
|
|
288
|
-
Compiling num-
|
|
289
|
-
Compiling syn v2.0.108
|
|
286
|
+
Compiling num-integer v0.1.46
|
|
290
287
|
Compiling digest v0.10.7
|
|
291
288
|
Compiling sha2 v0.10.9
|
|
289
|
+
Compiling num-bigint v0.4.6
|
|
292
290
|
Compiling darling_core v0.21.3
|
|
293
291
|
Compiling darling_core v0.20.11
|
|
294
292
|
Compiling macro-string v0.1.4
|
|
@@ -296,8 +294,8 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
296
294
|
Compiling cfg_eval v0.1.2
|
|
297
295
|
Compiling thiserror-impl v1.0.69
|
|
298
296
|
Compiling num-derive v0.4.2
|
|
299
|
-
Compiling bytes-lit v0.0.5
|
|
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,14 +312,14 @@ $ 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 31.83s
|
|
322
320
|
ℹ️ Build Summary:
|
|
323
321
|
Wasm File: target/wasm32v1-none/release/endpoint_v2.wasm
|
|
324
|
-
Wasm Hash:
|
|
322
|
+
Wasm Hash: 98c3954e595515d37f5759a132d18f910156e8d48f7a8c59f618981b7f42e847
|
|
325
323
|
Exported Functions: 56 found
|
|
326
324
|
• __constructor
|
|
327
325
|
• burn
|
|
@@ -380,23 +378,103 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
380
378
|
• verify
|
|
381
379
|
• zro
|
|
382
380
|
✅ Build Complete
|
|
383
|
-
ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/
|
|
381
|
+
ℹ️ 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
|
|
384
382
|
Compiling escape-bytes v0.1.1
|
|
385
383
|
Compiling ethnum v1.5.2
|
|
386
384
|
Compiling static_assertions v1.1.0
|
|
387
|
-
Compiling num-traits v0.2.19
|
|
388
385
|
Compiling cfg-if v1.0.4
|
|
386
|
+
Compiling num-traits v0.2.19
|
|
389
387
|
Compiling stellar-xdr v23.0.0
|
|
390
388
|
Compiling soroban-env-common v23.0.1
|
|
391
389
|
Compiling soroban-env-guest v23.0.1
|
|
392
390
|
Compiling soroban-sdk v23.4.0
|
|
393
391
|
Compiling utils v0.0.1 (/workspace/contracts/protocol/stellar/contracts/utils)
|
|
394
392
|
Compiling endpoint-v2 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/endpoint-v2)
|
|
393
|
+
Compiling message-lib-common v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/message-lib-common)
|
|
394
|
+
Compiling uln302 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/uln-302)
|
|
395
|
+
Compiling layerzero-views v0.0.1 (/workspace/contracts/protocol/stellar/contracts/layerzero-views)
|
|
396
|
+
Finished `release` profile [optimized] target(s) in 7.81s
|
|
397
|
+
ℹ️ Build Summary:
|
|
398
|
+
Wasm File: target/wasm32v1-none/release/layerzero_views.wasm
|
|
399
|
+
Wasm Hash: 53e38dbbf15bc4149e8f8dfd0785992f1644691d43ec470af51bf2c95941c1b3
|
|
400
|
+
Exported Functions: 18 found
|
|
401
|
+
• __constructor
|
|
402
|
+
• endpoint
|
|
403
|
+
• executable
|
|
404
|
+
• extend_instance_ttl
|
|
405
|
+
• freeze_ttl_configs
|
|
406
|
+
• initializable
|
|
407
|
+
• is_ttl_configs_frozen
|
|
408
|
+
• local_eid
|
|
409
|
+
• migrate
|
|
410
|
+
• owner
|
|
411
|
+
• renounce_ownership
|
|
412
|
+
• set_ttl_configs
|
|
413
|
+
• transfer_ownership
|
|
414
|
+
• ttl_configs
|
|
415
|
+
• uln302
|
|
416
|
+
• uln_verifiable
|
|
417
|
+
• upgrade
|
|
418
|
+
• verifiable
|
|
419
|
+
✅ Build Complete
|
|
420
|
+
ℹ️ 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
|
|
421
|
+
Compiling message-lib-common v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/message-lib-common)
|
|
422
|
+
Compiling uln302 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/uln-302)
|
|
423
|
+
Finished `release` profile [optimized] target(s) in 1.06s
|
|
424
|
+
ℹ️ Build Summary:
|
|
425
|
+
Wasm File: target/wasm32v1-none/release/uln302.wasm
|
|
426
|
+
Wasm Hash: 1ccd79628f91142d5e757bfcfcb86d3af4072aa8552ea5dd7f853a9403add17e
|
|
427
|
+
Exported Functions: 34 found
|
|
428
|
+
• __constructor
|
|
429
|
+
• commit_verification
|
|
430
|
+
• confirmations
|
|
431
|
+
• default_executor_config
|
|
432
|
+
• default_receive_uln_config
|
|
433
|
+
• default_send_uln_config
|
|
434
|
+
• effective_executor_config
|
|
435
|
+
• effective_receive_uln_config
|
|
436
|
+
• effective_send_uln_config
|
|
437
|
+
• endpoint
|
|
438
|
+
• extend_instance_ttl
|
|
439
|
+
• freeze_ttl_configs
|
|
440
|
+
• get_config
|
|
441
|
+
• is_supported_eid
|
|
442
|
+
• is_ttl_configs_frozen
|
|
443
|
+
• message_lib_type
|
|
444
|
+
• oapp_executor_config
|
|
445
|
+
• oapp_receive_uln_config
|
|
446
|
+
• oapp_send_uln_config
|
|
447
|
+
• owner
|
|
448
|
+
• quote
|
|
449
|
+
• renounce_ownership
|
|
450
|
+
• send
|
|
451
|
+
• set_config
|
|
452
|
+
• set_default_executor_configs
|
|
453
|
+
• set_default_receive_uln_configs
|
|
454
|
+
• set_default_send_uln_configs
|
|
455
|
+
• set_ttl_configs
|
|
456
|
+
• transfer_ownership
|
|
457
|
+
• treasury
|
|
458
|
+
• ttl_configs
|
|
459
|
+
• verifiable
|
|
460
|
+
• verify
|
|
461
|
+
• version
|
|
462
|
+
✅ Build Complete
|
|
463
|
+
ℹ️ 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
|
|
464
|
+
Compiling upgrader v0.0.1 (/workspace/contracts/protocol/stellar/contracts/upgrader)
|
|
465
|
+
Finished `release` profile [optimized] target(s) in 0.23s
|
|
466
|
+
ℹ️ Build Summary:
|
|
467
|
+
Wasm File: target/wasm32v1-none/release/upgrader.wasm
|
|
468
|
+
Wasm Hash: f009511522da303dbeee8829c1f85653a00b135e323f275d680a1875cbfc0d07
|
|
469
|
+
Exported Functions: 1 found
|
|
470
|
+
• upgrade_and_migrate
|
|
471
|
+
✅ Build Complete
|
|
472
|
+
ℹ️ 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
|
|
395
473
|
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
|
|
474
|
+
Finished `release` profile [optimized] target(s) in 0.29s
|
|
397
475
|
ℹ️ Build Summary:
|
|
398
476
|
Wasm File: target/wasm32v1-none/release/blocked_message_lib.wasm
|
|
399
|
-
Wasm Hash:
|
|
477
|
+
Wasm Hash: 093657613f51621461dfc6614ea092c24c7f921fc8d3ec1c03ffe21d1d9a6d77
|
|
400
478
|
Exported Functions: 7 found
|
|
401
479
|
• get_config
|
|
402
480
|
• is_supported_eid
|
|
@@ -407,12 +485,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
407
485
|
• version
|
|
408
486
|
✅ Build Complete
|
|
409
487
|
ℹ️ 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
488
|
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.
|
|
489
|
+
Finished `release` profile [optimized] target(s) in 0.45s
|
|
413
490
|
ℹ️ Build Summary:
|
|
414
491
|
Wasm File: target/wasm32v1-none/release/simple_message_lib.wasm
|
|
415
|
-
Wasm Hash:
|
|
492
|
+
Wasm Hash: 3ba929e1fda532ccf6fa10f30f7eaa0625a275f66cc496a67d8ef0d1798542ed
|
|
416
493
|
Exported Functions: 27 found
|
|
417
494
|
• __constructor
|
|
418
495
|
• endpoint
|
|
@@ -444,10 +521,10 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
444
521
|
✅ Build Complete
|
|
445
522
|
ℹ️ 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
|
|
446
523
|
Compiling treasury v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/treasury)
|
|
447
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
524
|
+
Finished `release` profile [optimized] target(s) in 0.41s
|
|
448
525
|
ℹ️ Build Summary:
|
|
449
526
|
Wasm File: target/wasm32v1-none/release/treasury.wasm
|
|
450
|
-
Wasm Hash:
|
|
527
|
+
Wasm Hash: e80ed67f57c45ed7e42787ed2d62f779f8b8a7d65ff4028bced46909500527b7
|
|
451
528
|
Exported Functions: 17 found
|
|
452
529
|
• __constructor
|
|
453
530
|
• extend_instance_ttl
|
|
@@ -467,56 +544,14 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
467
544
|
• withdraw_token
|
|
468
545
|
• zro_fee_lib
|
|
469
546
|
✅ 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
547
|
ℹ️ 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)
|
|
548
|
+
Compiling oapp-macros v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp-macros)
|
|
514
549
|
Compiling oapp v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp)
|
|
515
550
|
Compiling counter v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/counter)
|
|
516
|
-
Finished `release` profile [optimized] target(s) in 1.
|
|
551
|
+
Finished `release` profile [optimized] target(s) in 1.14s
|
|
517
552
|
ℹ️ Build Summary:
|
|
518
553
|
Wasm File: target/wasm32v1-none/release/counter.wasm
|
|
519
|
-
Wasm Hash:
|
|
554
|
+
Wasm Hash: 5f0265c3f82b173f844e443d1c6338311529a7532159e46f9202142f1914c2cc
|
|
520
555
|
Exported Functions: 31 found
|
|
521
556
|
• __constructor
|
|
522
557
|
• allow_initialize_path
|
|
@@ -553,11 +588,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
553
588
|
ℹ️ 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
|
|
554
589
|
Compiling worker v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/worker)
|
|
555
590
|
Compiling executor v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor)
|
|
556
|
-
Finished `release` profile [optimized] target(s) in 1.
|
|
591
|
+
Finished `release` profile [optimized] target(s) in 1.18s
|
|
557
592
|
ℹ️ Build Summary:
|
|
558
593
|
Wasm File: target/wasm32v1-none/release/executor.wasm
|
|
559
|
-
Wasm Hash:
|
|
560
|
-
Exported Functions:
|
|
594
|
+
Wasm Hash: 5b21f569261ca3d7be9aafd19d9ab1ca713c8032f4c737a29dafc8813b8c621f
|
|
595
|
+
Exported Functions: 45 found
|
|
561
596
|
• __check_auth
|
|
562
597
|
• __constructor
|
|
563
598
|
• admins
|
|
@@ -579,6 +614,7 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
579
614
|
• is_ttl_configs_frozen
|
|
580
615
|
• is_whitelisted_fn
|
|
581
616
|
• message_libs
|
|
617
|
+
• migrate
|
|
582
618
|
• native_drop
|
|
583
619
|
• owner
|
|
584
620
|
• paused
|
|
@@ -599,30 +635,37 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
599
635
|
• set_worker_fee_lib
|
|
600
636
|
• transfer_ownership
|
|
601
637
|
• ttl_configs
|
|
638
|
+
• upgrade
|
|
602
639
|
• withdraw_token
|
|
603
640
|
• worker_fee_lib
|
|
604
641
|
✅ Build Complete
|
|
605
642
|
ℹ️ 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
|
|
606
643
|
Compiling oft v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft)
|
|
607
644
|
Compiling oft-std v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft-std)
|
|
608
|
-
Finished `release` profile [optimized] target(s) in 1.
|
|
645
|
+
Finished `release` profile [optimized] target(s) in 1.16s
|
|
609
646
|
ℹ️ Build Summary:
|
|
610
647
|
Wasm File: target/wasm32v1-none/release/oft_std.wasm
|
|
611
|
-
Wasm Hash:
|
|
612
|
-
Exported Functions:
|
|
648
|
+
Wasm Hash: 0a5518a31590af59fe4efda6df0d4a67b54071150e9fe98b3974a8689f78e759
|
|
649
|
+
Exported Functions: 46 found
|
|
613
650
|
• __constructor
|
|
614
651
|
• allow_initialize_path
|
|
615
652
|
• approval_required
|
|
616
653
|
• combine_options
|
|
617
654
|
• decimal_conversion_rate
|
|
655
|
+
• default_fee_bps
|
|
656
|
+
• effective_fee_bps
|
|
618
657
|
• endpoint
|
|
619
658
|
• enforced_options
|
|
620
659
|
• extend_instance_ttl
|
|
660
|
+
• fee_bps
|
|
661
|
+
• fee_deposit_address
|
|
621
662
|
• freeze_ttl_configs
|
|
663
|
+
• has_fee_bps
|
|
622
664
|
• is_compose_msg_sender
|
|
623
|
-
•
|
|
665
|
+
• is_paused
|
|
624
666
|
• is_ttl_configs_frozen
|
|
625
667
|
• lz_receive
|
|
668
|
+
• mode
|
|
626
669
|
• next_nonce
|
|
627
670
|
• oapp_version
|
|
628
671
|
• oft_version
|
|
@@ -630,24 +673,34 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
630
673
|
• peer
|
|
631
674
|
• quote_oft
|
|
632
675
|
• quote_send
|
|
676
|
+
• rate_limit_capacity
|
|
677
|
+
• rate_limit_config
|
|
678
|
+
• rate_limit_in_flight
|
|
633
679
|
• renounce_ownership
|
|
634
680
|
• send
|
|
681
|
+
• set_default_fee_bps
|
|
635
682
|
• set_delegate
|
|
636
683
|
• set_enforced_options
|
|
684
|
+
• set_fee_bps
|
|
685
|
+
• set_fee_deposit_address
|
|
686
|
+
• set_paused
|
|
637
687
|
• set_peer
|
|
688
|
+
• set_rate_limit
|
|
638
689
|
• set_ttl_configs
|
|
639
690
|
• shared_decimals
|
|
640
691
|
• token
|
|
641
692
|
• transfer_ownership
|
|
642
693
|
• ttl_configs
|
|
694
|
+
• unset_fee_bps
|
|
695
|
+
• unset_rate_limit
|
|
643
696
|
✅ Build Complete
|
|
644
697
|
ℹ️ 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
|
|
645
698
|
Compiling dvn v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/dvn)
|
|
646
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
699
|
+
Finished `release` profile [optimized] target(s) in 0.82s
|
|
647
700
|
ℹ️ Build Summary:
|
|
648
701
|
Wasm File: target/wasm32v1-none/release/dvn.wasm
|
|
649
|
-
Wasm Hash:
|
|
650
|
-
Exported Functions:
|
|
702
|
+
Wasm Hash: 09febd947d63bdff10a7a557beecea1e368dea33270fb64a867f786500d7762b
|
|
703
|
+
Exported Functions: 48 found
|
|
651
704
|
• __check_auth
|
|
652
705
|
• __constructor
|
|
653
706
|
• admins
|
|
@@ -670,11 +723,10 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
670
723
|
• is_supported_message_lib
|
|
671
724
|
• is_ttl_configs_frozen
|
|
672
725
|
• message_libs
|
|
673
|
-
•
|
|
726
|
+
• migrate
|
|
674
727
|
• paused
|
|
675
728
|
• price_feed
|
|
676
729
|
• quorum_change_admin
|
|
677
|
-
• renounce_ownership
|
|
678
730
|
• set_admin
|
|
679
731
|
• set_allowlist
|
|
680
732
|
• set_default_multiplier_bps
|
|
@@ -691,8 +743,8 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
691
743
|
• set_worker_fee_lib
|
|
692
744
|
• threshold
|
|
693
745
|
• total_signers
|
|
694
|
-
• transfer_ownership
|
|
695
746
|
• ttl_configs
|
|
747
|
+
• upgrade
|
|
696
748
|
• verify_n_signatures
|
|
697
749
|
• verify_signatures
|
|
698
750
|
• vid
|
|
@@ -700,32 +752,53 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
700
752
|
✅ Build Complete
|
|
701
753
|
ℹ️ 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
754
|
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.
|
|
755
|
+
Finished `release` profile [optimized] target(s) in 0.34s
|
|
704
756
|
ℹ️ Build Summary:
|
|
705
757
|
Wasm File: target/wasm32v1-none/release/dvn_fee_lib.wasm
|
|
706
|
-
Wasm Hash:
|
|
707
|
-
Exported Functions:
|
|
758
|
+
Wasm Hash: 42850a5252e9b46b61809b616c5daa6497ddd2a4adf4043b3f2d7a986e0df07a
|
|
759
|
+
Exported Functions: 12 found
|
|
760
|
+
• __constructor
|
|
761
|
+
• extend_instance_ttl
|
|
762
|
+
• freeze_ttl_configs
|
|
708
763
|
• get_fee
|
|
764
|
+
• is_ttl_configs_frozen
|
|
765
|
+
• migrate
|
|
766
|
+
• owner
|
|
767
|
+
• renounce_ownership
|
|
768
|
+
• set_ttl_configs
|
|
769
|
+
• transfer_ownership
|
|
770
|
+
• ttl_configs
|
|
771
|
+
• upgrade
|
|
709
772
|
✅ Build Complete
|
|
710
773
|
ℹ️ 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
774
|
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.
|
|
775
|
+
Finished `release` profile [optimized] target(s) in 0.39s
|
|
713
776
|
ℹ️ Build Summary:
|
|
714
777
|
Wasm File: target/wasm32v1-none/release/executor_fee_lib.wasm
|
|
715
|
-
Wasm Hash:
|
|
716
|
-
Exported Functions:
|
|
778
|
+
Wasm Hash: 55d75cf087ede2441e23555c39423f124b4d5831a641ed105e21232ccde028d7
|
|
779
|
+
Exported Functions: 13 found
|
|
780
|
+
• __constructor
|
|
781
|
+
• extend_instance_ttl
|
|
782
|
+
• freeze_ttl_configs
|
|
717
783
|
• get_fee
|
|
784
|
+
• is_ttl_configs_frozen
|
|
785
|
+
• migrate
|
|
786
|
+
• owner
|
|
787
|
+
• renounce_ownership
|
|
788
|
+
• set_ttl_configs
|
|
789
|
+
• transfer_ownership
|
|
790
|
+
• ttl_configs
|
|
791
|
+
• upgrade
|
|
718
792
|
• version
|
|
719
793
|
✅ Build Complete
|
|
720
794
|
ℹ️ 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
795
|
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
796
|
Compiling executor v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor)
|
|
724
797
|
Compiling executor-helper v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor-helper)
|
|
725
798
|
Finished `release` profile [optimized] target(s) in 1.06s
|
|
726
799
|
ℹ️ Build Summary:
|
|
727
800
|
Wasm File: target/wasm32v1-none/release/executor_helper.wasm
|
|
728
|
-
Wasm Hash:
|
|
801
|
+
Wasm Hash: 3cbf5e9eeffb0e8b6eb34bd5b225185aa9e9a034fe3bb5ab4156f4f2b34487ac
|
|
729
802
|
Exported Functions: 4 found
|
|
730
803
|
• compose
|
|
731
804
|
• execute
|
|
@@ -733,12 +806,13 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
733
806
|
• native_drop_and_execute
|
|
734
807
|
✅ Build Complete
|
|
735
808
|
ℹ️ 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
|
|
809
|
+
Compiling worker v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/worker)
|
|
736
810
|
Compiling price-feed v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/price-feed)
|
|
737
|
-
Finished `release` profile [optimized] target(s) in
|
|
811
|
+
Finished `release` profile [optimized] target(s) in 1.03s
|
|
738
812
|
ℹ️ Build Summary:
|
|
739
813
|
Wasm File: target/wasm32v1-none/release/price_feed.wasm
|
|
740
|
-
Wasm Hash:
|
|
741
|
-
Exported Functions:
|
|
814
|
+
Wasm Hash: ac282f65c2f570ff24516082198c19ce11a4e550e85f354d242e90c45cff919e
|
|
815
|
+
Exported Functions: 26 found
|
|
742
816
|
• __constructor
|
|
743
817
|
• arbitrum_compression_percent
|
|
744
818
|
• arbitrum_price_ext
|
|
@@ -748,10 +822,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
748
822
|
• freeze_ttl_configs
|
|
749
823
|
• get_price
|
|
750
824
|
• get_price_ratio_denominator
|
|
825
|
+
• is_price_updater
|
|
751
826
|
• is_ttl_configs_frozen
|
|
827
|
+
• migrate
|
|
752
828
|
• native_token_price_usd
|
|
753
829
|
• owner
|
|
754
|
-
• price_updater
|
|
755
830
|
• renounce_ownership
|
|
756
831
|
• set_arbitrum_compression_percent
|
|
757
832
|
• set_eid_to_model_type
|
|
@@ -763,8 +838,9 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
763
838
|
• set_ttl_configs
|
|
764
839
|
• transfer_ownership
|
|
765
840
|
• ttl_configs
|
|
841
|
+
• upgrade
|
|
766
842
|
✅ Build Complete
|
|
767
|
-
⏱️ stellar contract build:
|
|
843
|
+
⏱️ stellar contract build: 1:03.647 (m:ss.mmm)
|
|
768
844
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
|
|
769
845
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-config
|
|
770
846
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup
|
|
@@ -786,80 +862,80 @@ sha256:2477334a514bfb7b9dd6b51d49e5c2ef2ca47d8f4fca31ca4209be570fec6423
|
|
|
786
862
|
🔒 Acquired lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
|
|
787
863
|
$ 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
864
|
Downloading crates ...
|
|
789
|
-
Downloaded
|
|
865
|
+
Downloaded digest v0.9.0
|
|
866
|
+
Downloaded include_dir v0.7.4
|
|
790
867
|
Downloaded opaque-debug v0.3.1
|
|
791
868
|
Downloaded block-buffer v0.9.0
|
|
869
|
+
Downloaded anyhow v1.0.100
|
|
870
|
+
Downloaded include_dir_macros v0.7.4
|
|
871
|
+
Downloaded glob v0.3.3
|
|
792
872
|
Downloaded heck v0.4.1
|
|
793
873
|
Downloaded sha2 v0.9.9
|
|
794
|
-
Downloaded include_dir v0.7.4
|
|
795
|
-
Downloaded digest v0.9.0
|
|
796
874
|
Downloaded base64 v0.21.7
|
|
797
|
-
Downloaded anyhow v1.0.100
|
|
798
|
-
Downloaded glob v0.3.3
|
|
799
875
|
Downloaded soroban-spec-typescript v23.1.4
|
|
800
876
|
Compiling proc-macro2 v1.0.103
|
|
801
|
-
Compiling quote v1.0.41
|
|
802
877
|
Compiling unicode-ident v1.0.22
|
|
878
|
+
Compiling quote v1.0.41
|
|
803
879
|
Compiling serde_json v1.0.145
|
|
804
|
-
Compiling version_check v0.9.5
|
|
805
880
|
Compiling typenum v1.19.0
|
|
881
|
+
Compiling version_check v0.9.5
|
|
806
882
|
Compiling serde_core v1.0.228
|
|
807
883
|
Compiling serde v1.0.228
|
|
808
884
|
Compiling ryu v1.0.20
|
|
809
885
|
Compiling memchr v2.7.6
|
|
810
886
|
Compiling itoa v1.0.15
|
|
811
|
-
Compiling fnv v1.0.7
|
|
812
|
-
Compiling ident_case v1.0.1
|
|
813
887
|
Compiling strsim v0.11.1
|
|
814
|
-
Compiling
|
|
888
|
+
Compiling ident_case v1.0.1
|
|
889
|
+
Compiling fnv v1.0.7
|
|
815
890
|
Compiling schemars v0.8.22
|
|
816
|
-
Compiling cpufeatures v0.2.17
|
|
817
891
|
Compiling dyn-clone v1.0.20
|
|
818
892
|
Compiling cfg-if v1.0.4
|
|
819
|
-
Compiling
|
|
820
|
-
Compiling data-encoding v2.9.0
|
|
893
|
+
Compiling cpufeatures v0.2.17
|
|
821
894
|
Compiling hashbrown v0.16.0
|
|
895
|
+
Compiling data-encoding v2.9.0
|
|
896
|
+
Compiling thiserror v1.0.69
|
|
822
897
|
Compiling equivalent v1.0.2
|
|
823
|
-
Compiling
|
|
898
|
+
Compiling ethnum v1.5.2
|
|
899
|
+
Compiling base64 v0.22.1
|
|
824
900
|
Compiling prettyplease v0.2.37
|
|
901
|
+
Compiling generic-array v0.14.9
|
|
825
902
|
Compiling escape-bytes v0.1.1
|
|
826
|
-
Compiling
|
|
827
|
-
Compiling ethnum v1.5.2
|
|
828
|
-
Compiling either v1.15.0
|
|
829
|
-
Compiling indexmap v2.12.0
|
|
830
|
-
Compiling glob v0.3.3
|
|
903
|
+
Compiling semver v1.0.27
|
|
831
904
|
Compiling opaque-debug v0.3.1
|
|
905
|
+
Compiling either v1.15.0
|
|
832
906
|
Compiling anyhow v1.0.100
|
|
907
|
+
Compiling glob v0.3.3
|
|
833
908
|
Compiling base64 v0.21.7
|
|
834
|
-
Compiling heck v0.4.1
|
|
835
909
|
Compiling itertools v0.10.5
|
|
836
|
-
Compiling
|
|
910
|
+
Compiling heck v0.4.1
|
|
911
|
+
Compiling indexmap v2.12.0
|
|
837
912
|
Compiling syn v2.0.108
|
|
838
|
-
Compiling include_dir_macros v0.7.4
|
|
839
913
|
Compiling block-buffer v0.10.4
|
|
840
914
|
Compiling crypto-common v0.1.6
|
|
841
|
-
Compiling digest v0.9.0
|
|
842
915
|
Compiling block-buffer v0.9.0
|
|
916
|
+
Compiling digest v0.9.0
|
|
843
917
|
Compiling digest v0.10.7
|
|
918
|
+
Compiling wasmparser v0.116.1
|
|
844
919
|
Compiling sha2 v0.9.9
|
|
845
920
|
Compiling sha2 v0.10.9
|
|
921
|
+
Compiling include_dir_macros v0.7.4
|
|
922
|
+
Compiling include_dir v0.7.4
|
|
846
923
|
Compiling darling_core v0.21.3
|
|
847
924
|
Compiling serde_derive v1.0.228
|
|
848
|
-
Compiling cfg_eval v0.1.2
|
|
849
925
|
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
|
|
926
|
+
Compiling cfg_eval v0.1.2
|
|
854
927
|
Compiling crate-git-revision v0.0.6
|
|
855
928
|
Compiling stellar-strkey v0.0.13
|
|
856
929
|
Compiling stellar-xdr v23.0.0
|
|
930
|
+
Compiling darling_macro v0.21.3
|
|
857
931
|
Compiling hex v0.4.3
|
|
932
|
+
Compiling darling v0.21.3
|
|
933
|
+
Compiling serde_with_macros v3.15.1
|
|
858
934
|
Compiling serde_with v3.15.1
|
|
859
935
|
Compiling soroban-spec v23.4.0
|
|
860
936
|
Compiling soroban-spec-typescript v23.1.4
|
|
861
937
|
Compiling ts-bindings-gen v0.0.1 (/workspace/contracts/protocol/stellar/tools/ts-bindings-gen)
|
|
862
|
-
Finished `dev` profile [unoptimized + debuginfo] target(s) in
|
|
938
|
+
Finished `dev` profile [unoptimized + debuginfo] target(s) in 42.90s
|
|
863
939
|
Running `target/debug/ts-bindings-gen`
|
|
864
940
|
🚀 Generating TypeScript bindings for Stellar contracts...
|
|
865
941
|
|
|
@@ -883,21 +959,46 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
883
959
|
Output: sdk/src/generated/uln302.ts
|
|
884
960
|
Generating bindings...
|
|
885
961
|
✓ Generated: sdk/src/generated/uln302.ts
|
|
886
|
-
📦 Processing contract:
|
|
887
|
-
WASM: target/wasm32v1-none/release/
|
|
888
|
-
Output: sdk/src/generated/
|
|
962
|
+
📦 Processing contract: upgrader
|
|
963
|
+
WASM: target/wasm32v1-none/release/upgrader.wasm
|
|
964
|
+
Output: sdk/src/generated/upgrader.ts
|
|
889
965
|
Generating bindings...
|
|
890
|
-
✓ Generated: sdk/src/generated/
|
|
966
|
+
✓ Generated: sdk/src/generated/upgrader.ts
|
|
967
|
+
📦 Processing contract: dvn
|
|
968
|
+
WASM: target/wasm32v1-none/release/dvn.wasm
|
|
969
|
+
Output: sdk/src/generated/dvn.ts
|
|
970
|
+
Generating bindings...
|
|
971
|
+
✓ Generated: sdk/src/generated/dvn.ts
|
|
972
|
+
📦 Processing contract: dvn_fee_lib
|
|
973
|
+
WASM: target/wasm32v1-none/release/dvn_fee_lib.wasm
|
|
974
|
+
Output: sdk/src/generated/dvn_fee_lib.ts
|
|
975
|
+
Generating bindings...
|
|
976
|
+
✓ Generated: sdk/src/generated/dvn_fee_lib.ts
|
|
891
977
|
📦 Processing contract: executor
|
|
892
978
|
WASM: target/wasm32v1-none/release/executor.wasm
|
|
893
979
|
Output: sdk/src/generated/executor.ts
|
|
894
980
|
Generating bindings...
|
|
895
981
|
✓ Generated: sdk/src/generated/executor.ts
|
|
982
|
+
📦 Processing contract: executor_fee_lib
|
|
983
|
+
WASM: target/wasm32v1-none/release/executor_fee_lib.wasm
|
|
984
|
+
Output: sdk/src/generated/executor_fee_lib.ts
|
|
985
|
+
Generating bindings...
|
|
986
|
+
✓ Generated: sdk/src/generated/executor_fee_lib.ts
|
|
896
987
|
📦 Processing contract: executor_helper
|
|
897
988
|
WASM: target/wasm32v1-none/release/executor_helper.wasm
|
|
898
989
|
Output: sdk/src/generated/executor_helper.ts
|
|
899
990
|
Generating bindings...
|
|
900
991
|
✓ Generated: sdk/src/generated/executor_helper.ts
|
|
992
|
+
📦 Processing contract: price_feed
|
|
993
|
+
WASM: target/wasm32v1-none/release/price_feed.wasm
|
|
994
|
+
Output: sdk/src/generated/price_feed.ts
|
|
995
|
+
Generating bindings...
|
|
996
|
+
✓ Generated: sdk/src/generated/price_feed.ts
|
|
997
|
+
📦 Processing contract: counter
|
|
998
|
+
WASM: target/wasm32v1-none/release/counter.wasm
|
|
999
|
+
Output: sdk/src/generated/counter.ts
|
|
1000
|
+
Generating bindings...
|
|
1001
|
+
✓ Generated: sdk/src/generated/counter.ts
|
|
901
1002
|
📦 Processing contract: oft_std
|
|
902
1003
|
WASM: target/wasm32v1-none/release/oft_std.wasm
|
|
903
1004
|
Output: sdk/src/generated/oft_std.ts
|
|
@@ -905,18 +1006,23 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
905
1006
|
✓ Generated: sdk/src/generated/oft_std.ts
|
|
906
1007
|
|
|
907
1008
|
✅ TypeScript binding generation complete!
|
|
908
|
-
Generated
|
|
1009
|
+
Generated 13 contract(s)
|
|
909
1010
|
|
|
910
1011
|
📦 Generated files in sdk/src/generated/:
|
|
911
1012
|
- endpoint.ts
|
|
912
1013
|
- sml.ts
|
|
913
1014
|
- bml.ts
|
|
914
1015
|
- uln302.ts
|
|
915
|
-
-
|
|
1016
|
+
- upgrader.ts
|
|
1017
|
+
- dvn.ts
|
|
1018
|
+
- dvn_fee_lib.ts
|
|
916
1019
|
- executor.ts
|
|
1020
|
+
- executor_fee_lib.ts
|
|
917
1021
|
- executor_helper.ts
|
|
1022
|
+
- price_feed.ts
|
|
1023
|
+
- counter.ts
|
|
918
1024
|
- oft_std.ts
|
|
919
|
-
⏱️ bash -c cargo run -p ts-bindings-gen:
|
|
1025
|
+
⏱️ bash -c cargo run -p ts-bindings-gen: 43.274s
|
|
920
1026
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
|
|
921
1027
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-config
|
|
922
1028
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup
|