@layerzerolabs/protocol-stellar-v2 0.2.22 → 0.2.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +331 -261
- package/.turbo/turbo-lint.log +262 -192
- package/.turbo/turbo-test.log +1696 -1368
- package/Cargo.lock +22 -51
- package/Cargo.toml +6 -1
- package/contracts/common-macros/src/auth.rs +10 -9
- package/contracts/common-macros/src/contract_ttl.rs +1 -4
- package/contracts/common-macros/src/error.rs +1 -3
- package/contracts/common-macros/src/lib.rs +65 -61
- package/contracts/common-macros/src/storage.rs +212 -65
- package/contracts/common-macros/src/tests/auth.rs +75 -6
- package/contracts/common-macros/src/tests/contract_ttl.rs +383 -350
- package/contracts/common-macros/src/tests/error.rs +9 -21
- package/contracts/common-macros/src/tests/lz_contract.rs +80 -0
- package/contracts/common-macros/src/tests/mod.rs +2 -0
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__auth__snapshot_generated_multisig_code.snap +20 -3
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__auth__snapshot_generated_ownable_code.snap +28 -1
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__contract_ttl__snapshot_generated_contractimpl_code.snap +8 -43
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__contract_ttl__snapshot_generated_contracttrait_code.snap +6 -29
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__lz_contract__snapshot_generated_lz_contract_code.snap +31 -0
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__ttl_extendable__snapshot_generated_ttl_extendable_code.snap +8 -0
- package/contracts/common-macros/src/tests/storage/extract_fields.rs +87 -0
- package/contracts/common-macros/src/tests/storage/gen_accessor_methods.rs +223 -0
- package/contracts/common-macros/src/tests/storage/gen_args.rs +65 -0
- package/contracts/common-macros/src/tests/storage/gen_enum_variant.rs +78 -0
- package/contracts/common-macros/src/tests/storage/gen_key.rs +108 -0
- package/contracts/common-macros/src/tests/storage/gen_params.rs +105 -0
- package/contracts/common-macros/src/tests/{storage.rs → storage/generate_storage.rs} +54 -129
- package/contracts/common-macros/src/tests/storage/is_primitive_type.rs +48 -0
- package/contracts/common-macros/src/tests/storage/mod.rs +16 -0
- package/contracts/common-macros/src/tests/storage/parse_default.rs +164 -0
- package/contracts/common-macros/src/tests/storage/parse_name.rs +159 -0
- package/contracts/common-macros/src/tests/storage/parse_no_ttl_extension.rs +124 -0
- package/contracts/common-macros/src/tests/storage/parse_storage_type.rs +174 -0
- package/contracts/common-macros/src/tests/storage/snapshots/common_macros__tests__storage__generate_storage__snapshot_generated_storage_code.snap +412 -0
- package/contracts/common-macros/src/tests/storage/storage_kind.rs +39 -0
- package/contracts/common-macros/src/tests/storage/test_setup.rs +25 -0
- package/contracts/common-macros/src/tests/storage/validate_attrs.rs +138 -0
- package/contracts/common-macros/src/tests/storage/variant_config.rs +226 -0
- package/contracts/common-macros/src/tests/test_helpers.rs +4 -10
- package/contracts/common-macros/src/tests/ttl_configurable.rs +2 -2
- package/contracts/common-macros/src/tests/ttl_extendable.rs +32 -0
- package/contracts/common-macros/src/tests/upgradeable.rs +118 -2
- package/contracts/common-macros/src/ttl_configurable.rs +1 -4
- package/contracts/common-macros/src/upgradeable.rs +21 -3
- package/contracts/endpoint-v2/Cargo.toml +0 -4
- package/contracts/endpoint-v2/src/endpoint_v2.rs +37 -17
- package/contracts/endpoint-v2/src/errors.rs +26 -1
- package/contracts/endpoint-v2/src/interfaces/layerzero_endpoint_v2.rs +1 -1
- package/contracts/endpoint-v2/src/interfaces/message_lib_manager.rs +4 -4
- package/contracts/endpoint-v2/src/interfaces/messaging_composer.rs +2 -2
- package/contracts/endpoint-v2/src/lib.rs +0 -1
- package/contracts/endpoint-v2/src/message_lib_manager.rs +39 -8
- package/contracts/endpoint-v2/src/messaging_channel.rs +36 -4
- package/contracts/endpoint-v2/src/messaging_composer.rs +18 -4
- package/contracts/endpoint-v2/src/storage.rs +9 -1
- package/contracts/endpoint-v2/src/tests/endpoint_setup.rs +2 -2
- package/contracts/endpoint-v2/src/tests/endpoint_v2/pay_messaging_fees.rs +1 -1
- package/contracts/endpoint-v2/src/tests/endpoint_v2/require_oapp_auth.rs +2 -2
- package/contracts/endpoint-v2/src/tests/message_lib_manager/register_library.rs +3 -3
- package/contracts/endpoint-v2/src/tests/message_lib_manager/require_receive_lib_for_eid.rs +5 -5
- package/contracts/endpoint-v2/src/tests/message_lib_manager/require_registered.rs +2 -2
- package/contracts/endpoint-v2/src/tests/message_lib_manager/require_send_lib_for_eid.rs +5 -5
- package/contracts/endpoint-v2/src/tests/message_lib_manager/require_supported_eid.rs +3 -3
- package/contracts/endpoint-v2/src/tests/messaging_channel/nilify.rs +1 -1
- package/contracts/endpoint-v2/src/tests/messaging_composer/clear_compose.rs +4 -3
- package/contracts/endpoint-v2/src/tests/messaging_composer/lz_compose_alert.rs +7 -2
- package/contracts/endpoint-v2/src/tests/messaging_composer/mod.rs +4 -0
- package/contracts/endpoint-v2/src/tests/messaging_composer/send_compose.rs +7 -2
- package/contracts/layerzero-views/src/layerzero_view.rs +0 -1
- package/contracts/layerzero-views/src/tests/mod.rs +1 -0
- package/contracts/layerzero-views/src/tests/types_tests.rs +31 -0
- package/contracts/layerzero-views/src/types.rs +2 -3
- package/contracts/macro-integration-tests/tests/runtime/contract_ttl/constructor.rs +61 -0
- package/contracts/macro-integration-tests/tests/runtime/contract_ttl/contract_impl_ttl_extension.rs +97 -0
- package/contracts/macro-integration-tests/tests/runtime/contract_ttl/contract_trait_ttl_extension.rs +99 -0
- package/contracts/macro-integration-tests/tests/runtime/contract_ttl/mod.rs +3 -0
- package/contracts/macro-integration-tests/tests/runtime/lz_contract/mod.rs +5 -0
- package/contracts/macro-integration-tests/tests/runtime/lz_contract/wrapper_default.rs +86 -0
- package/contracts/macro-integration-tests/tests/runtime/lz_contract/wrapper_multisig.rs +47 -0
- package/contracts/macro-integration-tests/tests/runtime/lz_contract/wrapper_multisig_upgradeable.rs +77 -0
- package/contracts/macro-integration-tests/tests/runtime/lz_contract/wrapper_upgradeable.rs +114 -0
- package/contracts/macro-integration-tests/tests/runtime/lz_contract/wrapper_upgradeable_no_migration.rs +105 -0
- package/contracts/macro-integration-tests/tests/runtime/multisig/admin_entrypoints.rs +242 -0
- package/contracts/macro-integration-tests/tests/runtime/multisig/mod.rs +9 -0
- package/contracts/macro-integration-tests/tests/runtime/multisig/self_auth.rs +54 -0
- package/contracts/macro-integration-tests/tests/runtime/ownable/initialization.rs +13 -0
- package/contracts/macro-integration-tests/tests/runtime/ownable/mod.rs +1 -0
- package/contracts/macro-integration-tests/tests/runtime/ownable/ownership_transfer.rs +70 -1
- package/contracts/macro-integration-tests/tests/runtime/ownable/two_step_transfer.rs +219 -0
- package/contracts/macro-integration-tests/tests/runtime/storage/keyed_roundtrip.rs +41 -0
- package/contracts/macro-integration-tests/tests/runtime/storage/ttl_extension.rs +48 -16
- package/contracts/macro-integration-tests/tests/runtime/storage/unkeyed_roundtrip.rs +10 -0
- package/contracts/macro-integration-tests/tests/runtime/ttl_configurable/configuration.rs +96 -3
- package/contracts/macro-integration-tests/tests/runtime/ttl_configurable/freeze.rs +4 -0
- package/contracts/macro-integration-tests/tests/runtime/ttl_extendable/extend_instance_ttl.rs +64 -0
- package/contracts/macro-integration-tests/tests/runtime/ttl_extendable/mod.rs +16 -0
- package/contracts/macro-integration-tests/tests/runtime/upgradeable/migrate_guard_and_state.rs +305 -0
- package/contracts/macro-integration-tests/tests/runtime/upgradeable/mod.rs +3 -0
- package/contracts/macro-integration-tests/tests/runtime/upgradeable/no_migration.rs +59 -0
- package/contracts/macro-integration-tests/tests/runtime/upgradeable/upgrade_then_migrate.rs +88 -0
- package/contracts/macro-integration-tests/tests/runtime.rs +5 -0
- package/contracts/macro-integration-tests/tests/ui/contract_impl/fail/not_impl_item.rs +6 -0
- package/contracts/macro-integration-tests/tests/ui/contract_impl/fail/not_impl_item.stderr +7 -0
- package/contracts/macro-integration-tests/tests/ui/contract_impl/pass/basic.rs +102 -0
- package/contracts/macro-integration-tests/tests/ui/contract_trait/fail/not_a_trait.rs +6 -0
- package/contracts/macro-integration-tests/tests/ui/contract_trait/fail/not_a_trait.stderr +7 -0
- package/contracts/macro-integration-tests/tests/ui/contract_trait/pass/basic.rs +83 -0
- package/contracts/macro-integration-tests/tests/ui/error/fail/discriminant_too_large.rs +11 -0
- package/contracts/macro-integration-tests/tests/ui/error/fail/discriminant_too_large.stderr +7 -0
- package/contracts/macro-integration-tests/tests/ui/error/fail/non_enum_input.rs +11 -0
- package/contracts/macro-integration-tests/tests/ui/error/fail/non_enum_input.stderr +7 -0
- package/contracts/macro-integration-tests/tests/ui/error/pass/basic.rs +22 -0
- package/contracts/macro-integration-tests/tests/ui/lz_contract/fail/invalid_option.rs +6 -0
- package/contracts/macro-integration-tests/tests/ui/lz_contract/fail/invalid_option.stderr +7 -0
- package/contracts/macro-integration-tests/tests/ui/lz_contract/fail/multisig_rejects_ownable_api.rs +20 -0
- package/contracts/macro-integration-tests/tests/ui/lz_contract/fail/multisig_rejects_ownable_api.stderr +20 -0
- package/contracts/macro-integration-tests/tests/ui/lz_contract/fail/not_a_struct.rs +8 -0
- package/contracts/macro-integration-tests/tests/ui/lz_contract/fail/not_a_struct.stderr +7 -0
- package/contracts/macro-integration-tests/tests/ui/lz_contract/fail/upgradeable_invalid_inner_option.rs +10 -0
- package/contracts/macro-integration-tests/tests/ui/lz_contract/fail/upgradeable_invalid_inner_option.stderr +7 -0
- package/contracts/macro-integration-tests/tests/ui/lz_contract/fail/upgradeable_missing_internal.rs +20 -0
- package/contracts/macro-integration-tests/tests/ui/lz_contract/fail/upgradeable_missing_internal.stderr +86 -0
- package/contracts/macro-integration-tests/tests/ui/lz_contract/pass/basic.rs +45 -0
- package/contracts/macro-integration-tests/tests/ui/lz_contract/pass/multisig.rs +34 -0
- package/contracts/macro-integration-tests/tests/ui/lz_contract/pass/multisig_upgradeable.rs +30 -0
- package/contracts/macro-integration-tests/tests/ui/lz_contract/pass/upgradeable.rs +39 -0
- package/contracts/macro-integration-tests/tests/ui/lz_contract/pass/upgradeable_no_migration.rs +28 -0
- package/contracts/macro-integration-tests/tests/ui/multisig/fail/non_struct_input.rs +8 -0
- package/contracts/macro-integration-tests/tests/ui/multisig/fail/non_struct_input.stderr +7 -0
- package/contracts/macro-integration-tests/tests/ui/multisig/fail/rejects_ownable_api.rs +20 -0
- package/contracts/macro-integration-tests/tests/ui/multisig/fail/rejects_ownable_api.stderr +12 -0
- package/contracts/macro-integration-tests/tests/ui/multisig/fail/rejects_ownable_trait.rs +20 -0
- package/contracts/macro-integration-tests/tests/ui/multisig/fail/rejects_ownable_trait.stderr +5 -0
- package/contracts/macro-integration-tests/tests/ui/multisig/pass/basic.rs +49 -0
- package/contracts/macro-integration-tests/tests/ui/ownable/fail/non_struct_input.rs +8 -0
- package/contracts/macro-integration-tests/tests/ui/ownable/fail/non_struct_input.stderr +7 -0
- package/contracts/macro-integration-tests/tests/ui/ownable/fail/only_auth_missing_auth.rs +19 -0
- package/contracts/macro-integration-tests/tests/ui/ownable/fail/only_auth_missing_auth.stderr +12 -0
- package/contracts/macro-integration-tests/tests/ui/ownable/fail/only_auth_missing_env.rs +1 -1
- package/contracts/macro-integration-tests/tests/ui/ownable/fail/only_auth_missing_env.stderr +0 -8
- package/contracts/macro-integration-tests/tests/ui/ownable/pass/basic.rs +39 -0
- package/contracts/macro-integration-tests/tests/ui/ownable/pass/only_auth_env_param_variants.rs +7 -1
- package/contracts/macro-integration-tests/tests/ui/storage/fail/invalid_storage_type_param.stderr +1 -1
- package/contracts/macro-integration-tests/tests/ui/storage/fail/missing_storage_type_param.stderr +1 -1
- package/contracts/macro-integration-tests/tests/ui/storage/fail/multiple_default_values.rs +11 -0
- package/contracts/macro-integration-tests/tests/ui/storage/fail/multiple_default_values.stderr +7 -0
- package/contracts/macro-integration-tests/tests/ui/storage/fail/multiple_name_attrs.rs +11 -0
- package/contracts/macro-integration-tests/tests/ui/storage/fail/multiple_name_attrs.stderr +7 -0
- package/contracts/macro-integration-tests/tests/ui/storage/fail/multiple_no_ttl_extension.rs +11 -0
- package/contracts/macro-integration-tests/tests/ui/storage/fail/multiple_no_ttl_extension.stderr +7 -0
- package/contracts/macro-integration-tests/tests/ui/storage/fail/multiple_type_params.stderr +1 -1
- package/contracts/macro-integration-tests/tests/ui/storage/fail/no_ttl_extension_rejects_args.rs +13 -0
- package/contracts/macro-integration-tests/tests/ui/storage/fail/no_ttl_extension_rejects_args.stderr +7 -0
- package/contracts/macro-integration-tests/tests/ui/storage/pass/api_surface.rs +102 -0
- package/contracts/macro-integration-tests/tests/ui/storage/pass/basic.rs +43 -0
- package/contracts/macro-integration-tests/tests/ui/storage/pass/multi_key.rs +38 -0
- package/contracts/macro-integration-tests/tests/ui/ttl_configurable/fail/missing_auth_trait.rs +14 -0
- package/contracts/macro-integration-tests/tests/ui/ttl_configurable/fail/missing_auth_trait.stderr +71 -0
- package/contracts/macro-integration-tests/tests/ui/ttl_configurable/fail/non_struct_input.rs +8 -0
- package/contracts/macro-integration-tests/tests/ui/ttl_configurable/fail/non_struct_input.stderr +7 -0
- package/contracts/macro-integration-tests/tests/ui/ttl_configurable/pass/{minimal_contract.rs → basic.rs} +2 -0
- package/contracts/macro-integration-tests/tests/ui/ttl_configurable/pass/multisig_contract.rs +28 -0
- package/contracts/macro-integration-tests/tests/ui/ttl_configurable/pass/ownable_contract.rs +32 -0
- package/contracts/macro-integration-tests/tests/ui/ttl_extendable/fail/non_struct_input.rs +8 -0
- package/contracts/macro-integration-tests/tests/ui/ttl_extendable/fail/non_struct_input.stderr +7 -0
- package/contracts/macro-integration-tests/tests/ui/ttl_extendable/pass/basic.rs +23 -0
- package/contracts/macro-integration-tests/tests/ui/ttl_extendable/pass/no_user_contractimpl.rs +21 -0
- package/contracts/macro-integration-tests/tests/ui/upgradeable/fail/attr_args.rs +11 -0
- package/contracts/macro-integration-tests/tests/ui/upgradeable/fail/attr_args.stderr +29 -0
- package/contracts/macro-integration-tests/tests/ui/upgradeable/fail/missing_auth_trait.rs +20 -0
- package/contracts/macro-integration-tests/tests/ui/upgradeable/fail/missing_auth_trait.stderr +71 -0
- package/contracts/macro-integration-tests/tests/ui/upgradeable/fail/missing_upgradeable_internal.rs +10 -0
- package/contracts/macro-integration-tests/tests/ui/upgradeable/fail/missing_upgradeable_internal.stderr +79 -0
- package/contracts/macro-integration-tests/tests/ui/upgradeable/fail/non_struct_input.rs +8 -0
- package/contracts/macro-integration-tests/tests/ui/upgradeable/fail/non_struct_input.stderr +7 -0
- package/contracts/macro-integration-tests/tests/ui/upgradeable/pass/basic.rs +43 -0
- package/contracts/macro-integration-tests/tests/ui/upgradeable/pass/multisig_contract.rs +35 -0
- package/contracts/macro-integration-tests/tests/ui/upgradeable/pass/no_migration.rs +30 -0
- package/contracts/macro-integration-tests/tests/ui/upgradeable/pass/no_user_contractimpl.rs +29 -0
- package/contracts/macro-integration-tests/tests/ui_contract_impl.rs +12 -0
- package/contracts/macro-integration-tests/tests/ui_contract_trait.rs +12 -0
- package/contracts/macro-integration-tests/tests/ui_lz_contract.rs +11 -0
- package/contracts/macro-integration-tests/tests/ui_multisig.rs +11 -0
- package/contracts/macro-integration-tests/tests/ui_ttl_extendable.rs +12 -0
- package/contracts/macro-integration-tests/tests/ui_upgradeable.rs +11 -0
- package/contracts/message-libs/blocked-message-lib/Cargo.toml +1 -1
- package/contracts/message-libs/blocked-message-lib/src/lib.rs +4 -1
- package/contracts/message-libs/blocked-message-lib/src/tests/blocked_message_lib_tests.rs +108 -0
- package/contracts/message-libs/blocked-message-lib/src/tests/mod.rs +4 -0
- package/contracts/message-libs/blocked-message-lib/src/tests/setup.rs +40 -0
- package/contracts/message-libs/simple-message-lib/src/lib.rs +1 -1
- package/contracts/message-libs/simple-message-lib/src/tests/mod.rs +2 -0
- package/contracts/message-libs/simple-message-lib/src/tests/setup.rs +124 -0
- package/contracts/message-libs/simple-message-lib/src/tests/simple_message_lib_tests.rs +309 -0
- package/contracts/message-libs/uln-302/src/errors.rs +21 -0
- package/contracts/message-libs/uln-302/src/interfaces/receive_uln.rs +1 -1
- package/contracts/message-libs/uln-302/src/receive_uln.rs +6 -4
- package/contracts/message-libs/uln-302/src/send_uln.rs +15 -6
- package/contracts/message-libs/uln-302/src/storage.rs +5 -5
- package/contracts/message-libs/uln-302/src/tests/uln302/get_config.rs +71 -0
- package/contracts/message-libs/uln-302/src/tests/uln302/mod.rs +1 -0
- package/contracts/message-libs/uln-302/src/uln302.rs +3 -0
- package/contracts/oapps/counter/Cargo.toml +2 -0
- package/contracts/oapps/counter/integration_tests/mod.rs +1 -0
- package/contracts/oapps/counter/integration_tests/setup_sml.rs +6 -4
- package/contracts/oapps/counter/integration_tests/setup_uln.rs +12 -5
- package/contracts/oapps/counter/integration_tests/test_with_blocked.rs +67 -0
- package/contracts/oapps/counter/src/tests/mod.rs +1 -0
- package/contracts/oapps/counter/src/tests/test_u256_ext.rs +48 -0
- package/contracts/oapps/oapp/src/lib.rs +0 -3
- package/contracts/oapps/oapp/src/tests/mod.rs +1 -0
- package/contracts/oapps/oft/integration-tests/setup.rs +2 -3
- package/contracts/oapps/oft/src/lib.rs +3 -0
- package/contracts/oapps/oft/src/tests/extensions/mod.rs +3 -0
- package/contracts/oapps/oft/src/tests/extensions/oft_fee.rs +240 -0
- package/contracts/oapps/oft/src/tests/extensions/pausable.rs +141 -0
- package/contracts/oapps/oft/src/tests/extensions/rate_limiter.rs +447 -0
- package/contracts/oapps/oft/src/tests/mod.rs +2 -0
- package/contracts/oapps/oft/src/tests/oft_types/lock_unlock.rs +180 -0
- package/contracts/oapps/oft/src/tests/oft_types/mod.rs +1 -0
- package/contracts/oapps/oft-core/integration-tests/setup.rs +2 -3
- package/contracts/oapps/oft-core/src/lib.rs +2 -2
- package/contracts/oapps/oft-core/src/tests/mod.rs +1 -1
- package/contracts/oapps/oft-core/src/tests/{test_oft_version.rs → test_oft_version_and_approval.rs} +9 -0
- package/contracts/oapps/oft-core/src/tests/test_utils.rs +0 -43
- package/contracts/upgrader/src/tests/test_upgrader.rs +18 -0
- package/contracts/utils/src/auth.rs +2 -2
- package/contracts/utils/src/buffer_reader.rs +61 -10
- package/contracts/utils/src/buffer_writer.rs +35 -20
- package/contracts/utils/src/bytes_ext.rs +1 -2
- package/contracts/utils/src/errors.rs +5 -3
- package/contracts/utils/src/multisig.rs +59 -36
- package/contracts/utils/src/option_ext.rs +3 -3
- package/contracts/utils/src/ownable.rs +12 -6
- package/contracts/utils/src/tests/auth.rs +179 -0
- package/contracts/utils/src/tests/buffer_reader.rs +203 -1
- package/contracts/utils/src/tests/buffer_writer.rs +176 -5
- package/contracts/utils/src/tests/mod.rs +2 -0
- package/contracts/utils/src/tests/multisig.rs +170 -141
- package/contracts/utils/src/tests/option_ext.rs +1 -1
- package/contracts/utils/src/tests/ownable.rs +156 -161
- package/contracts/utils/src/tests/test_helper.rs +21 -1
- package/contracts/utils/src/tests/testing_utils.rs +84 -2
- package/contracts/utils/src/tests/ttl_configurable.rs +66 -86
- package/contracts/utils/src/tests/ttl_extendable.rs +64 -0
- package/contracts/utils/src/tests/upgradeable.rs +115 -6
- package/contracts/utils/src/ttl_configurable.rs +22 -12
- package/contracts/utils/src/ttl_extendable.rs +1 -3
- package/contracts/utils/src/upgradeable.rs +21 -24
- package/contracts/workers/dvn/src/auth.rs +1 -1
- package/contracts/workers/dvn/src/interfaces/dvn.rs +2 -2
- package/contracts/workers/dvn/src/storage.rs +1 -1
- package/contracts/workers/dvn/src/tests/auth.rs +136 -3
- package/contracts/workers/dvn/src/tests/mod.rs +0 -1
- package/contracts/workers/dvn/src/tests/setup.rs +4 -10
- package/contracts/workers/executor-helper/src/tests/executor_helper.rs +279 -0
- package/contracts/workers/executor-helper/src/tests/setup.rs +106 -1
- package/contracts/workers/worker/src/worker.rs +1 -1
- package/docs/oft-guide.md +5 -5
- package/package.json +5 -7
- package/sdk/.turbo/turbo-test.log +667 -466
- package/sdk/LICENSE +23 -0
- package/sdk/dist/generated/bml.d.ts +101 -106
- package/sdk/dist/generated/bml.js +108 -26
- package/sdk/dist/generated/counter.d.ts +123 -484
- package/sdk/dist/generated/counter.js +103 -25
- package/sdk/dist/generated/dvn.d.ts +141 -699
- package/sdk/dist/generated/dvn.js +106 -28
- package/sdk/dist/generated/dvn_fee_lib.d.ts +31 -248
- package/sdk/dist/generated/dvn_fee_lib.js +27 -24
- package/sdk/dist/generated/endpoint.d.ts +158 -836
- package/sdk/dist/generated/endpoint.js +107 -29
- package/sdk/dist/generated/executor.d.ts +139 -671
- package/sdk/dist/generated/executor.js +106 -28
- package/sdk/dist/generated/executor_fee_lib.d.ts +109 -264
- package/sdk/dist/generated/executor_fee_lib.js +106 -28
- package/sdk/dist/generated/executor_helper.d.ts +95 -92
- package/sdk/dist/generated/executor_helper.js +103 -25
- package/sdk/dist/generated/layerzero_view.d.ts +178 -335
- package/sdk/dist/generated/layerzero_view.js +172 -33
- package/sdk/dist/generated/oft.d.ts +137 -680
- package/sdk/dist/generated/oft.js +103 -25
- package/sdk/dist/generated/price_feed.d.ts +45 -444
- package/sdk/dist/generated/price_feed.js +27 -24
- package/sdk/dist/generated/sml.d.ts +119 -428
- package/sdk/dist/generated/sml.js +103 -25
- package/sdk/dist/generated/treasury.d.ts +109 -288
- package/sdk/dist/generated/treasury.js +103 -25
- package/sdk/dist/generated/uln302.d.ts +190 -527
- package/sdk/dist/generated/uln302.js +170 -31
- package/sdk/dist/generated/upgrader.d.ts +14 -34
- package/sdk/dist/generated/upgrader.js +24 -21
- package/sdk/package.json +3 -4
- package/sdk/test/counter-sml.test.ts +218 -142
- package/sdk/test/counter-uln.test.ts +189 -145
- package/sdk/test/oft-sml.test.ts +173 -156
- package/sdk/test/suites/constants.ts +7 -1
- package/sdk/test/suites/globalSetup.ts +140 -74
- package/sdk/turbo.json +1 -1
- package/tools/ts-bindings-gen/Cargo.toml +4 -4
- package/tools/ts-bindings-gen/src/main.rs +4 -0
- package/turbo.json +3 -0
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__storage__snapshot_generated_storage_code.snap +0 -1072
- package/contracts/endpoint-v2/src/constants.rs +0 -52
- package/contracts/macro-integration-tests/tests/ui/error/fail/attr_not_empty.rs +0 -12
- package/contracts/macro-integration-tests/tests/ui/error/fail/attr_not_empty.stderr +0 -7
- package/contracts/macro-integration-tests/tests/ui/error/pass/attr_on_variant_allowed.rs +0 -20
- package/contracts/macro-integration-tests/tests/ui/error/pass/basic_auto_discriminants.rs +0 -15
- package/contracts/macro-integration-tests/tests/ui/error/pass/mixed_discriminants.rs +0 -16
- package/contracts/macro-integration-tests/tests/ui/ownable/pass/minimal_contract.rs +0 -26
- package/contracts/macro-integration-tests/tests/ui/ownable/pass/namespacing_and_imports.rs +0 -21
- package/contracts/macro-integration-tests/tests/ui/storage/fail/storage_attr_rejects_args.rs +0 -12
- package/contracts/macro-integration-tests/tests/ui/storage/fail/storage_attr_rejects_args.stderr +0 -7
- package/contracts/macro-integration-tests/tests/ui/storage/pass/default_value_on_variant.rs +0 -14
- package/contracts/macro-integration-tests/tests/ui/storage/pass/enum_instance_unit_basic.rs +0 -14
- package/contracts/macro-integration-tests/tests/ui/storage/pass/enum_persistent_named_fields_keyed.rs +0 -16
- package/contracts/macro-integration-tests/tests/ui/storage/pass/enum_temporary_unit_option.rs +0 -15
- package/contracts/macro-integration-tests/tests/ui/storage/pass/name_override.rs +0 -14
- package/contracts/macro-integration-tests/tests/ui/storage/pass/no_auto_ttl_extension.rs +0 -19
- package/contracts/macro-integration-tests/tests/ui/storage/pass/ttl_provider_basic.rs +0 -15
- package/contracts/message-libs/simple-message-lib/src/test.rs +0 -280
- package/contracts/oapps/oapp/src/macro_tests/mod.rs +0 -1
- package/contracts/workers/dvn/src/tests/multisig/mod.rs +0 -3
- package/contracts/workers/dvn/src/tests/multisig/set_signer.rs +0 -132
- package/contracts/workers/dvn/src/tests/multisig/set_threshold.rs +0 -109
- package/contracts/workers/dvn/src/tests/multisig/verify_signatures.rs +0 -106
- /package/contracts/oapps/oapp/src/{macro_tests → tests}/test_macros.rs +0 -0
|
@@ -64,6 +64,7 @@ Error response from daemon: No such container: stellar-localnet
|
|
|
64
64
|
⏳ [108s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
|
|
65
65
|
⏳ [110s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
|
|
66
66
|
⏳ [112s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
|
|
67
|
+
⏳ [114s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
|
|
67
68
|
✅ Account DEFAULT_DEPLOYER (GC3CEFPRE265JEVEHYD7XPVYZ2IB2YA4QLDBGZZIGQYN2CMTSU3O5FHM) funded
|
|
68
69
|
✅ Account ZRO_DISTRIBUTOR (GCG7WDMXVXFSVIZOO3VWZTSWS3UL4ZEFAC3JTCRJEUFD4KUSY7FEGLOB) funded
|
|
69
70
|
✅ Account EXECUTOR_ADMIN (GC72DFYB5KMI4IHRX63L3PTJ73XCZD6NM5BLHQOHNNJKNZVIIVMK3RTH) funded
|
|
@@ -75,218 +76,342 @@ Deploying SAC for asset: ZRO:GC3CEFPRE265JEVEHYD7XPVYZ2IB2YA4QLDBGZZIGQYN2CMTSU3
|
|
|
75
76
|
✅ ZRO SAC deployed
|
|
76
77
|
|
|
77
78
|
========================================
|
|
78
|
-
📦 GLOBAL SETUP: Deploying Protocol Contracts
|
|
79
|
+
📦 GLOBAL SETUP: Deploying Protocol Contracts (Two Chains)
|
|
79
80
|
========================================
|
|
80
81
|
|
|
81
|
-
|
|
82
|
+
|
|
83
|
+
--- CHAIN A (EID: 30401) ---
|
|
84
|
+
🚀 [Chain A] Deploying Endpoint (EID: 30401)...
|
|
82
85
|
📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/endpoint_v2.wasm
|
|
83
86
|
📤 Uploading WASM...
|
|
84
|
-
📦 WASM buffer size:
|
|
85
|
-
💰 Upload transaction fee:
|
|
86
|
-
⏰ WASM TTL: live until ledger
|
|
87
|
-
✅ WASM uploaded, hash:
|
|
87
|
+
📦 WASM buffer size: 58012 bytes (56.65 KB)
|
|
88
|
+
💰 Upload transaction fee: 31522931 stroops (3.1522931 XLM)
|
|
89
|
+
⏰ WASM TTL: live until ledger 121076 (120959 ledgers remaining, ~7.00 days)
|
|
90
|
+
✅ WASM uploaded, hash: a61e80a56e38489a25f922ab29ad783434135f64ca9b9c7ab2ca7a7432f2ef7d
|
|
88
91
|
🚀 Deploying contract...
|
|
89
|
-
✅ Contract deployed at:
|
|
90
|
-
✅ Endpoint deployed:
|
|
91
|
-
🚀 Deploying Treasury...
|
|
92
|
+
✅ Contract deployed at: CB463RGN4O5RWVSTYL6KWOYTVGFEC5YPXSSUNVRTKLHIQ6QGWNECU53X
|
|
93
|
+
✅ [Chain A] Endpoint deployed: CB463RGN4O5RWVSTYL6KWOYTVGFEC5YPXSSUNVRTKLHIQ6QGWNECU53X
|
|
94
|
+
🚀 [Chain A] Deploying Treasury...
|
|
92
95
|
📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/treasury.wasm
|
|
93
96
|
📤 Uploading WASM...
|
|
94
|
-
📦 WASM buffer size:
|
|
95
|
-
💰 Upload transaction fee:
|
|
96
|
-
⏰ WASM TTL: live until ledger
|
|
97
|
-
✅ WASM uploaded, hash:
|
|
97
|
+
📦 WASM buffer size: 28404 bytes (27.74 KB)
|
|
98
|
+
💰 Upload transaction fee: 11737624 stroops (1.1737624 XLM)
|
|
99
|
+
⏰ WASM TTL: live until ledger 121078 (120959 ledgers remaining, ~7.00 days)
|
|
100
|
+
✅ WASM uploaded, hash: 6a62e6549fd7e72ac1c63cd2d3040fd833840367e36bab205c6142ed592bf55d
|
|
98
101
|
🚀 Deploying contract...
|
|
99
|
-
✅ Contract deployed at:
|
|
100
|
-
✅ Treasury deployed:
|
|
101
|
-
🚀 Deploying ULN302...
|
|
102
|
+
✅ Contract deployed at: CCEKZRVKKXCH5E6BKCOGFAQRG2SUS2QCIWCGSYZAEP4YNQ24R6LZPI76
|
|
103
|
+
✅ [Chain A] Treasury deployed: CCEKZRVKKXCH5E6BKCOGFAQRG2SUS2QCIWCGSYZAEP4YNQ24R6LZPI76
|
|
104
|
+
🚀 [Chain A] Deploying ULN302...
|
|
102
105
|
📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/uln302.wasm
|
|
103
106
|
📤 Uploading WASM...
|
|
104
|
-
📦 WASM buffer size:
|
|
105
|
-
💰 Upload transaction fee:
|
|
106
|
-
⏰ WASM TTL: live until ledger
|
|
107
|
-
✅ WASM uploaded, hash:
|
|
107
|
+
📦 WASM buffer size: 58799 bytes (57.42 KB)
|
|
108
|
+
💰 Upload transaction fee: 31690319 stroops (3.1690319 XLM)
|
|
109
|
+
⏰ WASM TTL: live until ledger 121082 (120959 ledgers remaining, ~7.00 days)
|
|
110
|
+
✅ WASM uploaded, hash: 54eb2be51ef372723ba480eadbae41481aaf498c5e183cbcbb73cbee63edd7f0
|
|
108
111
|
🚀 Deploying contract...
|
|
109
|
-
✅ Contract deployed at:
|
|
110
|
-
✅ ULN302 deployed:
|
|
111
|
-
🚀 Deploying SimpleMessageLib...
|
|
112
|
+
✅ Contract deployed at: CBL2GAXGPYSEGBF4B7BQB45GSGZTHP7YU7QLMD5FNEZ6CGUR36PXMIVF
|
|
113
|
+
✅ [Chain A] ULN302 deployed: CBL2GAXGPYSEGBF4B7BQB45GSGZTHP7YU7QLMD5FNEZ6CGUR36PXMIVF
|
|
114
|
+
🚀 [Chain A] Deploying SimpleMessageLib...
|
|
112
115
|
📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/simple_message_lib.wasm
|
|
113
116
|
📤 Uploading WASM...
|
|
114
|
-
📦 WASM buffer size:
|
|
115
|
-
💰 Upload transaction fee:
|
|
116
|
-
⏰ WASM TTL: live until ledger
|
|
117
|
-
✅ WASM uploaded, hash:
|
|
117
|
+
📦 WASM buffer size: 29825 bytes (29.13 KB)
|
|
118
|
+
💰 Upload transaction fee: 13638321 stroops (1.3638321 XLM)
|
|
119
|
+
⏰ WASM TTL: live until ledger 121086 (120959 ledgers remaining, ~7.00 days)
|
|
120
|
+
✅ WASM uploaded, hash: 7fc53277b7b586f0f3ad33720d904eb8ea21110b9c064a67317b4b9048127d41
|
|
118
121
|
🚀 Deploying contract...
|
|
119
|
-
✅ Contract deployed at:
|
|
120
|
-
✅ SimpleMessageLib deployed:
|
|
121
|
-
🚀 Deploying Price Feed...
|
|
122
|
+
✅ Contract deployed at: CBWOGKDTM2ANRKNBORQ4OMQM4SGFO2JRU5PHHDII5QJRCYD4RNGEIJI3
|
|
123
|
+
✅ [Chain A] SimpleMessageLib deployed: CBWOGKDTM2ANRKNBORQ4OMQM4SGFO2JRU5PHHDII5QJRCYD4RNGEIJI3
|
|
124
|
+
🚀 [Chain A] Deploying Price Feed...
|
|
122
125
|
📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/price_feed.wasm
|
|
123
126
|
📤 Uploading WASM...
|
|
124
|
-
📦 WASM buffer size:
|
|
125
|
-
💰 Upload transaction fee:
|
|
126
|
-
⏰ WASM TTL: live until ledger
|
|
127
|
-
✅ WASM uploaded, hash:
|
|
127
|
+
📦 WASM buffer size: 33115 bytes (32.34 KB)
|
|
128
|
+
💰 Upload transaction fee: 17955403 stroops (1.7955403 XLM)
|
|
129
|
+
⏰ WASM TTL: live until ledger 121088 (120959 ledgers remaining, ~7.00 days)
|
|
130
|
+
✅ WASM uploaded, hash: bc1441eb80671ff57ab3e33c478da9f75b65b270257adbfb6f0d5073e8511ae2
|
|
128
131
|
🚀 Deploying contract...
|
|
129
|
-
✅ Contract deployed at:
|
|
130
|
-
✅ Price Feed deployed:
|
|
131
|
-
🚀 Deploying Executor Fee Lib...
|
|
132
|
+
✅ Contract deployed at: CA54SKBHK6JZSUMZ2WBIXAVK74Y2QGSJI4F2KDOMHTIQLXR4LJCS3SK7
|
|
133
|
+
✅ [Chain A] Price Feed deployed: CA54SKBHK6JZSUMZ2WBIXAVK74Y2QGSJI4F2KDOMHTIQLXR4LJCS3SK7
|
|
134
|
+
🚀 [Chain A] Deploying Executor Fee Lib...
|
|
132
135
|
📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/executor_fee_lib.wasm
|
|
133
136
|
📤 Uploading WASM...
|
|
134
|
-
📦 WASM buffer size:
|
|
135
|
-
💰 Upload transaction fee:
|
|
136
|
-
⏰ WASM TTL: live until ledger
|
|
137
|
-
✅ WASM uploaded, hash:
|
|
137
|
+
📦 WASM buffer size: 34907 bytes (34.09 KB)
|
|
138
|
+
💰 Upload transaction fee: 14637545 stroops (1.4637545 XLM)
|
|
139
|
+
⏰ WASM TTL: live until ledger 121090 (120959 ledgers remaining, ~7.00 days)
|
|
140
|
+
✅ WASM uploaded, hash: c2585633f3a40f18d491bc7bbe43859f102caae277d6b5b7d1096135eeae180e
|
|
138
141
|
🚀 Deploying contract...
|
|
139
|
-
✅ Contract deployed at:
|
|
140
|
-
✅ Executor Fee Lib deployed:
|
|
141
|
-
🚀 Deploying DVN Fee Lib...
|
|
142
|
+
✅ Contract deployed at: CD5EBJMATHQPERBYW2QBOMPZJETDDHMRVERLW53X24ICCTVEFUOUPJ4Q
|
|
143
|
+
✅ [Chain A] Executor Fee Lib deployed: CD5EBJMATHQPERBYW2QBOMPZJETDDHMRVERLW53X24ICCTVEFUOUPJ4Q
|
|
144
|
+
🚀 [Chain A] Deploying DVN Fee Lib...
|
|
142
145
|
📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/dvn_fee_lib.wasm
|
|
143
146
|
📤 Uploading WASM...
|
|
144
|
-
📦 WASM buffer size:
|
|
145
|
-
💰 Upload transaction fee:
|
|
146
|
-
⏰ WASM TTL: live until ledger
|
|
147
|
-
✅ WASM uploaded, hash:
|
|
147
|
+
📦 WASM buffer size: 22027 bytes (21.51 KB)
|
|
148
|
+
💰 Upload transaction fee: 11698148 stroops (1.1698148 XLM)
|
|
149
|
+
⏰ WASM TTL: live until ledger 121094 (120959 ledgers remaining, ~7.00 days)
|
|
150
|
+
✅ WASM uploaded, hash: 124985c0672b559ce89a85b405e6ca3b1e1838d03da4c85edec74efec449eb3f
|
|
148
151
|
🚀 Deploying contract...
|
|
149
|
-
✅ Contract deployed at:
|
|
150
|
-
✅ DVN Fee Lib deployed:
|
|
151
|
-
🚀 Deploying DVN...
|
|
152
|
+
✅ Contract deployed at: CBDTKJ2BBU7RKXIIE7CMJE54WWUOVXUJXI7A3OF6X7OFGR7J2LYQPTGR
|
|
153
|
+
✅ [Chain A] DVN Fee Lib deployed: CBDTKJ2BBU7RKXIIE7CMJE54WWUOVXUJXI7A3OF6X7OFGR7J2LYQPTGR
|
|
154
|
+
🚀 [Chain A] Deploying DVN...
|
|
152
155
|
📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/dvn.wasm
|
|
153
156
|
📤 Uploading WASM...
|
|
154
|
-
📦 WASM buffer size:
|
|
155
|
-
💰 Upload transaction fee:
|
|
156
|
-
⏰ WASM TTL: live until ledger
|
|
157
|
-
✅ WASM uploaded, hash:
|
|
157
|
+
📦 WASM buffer size: 56479 bytes (55.16 KB)
|
|
158
|
+
💰 Upload transaction fee: 25092978 stroops (2.5092978 XLM)
|
|
159
|
+
⏰ WASM TTL: live until ledger 121096 (120959 ledgers remaining, ~7.00 days)
|
|
160
|
+
✅ WASM uploaded, hash: 1712d4e0a74d9b3a5a42aff8ff587d4a559d43bd8137aea1a5c3184d433896dd
|
|
158
161
|
🚀 Deploying contract...
|
|
159
|
-
✅ Contract deployed at:
|
|
160
|
-
✅ DVN deployed:
|
|
161
|
-
🚀 Deploying Executor Helper...
|
|
162
|
+
✅ Contract deployed at: CCXM665ZCYNM25K4HTK2VPRBOLRXOX32AZ2OW6FV3K6YQUGBICGSZC76
|
|
163
|
+
✅ [Chain A] DVN deployed: CCXM665ZCYNM25K4HTK2VPRBOLRXOX32AZ2OW6FV3K6YQUGBICGSZC76
|
|
164
|
+
🚀 [Chain A] Deploying Executor Helper...
|
|
162
165
|
📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/executor_helper.wasm
|
|
163
166
|
📤 Uploading WASM...
|
|
164
|
-
📦 WASM buffer size:
|
|
165
|
-
💰 Upload transaction fee:
|
|
166
|
-
⏰ WASM TTL: live until ledger
|
|
167
|
-
✅ WASM uploaded, hash:
|
|
167
|
+
📦 WASM buffer size: 24759 bytes (24.18 KB)
|
|
168
|
+
💰 Upload transaction fee: 8414898 stroops (0.8414898 XLM)
|
|
169
|
+
⏰ WASM TTL: live until ledger 121100 (120959 ledgers remaining, ~7.00 days)
|
|
170
|
+
✅ WASM uploaded, hash: fc8138d22fe41796ab4c7dd551b425628b7a7d42d20bc4ec1ba2a4740104a9c6
|
|
168
171
|
🚀 Deploying contract...
|
|
169
|
-
✅ Contract deployed at:
|
|
170
|
-
✅ Executor Helper deployed:
|
|
171
|
-
🚀 Deploying Executor...
|
|
172
|
+
✅ Contract deployed at: CCC5PE6ZJUZGZBKJ3RS7NBT7TANOVEJAHPBFMX6YDY7FCL5DMNFFAZEK
|
|
173
|
+
✅ [Chain A] Executor Helper deployed: CCC5PE6ZJUZGZBKJ3RS7NBT7TANOVEJAHPBFMX6YDY7FCL5DMNFFAZEK
|
|
174
|
+
🚀 [Chain A] Deploying Executor...
|
|
172
175
|
📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/executor.wasm
|
|
173
176
|
📤 Uploading WASM...
|
|
174
|
-
📦 WASM buffer size:
|
|
175
|
-
💰 Upload transaction fee:
|
|
176
|
-
⏰ WASM TTL: live until ledger
|
|
177
|
-
✅ WASM uploaded, hash:
|
|
177
|
+
📦 WASM buffer size: 56531 bytes (55.21 KB)
|
|
178
|
+
💰 Upload transaction fee: 24141341 stroops (2.4141341 XLM)
|
|
179
|
+
⏰ WASM TTL: live until ledger 121102 (120959 ledgers remaining, ~7.00 days)
|
|
180
|
+
✅ WASM uploaded, hash: e5a4eee90ddc18340e6246821de2fd98e5bf50163fcce06bdcbcbf53f2b8fcd4
|
|
178
181
|
🚀 Deploying contract...
|
|
179
|
-
✅ Contract deployed at:
|
|
180
|
-
✅ Executor deployed:
|
|
182
|
+
✅ Contract deployed at: CBP7QVSTABNUF7LM65JT5GUE732YAMXQ5DCKFMGEA62M3KU3AIOODW4I
|
|
183
|
+
✅ [Chain A] Executor deployed: CBP7QVSTABNUF7LM65JT5GUE732YAMXQ5DCKFMGEA62M3KU3AIOODW4I
|
|
184
|
+
|
|
185
|
+
--- CHAIN B (EID: 30402) ---
|
|
186
|
+
🚀 [Chain B] Deploying Endpoint (EID: 30402)...
|
|
187
|
+
📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/endpoint_v2.wasm
|
|
188
|
+
📤 Uploading WASM...
|
|
189
|
+
📦 WASM buffer size: 58012 bytes (56.65 KB)
|
|
190
|
+
💰 Upload transaction fee: 1285514 stroops (0.1285514 XLM)
|
|
191
|
+
⏰ WASM TTL: live until ledger 518528 (518381 ledgers remaining, ~30.00 days)
|
|
192
|
+
✅ WASM uploaded, hash: a61e80a56e38489a25f922ab29ad783434135f64ca9b9c7ab2ca7a7432f2ef7d
|
|
193
|
+
🚀 Deploying contract...
|
|
194
|
+
✅ Contract deployed at: CC3Q6IP62KI3TTMZBHPGUT3BWZALOR4H4GGAMKXHRZML632LFZFUQ6FQ
|
|
195
|
+
✅ [Chain B] Endpoint deployed: CC3Q6IP62KI3TTMZBHPGUT3BWZALOR4H4GGAMKXHRZML632LFZFUQ6FQ
|
|
196
|
+
🚀 [Chain B] Deploying Treasury...
|
|
197
|
+
📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/treasury.wasm
|
|
198
|
+
📤 Uploading WASM...
|
|
199
|
+
📦 WASM buffer size: 28404 bytes (27.74 KB)
|
|
200
|
+
💰 Upload transaction fee: 652642 stroops (0.0652642 XLM)
|
|
201
|
+
⏰ WASM TTL: live until ledger 121078 (120929 ledgers remaining, ~7.00 days)
|
|
202
|
+
✅ WASM uploaded, hash: 6a62e6549fd7e72ac1c63cd2d3040fd833840367e36bab205c6142ed592bf55d
|
|
203
|
+
🚀 Deploying contract...
|
|
204
|
+
✅ Contract deployed at: CA7EFMIUQVFSE254EJRL2YKZYPOE77S5H3TIHPZTB3JT2RLIE262FASV
|
|
205
|
+
✅ [Chain B] Treasury deployed: CA7EFMIUQVFSE254EJRL2YKZYPOE77S5H3TIHPZTB3JT2RLIE262FASV
|
|
206
|
+
🚀 [Chain B] Deploying ULN302...
|
|
207
|
+
📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/uln302.wasm
|
|
208
|
+
📤 Uploading WASM...
|
|
209
|
+
📦 WASM buffer size: 58799 bytes (57.42 KB)
|
|
210
|
+
💰 Upload transaction fee: 1302359 stroops (0.1302359 XLM)
|
|
211
|
+
⏰ WASM TTL: live until ledger 121082 (120930 ledgers remaining, ~7.00 days)
|
|
212
|
+
✅ WASM uploaded, hash: 54eb2be51ef372723ba480eadbae41481aaf498c5e183cbcbb73cbee63edd7f0
|
|
213
|
+
🚀 Deploying contract...
|
|
214
|
+
✅ Contract deployed at: CDWJN3QVOSI7PV5VO5R6QWQ32SLJNVTJXXFVTNFBHYYK6536D2NEUMQP
|
|
215
|
+
✅ [Chain B] ULN302 deployed: CDWJN3QVOSI7PV5VO5R6QWQ32SLJNVTJXXFVTNFBHYYK6536D2NEUMQP
|
|
216
|
+
🚀 [Chain B] Deploying SimpleMessageLib...
|
|
217
|
+
📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/simple_message_lib.wasm
|
|
218
|
+
📤 Uploading WASM...
|
|
219
|
+
📦 WASM buffer size: 29825 bytes (29.13 KB)
|
|
220
|
+
💰 Upload transaction fee: 683086 stroops (0.0683086 XLM)
|
|
221
|
+
⏰ WASM TTL: live until ledger 121086 (120930 ledgers remaining, ~7.00 days)
|
|
222
|
+
✅ WASM uploaded, hash: 7fc53277b7b586f0f3ad33720d904eb8ea21110b9c064a67317b4b9048127d41
|
|
223
|
+
🚀 Deploying contract...
|
|
224
|
+
✅ Contract deployed at: CAOAAIEGGF3TXOCIB3PI3R6BFPS7ZDIUA2WVP2SZVYEFH7G5BPZEOKC3
|
|
225
|
+
✅ [Chain B] SimpleMessageLib deployed: CAOAAIEGGF3TXOCIB3PI3R6BFPS7ZDIUA2WVP2SZVYEFH7G5BPZEOKC3
|
|
226
|
+
🚀 [Chain B] Deploying Price Feed...
|
|
227
|
+
📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/price_feed.wasm
|
|
228
|
+
📤 Uploading WASM...
|
|
229
|
+
📦 WASM buffer size: 33115 bytes (32.34 KB)
|
|
230
|
+
💰 Upload transaction fee: 753355 stroops (0.0753355 XLM)
|
|
231
|
+
⏰ WASM TTL: live until ledger 121088 (120930 ledgers remaining, ~7.00 days)
|
|
232
|
+
✅ WASM uploaded, hash: bc1441eb80671ff57ab3e33c478da9f75b65b270257adbfb6f0d5073e8511ae2
|
|
233
|
+
🚀 Deploying contract...
|
|
234
|
+
✅ Contract deployed at: CD4YBZ6GFSY3YOZPEONYOGDQ6E6G3SGJDEBUQHO5BFSMAZG47YPWL4MJ
|
|
235
|
+
✅ [Chain B] Price Feed deployed: CD4YBZ6GFSY3YOZPEONYOGDQ6E6G3SGJDEBUQHO5BFSMAZG47YPWL4MJ
|
|
236
|
+
🚀 [Chain B] Deploying Executor Fee Lib...
|
|
237
|
+
📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/executor_fee_lib.wasm
|
|
238
|
+
📤 Uploading WASM...
|
|
239
|
+
📦 WASM buffer size: 34907 bytes (34.09 KB)
|
|
240
|
+
💰 Upload transaction fee: 791674 stroops (0.0791674 XLM)
|
|
241
|
+
⏰ WASM TTL: live until ledger 121090 (120928 ledgers remaining, ~7.00 days)
|
|
242
|
+
✅ WASM uploaded, hash: c2585633f3a40f18d491bc7bbe43859f102caae277d6b5b7d1096135eeae180e
|
|
243
|
+
🚀 Deploying contract...
|
|
244
|
+
✅ Contract deployed at: CDVMKCG3MQCD23TRXZRYL5ZZNQS2GMZMCQTFVOBQYVLN6JCEYVNDUCY3
|
|
245
|
+
✅ [Chain B] Executor Fee Lib deployed: CDVMKCG3MQCD23TRXZRYL5ZZNQS2GMZMCQTFVOBQYVLN6JCEYVNDUCY3
|
|
246
|
+
🚀 [Chain B] Deploying DVN Fee Lib...
|
|
247
|
+
📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/dvn_fee_lib.wasm
|
|
248
|
+
📤 Uploading WASM...
|
|
249
|
+
📦 WASM buffer size: 22027 bytes (21.51 KB)
|
|
250
|
+
💰 Upload transaction fee: 516365 stroops (0.0516365 XLM)
|
|
251
|
+
⏰ WASM TTL: live until ledger 121094 (120930 ledgers remaining, ~7.00 days)
|
|
252
|
+
✅ WASM uploaded, hash: 124985c0672b559ce89a85b405e6ca3b1e1838d03da4c85edec74efec449eb3f
|
|
253
|
+
🚀 Deploying contract...
|
|
254
|
+
✅ Contract deployed at: CC3X72C3KRC4UMIBVOHZG2ZTE2S6BGJ6WIDGDGJM2LWHNR6MLKEQLJZQ
|
|
255
|
+
✅ [Chain B] DVN Fee Lib deployed: CC3X72C3KRC4UMIBVOHZG2ZTE2S6BGJ6WIDGDGJM2LWHNR6MLKEQLJZQ
|
|
256
|
+
🚀 [Chain B] Deploying DVN...
|
|
257
|
+
📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/dvn.wasm
|
|
258
|
+
📤 Uploading WASM...
|
|
259
|
+
📦 WASM buffer size: 56479 bytes (55.16 KB)
|
|
260
|
+
💰 Upload transaction fee: 1252770 stroops (0.1252770 XLM)
|
|
261
|
+
⏰ WASM TTL: live until ledger 518539 (518373 ledgers remaining, ~30.00 days)
|
|
262
|
+
✅ WASM uploaded, hash: 1712d4e0a74d9b3a5a42aff8ff587d4a559d43bd8137aea1a5c3184d433896dd
|
|
263
|
+
🚀 Deploying contract...
|
|
264
|
+
✅ Contract deployed at: CAJBNWAQQU4SACJSOBREZWQQAAUEM4BKUTIZ5SD7W5THUKCOG2PI33QK
|
|
265
|
+
✅ [Chain B] DVN deployed: CAJBNWAQQU4SACJSOBREZWQQAAUEM4BKUTIZ5SD7W5THUKCOG2PI33QK
|
|
266
|
+
🚀 [Chain B] Deploying Executor Helper...
|
|
267
|
+
📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/executor_helper.wasm
|
|
268
|
+
📤 Uploading WASM...
|
|
269
|
+
📦 WASM buffer size: 24759 bytes (24.18 KB)
|
|
270
|
+
💰 Upload transaction fee: 574757 stroops (0.0574757 XLM)
|
|
271
|
+
⏰ WASM TTL: live until ledger 121100 (120930 ledgers remaining, ~7.00 days)
|
|
272
|
+
✅ WASM uploaded, hash: fc8138d22fe41796ab4c7dd551b425628b7a7d42d20bc4ec1ba2a4740104a9c6
|
|
273
|
+
🚀 Deploying contract...
|
|
274
|
+
✅ Contract deployed at: CBVSI72IQRAWOYGPDNFZKVS67C6PHAEIKLOO2H3XW2PDEKGGKRCJ4ZP4
|
|
275
|
+
✅ [Chain B] Executor Helper deployed: CBVSI72IQRAWOYGPDNFZKVS67C6PHAEIKLOO2H3XW2PDEKGGKRCJ4ZP4
|
|
276
|
+
🚀 [Chain B] Deploying Executor...
|
|
277
|
+
📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/executor.wasm
|
|
278
|
+
📤 Uploading WASM...
|
|
279
|
+
📦 WASM buffer size: 56531 bytes (55.21 KB)
|
|
280
|
+
💰 Upload transaction fee: 1253878 stroops (0.1253878 XLM)
|
|
281
|
+
⏰ WASM TTL: live until ledger 518545 (518373 ledgers remaining, ~30.00 days)
|
|
282
|
+
✅ WASM uploaded, hash: e5a4eee90ddc18340e6246821de2fd98e5bf50163fcce06bdcbcbf53f2b8fcd4
|
|
283
|
+
🚀 Deploying contract...
|
|
284
|
+
✅ Contract deployed at: CAAEJHQMXHPHBN4CD7VMU7ULJNSOHCQF66PTIUCH6IBSALBVTWZB4CDY
|
|
285
|
+
✅ [Chain B] Executor deployed: CAAEJHQMXHPHBN4CD7VMU7ULJNSOHCQF66PTIUCH6IBSALBVTWZB4CDY
|
|
181
286
|
|
|
182
287
|
========================================
|
|
183
|
-
🔗 GLOBAL SETUP: Wiring Protocol Contracts
|
|
288
|
+
🔗 GLOBAL SETUP: Wiring Protocol Contracts (Cross-Chain)
|
|
184
289
|
========================================
|
|
185
290
|
|
|
186
|
-
🔗 Wiring protocol contracts...
|
|
187
|
-
✅ Libraries registered (ULN302 + SML)
|
|
188
|
-
✅ ZRO token set
|
|
189
|
-
✅ ULN302 executor config set
|
|
190
|
-
✅ ULN302 send/receive configs set
|
|
191
|
-
✅ Default libraries set to ULN302
|
|
192
|
-
✅ Price Feed configured
|
|
193
|
-
✅ Executor configured
|
|
194
|
-
✅ DVN configured
|
|
195
|
-
🎉 Protocol wiring complete!
|
|
196
291
|
|
|
197
|
-
|
|
292
|
+
🔗 [Chain A] Wiring protocol contracts (EID: 30401 ↔ 30402)...
|
|
293
|
+
✅ [Chain A] Libraries registered (ULN302 + SML)
|
|
294
|
+
✅ [Chain A] ZRO token set
|
|
295
|
+
✅ [Chain A] ULN302 executor config set for dst_eid=30402
|
|
296
|
+
✅ [Chain A] ULN302 send config set for eid=30402 (DVN: CCXM665ZCYNM25K4HTK2VPRBOLRXOX32AZ2OW6FV3K6YQUGBICGSZC76)
|
|
297
|
+
✅ [Chain A] ULN302 receive config set for eid=30402 (DVN: CCXM665ZCYNM25K4HTK2VPRBOLRXOX32AZ2OW6FV3K6YQUGBICGSZC76)
|
|
298
|
+
✅ [Chain A] Default libraries set to ULN302 for eid=30402
|
|
299
|
+
✅ [Chain A] Price Feed configured for eid=30402
|
|
300
|
+
✅ [Chain A] Executor configured for dst_eid=30402
|
|
301
|
+
✅ [Chain A] DVN configured for dst_eid=30402
|
|
302
|
+
🎉 [Chain A] Protocol wiring complete!
|
|
303
|
+
|
|
304
|
+
🔗 [Chain B] Wiring protocol contracts (EID: 30402 ↔ 30401)...
|
|
305
|
+
✅ [Chain B] Libraries registered (ULN302 + SML)
|
|
306
|
+
✅ [Chain B] ZRO token set
|
|
307
|
+
✅ [Chain B] ULN302 executor config set for dst_eid=30401
|
|
308
|
+
✅ [Chain B] ULN302 send config set for eid=30401 (DVN: CAJBNWAQQU4SACJSOBREZWQQAAUEM4BKUTIZ5SD7W5THUKCOG2PI33QK)
|
|
309
|
+
✅ [Chain B] ULN302 receive config set for eid=30401 (DVN: CAJBNWAQQU4SACJSOBREZWQQAAUEM4BKUTIZ5SD7W5THUKCOG2PI33QK)
|
|
310
|
+
✅ [Chain B] Default libraries set to ULN302 for eid=30401
|
|
311
|
+
✅ [Chain B] Price Feed configured for eid=30401
|
|
312
|
+
✅ [Chain B] Executor configured for dst_eid=30401
|
|
313
|
+
✅ [Chain B] DVN configured for dst_eid=30401
|
|
314
|
+
🎉 [Chain B] Protocol wiring complete!
|
|
315
|
+
|
|
316
|
+
✅ Chain addresses provided to tests (in-memory)
|
|
317
|
+
Chain A (EID 30401): CB463RGN4O5RWVSTYL6KWOYTVGFEC5YPXSSUNVRTKLHIQ6QGWNECU53X
|
|
318
|
+
Chain B (EID 30402): CC3Q6IP62KI3TTMZBHPGUT3BWZALOR4H4GGAMKXHRZML632LFZFUQ6FQ
|
|
198
319
|
|
|
199
320
|
========================================
|
|
200
|
-
✅ GLOBAL SETUP COMPLETE
|
|
321
|
+
✅ GLOBAL SETUP COMPLETE (Two-Chain Cross-Chain Ready)
|
|
201
322
|
========================================
|
|
202
323
|
|
|
203
|
-
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)
|
|
324
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT Cross-Chain E2E Testing with SAC (SML)
|
|
204
325
|
[22m[39m
|
|
205
|
-
📋
|
|
206
|
-
Endpoint:
|
|
207
|
-
SML:
|
|
208
|
-
Executor:
|
|
209
|
-
Executor Helper: CCOFEESMY4XA4JWUMKYAGIKOVONPTXENZXJVBIMWQOQTFQADMGHH7255
|
|
326
|
+
📋 Chain A addresses (EID: 30401)
|
|
327
|
+
Endpoint: CB463RGN4O5RWVSTYL6KWOYTVGFEC5YPXSSUNVRTKLHIQ6QGWNECU53X
|
|
328
|
+
SML: CBWOGKDTM2ANRKNBORQ4OMQM4SGFO2JRU5PHHDII5QJRCYD4RNGEIJI3
|
|
329
|
+
Executor: CBP7QVSTABNUF7LM65JT5GUE732YAMXQ5DCKFMGEA62M3KU3AIOODW4I
|
|
210
330
|
|
|
211
|
-
|
|
331
|
+
📋 Chain B addresses (EID: 30402)
|
|
332
|
+
Endpoint: CC3Q6IP62KI3TTMZBHPGUT3BWZALOR4H4GGAMKXHRZML632LFZFUQ6FQ
|
|
333
|
+
SML: CAOAAIEGGF3TXOCIB3PI3R6BFPS7ZDIUA2WVP2SZVYEFH7G5BPZEOKC3
|
|
334
|
+
Executor: CAAEJHQMXHPHBN4CD7VMU7ULJNSOHCQF66PTIUCH6IBSALBVTWZB4CDY
|
|
335
|
+
|
|
336
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT Cross-Chain E2E Testing with SAC (SML)[2m > [22m[2mDeploy OFT Contracts on Both Chains[2m > [22m[2mDeploy OFT Token SAC
|
|
212
337
|
[22m[39m✅ OFT token issued to DEFAULT_DEPLOYER
|
|
213
|
-
Deploying SAC for asset: OFT:
|
|
338
|
+
Deploying SAC for asset: OFT:GDAUFVVPZGTGHWP5YPLYMDAULKXUQXI3MNN5GTK2LMQGJK43HBADBX4B
|
|
214
339
|
|
|
215
|
-
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mDeploy OFT Contracts[2m > [22m[2mDeploy OFT Token SAC
|
|
216
|
-
[22m[39m✅ OFT Token SAC deployed:
|
|
340
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT Cross-Chain E2E Testing with SAC (SML)[2m > [22m[2mDeploy OFT Contracts on Both Chains[2m > [22m[2mDeploy OFT Token SAC
|
|
341
|
+
[22m[39m✅ OFT Token SAC deployed: CAOJ7UUWS7N4SDHF5YVIFWYCKWCFVLHLXN3R63APVLXAWPYV5RNC262L
|
|
217
342
|
|
|
218
|
-
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mDeploy OFT Contracts[2m > [22m[2mDeploy Lock/Unlock OFT
|
|
343
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT Cross-Chain E2E Testing with SAC (SML)[2m > [22m[2mDeploy OFT Contracts on Both Chains[2m > [22m[2mDeploy Lock/Unlock OFT on Chain A
|
|
219
344
|
[22m[39m📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/oft.wasm
|
|
220
345
|
📤 Uploading WASM...
|
|
221
|
-
📦 WASM buffer size:
|
|
346
|
+
📦 WASM buffer size: 60817 bytes (59.39 KB)
|
|
222
347
|
|
|
223
|
-
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mDeploy OFT Contracts[2m > [22m[2mDeploy Lock/Unlock OFT
|
|
224
|
-
[22m[39m💰 Upload transaction fee:
|
|
348
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT Cross-Chain E2E Testing with SAC (SML)[2m > [22m[2mDeploy OFT Contracts on Both Chains[2m > [22m[2mDeploy Lock/Unlock OFT on Chain A
|
|
349
|
+
[22m[39m💰 Upload transaction fee: 31471661 stroops (3.1471661 XLM)
|
|
225
350
|
|
|
226
|
-
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mDeploy OFT Contracts[2m > [22m[2mDeploy Lock/Unlock OFT
|
|
227
|
-
[22m[39m⏰ WASM TTL: live until ledger
|
|
351
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT Cross-Chain E2E Testing with SAC (SML)[2m > [22m[2mDeploy OFT Contracts on Both Chains[2m > [22m[2mDeploy Lock/Unlock OFT on Chain A
|
|
352
|
+
[22m[39m⏰ WASM TTL: live until ledger 121179 (120959 ledgers remaining, ~7.00 days)
|
|
228
353
|
|
|
229
|
-
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mDeploy OFT Contracts[2m > [22m[2mDeploy Lock/Unlock OFT
|
|
230
|
-
[22m[39m✅ WASM uploaded, hash:
|
|
354
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT Cross-Chain E2E Testing with SAC (SML)[2m > [22m[2mDeploy OFT Contracts on Both Chains[2m > [22m[2mDeploy Lock/Unlock OFT on Chain A
|
|
355
|
+
[22m[39m✅ WASM uploaded, hash: ecf9c8191d272ba8c743e743738241148f509549b9a5ab41be11ad50e1bffd0f
|
|
231
356
|
🚀 Deploying contract...
|
|
232
357
|
|
|
233
|
-
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mDeploy OFT Contracts[2m > [22m[2mDeploy Lock/Unlock OFT
|
|
234
|
-
[22m[39m✅ Contract deployed at:
|
|
358
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT Cross-Chain E2E Testing with SAC (SML)[2m > [22m[2mDeploy OFT Contracts on Both Chains[2m > [22m[2mDeploy Lock/Unlock OFT on Chain A
|
|
359
|
+
[22m[39m✅ Contract deployed at: CACUI5QF5YM6UQRONF7N4LTXXHHDMX3TNIGDZT5EWG2A6KGGW4GPTDXB
|
|
235
360
|
|
|
236
|
-
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mDeploy OFT Contracts[2m > [22m[2mDeploy Lock/Unlock OFT
|
|
237
|
-
[22m[39m✅ Lock/Unlock OFT deployed:
|
|
361
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT Cross-Chain E2E Testing with SAC (SML)[2m > [22m[2mDeploy OFT Contracts on Both Chains[2m > [22m[2mDeploy Lock/Unlock OFT on Chain A
|
|
362
|
+
[22m[39m✅ Lock/Unlock OFT deployed on Chain A: CACUI5QF5YM6UQRONF7N4LTXXHHDMX3TNIGDZT5EWG2A6KGGW4GPTDXB
|
|
238
363
|
|
|
239
|
-
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mDeploy OFT Contracts[2m > [22m[2mDeploy Mint/Burn OFT
|
|
364
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT Cross-Chain E2E Testing with SAC (SML)[2m > [22m[2mDeploy OFT Contracts on Both Chains[2m > [22m[2mDeploy Mint/Burn OFT on Chain B
|
|
240
365
|
[22m[39m📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/oft.wasm
|
|
241
366
|
📤 Uploading WASM...
|
|
242
|
-
📦 WASM buffer size:
|
|
367
|
+
📦 WASM buffer size: 60817 bytes (59.39 KB)
|
|
243
368
|
|
|
244
|
-
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mDeploy OFT Contracts[2m > [22m[2mDeploy Mint/Burn OFT
|
|
245
|
-
[22m[39m💰 Upload transaction fee:
|
|
369
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT Cross-Chain E2E Testing with SAC (SML)[2m > [22m[2mDeploy OFT Contracts on Both Chains[2m > [22m[2mDeploy Mint/Burn OFT on Chain B
|
|
370
|
+
[22m[39m💰 Upload transaction fee: 1345533 stroops (0.1345533 XLM)
|
|
246
371
|
|
|
247
|
-
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mDeploy OFT Contracts[2m > [22m[2mDeploy Mint/Burn OFT
|
|
248
|
-
[22m[39m⏰ WASM TTL: live until ledger
|
|
372
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT Cross-Chain E2E Testing with SAC (SML)[2m > [22m[2mDeploy OFT Contracts on Both Chains[2m > [22m[2mDeploy Mint/Burn OFT on Chain B
|
|
373
|
+
[22m[39m⏰ WASM TTL: live until ledger 121179 (120955 ledgers remaining, ~7.00 days)
|
|
249
374
|
|
|
250
|
-
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mDeploy OFT Contracts[2m > [22m[2mDeploy Mint/Burn OFT
|
|
251
|
-
[22m[39m✅ WASM uploaded, hash:
|
|
375
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT Cross-Chain E2E Testing with SAC (SML)[2m > [22m[2mDeploy OFT Contracts on Both Chains[2m > [22m[2mDeploy Mint/Burn OFT on Chain B
|
|
376
|
+
[22m[39m✅ WASM uploaded, hash: ecf9c8191d272ba8c743e743738241148f509549b9a5ab41be11ad50e1bffd0f
|
|
252
377
|
🚀 Deploying contract...
|
|
253
378
|
|
|
254
|
-
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mDeploy OFT Contracts[2m > [22m[2mDeploy Mint/Burn OFT
|
|
255
|
-
[22m[39m✅ Contract deployed at:
|
|
379
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT Cross-Chain E2E Testing with SAC (SML)[2m > [22m[2mDeploy OFT Contracts on Both Chains[2m > [22m[2mDeploy Mint/Burn OFT on Chain B
|
|
380
|
+
[22m[39m✅ Contract deployed at: CAZFHUPYNQ2ZDTRXR6JTFU32LKORBIUW6I57UMTP5OMVPHIVIPWOEHBQ
|
|
256
381
|
|
|
257
|
-
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mDeploy OFT Contracts[2m > [22m[2mDeploy Mint/Burn OFT
|
|
258
|
-
[22m[39m✅ Mint/Burn OFT deployed:
|
|
382
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT Cross-Chain E2E Testing with SAC (SML)[2m > [22m[2mDeploy OFT Contracts on Both Chains[2m > [22m[2mDeploy Mint/Burn OFT on Chain B
|
|
383
|
+
[22m[39m✅ Mint/Burn OFT deployed on Chain B: CAZFHUPYNQ2ZDTRXR6JTFU32LKORBIUW6I57UMTP5OMVPHIVIPWOEHBQ
|
|
259
384
|
|
|
260
|
-
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mWire OFT Contracts to use SML[2m > [22m[2mSet Lock/Unlock OFT Send Library to SML
|
|
261
|
-
[22m[39m✅ Lock/Unlock OFT send library set to SML
|
|
385
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT Cross-Chain E2E Testing with SAC (SML)[2m > [22m[2mWire OFT Contracts to use SML (Cross-Chain)[2m > [22m[2mSet Lock/Unlock OFT (Chain A) Send Library to SML for Chain B
|
|
386
|
+
[22m[39m✅ Lock/Unlock OFT (Chain A) send library set to SML for EID_B
|
|
262
387
|
|
|
263
|
-
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mWire OFT Contracts to use SML[2m > [22m[2mSet Lock/Unlock OFT Receive Library to SML
|
|
264
|
-
[22m[39m✅ Lock/Unlock OFT receive library set to SML
|
|
388
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT Cross-Chain E2E Testing with SAC (SML)[2m > [22m[2mWire OFT Contracts to use SML (Cross-Chain)[2m > [22m[2mSet Lock/Unlock OFT (Chain A) Receive Library to SML for Chain B
|
|
389
|
+
[22m[39m✅ Lock/Unlock OFT (Chain A) receive library set to SML for EID_B
|
|
265
390
|
|
|
266
|
-
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mWire OFT Contracts to use SML[2m > [22m[2mSet Mint/Burn OFT Send Library to SML
|
|
267
|
-
[22m[39m✅ Mint/Burn OFT send library set to SML
|
|
391
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT Cross-Chain E2E Testing with SAC (SML)[2m > [22m[2mWire OFT Contracts to use SML (Cross-Chain)[2m > [22m[2mSet Mint/Burn OFT (Chain B) Send Library to SML for Chain A
|
|
392
|
+
[22m[39m✅ Mint/Burn OFT (Chain B) send library set to SML for EID_A
|
|
268
393
|
|
|
269
|
-
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mWire OFT Contracts to use SML[2m > [22m[2mSet Mint/Burn OFT Receive Library to SML
|
|
270
|
-
[22m[39m✅ Mint/Burn OFT receive library set to SML
|
|
394
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT Cross-Chain E2E Testing with SAC (SML)[2m > [22m[2mWire OFT Contracts to use SML (Cross-Chain)[2m > [22m[2mSet Mint/Burn OFT (Chain B) Receive Library to SML for Chain A
|
|
395
|
+
[22m[39m✅ Mint/Burn OFT (Chain B) receive library set to SML for EID_A
|
|
271
396
|
|
|
272
|
-
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mWire OFT Contracts to use SML[2m > [22m[2mSet Lock/Unlock OFT Peer
|
|
273
|
-
[22m[39m✅ Lock/Unlock OFT peer set to Mint/Burn OFT
|
|
397
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT Cross-Chain E2E Testing with SAC (SML)[2m > [22m[2mWire OFT Contracts to use SML (Cross-Chain)[2m > [22m[2mSet Lock/Unlock OFT (Chain A) Peer to Mint/Burn OFT (Chain B)
|
|
398
|
+
[22m[39m✅ Lock/Unlock OFT (Chain A) peer set to Mint/Burn OFT for EID_B
|
|
274
399
|
|
|
275
|
-
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mWire OFT Contracts to use SML[2m > [22m[2mSet Mint/Burn OFT Peer
|
|
276
|
-
[22m[39m✅ Mint/Burn OFT peer set to Lock/Unlock OFT
|
|
400
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT Cross-Chain E2E Testing with SAC (SML)[2m > [22m[2mWire OFT Contracts to use SML (Cross-Chain)[2m > [22m[2mSet Mint/Burn OFT (Chain B) Peer to Lock/Unlock OFT (Chain A)
|
|
401
|
+
[22m[39m✅ Mint/Burn OFT (Chain B) peer set to Lock/Unlock OFT for EID_A
|
|
277
402
|
|
|
278
|
-
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mWire OFT Contracts to use SML[2m > [22m[2mSet SAC Admin to Mint/Burn OFT (for minting)
|
|
403
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT Cross-Chain E2E Testing with SAC (SML)[2m > [22m[2mWire OFT Contracts to use SML (Cross-Chain)[2m > [22m[2mSet SAC Admin to Mint/Burn OFT (for minting)
|
|
279
404
|
[22m[39m✅ SAC admin set to Mint/Burn OFT
|
|
280
405
|
|
|
281
|
-
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Lock
|
|
406
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT Cross-Chain E2E Testing with SAC (SML)[2m > [22m[2mSend: Chain A (Lock) → Chain B (Mint)[2m > [22m[2mVerify initial balances
|
|
282
407
|
[22m[39m📊 Initial Balances:
|
|
283
408
|
- Sender (DEFAULT_DEPLOYER): 10000000000 (expected: 10000000000)
|
|
284
409
|
|
|
285
|
-
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Lock
|
|
286
|
-
[22m[39m -
|
|
410
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT Cross-Chain E2E Testing with SAC (SML)[2m > [22m[2mSend: Chain A (Lock) → Chain B (Mint)[2m > [22m[2mVerify initial balances
|
|
411
|
+
[22m[39m - RECIPIENT_B (Chain B): 0 (expected: 0)
|
|
287
412
|
|
|
288
|
-
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Lock
|
|
289
|
-
[22m[39m📊 OFT Quote:
|
|
413
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT Cross-Chain E2E Testing with SAC (SML)[2m > [22m[2mSend: Chain A (Lock) → Chain B (Mint)[2m > [22m[2mQuote OFT send (A → B)
|
|
414
|
+
[22m[39m📊 OFT Quote (A → B):
|
|
290
415
|
Limit: {
|
|
291
416
|
max_amount_ld: [33m170141183460469231731687303715884105727n[39m,
|
|
292
417
|
min_amount_ld: [33m0n[39m
|
|
@@ -294,71 +419,71 @@ Deploying SAC for asset: OFT:GCGIA426MAHY6RWYU3LKGKMWKLJRDAP675SXL2EEQB33TVPRTYF
|
|
|
294
419
|
Fee Details: []
|
|
295
420
|
Receipt: { amount_received_ld: [33m1000000000n[39m, amount_sent_ld: [33m1000000000n[39m }
|
|
296
421
|
|
|
297
|
-
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Lock
|
|
298
|
-
[22m[39m📊 Messaging Fee: { native_fee: [33m100n[39m, zro_fee: [33m99n[39m }
|
|
422
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT Cross-Chain E2E Testing with SAC (SML)[2m > [22m[2mSend: Chain A (Lock) → Chain B (Mint)[2m > [22m[2mSend tokens from Chain A to Chain B (Lock → Mint)
|
|
423
|
+
[22m[39m📊 Messaging Fee (A → B): { native_fee: [33m100n[39m, zro_fee: [33m99n[39m }
|
|
299
424
|
|
|
300
|
-
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Lock
|
|
301
|
-
[22m[39m✅ Tokens sent, ledger: [
|
|
425
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT Cross-Chain E2E Testing with SAC (SML)[2m > [22m[2mSend: Chain A (Lock) → Chain B (Mint)[2m > [22m[2mSend tokens from Chain A to Chain B (Lock → Mint)
|
|
426
|
+
[22m[39m✅ Tokens sent from Chain A, ledger: [33m240[39m
|
|
302
427
|
|
|
303
|
-
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Lock
|
|
428
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT Cross-Chain E2E Testing with SAC (SML)[2m > [22m[2mSend: Chain A (Lock) → Chain B (Mint)[2m > [22m[2mScan PacketSent events (A → B)
|
|
304
429
|
[22m[39m📦 Scanning for PacketSent events...
|
|
305
430
|
|
|
306
|
-
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Lock
|
|
307
|
-
[22m[39m🔍 Scanning events from ledger [
|
|
431
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT Cross-Chain E2E Testing with SAC (SML)[2m > [22m[2mSend: Chain A (Lock) → Chain B (Mint)[2m > [22m[2mScan PacketSent events (A → B)
|
|
432
|
+
[22m[39m🔍 Scanning events from ledger [33m240[39m
|
|
308
433
|
Waiting for next ledger...
|
|
309
434
|
|
|
310
|
-
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Lock
|
|
435
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT Cross-Chain E2E Testing with SAC (SML)[2m > [22m[2mSend: Chain A (Lock) → Chain B (Mint)[2m > [22m[2mScan PacketSent events (A → B)
|
|
311
436
|
[22m[39m✅ Found 1 events
|
|
312
437
|
|
|
313
|
-
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Lock
|
|
438
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT Cross-Chain E2E Testing with SAC (SML)[2m > [22m[2mSend: Chain A (Lock) → Chain B (Mint)[2m > [22m[2mScan PacketSent events (A → B)
|
|
314
439
|
[22m[39m✅ Found 1 PacketSent events
|
|
315
440
|
|
|
316
|
-
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Lock
|
|
317
|
-
[22m[39m✅ PacketSent events scanned. Found 1 events
|
|
441
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT Cross-Chain E2E Testing with SAC (SML)[2m > [22m[2mSend: Chain A (Lock) → Chain B (Mint)[2m > [22m[2mScan PacketSent events (A → B)
|
|
442
|
+
[22m[39m✅ PacketSent events scanned from Chain A. Found 1 events
|
|
318
443
|
|
|
319
|
-
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Lock
|
|
320
|
-
[22m[39m✅ Packet validated via SML
|
|
444
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT Cross-Chain E2E Testing with SAC (SML)[2m > [22m[2mSend: Chain A (Lock) → Chain B (Mint)[2m > [22m[2mValidate packet via SML on Chain B
|
|
445
|
+
[22m[39m✅ Packet validated via SML on Chain B
|
|
321
446
|
|
|
322
|
-
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Lock
|
|
447
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT Cross-Chain E2E Testing with SAC (SML)[2m > [22m[2mSend: Chain A (Lock) → Chain B (Mint)[2m > [22m[2mReceive tokens on Chain B (mint)
|
|
323
448
|
[22m[39m
|
|
324
449
|
🔄 Building transaction for non-root auth...
|
|
325
450
|
🔄 Simulating with record_allow_nonroot...
|
|
326
451
|
|
|
327
|
-
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Lock
|
|
452
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT Cross-Chain E2E Testing with SAC (SML)[2m > [22m[2mSend: Chain A (Lock) → Chain B (Mint)[2m > [22m[2mReceive tokens on Chain B (mint)
|
|
328
453
|
[22m[39m✅ Simulation complete
|
|
329
454
|
Auth entries returned: [33m1[39m
|
|
330
|
-
Processing auth entry for address:
|
|
455
|
+
Processing auth entry for address: CAAEJHQMXHPHBN4CD7VMU7ULJNSOHCQF66PTIUCH6IBSALBVTWZB4CDY
|
|
331
456
|
Auth entry tree:
|
|
332
|
-
📞
|
|
457
|
+
📞 CAZFHUPYNQ2ZDTRXR6JTFU32LKORBIUW6I57UMTP5OMVPHIVIPWOEHBQ...lz_receive()
|
|
333
458
|
✍️ Signing executor auth entry (Abstract Account)...
|
|
334
459
|
|
|
335
|
-
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Lock
|
|
460
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT Cross-Chain E2E Testing with SAC (SML)[2m > [22m[2mSend: Chain A (Lock) → Chain B (Mint)[2m > [22m[2mReceive tokens on Chain B (mint)
|
|
336
461
|
[22m[39m✅ Auth entries signed
|
|
337
462
|
✅ Transaction assembled with signed auth entries
|
|
338
463
|
|
|
339
|
-
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Lock
|
|
464
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT Cross-Chain E2E Testing with SAC (SML)[2m > [22m[2mSend: Chain A (Lock) → Chain B (Mint)[2m > [22m[2mReceive tokens on Chain B (mint)
|
|
340
465
|
[22m[39m✅ Final simulation completed
|
|
341
466
|
|
|
342
|
-
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Lock
|
|
467
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT Cross-Chain E2E Testing with SAC (SML)[2m > [22m[2mSend: Chain A (Lock) → Chain B (Mint)[2m > [22m[2mReceive tokens on Chain B (mint)
|
|
343
468
|
[22m[39m✅ Transaction envelope signed
|
|
344
469
|
|
|
345
|
-
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Lock
|
|
346
|
-
[22m[39m✅ Transaction sent, hash:
|
|
470
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT Cross-Chain E2E Testing with SAC (SML)[2m > [22m[2mSend: Chain A (Lock) → Chain B (Mint)[2m > [22m[2mReceive tokens on Chain B (mint)
|
|
471
|
+
[22m[39m✅ Transaction sent, hash: 3b76e5fa1651b4762c1a57f3358e820da5ca97976b3cfb5ae0abf945428859f0
|
|
347
472
|
|
|
348
|
-
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Lock
|
|
473
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT Cross-Chain E2E Testing with SAC (SML)[2m > [22m[2mSend: Chain A (Lock) → Chain B (Mint)[2m > [22m[2mReceive tokens on Chain B (mint)
|
|
349
474
|
[22m[39m✅ Transaction completed successfully
|
|
350
475
|
|
|
351
|
-
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Lock
|
|
352
|
-
[22m[39m✅ Tokens received and minted on
|
|
476
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT Cross-Chain E2E Testing with SAC (SML)[2m > [22m[2mSend: Chain A (Lock) → Chain B (Mint)[2m > [22m[2mReceive tokens on Chain B (mint)
|
|
477
|
+
[22m[39m✅ Tokens received and minted on Chain B
|
|
353
478
|
|
|
354
|
-
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Lock
|
|
355
|
-
[22m[39m📊 Balances after forward send:
|
|
479
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT Cross-Chain E2E Testing with SAC (SML)[2m > [22m[2mSend: Chain A (Lock) → Chain B (Mint)[2m > [22m[2mVerify balances after forward send (A → B)
|
|
480
|
+
[22m[39m📊 Balances after forward send (A → B):
|
|
356
481
|
- Sender (DEFAULT_DEPLOYER): 9000000000 (expected: 9000000000)
|
|
357
|
-
- Lock/Unlock OFT (locked): 1000000000 (expected: 1000000000)
|
|
358
|
-
-
|
|
482
|
+
- Lock/Unlock OFT (Chain A, locked): 1000000000 (expected: 1000000000)
|
|
483
|
+
- RECIPIENT_B (Chain B, minted): 1000000000 (expected: 1000000000)
|
|
359
484
|
|
|
360
|
-
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend:
|
|
361
|
-
[22m[39m📊 Reverse OFT Quote:
|
|
485
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT Cross-Chain E2E Testing with SAC (SML)[2m > [22m[2mSend: Chain B (Burn) → Chain A (Unlock)[2m > [22m[2mQuote OFT send (B → A)
|
|
486
|
+
[22m[39m📊 Reverse OFT Quote (B → A):
|
|
362
487
|
Limit: {
|
|
363
488
|
max_amount_ld: [33m170141183460469231731687303715884105727n[39m,
|
|
364
489
|
min_amount_ld: [33m0n[39m
|
|
@@ -366,577 +491,653 @@ Deploying SAC for asset: OFT:GCGIA426MAHY6RWYU3LKGKMWKLJRDAP675SXL2EEQB33TVPRTYF
|
|
|
366
491
|
Fee Details: []
|
|
367
492
|
Receipt: { amount_received_ld: [33m500000000n[39m, amount_sent_ld: [33m500000000n[39m }
|
|
368
493
|
|
|
369
|
-
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend:
|
|
370
|
-
[22m[39m📊 Reverse Messaging Fee: { native_fee: [33m100n[39m, zro_fee: [33m99n[39m }
|
|
494
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT Cross-Chain E2E Testing with SAC (SML)[2m > [22m[2mSend: Chain B (Burn) → Chain A (Unlock)[2m > [22m[2mSend tokens from Chain B to Chain A (Burn → Unlock)
|
|
495
|
+
[22m[39m📊 Reverse Messaging Fee (B → A): { native_fee: [33m100n[39m, zro_fee: [33m99n[39m }
|
|
371
496
|
|
|
372
|
-
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend:
|
|
373
|
-
[22m[39m✅ Tokens sent (reverse), ledger: [
|
|
497
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT Cross-Chain E2E Testing with SAC (SML)[2m > [22m[2mSend: Chain B (Burn) → Chain A (Unlock)[2m > [22m[2mSend tokens from Chain B to Chain A (Burn → Unlock)
|
|
498
|
+
[22m[39m✅ Tokens sent from Chain B (reverse), ledger: [33m246[39m
|
|
374
499
|
|
|
375
|
-
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend:
|
|
500
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT Cross-Chain E2E Testing with SAC (SML)[2m > [22m[2mSend: Chain B (Burn) → Chain A (Unlock)[2m > [22m[2mScan PacketSent events (B → A)
|
|
376
501
|
[22m[39m📦 Scanning for PacketSent events...
|
|
377
502
|
|
|
378
|
-
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend:
|
|
379
|
-
[22m[39m🔍 Scanning events from ledger [
|
|
503
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT Cross-Chain E2E Testing with SAC (SML)[2m > [22m[2mSend: Chain B (Burn) → Chain A (Unlock)[2m > [22m[2mScan PacketSent events (B → A)
|
|
504
|
+
[22m[39m🔍 Scanning events from ledger [33m246[39m
|
|
505
|
+
Waiting for next ledger...
|
|
380
506
|
|
|
381
|
-
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend:
|
|
507
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT Cross-Chain E2E Testing with SAC (SML)[2m > [22m[2mSend: Chain B (Burn) → Chain A (Unlock)[2m > [22m[2mScan PacketSent events (B → A)
|
|
382
508
|
[22m[39m✅ Found 1 events
|
|
383
509
|
|
|
384
|
-
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend:
|
|
510
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT Cross-Chain E2E Testing with SAC (SML)[2m > [22m[2mSend: Chain B (Burn) → Chain A (Unlock)[2m > [22m[2mScan PacketSent events (B → A)
|
|
385
511
|
[22m[39m✅ Found 1 PacketSent events
|
|
386
512
|
|
|
387
|
-
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend:
|
|
388
|
-
[22m[39m✅ PacketSent events scanned (reverse). Found 1 events
|
|
513
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT Cross-Chain E2E Testing with SAC (SML)[2m > [22m[2mSend: Chain B (Burn) → Chain A (Unlock)[2m > [22m[2mScan PacketSent events (B → A)
|
|
514
|
+
[22m[39m✅ PacketSent events scanned from Chain B (reverse). Found 1 events
|
|
389
515
|
|
|
390
|
-
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend:
|
|
391
|
-
[22m[39m✅ Packet validated via SML (reverse)
|
|
516
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT Cross-Chain E2E Testing with SAC (SML)[2m > [22m[2mSend: Chain B (Burn) → Chain A (Unlock)[2m > [22m[2mValidate packet via SML on Chain A (reverse)
|
|
517
|
+
[22m[39m✅ Packet validated via SML on Chain A (reverse)
|
|
392
518
|
|
|
393
|
-
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend:
|
|
519
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT Cross-Chain E2E Testing with SAC (SML)[2m > [22m[2mSend: Chain B (Burn) → Chain A (Unlock)[2m > [22m[2mReceive tokens on Chain A (unlock)
|
|
394
520
|
[22m[39m
|
|
395
521
|
🔄 Building transaction for non-root auth...
|
|
396
522
|
🔄 Simulating with record_allow_nonroot...
|
|
397
523
|
|
|
398
|
-
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend:
|
|
524
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT Cross-Chain E2E Testing with SAC (SML)[2m > [22m[2mSend: Chain B (Burn) → Chain A (Unlock)[2m > [22m[2mReceive tokens on Chain A (unlock)
|
|
399
525
|
[22m[39m✅ Simulation complete
|
|
400
526
|
Auth entries returned: [33m1[39m
|
|
401
|
-
Processing auth entry for address:
|
|
527
|
+
Processing auth entry for address: CBP7QVSTABNUF7LM65JT5GUE732YAMXQ5DCKFMGEA62M3KU3AIOODW4I
|
|
402
528
|
Auth entry tree:
|
|
403
|
-
📞
|
|
529
|
+
📞 CACUI5QF5YM6UQRONF7N4LTXXHHDMX3TNIGDZT5EWG2A6KGGW4GPTDXB...lz_receive()
|
|
404
530
|
✍️ Signing executor auth entry (Abstract Account)...
|
|
405
531
|
|
|
406
|
-
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend:
|
|
532
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT Cross-Chain E2E Testing with SAC (SML)[2m > [22m[2mSend: Chain B (Burn) → Chain A (Unlock)[2m > [22m[2mReceive tokens on Chain A (unlock)
|
|
407
533
|
[22m[39m✅ Auth entries signed
|
|
408
534
|
✅ Transaction assembled with signed auth entries
|
|
409
535
|
|
|
410
|
-
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend:
|
|
536
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT Cross-Chain E2E Testing with SAC (SML)[2m > [22m[2mSend: Chain B (Burn) → Chain A (Unlock)[2m > [22m[2mReceive tokens on Chain A (unlock)
|
|
411
537
|
[22m[39m✅ Final simulation completed
|
|
412
538
|
|
|
413
|
-
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend:
|
|
539
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT Cross-Chain E2E Testing with SAC (SML)[2m > [22m[2mSend: Chain B (Burn) → Chain A (Unlock)[2m > [22m[2mReceive tokens on Chain A (unlock)
|
|
414
540
|
[22m[39m✅ Transaction envelope signed
|
|
415
541
|
|
|
416
|
-
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend:
|
|
417
|
-
[22m[39m✅ Transaction sent, hash:
|
|
542
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT Cross-Chain E2E Testing with SAC (SML)[2m > [22m[2mSend: Chain B (Burn) → Chain A (Unlock)[2m > [22m[2mReceive tokens on Chain A (unlock)
|
|
543
|
+
[22m[39m✅ Transaction sent, hash: 74c6d1b0ab7fb6a45a13989201032610a11f5477f6ccb64d53cab65a2088988b
|
|
418
544
|
|
|
419
|
-
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend:
|
|
545
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT Cross-Chain E2E Testing with SAC (SML)[2m > [22m[2mSend: Chain B (Burn) → Chain A (Unlock)[2m > [22m[2mReceive tokens on Chain A (unlock)
|
|
420
546
|
[22m[39m✅ Transaction completed successfully
|
|
421
547
|
|
|
422
|
-
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend:
|
|
423
|
-
[22m[39m✅ Tokens received and unlocked on
|
|
548
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT Cross-Chain E2E Testing with SAC (SML)[2m > [22m[2mSend: Chain B (Burn) → Chain A (Unlock)[2m > [22m[2mReceive tokens on Chain A (unlock)
|
|
549
|
+
[22m[39m✅ Tokens received and unlocked on Chain A
|
|
424
550
|
|
|
425
|
-
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend:
|
|
551
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT Cross-Chain E2E Testing with SAC (SML)[2m > [22m[2mSend: Chain B (Burn) → Chain A (Unlock)[2m > [22m[2mVerify final balances
|
|
426
552
|
[22m[39m
|
|
427
553
|
📊 Final Balance Summary:
|
|
428
554
|
- Sender (DEFAULT_DEPLOYER): 8500000000 (expected: 8500000000)
|
|
429
|
-
- Lock/Unlock OFT (locked): 500000000 (expected: 500000000)
|
|
430
|
-
- RECIPIENT_A (
|
|
431
|
-
- RECIPIENT_B (
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [
|
|
439
|
-
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [
|
|
440
|
-
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [
|
|
441
|
-
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [22mWire OFT Contracts to use SML[2m > [22mSet
|
|
442
|
-
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [22mWire OFT Contracts to use SML[2m > [22mSet Lock/Unlock OFT
|
|
443
|
-
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [22mWire OFT Contracts to use SML[2m > [22mSet Mint/Burn OFT
|
|
444
|
-
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [22mWire OFT Contracts to use SML[2m > [22mSet
|
|
445
|
-
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [
|
|
446
|
-
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [
|
|
447
|
-
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [
|
|
448
|
-
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [22mSend: Lock
|
|
449
|
-
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [22mSend:
|
|
450
|
-
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [22mSend:
|
|
451
|
-
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [22mSend:
|
|
452
|
-
[
|
|
555
|
+
- Lock/Unlock OFT (Chain A, locked): 500000000 (expected: 500000000)
|
|
556
|
+
- RECIPIENT_A (Chain A, unlocked): 500000000 (expected: 500000000)
|
|
557
|
+
- RECIPIENT_B (Chain B, minted): 1000000000 (expected: 1000000000)
|
|
558
|
+
|
|
559
|
+
🎉 OFT Cross-Chain E2E test completed successfully!
|
|
560
|
+
Chain A (Lock/Unlock) → Chain B (Mint/Burn): 100 tokens locked, 100 minted
|
|
561
|
+
Chain B (Mint/Burn) → Chain A (Lock/Unlock): 50 tokens burned, 50 unlocked
|
|
562
|
+
|
|
563
|
+
[32m✓[39m test/oft-sml.test.ts [2m([22m[2m23 tests[22m[2m)[22m[33m 37782[2mms[22m[39m
|
|
564
|
+
[33m[2m✓[22m[39m OFT Cross-Chain E2E Testing with SAC (SML)[2m > [22mDeploy OFT Contracts on Both Chains[2m > [22mDeploy OFT Token SAC [33m 2251[2mms[22m[39m
|
|
565
|
+
[33m[2m✓[22m[39m OFT Cross-Chain E2E Testing with SAC (SML)[2m > [22mDeploy OFT Contracts on Both Chains[2m > [22mDeploy Lock/Unlock OFT on Chain A [33m 4021[2mms[22m[39m
|
|
566
|
+
[33m[2m✓[22m[39m OFT Cross-Chain E2E Testing with SAC (SML)[2m > [22mDeploy OFT Contracts on Both Chains[2m > [22mDeploy Mint/Burn OFT on Chain B [33m 3923[2mms[22m[39m
|
|
567
|
+
[33m[2m✓[22m[39m OFT Cross-Chain E2E Testing with SAC (SML)[2m > [22mWire OFT Contracts to use SML (Cross-Chain)[2m > [22mSet Lock/Unlock OFT (Chain A) Send Library to SML for Chain B [33m 1185[2mms[22m[39m
|
|
568
|
+
[33m[2m✓[22m[39m OFT Cross-Chain E2E Testing with SAC (SML)[2m > [22mWire OFT Contracts to use SML (Cross-Chain)[2m > [22mSet Lock/Unlock OFT (Chain A) Receive Library to SML for Chain B [33m 2723[2mms[22m[39m
|
|
569
|
+
[33m[2m✓[22m[39m OFT Cross-Chain E2E Testing with SAC (SML)[2m > [22mWire OFT Contracts to use SML (Cross-Chain)[2m > [22mSet Mint/Burn OFT (Chain B) Send Library to SML for Chain A [33m 1170[2mms[22m[39m
|
|
570
|
+
[33m[2m✓[22m[39m OFT Cross-Chain E2E Testing with SAC (SML)[2m > [22mWire OFT Contracts to use SML (Cross-Chain)[2m > [22mSet Mint/Burn OFT (Chain B) Receive Library to SML for Chain A [33m 1196[2mms[22m[39m
|
|
571
|
+
[33m[2m✓[22m[39m OFT Cross-Chain E2E Testing with SAC (SML)[2m > [22mWire OFT Contracts to use SML (Cross-Chain)[2m > [22mSet Lock/Unlock OFT (Chain A) Peer to Mint/Burn OFT (Chain B) [33m 2711[2mms[22m[39m
|
|
572
|
+
[33m[2m✓[22m[39m OFT Cross-Chain E2E Testing with SAC (SML)[2m > [22mWire OFT Contracts to use SML (Cross-Chain)[2m > [22mSet Mint/Burn OFT (Chain B) Peer to Lock/Unlock OFT (Chain A) [33m 1211[2mms[22m[39m
|
|
573
|
+
[33m[2m✓[22m[39m OFT Cross-Chain E2E Testing with SAC (SML)[2m > [22mWire OFT Contracts to use SML (Cross-Chain)[2m > [22mSet SAC Admin to Mint/Burn OFT (for minting) [33m 1090[2mms[22m[39m
|
|
574
|
+
[33m[2m✓[22m[39m OFT Cross-Chain E2E Testing with SAC (SML)[2m > [22mSend: Chain A (Lock) → Chain B (Mint)[2m > [22mSend tokens from Chain A to Chain B (Lock → Mint) [33m 1382[2mms[22m[39m
|
|
575
|
+
[33m[2m✓[22m[39m OFT Cross-Chain E2E Testing with SAC (SML)[2m > [22mSend: Chain A (Lock) → Chain B (Mint)[2m > [22mScan PacketSent events (A → B) [33m 1055[2mms[22m[39m
|
|
576
|
+
[33m[2m✓[22m[39m OFT Cross-Chain E2E Testing with SAC (SML)[2m > [22mSend: Chain A (Lock) → Chain B (Mint)[2m > [22mValidate packet via SML on Chain B [33m 1212[2mms[22m[39m
|
|
577
|
+
[33m[2m✓[22m[39m OFT Cross-Chain E2E Testing with SAC (SML)[2m > [22mSend: Chain A (Lock) → Chain B (Mint)[2m > [22mReceive tokens on Chain B (mint) [33m 2364[2mms[22m[39m
|
|
578
|
+
[33m[2m✓[22m[39m OFT Cross-Chain E2E Testing with SAC (SML)[2m > [22mSend: Chain B (Burn) → Chain A (Unlock)[2m > [22mSend tokens from Chain B to Chain A (Burn → Unlock) [33m 1427[2mms[22m[39m
|
|
579
|
+
[33m[2m✓[22m[39m OFT Cross-Chain E2E Testing with SAC (SML)[2m > [22mSend: Chain B (Burn) → Chain A (Unlock)[2m > [22mScan PacketSent events (B → A) [33m 1028[2mms[22m[39m
|
|
580
|
+
[33m[2m✓[22m[39m OFT Cross-Chain E2E Testing with SAC (SML)[2m > [22mSend: Chain B (Burn) → Chain A (Unlock)[2m > [22mValidate packet via SML on Chain A (reverse) [33m 1240[2mms[22m[39m
|
|
581
|
+
[33m[2m✓[22m[39m OFT Cross-Chain E2E Testing with SAC (SML)[2m > [22mSend: Chain B (Burn) → Chain A (Unlock)[2m > [22mReceive tokens on Chain A (unlock) [33m 1528[2mms[22m[39m
|
|
582
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)
|
|
453
583
|
[22m[39m
|
|
454
|
-
📋
|
|
455
|
-
Endpoint:
|
|
456
|
-
ULN302:
|
|
457
|
-
DVN:
|
|
458
|
-
Executor:
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
584
|
+
📋 Chain A addresses (EID: 30401)
|
|
585
|
+
Endpoint: CB463RGN4O5RWVSTYL6KWOYTVGFEC5YPXSSUNVRTKLHIQ6QGWNECU53X
|
|
586
|
+
ULN302: CBL2GAXGPYSEGBF4B7BQB45GSGZTHP7YU7QLMD5FNEZ6CGUR36PXMIVF
|
|
587
|
+
DVN: CCXM665ZCYNM25K4HTK2VPRBOLRXOX32AZ2OW6FV3K6YQUGBICGSZC76
|
|
588
|
+
Executor: CBP7QVSTABNUF7LM65JT5GUE732YAMXQ5DCKFMGEA62M3KU3AIOODW4I
|
|
589
|
+
|
|
590
|
+
📋 Chain B addresses (EID: 30402)
|
|
591
|
+
Endpoint: CC3Q6IP62KI3TTMZBHPGUT3BWZALOR4H4GGAMKXHRZML632LFZFUQ6FQ
|
|
592
|
+
ULN302: CDWJN3QVOSI7PV5VO5R6QWQ32SLJNVTJXXFVTNFBHYYK6536D2NEUMQP
|
|
593
|
+
DVN: CAJBNWAQQU4SACJSOBREZWQQAAUEM4BKUTIZ5SD7W5THUKCOG2PI33QK
|
|
594
|
+
Executor: CAAEJHQMXHPHBN4CD7VMU7ULJNSOHCQF66PTIUCH6IBSALBVTWZB4CDY
|
|
595
|
+
|
|
596
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mDeploy Counters on Both Chains[2m > [22m[2mDeploy Counter A on Chain A
|
|
462
597
|
[22m[39m📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/counter.wasm
|
|
463
598
|
📤 Uploading WASM...
|
|
464
|
-
📦 WASM buffer size:
|
|
599
|
+
📦 WASM buffer size: 40680 bytes (39.73 KB)
|
|
465
600
|
|
|
466
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
467
|
-
[22m[39m💰 Upload transaction fee:
|
|
601
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mDeploy Counters on Both Chains[2m > [22m[2mDeploy Counter A on Chain A
|
|
602
|
+
[22m[39m💰 Upload transaction fee: 19651874 stroops (1.9651874 XLM)
|
|
468
603
|
|
|
469
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
470
|
-
[22m[39m⏰ WASM TTL: live until ledger
|
|
604
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mDeploy Counters on Both Chains[2m > [22m[2mDeploy Counter A on Chain A
|
|
605
|
+
[22m[39m⏰ WASM TTL: live until ledger 121211 (120959 ledgers remaining, ~7.00 days)
|
|
471
606
|
|
|
472
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
473
|
-
[22m[39m✅ WASM uploaded, hash:
|
|
607
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mDeploy Counters on Both Chains[2m > [22m[2mDeploy Counter A on Chain A
|
|
608
|
+
[22m[39m✅ WASM uploaded, hash: e031afc9dc07436fdb36aac32169ea184720496f3c7a9890aec65f777258336d
|
|
474
609
|
🚀 Deploying contract...
|
|
475
610
|
|
|
476
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
477
|
-
[22m[39m✅ Contract deployed at:
|
|
611
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mDeploy Counters on Both Chains[2m > [22m[2mDeploy Counter A on Chain A
|
|
612
|
+
[22m[39m✅ Contract deployed at: CCLEX6L7CIMIHSRIXJYL6BZNYLZNRTO2APFHIH3Z74FDLODSCU7KVOP2
|
|
613
|
+
|
|
614
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mDeploy Counters on Both Chains[2m > [22m[2mDeploy Counter A on Chain A
|
|
615
|
+
[22m[39m✅ Counter A deployed on Chain A: CCLEX6L7CIMIHSRIXJYL6BZNYLZNRTO2APFHIH3Z74FDLODSCU7KVOP2
|
|
616
|
+
|
|
617
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mDeploy Counters on Both Chains[2m > [22m[2mDeploy Counter B on Chain B
|
|
618
|
+
[22m[39m📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/counter.wasm
|
|
619
|
+
📤 Uploading WASM...
|
|
620
|
+
📦 WASM buffer size: 40680 bytes (39.73 KB)
|
|
621
|
+
|
|
622
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mDeploy Counters on Both Chains[2m > [22m[2mDeploy Counter B on Chain B
|
|
623
|
+
[22m[39m💰 Upload transaction fee: 915048 stroops (0.0915048 XLM)
|
|
624
|
+
|
|
625
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mDeploy Counters on Both Chains[2m > [22m[2mDeploy Counter B on Chain B
|
|
626
|
+
[22m[39m⏰ WASM TTL: live until ledger 121211 (120955 ledgers remaining, ~7.00 days)
|
|
627
|
+
|
|
628
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mDeploy Counters on Both Chains[2m > [22m[2mDeploy Counter B on Chain B
|
|
629
|
+
[22m[39m✅ WASM uploaded, hash: e031afc9dc07436fdb36aac32169ea184720496f3c7a9890aec65f777258336d
|
|
630
|
+
🚀 Deploying contract...
|
|
478
631
|
|
|
479
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
480
|
-
[22m[39m✅
|
|
632
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mDeploy Counters on Both Chains[2m > [22m[2mDeploy Counter B on Chain B
|
|
633
|
+
[22m[39m✅ Contract deployed at: CCYUE4Q6TJN6ZDGJ5WIDN4DACE7YP7YIWCWHZ2ACIKASSES2AIIKBZBF
|
|
481
634
|
|
|
482
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
483
|
-
[22m[39m✅ Counter
|
|
635
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mDeploy Counters on Both Chains[2m > [22m[2mDeploy Counter B on Chain B
|
|
636
|
+
[22m[39m✅ Counter B deployed on Chain B: CCYUE4Q6TJN6ZDGJ5WIDN4DACE7YP7YIWCWHZ2ACIKASSES2AIIKBZBF
|
|
484
637
|
|
|
485
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
486
|
-
[22m[39m✅
|
|
638
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mDeploy Counters on Both Chains[2m > [22m[2mSet Counter A Peer to Counter B
|
|
639
|
+
[22m[39m✅ Counter A peer set to Counter B for EID_B
|
|
487
640
|
|
|
488
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
489
|
-
[22m[39m✅
|
|
641
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mDeploy Counters on Both Chains[2m > [22m[2mSet Counter B Peer to Counter A
|
|
642
|
+
[22m[39m✅ Counter B peer set to Counter A for EID_A
|
|
490
643
|
|
|
491
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
492
|
-
[22m[39m✅
|
|
644
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22m[2mCounter A Increment (Composed ABA with Native Drop) - sends to Chain B
|
|
645
|
+
[22m[39m✅ Return fee for ComposedABA (B→A): { native_fee: [33m400681n[39m, zro_fee: [33m0n[39m }
|
|
493
646
|
|
|
494
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
647
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22m[2mCounter A Increment (Composed ABA with Native Drop) - sends to Chain B
|
|
648
|
+
[22m[39m✅ ComposedABA Fee (A→B): { native_fee: [33m2055368n[39m, zro_fee: [33m0n[39m }
|
|
649
|
+
|
|
650
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22m[2mCounter A Increment (Composed ABA with Native Drop) - sends to Chain B
|
|
651
|
+
[22m[39m✅ Counter A incremented (Composed ABA to B), outbound count: [33m1n[39m
|
|
652
|
+
|
|
653
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22m[2mScan PacketSent Events (A → B)
|
|
495
654
|
[22m[39m📦 Scanning for PacketSent events...
|
|
496
655
|
|
|
497
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
498
|
-
[22m[39m🔍 Scanning events from ledger [
|
|
656
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22m[2mScan PacketSent Events (A → B)
|
|
657
|
+
[22m[39m🔍 Scanning events from ledger [33m263[39m
|
|
499
658
|
Waiting for next ledger...
|
|
500
659
|
|
|
501
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
660
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22m[2mScan PacketSent Events (A → B)
|
|
502
661
|
[22m[39m✅ Found 1 events
|
|
503
662
|
|
|
504
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
663
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22m[2mScan PacketSent Events (A → B)
|
|
505
664
|
[22m[39m✅ Found 1 PacketSent events
|
|
506
665
|
|
|
507
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
508
|
-
[22m[39m✅ PacketSent events scanned
|
|
666
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22m[2mScan PacketSent Events (A → B)
|
|
667
|
+
[22m[39m✅ PacketSent events scanned from Chain A. Found 1 events
|
|
509
668
|
|
|
510
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
669
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22m[2mExtract Packet Header and Payload Hash (A → B)
|
|
511
670
|
[22m[39m✅ Packet header extracted, length: [33m81[39m
|
|
512
|
-
✅ Payload hash extracted:
|
|
671
|
+
✅ Payload hash extracted: 44602c281adf494f...
|
|
513
672
|
|
|
514
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
673
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22m[2mDVN B Verifies Message on Chain B (from Chain A)
|
|
515
674
|
[22m[39m
|
|
516
675
|
🔄 Simulating DVN transaction to get the auth entries
|
|
517
676
|
|
|
518
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
677
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22m[2mDVN B Verifies Message on Chain B (from Chain A)
|
|
519
678
|
[22m[39m
|
|
520
|
-
📋 Addresses needing to sign: [ [32m'
|
|
679
|
+
📋 Addresses needing to sign: [ [32m'CAJBNWAQQU4SACJSOBREZWQQAAUEM4BKUTIZ5SD7W5THUKCOG2PI33QK'[39m ]
|
|
521
680
|
|
|
522
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
681
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22m[2mDVN B Verifies Message on Chain B (from Chain A)
|
|
523
682
|
[22m[39m
|
|
524
683
|
🌳 DVN Auth Entry Tree:
|
|
525
|
-
📞
|
|
684
|
+
📞 CDWJN3QVOSI7PV5VO5R6QWQ32SLJNVTJXXFVTNFBHYYK6536D2NEUMQP...verify()
|
|
526
685
|
|
|
527
|
-
📝 Signature payload (soroban auth hash):
|
|
528
|
-
✍️ Admin Ed25519 signature created:
|
|
529
|
-
📝 Call hash for multisig:
|
|
686
|
+
📝 Signature payload (soroban auth hash): 7766f51fda17ff9565315f985a2e78a23e51365caac483afd4d2ded4a4d37e6c
|
|
687
|
+
✍️ Admin Ed25519 signature created: 935f9f0fa964319e09232d1a39f336ed...
|
|
688
|
+
📝 Call hash for multisig: 9f75e2849a8f0be62922967af1dac061d7ed34f6faab5df17f9173f48e424ec4
|
|
530
689
|
|
|
531
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
532
|
-
[22m[39m✍️ Multisig signature created:
|
|
690
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22m[2mDVN B Verifies Message on Chain B (from Chain A)
|
|
691
|
+
[22m[39m✍️ Multisig signature created: 8df7f330f5e4abe37a5a7af7d3c10610...
|
|
533
692
|
|
|
534
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
693
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22m[2mDVN B Verifies Message on Chain B (from Chain A)
|
|
535
694
|
[22m[39m
|
|
536
695
|
🔄 DVN auth signed
|
|
537
696
|
📋 Remaining signers after DVN: []
|
|
538
697
|
|
|
539
698
|
🔄 Final re-simulation with DVN auth entries signed
|
|
540
699
|
|
|
541
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
700
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22m[2mDVN B Verifies Message on Chain B (from Chain A)
|
|
542
701
|
[22m[39m✅ Final simulation complete
|
|
543
702
|
|
|
544
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
545
|
-
[22m[39m✅ DVN verified message
|
|
703
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22m[2mDVN B Verifies Message on Chain B (from Chain A)
|
|
704
|
+
[22m[39m✅ DVN B verified message on Chain B
|
|
546
705
|
|
|
547
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
548
|
-
[22m[39m✅ Verification committed to endpoint
|
|
706
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22m[2mCommit Verification on Chain B
|
|
707
|
+
[22m[39m✅ Verification committed to endpoint on Chain B
|
|
549
708
|
|
|
550
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
551
|
-
[22m[39m💰 Balance before native drop: [
|
|
709
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22m[2mExecute native_drop_and_execute on Chain B
|
|
710
|
+
[22m[39m💰 Balance before native drop: [33m99134547212n[39m
|
|
552
711
|
|
|
553
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
712
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22m[2mExecute native_drop_and_execute on Chain B
|
|
554
713
|
[22m[39m
|
|
555
714
|
🔄 Building transaction for non-root auth...
|
|
556
715
|
🔄 Simulating with record_allow_nonroot...
|
|
557
716
|
|
|
558
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
717
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22m[2mExecute native_drop_and_execute on Chain B
|
|
559
718
|
[22m[39m✅ Simulation complete
|
|
560
719
|
Auth entries returned: [33m2[39m
|
|
561
720
|
Processing auth entry for address: GC72DFYB5KMI4IHRX63L3PTJ73XCZD6NM5BLHQOHNNJKNZVIIVMK3RTH
|
|
562
721
|
Auth entry tree:
|
|
563
|
-
📞
|
|
722
|
+
📞 CAAEJHQMXHPHBN4CD7VMU7ULJNSOHCQF66PTIUCH6IBSALBVTWZB4CDY...native_drop()
|
|
564
723
|
📞 CDMLFMKMMD7MWZP3FKUBZPVHTUEDLSX4BYGYKH4GCESXYHS3IHQ4EIG4...transfer()
|
|
565
724
|
✍️ Signing admin auth entry (regular account)...
|
|
566
|
-
Processing auth entry for address:
|
|
725
|
+
Processing auth entry for address: CAAEJHQMXHPHBN4CD7VMU7ULJNSOHCQF66PTIUCH6IBSALBVTWZB4CDY
|
|
567
726
|
Auth entry tree:
|
|
568
|
-
📞
|
|
727
|
+
📞 CCYUE4Q6TJN6ZDGJ5WIDN4DACE7YP7YIWCWHZ2ACIKASSES2AIIKBZBF...lz_receive()
|
|
569
728
|
✍️ Signing executor auth entry (Abstract Account)...
|
|
570
729
|
|
|
571
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
730
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22m[2mExecute native_drop_and_execute on Chain B
|
|
572
731
|
[22m[39m✅ Auth entries signed
|
|
573
732
|
✅ Transaction assembled with signed auth entries
|
|
574
733
|
|
|
575
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
734
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22m[2mExecute native_drop_and_execute on Chain B
|
|
576
735
|
[22m[39m✅ Final simulation completed
|
|
577
736
|
|
|
578
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
737
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22m[2mExecute native_drop_and_execute on Chain B
|
|
579
738
|
[22m[39m✅ Transaction envelope signed
|
|
580
739
|
|
|
581
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
582
|
-
[22m[39m✅ Transaction sent, hash:
|
|
740
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22m[2mExecute native_drop_and_execute on Chain B
|
|
741
|
+
[22m[39m✅ Transaction sent, hash: f7119fb06fccf9ff7b9985681b19559af801551240df05e4c6ef944611f20b6c
|
|
583
742
|
|
|
584
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
743
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22m[2mExecute native_drop_and_execute on Chain B
|
|
585
744
|
[22m[39m✅ Transaction completed successfully
|
|
586
745
|
|
|
587
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
588
|
-
[22m[39m💰 Balance after native drop: [
|
|
746
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22m[2mExecute native_drop_and_execute on Chain B
|
|
747
|
+
[22m[39m💰 Balance after native drop: [33m99135547212n[39m
|
|
589
748
|
✅ Native drop received: [33m1000000n[39m stroops
|
|
590
749
|
|
|
591
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
592
|
-
[22m[39m✅
|
|
750
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22m[2mExecute native_drop_and_execute on Chain B
|
|
751
|
+
[22m[39m✅ Counter B inbound count from EID_A: [33m1n[39m
|
|
593
752
|
|
|
594
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
753
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22m[2mExecute lz_compose on Chain B (sends response to Chain A)
|
|
595
754
|
[22m[39m
|
|
596
755
|
🔄 Building transaction for non-root auth...
|
|
597
756
|
🔄 Simulating with record_allow_nonroot...
|
|
598
757
|
|
|
599
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
758
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22m[2mExecute lz_compose on Chain B (sends response to Chain A)
|
|
600
759
|
[22m[39m✅ Simulation complete
|
|
601
760
|
Auth entries returned: [33m2[39m
|
|
602
761
|
Processing auth entry for address: GC72DFYB5KMI4IHRX63L3PTJ73XCZD6NM5BLHQOHNNJKNZVIIVMK3RTH
|
|
603
762
|
Auth entry tree:
|
|
604
763
|
📞 CDMLFMKMMD7MWZP3FKUBZPVHTUEDLSX4BYGYKH4GCESXYHS3IHQ4EIG4...transfer()
|
|
605
764
|
✍️ Signing admin auth entry (regular account)...
|
|
606
|
-
Processing auth entry for address:
|
|
765
|
+
Processing auth entry for address: CAAEJHQMXHPHBN4CD7VMU7ULJNSOHCQF66PTIUCH6IBSALBVTWZB4CDY
|
|
607
766
|
Auth entry tree:
|
|
608
|
-
📞
|
|
767
|
+
📞 CCYUE4Q6TJN6ZDGJ5WIDN4DACE7YP7YIWCWHZ2ACIKASSES2AIIKBZBF...lz_compose()
|
|
609
768
|
📞 CDMLFMKMMD7MWZP3FKUBZPVHTUEDLSX4BYGYKH4GCESXYHS3IHQ4EIG4...transfer()
|
|
610
769
|
✍️ Signing executor auth entry (Abstract Account)...
|
|
611
770
|
|
|
612
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
771
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22m[2mExecute lz_compose on Chain B (sends response to Chain A)
|
|
613
772
|
[22m[39m✅ Auth entries signed
|
|
614
773
|
✅ Transaction assembled with signed auth entries
|
|
615
774
|
|
|
616
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
775
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22m[2mExecute lz_compose on Chain B (sends response to Chain A)
|
|
617
776
|
[22m[39m✅ Final simulation completed
|
|
618
777
|
|
|
619
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
778
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22m[2mExecute lz_compose on Chain B (sends response to Chain A)
|
|
620
779
|
[22m[39m✅ Transaction envelope signed
|
|
621
780
|
|
|
622
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
623
|
-
[22m[39m✅ Transaction sent, hash:
|
|
781
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22m[2mExecute lz_compose on Chain B (sends response to Chain A)
|
|
782
|
+
[22m[39m✅ Transaction sent, hash: cbc2f8b15f1a4a6406f602dcbb214e7951952a201588bf4357e833e3b1e83ef3
|
|
624
783
|
|
|
625
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
784
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22m[2mExecute lz_compose on Chain B (sends response to Chain A)
|
|
626
785
|
[22m[39m✅ Transaction completed successfully
|
|
627
786
|
|
|
628
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
629
|
-
[22m[39m✅
|
|
787
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22m[2mExecute lz_compose on Chain B (sends response to Chain A)
|
|
788
|
+
[22m[39m✅ Counter B composed count: [33m1n[39m
|
|
630
789
|
|
|
631
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
632
|
-
[22m[39m✅
|
|
790
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22m[2mExecute lz_compose on Chain B (sends response to Chain A)
|
|
791
|
+
[22m[39m✅ Counter B outbound count (response to A): [33m1n[39m
|
|
633
792
|
|
|
634
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
793
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22m[2mScan Return PacketSent Events (B → A)
|
|
635
794
|
[22m[39m📦 Scanning for PacketSent events...
|
|
636
795
|
|
|
637
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
638
|
-
[22m[39m🔍 Scanning events from ledger [
|
|
796
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22m[2mScan Return PacketSent Events (B → A)
|
|
797
|
+
[22m[39m🔍 Scanning events from ledger [33m275[39m
|
|
639
798
|
Waiting for next ledger...
|
|
640
799
|
|
|
641
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
800
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22m[2mScan Return PacketSent Events (B → A)
|
|
642
801
|
[22m[39m✅ Found 2 events
|
|
643
802
|
|
|
644
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
803
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22m[2mScan Return PacketSent Events (B → A)
|
|
645
804
|
[22m[39m✅ Found 1 PacketSent events
|
|
646
805
|
|
|
647
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
648
|
-
[22m[39m✅ Return PacketSent events scanned. Found 1 events
|
|
806
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22m[2mScan Return PacketSent Events (B → A)
|
|
807
|
+
[22m[39m✅ Return PacketSent events scanned from Chain B. Found 1 events
|
|
649
808
|
|
|
650
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
809
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22m[2mExtract Return Packet Header and Payload Hash (B → A)
|
|
651
810
|
[22m[39m✅ Return packet header extracted, length: [33m81[39m
|
|
652
|
-
✅ Return payload hash extracted:
|
|
811
|
+
✅ Return payload hash extracted: 37f853f6b47a514c...
|
|
653
812
|
|
|
654
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
813
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22m[2mDVN A Verifies Return Message on Chain A (from Chain B)
|
|
655
814
|
[22m[39m
|
|
656
815
|
🔄 Simulating DVN transaction to get the auth entries
|
|
657
816
|
|
|
658
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
817
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22m[2mDVN A Verifies Return Message on Chain A (from Chain B)
|
|
659
818
|
[22m[39m
|
|
660
|
-
📋 Addresses needing to sign: [ [32m'
|
|
819
|
+
📋 Addresses needing to sign: [ [32m'CCXM665ZCYNM25K4HTK2VPRBOLRXOX32AZ2OW6FV3K6YQUGBICGSZC76'[39m ]
|
|
661
820
|
|
|
662
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
821
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22m[2mDVN A Verifies Return Message on Chain A (from Chain B)
|
|
663
822
|
[22m[39m
|
|
664
823
|
🌳 DVN Auth Entry Tree:
|
|
665
|
-
📞
|
|
824
|
+
📞 CBL2GAXGPYSEGBF4B7BQB45GSGZTHP7YU7QLMD5FNEZ6CGUR36PXMIVF...verify()
|
|
666
825
|
|
|
667
|
-
📝 Signature payload (soroban auth hash):
|
|
668
|
-
✍️ Admin Ed25519 signature created:
|
|
669
|
-
📝 Call hash for multisig:
|
|
826
|
+
📝 Signature payload (soroban auth hash): 554736daabbdbf4589d087c06204ac7a8c2c21461ba6058a5d2a90b497c3e414
|
|
827
|
+
✍️ Admin Ed25519 signature created: 2d2c7296ccca3ab0ddbeed5bddcdc2db...
|
|
828
|
+
📝 Call hash for multisig: 90d49d467a48a235968fcbdb728a93010580066b6a6956c6b940d6a5f1b69cb9
|
|
670
829
|
|
|
671
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
672
|
-
[22m[39m✍️ Multisig signature created:
|
|
830
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22m[2mDVN A Verifies Return Message on Chain A (from Chain B)
|
|
831
|
+
[22m[39m✍️ Multisig signature created: 6c6933653595b7f2817d39c403463cde...
|
|
673
832
|
|
|
674
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
833
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22m[2mDVN A Verifies Return Message on Chain A (from Chain B)
|
|
675
834
|
[22m[39m
|
|
676
835
|
🔄 DVN auth signed
|
|
677
836
|
📋 Remaining signers after DVN: []
|
|
678
837
|
|
|
679
838
|
🔄 Final re-simulation with DVN auth entries signed
|
|
680
839
|
|
|
681
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
840
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22m[2mDVN A Verifies Return Message on Chain A (from Chain B)
|
|
682
841
|
[22m[39m✅ Final simulation complete
|
|
683
842
|
|
|
684
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
685
|
-
[22m[39m✅ DVN verified return message
|
|
843
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22m[2mDVN A Verifies Return Message on Chain A (from Chain B)
|
|
844
|
+
[22m[39m✅ DVN A verified return message on Chain A
|
|
686
845
|
|
|
687
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
688
|
-
[22m[39m✅ Verification committed for return message
|
|
846
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22m[2mCommit Verification on Chain A (Return Message)
|
|
847
|
+
[22m[39m✅ Verification committed for return message on Chain A
|
|
689
848
|
|
|
690
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
849
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22m[2mReceive Return Message on Chain A (lz_receive)
|
|
691
850
|
[22m[39m
|
|
692
851
|
🔄 Building transaction for non-root auth...
|
|
693
852
|
🔄 Simulating with record_allow_nonroot...
|
|
694
853
|
|
|
695
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
854
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22m[2mReceive Return Message on Chain A (lz_receive)
|
|
696
855
|
[22m[39m✅ Simulation complete
|
|
697
856
|
Auth entries returned: [33m1[39m
|
|
698
|
-
Processing auth entry for address:
|
|
857
|
+
Processing auth entry for address: CBP7QVSTABNUF7LM65JT5GUE732YAMXQ5DCKFMGEA62M3KU3AIOODW4I
|
|
699
858
|
Auth entry tree:
|
|
700
|
-
📞
|
|
859
|
+
📞 CCLEX6L7CIMIHSRIXJYL6BZNYLZNRTO2APFHIH3Z74FDLODSCU7KVOP2...lz_receive()
|
|
701
860
|
✍️ Signing executor auth entry (Abstract Account)...
|
|
702
861
|
|
|
703
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
862
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22m[2mReceive Return Message on Chain A (lz_receive)
|
|
704
863
|
[22m[39m✅ Auth entries signed
|
|
705
864
|
✅ Transaction assembled with signed auth entries
|
|
706
865
|
|
|
707
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
866
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22m[2mReceive Return Message on Chain A (lz_receive)
|
|
708
867
|
[22m[39m✅ Final simulation completed
|
|
709
868
|
|
|
710
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
869
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22m[2mReceive Return Message on Chain A (lz_receive)
|
|
711
870
|
[22m[39m✅ Transaction envelope signed
|
|
712
871
|
|
|
713
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
714
|
-
[22m[39m✅ Transaction sent, hash:
|
|
872
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22m[2mReceive Return Message on Chain A (lz_receive)
|
|
873
|
+
[22m[39m✅ Transaction sent, hash: 6edc5a1c628b7f99e701ff86c97beb7d8b577159af2b26c4dce5505996ec3695
|
|
715
874
|
|
|
716
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
875
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22m[2mReceive Return Message on Chain A (lz_receive)
|
|
717
876
|
[22m[39m✅ Transaction completed successfully
|
|
718
877
|
|
|
719
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
720
|
-
[22m[39m✅ Final counter count: [
|
|
721
|
-
|
|
722
|
-
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter
|
|
723
|
-
[22m[39m✅
|
|
724
|
-
|
|
725
|
-
🎉 Counter Composed ABA with Native Drop - Full Round Trip
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
[33m[2m✓[22m[39m Counter
|
|
733
|
-
[33m[2m✓[22m[39m Counter
|
|
734
|
-
[33m[2m✓[22m[39m Counter
|
|
735
|
-
[33m[2m✓[22m[39m Counter
|
|
736
|
-
[33m[2m✓[22m[39m Counter
|
|
737
|
-
[33m[2m✓[22m[39m Counter
|
|
738
|
-
[33m[2m✓[22m[39m Counter
|
|
739
|
-
[33m[2m✓[22m[39m Counter
|
|
740
|
-
[33m[2m✓[22m[39m Counter
|
|
741
|
-
[33m[2m✓[22m[39m Counter
|
|
742
|
-
[
|
|
878
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22m[2mReceive Return Message on Chain A (lz_receive)
|
|
879
|
+
[22m[39m✅ Final counter A count: [33m1n[39m
|
|
880
|
+
|
|
881
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter Cross-Chain Testing (ULN302)[2m > [22m[2mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22m[2mReceive Return Message on Chain A (lz_receive)
|
|
882
|
+
[22m[39m✅ Counter A inbound count from EID_B: [33m1n[39m
|
|
883
|
+
|
|
884
|
+
🎉 Counter Cross-Chain Composed ABA with Native Drop - Full Round Trip!
|
|
885
|
+
Chain A → Chain B: ComposedABA with native_drop
|
|
886
|
+
DVN B verifies → Commit → native_drop_and_execute → lz_compose
|
|
887
|
+
Chain B → Chain A: Response (Vanilla)
|
|
888
|
+
DVN A verifies → Commit → lz_receive
|
|
889
|
+
|
|
890
|
+
[32m✓[39m test/counter-uln.test.ts [2m([22m[2m16 tests[22m[2m)[22m[33m 31347[2mms[22m[39m
|
|
891
|
+
[33m[2m✓[22m[39m Counter Cross-Chain Testing (ULN302)[2m > [22mDeploy Counters on Both Chains[2m > [22mDeploy Counter A on Chain A [33m 4803[2mms[22m[39m
|
|
892
|
+
[33m[2m✓[22m[39m Counter Cross-Chain Testing (ULN302)[2m > [22mDeploy Counters on Both Chains[2m > [22mDeploy Counter B on Chain B [33m 3894[2mms[22m[39m
|
|
893
|
+
[33m[2m✓[22m[39m Counter Cross-Chain Testing (ULN302)[2m > [22mDeploy Counters on Both Chains[2m > [22mSet Counter A Peer to Counter B [33m 1138[2mms[22m[39m
|
|
894
|
+
[33m[2m✓[22m[39m Counter Cross-Chain Testing (ULN302)[2m > [22mDeploy Counters on Both Chains[2m > [22mSet Counter B Peer to Counter A [33m 1198[2mms[22m[39m
|
|
895
|
+
[33m[2m✓[22m[39m Counter Cross-Chain Testing (ULN302)[2m > [22mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22mCounter A Increment (Composed ABA with Native Drop) - sends to Chain B [33m 1984[2mms[22m[39m
|
|
896
|
+
[33m[2m✓[22m[39m Counter Cross-Chain Testing (ULN302)[2m > [22mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22mScan PacketSent Events (A → B) [33m 1031[2mms[22m[39m
|
|
897
|
+
[33m[2m✓[22m[39m Counter Cross-Chain Testing (ULN302)[2m > [22mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22mDVN B Verifies Message on Chain B (from Chain A) [33m 2926[2mms[22m[39m
|
|
898
|
+
[33m[2m✓[22m[39m Counter Cross-Chain Testing (ULN302)[2m > [22mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22mCommit Verification on Chain B [33m 2680[2mms[22m[39m
|
|
899
|
+
[33m[2m✓[22m[39m Counter Cross-Chain Testing (ULN302)[2m > [22mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22mExecute native_drop_and_execute on Chain B [33m 2791[2mms[22m[39m
|
|
900
|
+
[33m[2m✓[22m[39m Counter Cross-Chain Testing (ULN302)[2m > [22mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22mExecute lz_compose on Chain B (sends response to Chain A) [33m 2897[2mms[22m[39m
|
|
901
|
+
[33m[2m✓[22m[39m Counter Cross-Chain Testing (ULN302)[2m > [22mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22mScan Return PacketSent Events (B → A) [33m 1020[2mms[22m[39m
|
|
902
|
+
[33m[2m✓[22m[39m Counter Cross-Chain Testing (ULN302)[2m > [22mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22mDVN A Verifies Return Message on Chain A (from Chain B) [33m 1352[2mms[22m[39m
|
|
903
|
+
[33m[2m✓[22m[39m Counter Cross-Chain Testing (ULN302)[2m > [22mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22mCommit Verification on Chain A (Return Message) [33m 1153[2mms[22m[39m
|
|
904
|
+
[33m[2m✓[22m[39m Counter Cross-Chain Testing (ULN302)[2m > [22mCounter Increment with Composed ABA and Native Drop (A → B → A)[2m > [22mReceive Return Message on Chain A (lz_receive) [33m 2448[2mms[22m[39m
|
|
905
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter Cross-Chain Testing (SML)
|
|
743
906
|
[22m[39m
|
|
744
|
-
📋
|
|
745
|
-
Endpoint:
|
|
746
|
-
SML:
|
|
747
|
-
Executor:
|
|
748
|
-
Executor Helper: CCOFEESMY4XA4JWUMKYAGIKOVONPTXENZXJVBIMWQOQTFQADMGHH7255
|
|
907
|
+
📋 Chain A addresses (EID: 30401)
|
|
908
|
+
Endpoint: CB463RGN4O5RWVSTYL6KWOYTVGFEC5YPXSSUNVRTKLHIQ6QGWNECU53X
|
|
909
|
+
SML: CBWOGKDTM2ANRKNBORQ4OMQM4SGFO2JRU5PHHDII5QJRCYD4RNGEIJI3
|
|
910
|
+
Executor: CBP7QVSTABNUF7LM65JT5GUE732YAMXQ5DCKFMGEA62M3KU3AIOODW4I
|
|
749
911
|
|
|
750
|
-
|
|
912
|
+
📋 Chain B addresses (EID: 30402)
|
|
913
|
+
Endpoint: CC3Q6IP62KI3TTMZBHPGUT3BWZALOR4H4GGAMKXHRZML632LFZFUQ6FQ
|
|
914
|
+
SML: CAOAAIEGGF3TXOCIB3PI3R6BFPS7ZDIUA2WVP2SZVYEFH7G5BPZEOKC3
|
|
915
|
+
Executor: CAAEJHQMXHPHBN4CD7VMU7ULJNSOHCQF66PTIUCH6IBSALBVTWZB4CDY
|
|
916
|
+
|
|
917
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter Cross-Chain Testing (SML)[2m > [22m[2mDeploy Counters on Both Chains[2m > [22m[2mDeploy Counter A on Chain A
|
|
751
918
|
[22m[39m📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/counter.wasm
|
|
752
919
|
📤 Uploading WASM...
|
|
753
|
-
📦 WASM buffer size:
|
|
920
|
+
📦 WASM buffer size: 40680 bytes (39.73 KB)
|
|
754
921
|
|
|
755
|
-
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter
|
|
756
|
-
[22m[39m💰 Upload transaction fee:
|
|
922
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter Cross-Chain Testing (SML)[2m > [22m[2mDeploy Counters on Both Chains[2m > [22m[2mDeploy Counter A on Chain A
|
|
923
|
+
[22m[39m💰 Upload transaction fee: 915048 stroops (0.0915048 XLM)
|
|
757
924
|
|
|
758
|
-
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter
|
|
759
|
-
[22m[39m⏰ WASM TTL: live until ledger
|
|
925
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter Cross-Chain Testing (SML)[2m > [22m[2mDeploy Counters on Both Chains[2m > [22m[2mDeploy Counter A on Chain A
|
|
926
|
+
[22m[39m⏰ WASM TTL: live until ledger 518660 (518377 ledgers remaining, ~30.00 days)
|
|
760
927
|
|
|
761
|
-
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter
|
|
762
|
-
[22m[39m✅ WASM uploaded, hash:
|
|
928
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter Cross-Chain Testing (SML)[2m > [22m[2mDeploy Counters on Both Chains[2m > [22m[2mDeploy Counter A on Chain A
|
|
929
|
+
[22m[39m✅ WASM uploaded, hash: e031afc9dc07436fdb36aac32169ea184720496f3c7a9890aec65f777258336d
|
|
763
930
|
🚀 Deploying contract...
|
|
764
931
|
|
|
765
|
-
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter
|
|
766
|
-
[22m[39m✅ Contract deployed at:
|
|
932
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter Cross-Chain Testing (SML)[2m > [22m[2mDeploy Counters on Both Chains[2m > [22m[2mDeploy Counter A on Chain A
|
|
933
|
+
[22m[39m✅ Contract deployed at: CAZBYTI6VMCSFFIASMNACGPII4VZHACA32HXLEFKYLPKVJAP5HFNB62E
|
|
934
|
+
|
|
935
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter Cross-Chain Testing (SML)[2m > [22m[2mDeploy Counters on Both Chains[2m > [22m[2mDeploy Counter A on Chain A
|
|
936
|
+
[22m[39m✅ Counter A deployed on Chain A: CAZBYTI6VMCSFFIASMNACGPII4VZHACA32HXLEFKYLPKVJAP5HFNB62E
|
|
937
|
+
|
|
938
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter Cross-Chain Testing (SML)[2m > [22m[2mDeploy Counters on Both Chains[2m > [22m[2mDeploy Counter B on Chain B
|
|
939
|
+
[22m[39m📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/counter.wasm
|
|
940
|
+
📤 Uploading WASM...
|
|
941
|
+
📦 WASM buffer size: 40680 bytes (39.73 KB)
|
|
942
|
+
|
|
943
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter Cross-Chain Testing (SML)[2m > [22m[2mDeploy Counters on Both Chains[2m > [22m[2mDeploy Counter B on Chain B
|
|
944
|
+
[22m[39m💰 Upload transaction fee: 915048 stroops (0.0915048 XLM)
|
|
945
|
+
|
|
946
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter Cross-Chain Testing (SML)[2m > [22m[2mDeploy Counters on Both Chains[2m > [22m[2mDeploy Counter B on Chain B
|
|
947
|
+
[22m[39m⏰ WASM TTL: live until ledger 518660 (518374 ledgers remaining, ~30.00 days)
|
|
948
|
+
|
|
949
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter Cross-Chain Testing (SML)[2m > [22m[2mDeploy Counters on Both Chains[2m > [22m[2mDeploy Counter B on Chain B
|
|
950
|
+
[22m[39m✅ WASM uploaded, hash: e031afc9dc07436fdb36aac32169ea184720496f3c7a9890aec65f777258336d
|
|
951
|
+
🚀 Deploying contract...
|
|
952
|
+
|
|
953
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter Cross-Chain Testing (SML)[2m > [22m[2mDeploy Counters on Both Chains[2m > [22m[2mDeploy Counter B on Chain B
|
|
954
|
+
[22m[39m✅ Contract deployed at: CBNTHMMV5CINMJFAZ5EGFJVYUASADR6TI3CFXMBBZLKP2NPQKRH4CNP6
|
|
955
|
+
|
|
956
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter Cross-Chain Testing (SML)[2m > [22m[2mDeploy Counters on Both Chains[2m > [22m[2mDeploy Counter B on Chain B
|
|
957
|
+
[22m[39m✅ Counter B deployed on Chain B: CBNTHMMV5CINMJFAZ5EGFJVYUASADR6TI3CFXMBBZLKP2NPQKRH4CNP6
|
|
958
|
+
|
|
959
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter Cross-Chain Testing (SML)[2m > [22m[2mWire Counters to use SML (Cross-Chain)[2m > [22m[2mSet Counter A Send Library to SML (for sending to Chain B)
|
|
960
|
+
[22m[39m✅ Counter A send library set to SML for EID_B
|
|
961
|
+
|
|
962
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter Cross-Chain Testing (SML)[2m > [22m[2mWire Counters to use SML (Cross-Chain)[2m > [22m[2mSet Counter A Receive Library to SML (for receiving from Chain B)
|
|
963
|
+
[22m[39m✅ Counter A receive library set to SML for EID_B
|
|
767
964
|
|
|
768
|
-
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter
|
|
769
|
-
[22m[39m✅ Counter
|
|
965
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter Cross-Chain Testing (SML)[2m > [22m[2mWire Counters to use SML (Cross-Chain)[2m > [22m[2mSet Counter B Send Library to SML (for sending to Chain A)
|
|
966
|
+
[22m[39m✅ Counter B send library set to SML for EID_A
|
|
770
967
|
|
|
771
|
-
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter
|
|
772
|
-
[22m[39m✅ Counter
|
|
968
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter Cross-Chain Testing (SML)[2m > [22m[2mWire Counters to use SML (Cross-Chain)[2m > [22m[2mSet Counter B Receive Library to SML (for receiving from Chain A)
|
|
969
|
+
[22m[39m✅ Counter B receive library set to SML for EID_A
|
|
773
970
|
|
|
774
|
-
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter
|
|
775
|
-
[22m[39m✅ Counter
|
|
971
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter Cross-Chain Testing (SML)[2m > [22m[2mWire Counters to use SML (Cross-Chain)[2m > [22m[2mSet Counter A Peer to Counter B
|
|
972
|
+
[22m[39m✅ Counter A peer set to Counter B for EID_B
|
|
776
973
|
|
|
777
|
-
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter
|
|
778
|
-
[22m[39m✅ Counter peer set for
|
|
974
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter Cross-Chain Testing (SML)[2m > [22m[2mWire Counters to use SML (Cross-Chain)[2m > [22m[2mSet Counter B Peer to Counter A
|
|
975
|
+
[22m[39m✅ Counter B peer set to Counter A for EID_A
|
|
779
976
|
|
|
780
|
-
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter
|
|
781
|
-
[22m[39m✅ Return fee for ABA: { native_fee: [33m100n[39m, zro_fee: [33m0n[39m }
|
|
977
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter Cross-Chain Testing (SML)[2m > [22m[2mCross-Chain ABA Messaging (A → B → A)[2m > [22m[2mCounter A Increment (ABA) - sends to Chain B
|
|
978
|
+
[22m[39m✅ Return fee for ABA (B→A): { native_fee: [33m100n[39m, zro_fee: [33m0n[39m }
|
|
782
979
|
|
|
783
|
-
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter
|
|
784
|
-
[22m[39m✅ ABA Fee: { native_fee: [33m100n[39m, zro_fee: [33m99n[39m }
|
|
980
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter Cross-Chain Testing (SML)[2m > [22m[2mCross-Chain ABA Messaging (A → B → A)[2m > [22m[2mCounter A Increment (ABA) - sends to Chain B
|
|
981
|
+
[22m[39m✅ ABA Fee (A→B): { native_fee: [33m100n[39m, zro_fee: [33m99n[39m }
|
|
785
982
|
|
|
786
|
-
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter
|
|
787
|
-
[22m[39m✅ Counter incremented (ABA), outbound count: [33m1n[39m
|
|
983
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter Cross-Chain Testing (SML)[2m > [22m[2mCross-Chain ABA Messaging (A → B → A)[2m > [22m[2mCounter A Increment (ABA) - sends to Chain B
|
|
984
|
+
[22m[39m✅ Counter A incremented (ABA to B), outbound count: [33m1n[39m
|
|
788
985
|
|
|
789
|
-
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter
|
|
986
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter Cross-Chain Testing (SML)[2m > [22m[2mCross-Chain ABA Messaging (A → B → A)[2m > [22m[2mScan PacketSent Events (A → B)
|
|
790
987
|
[22m[39m📦 Scanning for PacketSent events...
|
|
791
988
|
|
|
792
|
-
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter
|
|
793
|
-
[22m[39m🔍 Scanning events from ledger [
|
|
989
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter Cross-Chain Testing (SML)[2m > [22m[2mCross-Chain ABA Messaging (A → B → A)[2m > [22m[2mScan PacketSent Events (A → B)
|
|
990
|
+
[22m[39m🔍 Scanning events from ledger [33m299[39m
|
|
794
991
|
|
|
795
|
-
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter
|
|
992
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter Cross-Chain Testing (SML)[2m > [22m[2mCross-Chain ABA Messaging (A → B → A)[2m > [22m[2mScan PacketSent Events (A → B)
|
|
796
993
|
[22m[39m✅ Found 1 events
|
|
797
994
|
|
|
798
|
-
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter
|
|
995
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter Cross-Chain Testing (SML)[2m > [22m[2mCross-Chain ABA Messaging (A → B → A)[2m > [22m[2mScan PacketSent Events (A → B)
|
|
799
996
|
[22m[39m✅ Found 1 PacketSent events
|
|
800
997
|
|
|
801
|
-
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter
|
|
802
|
-
[22m[39m✅ PacketSent events scanned
|
|
998
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter Cross-Chain Testing (SML)[2m > [22m[2mCross-Chain ABA Messaging (A → B → A)[2m > [22m[2mScan PacketSent Events (A → B)
|
|
999
|
+
[22m[39m✅ PacketSent events scanned from Chain A. Found 1 events
|
|
803
1000
|
|
|
804
|
-
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter
|
|
805
|
-
[22m[39m✅ ABA request packet validated
|
|
1001
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter Cross-Chain Testing (SML)[2m > [22m[2mCross-Chain ABA Messaging (A → B → A)[2m > [22m[2mVerify Counter Message on Chain B (via SML)
|
|
1002
|
+
[22m[39m✅ ABA request packet validated on Chain B
|
|
806
1003
|
|
|
807
|
-
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter
|
|
1004
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter Cross-Chain Testing (SML)[2m > [22m[2mCross-Chain ABA Messaging (A → B → A)[2m > [22m[2mReceive Counter Message on Chain B (ABA - triggers response to A)
|
|
808
1005
|
[22m[39m
|
|
809
1006
|
🔄 Building transaction for non-root auth...
|
|
810
1007
|
🔄 Simulating with record_allow_nonroot...
|
|
811
1008
|
|
|
812
|
-
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter
|
|
1009
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter Cross-Chain Testing (SML)[2m > [22m[2mCross-Chain ABA Messaging (A → B → A)[2m > [22m[2mReceive Counter Message on Chain B (ABA - triggers response to A)
|
|
813
1010
|
[22m[39m✅ Simulation complete
|
|
814
1011
|
Auth entries returned: [33m3[39m
|
|
815
1012
|
Processing auth entry for address: GC72DFYB5KMI4IHRX63L3PTJ73XCZD6NM5BLHQOHNNJKNZVIIVMK3RTH
|
|
816
1013
|
Auth entry tree:
|
|
817
|
-
📞
|
|
1014
|
+
📞 CAAEJHQMXHPHBN4CD7VMU7ULJNSOHCQF66PTIUCH6IBSALBVTWZB4CDY...native_drop()
|
|
818
1015
|
📞 CDMLFMKMMD7MWZP3FKUBZPVHTUEDLSX4BYGYKH4GCESXYHS3IHQ4EIG4...transfer()
|
|
819
1016
|
✍️ Signing admin auth entry (regular account)...
|
|
820
1017
|
Processing auth entry for address: GC72DFYB5KMI4IHRX63L3PTJ73XCZD6NM5BLHQOHNNJKNZVIIVMK3RTH
|
|
821
1018
|
Auth entry tree:
|
|
822
1019
|
📞 CDMLFMKMMD7MWZP3FKUBZPVHTUEDLSX4BYGYKH4GCESXYHS3IHQ4EIG4...transfer()
|
|
823
1020
|
✍️ Signing admin auth entry (regular account)...
|
|
824
|
-
Processing auth entry for address:
|
|
1021
|
+
Processing auth entry for address: CAAEJHQMXHPHBN4CD7VMU7ULJNSOHCQF66PTIUCH6IBSALBVTWZB4CDY
|
|
825
1022
|
Auth entry tree:
|
|
826
|
-
📞
|
|
1023
|
+
📞 CBNTHMMV5CINMJFAZ5EGFJVYUASADR6TI3CFXMBBZLKP2NPQKRH4CNP6...lz_receive()
|
|
827
1024
|
📞 CDMLFMKMMD7MWZP3FKUBZPVHTUEDLSX4BYGYKH4GCESXYHS3IHQ4EIG4...transfer()
|
|
828
1025
|
✍️ Signing executor auth entry (Abstract Account)...
|
|
829
1026
|
|
|
830
|
-
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter
|
|
1027
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter Cross-Chain Testing (SML)[2m > [22m[2mCross-Chain ABA Messaging (A → B → A)[2m > [22m[2mReceive Counter Message on Chain B (ABA - triggers response to A)
|
|
831
1028
|
[22m[39m✅ Auth entries signed
|
|
832
1029
|
✅ Transaction assembled with signed auth entries
|
|
833
1030
|
|
|
834
|
-
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter
|
|
1031
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter Cross-Chain Testing (SML)[2m > [22m[2mCross-Chain ABA Messaging (A → B → A)[2m > [22m[2mReceive Counter Message on Chain B (ABA - triggers response to A)
|
|
835
1032
|
[22m[39m✅ Final simulation completed
|
|
836
1033
|
|
|
837
|
-
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter
|
|
1034
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter Cross-Chain Testing (SML)[2m > [22m[2mCross-Chain ABA Messaging (A → B → A)[2m > [22m[2mReceive Counter Message on Chain B (ABA - triggers response to A)
|
|
838
1035
|
[22m[39m✅ Transaction envelope signed
|
|
839
1036
|
|
|
840
|
-
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter
|
|
841
|
-
[22m[39m✅ Transaction sent, hash:
|
|
1037
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter Cross-Chain Testing (SML)[2m > [22m[2mCross-Chain ABA Messaging (A → B → A)[2m > [22m[2mReceive Counter Message on Chain B (ABA - triggers response to A)
|
|
1038
|
+
[22m[39m✅ Transaction sent, hash: 8b572ee800f4707716c8eeeb5585bd9aaa3bc0c32af70f07611be79fde5a80b5
|
|
842
1039
|
|
|
843
|
-
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter
|
|
1040
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter Cross-Chain Testing (SML)[2m > [22m[2mCross-Chain ABA Messaging (A → B → A)[2m > [22m[2mReceive Counter Message on Chain B (ABA - triggers response to A)
|
|
844
1041
|
[22m[39m✅ Transaction completed successfully
|
|
845
1042
|
|
|
846
|
-
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter
|
|
847
|
-
[22m[39m✅ ABA message
|
|
1043
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter Cross-Chain Testing (SML)[2m > [22m[2mCross-Chain ABA Messaging (A → B → A)[2m > [22m[2mReceive Counter Message on Chain B (ABA - triggers response to A)
|
|
1044
|
+
[22m[39m✅ Counter B received ABA message and sent response, outbound count: [33m1n[39m
|
|
848
1045
|
|
|
849
|
-
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter
|
|
1046
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter Cross-Chain Testing (SML)[2m > [22m[2mCross-Chain ABA Messaging (A → B → A)[2m > [22m[2mScan ABA Response PacketSent Events (B → A)
|
|
850
1047
|
[22m[39m📦 Scanning for PacketSent events...
|
|
851
1048
|
|
|
852
|
-
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter
|
|
853
|
-
[22m[39m🔍 Scanning events from ledger [
|
|
1049
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter Cross-Chain Testing (SML)[2m > [22m[2mCross-Chain ABA Messaging (A → B → A)[2m > [22m[2mScan ABA Response PacketSent Events (B → A)
|
|
1050
|
+
[22m[39m🔍 Scanning events from ledger [33m303[39m
|
|
854
1051
|
Waiting for next ledger...
|
|
855
1052
|
|
|
856
|
-
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter
|
|
1053
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter Cross-Chain Testing (SML)[2m > [22m[2mCross-Chain ABA Messaging (A → B → A)[2m > [22m[2mScan ABA Response PacketSent Events (B → A)
|
|
857
1054
|
[22m[39m✅ Found 2 events
|
|
858
1055
|
|
|
859
|
-
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter
|
|
1056
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter Cross-Chain Testing (SML)[2m > [22m[2mCross-Chain ABA Messaging (A → B → A)[2m > [22m[2mScan ABA Response PacketSent Events (B → A)
|
|
860
1057
|
[22m[39m✅ Found 1 PacketSent events
|
|
861
1058
|
|
|
862
|
-
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter
|
|
863
|
-
[22m[39m✅ ABA response PacketSent events scanned. Found 1 events
|
|
1059
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter Cross-Chain Testing (SML)[2m > [22m[2mCross-Chain ABA Messaging (A → B → A)[2m > [22m[2mScan ABA Response PacketSent Events (B → A)
|
|
1060
|
+
[22m[39m✅ ABA response PacketSent events scanned from Chain B. Found 1 events
|
|
864
1061
|
|
|
865
|
-
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter
|
|
866
|
-
[22m[39m✅ ABA response packet validated
|
|
1062
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter Cross-Chain Testing (SML)[2m > [22m[2mCross-Chain ABA Messaging (A → B → A)[2m > [22m[2mVerify ABA Response Message on Chain A (via SML)
|
|
1063
|
+
[22m[39m✅ ABA response packet validated on Chain A
|
|
867
1064
|
|
|
868
|
-
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter
|
|
1065
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter Cross-Chain Testing (SML)[2m > [22m[2mCross-Chain ABA Messaging (A → B → A)[2m > [22m[2mReceive ABA Response Message on Chain A
|
|
869
1066
|
[22m[39m
|
|
870
1067
|
🔄 Building transaction for non-root auth...
|
|
871
1068
|
🔄 Simulating with record_allow_nonroot...
|
|
872
1069
|
|
|
873
|
-
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter
|
|
1070
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter Cross-Chain Testing (SML)[2m > [22m[2mCross-Chain ABA Messaging (A → B → A)[2m > [22m[2mReceive ABA Response Message on Chain A
|
|
874
1071
|
[22m[39m✅ Simulation complete
|
|
875
1072
|
Auth entries returned: [33m2[39m
|
|
876
1073
|
Processing auth entry for address: GC72DFYB5KMI4IHRX63L3PTJ73XCZD6NM5BLHQOHNNJKNZVIIVMK3RTH
|
|
877
1074
|
Auth entry tree:
|
|
878
1075
|
📞 CDMLFMKMMD7MWZP3FKUBZPVHTUEDLSX4BYGYKH4GCESXYHS3IHQ4EIG4...transfer()
|
|
879
1076
|
✍️ Signing admin auth entry (regular account)...
|
|
880
|
-
Processing auth entry for address:
|
|
1077
|
+
Processing auth entry for address: CBP7QVSTABNUF7LM65JT5GUE732YAMXQ5DCKFMGEA62M3KU3AIOODW4I
|
|
881
1078
|
Auth entry tree:
|
|
882
|
-
📞
|
|
1079
|
+
📞 CAZBYTI6VMCSFFIASMNACGPII4VZHACA32HXLEFKYLPKVJAP5HFNB62E...lz_receive()
|
|
883
1080
|
📞 CDMLFMKMMD7MWZP3FKUBZPVHTUEDLSX4BYGYKH4GCESXYHS3IHQ4EIG4...transfer()
|
|
884
1081
|
✍️ Signing executor auth entry (Abstract Account)...
|
|
885
1082
|
|
|
886
|
-
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter
|
|
1083
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter Cross-Chain Testing (SML)[2m > [22m[2mCross-Chain ABA Messaging (A → B → A)[2m > [22m[2mReceive ABA Response Message on Chain A
|
|
887
1084
|
[22m[39m✅ Auth entries signed
|
|
888
1085
|
✅ Transaction assembled with signed auth entries
|
|
889
1086
|
|
|
890
|
-
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter
|
|
1087
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter Cross-Chain Testing (SML)[2m > [22m[2mCross-Chain ABA Messaging (A → B → A)[2m > [22m[2mReceive ABA Response Message on Chain A
|
|
891
1088
|
[22m[39m✅ Final simulation completed
|
|
892
1089
|
|
|
893
|
-
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter
|
|
1090
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter Cross-Chain Testing (SML)[2m > [22m[2mCross-Chain ABA Messaging (A → B → A)[2m > [22m[2mReceive ABA Response Message on Chain A
|
|
894
1091
|
[22m[39m✅ Transaction envelope signed
|
|
895
1092
|
|
|
896
|
-
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter
|
|
897
|
-
[22m[39m✅ Transaction sent, hash:
|
|
1093
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter Cross-Chain Testing (SML)[2m > [22m[2mCross-Chain ABA Messaging (A → B → A)[2m > [22m[2mReceive ABA Response Message on Chain A
|
|
1094
|
+
[22m[39m✅ Transaction sent, hash: 34536362f12cade0aa4c0af8704adce64977abe1f20725d19344d7830fa68462
|
|
898
1095
|
|
|
899
|
-
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter
|
|
1096
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter Cross-Chain Testing (SML)[2m > [22m[2mCross-Chain ABA Messaging (A → B → A)[2m > [22m[2mReceive ABA Response Message on Chain A
|
|
900
1097
|
[22m[39m✅ Transaction completed successfully
|
|
901
1098
|
|
|
902
|
-
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter
|
|
903
|
-
[22m[39m✅ ABA response
|
|
904
|
-
|
|
905
|
-
🎉 ABA round-trip completed successfully!
|
|
906
|
-
Request:
|
|
907
|
-
Response: Counter → Counter (Vanilla
|
|
908
|
-
|
|
909
|
-
[32m✓[39m test/counter-sml.test.ts [2m([22m[
|
|
910
|
-
[33m[2m✓[22m[39m Counter
|
|
911
|
-
[33m[2m✓[22m[39m Counter
|
|
912
|
-
[33m[2m✓[22m[39m Counter
|
|
913
|
-
[33m[2m✓[22m[39m Counter
|
|
914
|
-
[33m[2m✓[22m[39m Counter
|
|
915
|
-
[33m[2m✓[22m[39m Counter
|
|
916
|
-
[33m[2m✓[22m[39m Counter
|
|
917
|
-
[33m[2m✓[22m[39m Counter
|
|
918
|
-
[33m[2m✓[22m[39m Counter
|
|
919
|
-
[33m[2m✓[22m[39m Counter
|
|
1099
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter Cross-Chain Testing (SML)[2m > [22m[2mCross-Chain ABA Messaging (A → B → A)[2m > [22m[2mReceive ABA Response Message on Chain A
|
|
1100
|
+
[22m[39m✅ Counter A received ABA response, inbound count: [33m1n[39m
|
|
1101
|
+
|
|
1102
|
+
🎉 Cross-chain ABA round-trip completed successfully!
|
|
1103
|
+
Request: Counter A (Chain A) → Counter B (Chain B) [ABA]
|
|
1104
|
+
Response: Counter B (Chain B) → Counter A (Chain A) [Vanilla]
|
|
1105
|
+
|
|
1106
|
+
[32m✓[39m test/counter-sml.test.ts [2m([22m[2m15 tests[22m[2m)[22m[33m 28109[2mms[22m[39m
|
|
1107
|
+
[33m[2m✓[22m[39m Counter Cross-Chain Testing (SML)[2m > [22mDeploy Counters on Both Chains[2m > [22mDeploy Counter A on Chain A [33m 3281[2mms[22m[39m
|
|
1108
|
+
[33m[2m✓[22m[39m Counter Cross-Chain Testing (SML)[2m > [22mDeploy Counters on Both Chains[2m > [22mDeploy Counter B on Chain B [33m 2201[2mms[22m[39m
|
|
1109
|
+
[33m[2m✓[22m[39m Counter Cross-Chain Testing (SML)[2m > [22mWire Counters to use SML (Cross-Chain)[2m > [22mSet Counter A Send Library to SML (for sending to Chain B) [33m 1148[2mms[22m[39m
|
|
1110
|
+
[33m[2m✓[22m[39m Counter Cross-Chain Testing (SML)[2m > [22mWire Counters to use SML (Cross-Chain)[2m > [22mSet Counter A Receive Library to SML (for receiving from Chain B) [33m 2710[2mms[22m[39m
|
|
1111
|
+
[33m[2m✓[22m[39m Counter Cross-Chain Testing (SML)[2m > [22mWire Counters to use SML (Cross-Chain)[2m > [22mSet Counter B Send Library to SML (for sending to Chain A) [33m 1203[2mms[22m[39m
|
|
1112
|
+
[33m[2m✓[22m[39m Counter Cross-Chain Testing (SML)[2m > [22mWire Counters to use SML (Cross-Chain)[2m > [22mSet Counter B Receive Library to SML (for receiving from Chain A) [33m 1177[2mms[22m[39m
|
|
1113
|
+
[33m[2m✓[22m[39m Counter Cross-Chain Testing (SML)[2m > [22mWire Counters to use SML (Cross-Chain)[2m > [22mSet Counter A Peer to Counter B [33m 2640[2mms[22m[39m
|
|
1114
|
+
[33m[2m✓[22m[39m Counter Cross-Chain Testing (SML)[2m > [22mWire Counters to use SML (Cross-Chain)[2m > [22mSet Counter B Peer to Counter A [33m 1118[2mms[22m[39m
|
|
1115
|
+
[33m[2m✓[22m[39m Counter Cross-Chain Testing (SML)[2m > [22mCross-Chain ABA Messaging (A → B → A)[2m > [22mCounter A Increment (ABA) - sends to Chain B [33m 2845[2mms[22m[39m
|
|
1116
|
+
[33m[2m✓[22m[39m Counter Cross-Chain Testing (SML)[2m > [22mCross-Chain ABA Messaging (A → B → A)[2m > [22mVerify Counter Message on Chain B (via SML) [33m 1128[2mms[22m[39m
|
|
1117
|
+
[33m[2m✓[22m[39m Counter Cross-Chain Testing (SML)[2m > [22mCross-Chain ABA Messaging (A → B → A)[2m > [22mReceive Counter Message on Chain B (ABA - triggers response to A) [33m 2605[2mms[22m[39m
|
|
1118
|
+
[33m[2m✓[22m[39m Counter Cross-Chain Testing (SML)[2m > [22mCross-Chain ABA Messaging (A → B → A)[2m > [22mScan ABA Response PacketSent Events (B → A) [33m 1014[2mms[22m[39m
|
|
1119
|
+
[33m[2m✓[22m[39m Counter Cross-Chain Testing (SML)[2m > [22mCross-Chain ABA Messaging (A → B → A)[2m > [22mVerify ABA Response Message on Chain A (via SML) [33m 2608[2mms[22m[39m
|
|
1120
|
+
[33m[2m✓[22m[39m Counter Cross-Chain Testing (SML)[2m > [22mCross-Chain ABA Messaging (A → B → A)[2m > [22mReceive ABA Response Message on Chain A [33m 2387[2mms[22m[39m
|
|
920
1121
|
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mContract Deployments[2m > [22m[2mDeploy Upgrader Contract
|
|
921
1122
|
[22m[39m📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/upgrader.wasm
|
|
922
1123
|
📤 Uploading WASM...
|
|
923
|
-
📦 WASM buffer size:
|
|
1124
|
+
📦 WASM buffer size: 5329 bytes (5.20 KB)
|
|
924
1125
|
|
|
925
1126
|
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mContract Deployments[2m > [22m[2mDeploy Upgrader Contract
|
|
926
|
-
[22m[39m💰 Upload transaction fee:
|
|
1127
|
+
[22m[39m💰 Upload transaction fee: 1884262 stroops (0.1884262 XLM)
|
|
927
1128
|
|
|
928
1129
|
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mContract Deployments[2m > [22m[2mDeploy Upgrader Contract
|
|
929
|
-
[22m[39m⏰ WASM TTL: live until ledger
|
|
1130
|
+
[22m[39m⏰ WASM TTL: live until ledger 121270 (120959 ledgers remaining, ~7.00 days)
|
|
930
1131
|
|
|
931
1132
|
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mContract Deployments[2m > [22m[2mDeploy Upgrader Contract
|
|
932
|
-
[22m[39m✅ WASM uploaded, hash:
|
|
1133
|
+
[22m[39m✅ WASM uploaded, hash: bc5993c9cefc30e892532d78cb8a0c6eb5cc6723fec6f595dae266ad016275be
|
|
933
1134
|
🚀 Deploying contract...
|
|
934
1135
|
|
|
935
1136
|
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mContract Deployments[2m > [22m[2mDeploy Upgrader Contract
|
|
936
|
-
[22m[39m✅ Contract deployed at:
|
|
1137
|
+
[22m[39m✅ Contract deployed at: CCQUCWYWFH5EGFCHVMBGKAHZWJPBN4JZTFNRP2DLYTN2SY4ITCWG2O3O
|
|
937
1138
|
|
|
938
1139
|
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mContract Deployments[2m > [22m[2mDeploy Upgrader Contract
|
|
939
|
-
[22m[39m✅ Upgrader deployed at:
|
|
1140
|
+
[22m[39m✅ Upgrader deployed at: CCQUCWYWFH5EGFCHVMBGKAHZWJPBN4JZTFNRP2DLYTN2SY4ITCWG2O3O
|
|
940
1141
|
|
|
941
1142
|
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mContract Deployments[2m > [22m[2mDeploy Test Upgradeable Contract V1
|
|
942
1143
|
[22m[39m📖 Reading Test Contract V1 WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/contracts/upgrader/src/tests/test_data/test_upgradeable_contract1.wasm
|
|
@@ -946,14 +1147,14 @@ Deploying SAC for asset: OFT:GCGIA426MAHY6RWYU3LKGKMWKLJRDAP675SXL2EEQB33TVPRTYF
|
|
|
946
1147
|
[22m[39m💰 Upload transaction fee: 7768174 stroops (0.7768174 XLM)
|
|
947
1148
|
|
|
948
1149
|
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mContract Deployments[2m > [22m[2mDeploy Test Upgradeable Contract V1
|
|
949
|
-
[22m[39m⏰ WASM TTL: live until ledger
|
|
1150
|
+
[22m[39m⏰ WASM TTL: live until ledger 121273 (120959 ledgers remaining, ~7.00 days)
|
|
950
1151
|
|
|
951
1152
|
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mContract Deployments[2m > [22m[2mDeploy Test Upgradeable Contract V1
|
|
952
1153
|
[22m[39m✅ Test Contract V1 WASM uploaded, hash: 98a1e80e28f1ff1c1ee5b0616b874e41eff1a3f3a63e9de8d9f7e914c1ee8c17
|
|
953
1154
|
🚀 Deploying Test Contract V1...
|
|
954
1155
|
|
|
955
1156
|
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mContract Deployments[2m > [22m[2mDeploy Test Upgradeable Contract V1
|
|
956
|
-
[22m[39m✅ Test Contract V1 deployed at:
|
|
1157
|
+
[22m[39m✅ Test Contract V1 deployed at: CALH2CLPVTN3MC2UIBJRSBURS4Y3LMQ3TMIB7OIYXSR42HT5BRVKLPH7
|
|
957
1158
|
|
|
958
1159
|
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mContract Deployments[2m > [22m[2mVerify Test Contract V1 Counter
|
|
959
1160
|
[22m[39m✅ Test Contract V1 counter value: [33m1[39m
|
|
@@ -966,14 +1167,14 @@ Deploying SAC for asset: OFT:GCGIA426MAHY6RWYU3LKGKMWKLJRDAP675SXL2EEQB33TVPRTYF
|
|
|
966
1167
|
[22m[39m💰 Upload transaction fee: 7953801 stroops (0.7953801 XLM)
|
|
967
1168
|
|
|
968
1169
|
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mUpgrade Workflow[2m > [22m[2mUpload Test Contract V2 WASM
|
|
969
|
-
[22m[39m⏰ WASM TTL: live until ledger
|
|
1170
|
+
[22m[39m⏰ WASM TTL: live until ledger 121275 (120959 ledgers remaining, ~7.00 days)
|
|
970
1171
|
|
|
971
1172
|
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mUpgrade Workflow[2m > [22m[2mUpload Test Contract V2 WASM
|
|
972
1173
|
[22m[39m✅ Test Contract V2 WASM uploaded, hash: 7d1325b2b683099974089972a3b52573b5bd090e474c56be1d7759baaa0f227e
|
|
973
1174
|
|
|
974
1175
|
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mUpgrade Workflow[2m > [22m[2mTest Upgrader Contract Can Be Called
|
|
975
1176
|
[22m[39m🔄 Testing upgrader contract call...
|
|
976
|
-
Contract address:
|
|
1177
|
+
Contract address: CALH2CLPVTN3MC2UIBJRSBURS4Y3LMQ3TMIB7OIYXSR42HT5BRVKLPH7
|
|
977
1178
|
New WASM hash: 7d1325b2b683099974089972a3b52573b5bd090e474c56be1d7759baaa0f227e
|
|
978
1179
|
|
|
979
1180
|
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mUpgrade Workflow[2m > [22m[2mTest Upgrader Contract Can Be Called
|
|
@@ -992,7 +1193,7 @@ Deploying SAC for asset: OFT:GCGIA426MAHY6RWYU3LKGKMWKLJRDAP675SXL2EEQB33TVPRTYF
|
|
|
992
1193
|
✅ Transaction envelope signed
|
|
993
1194
|
|
|
994
1195
|
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mUpgrade Workflow[2m > [22m[2mTest Upgrader Contract Can Be Called
|
|
995
|
-
[22m[39m✅ Transaction sent, hash:
|
|
1196
|
+
[22m[39m✅ Transaction sent, hash: bbc415b87df664e2fbf8e901d5314611dee44edd00ea539c5c035a6790c48744
|
|
996
1197
|
|
|
997
1198
|
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mUpgrade Workflow[2m > [22m[2mTest Upgrader Contract Can Be Called
|
|
998
1199
|
[22m[39m✅ Upgrade transaction completed
|
|
@@ -1004,17 +1205,17 @@ Deploying SAC for asset: OFT:GCGIA426MAHY6RWYU3LKGKMWKLJRDAP675SXL2EEQB33TVPRTYF
|
|
|
1004
1205
|
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mUpgrade Workflow[2m > [22m[2mVerify Test Contract V1 Counter Still Works After Upgrade
|
|
1005
1206
|
[22m[39m✅ Test Contract V2 counter value (from V1): [33m1[39m
|
|
1006
1207
|
|
|
1007
|
-
[32m✓[39m test/upgrader.test.ts [2m([22m[2m7 tests[22m[2m)[22m[33m
|
|
1008
|
-
[33m[2m✓[22m[39m Upgrader Contract Testing[2m > [22mContract Deployments[2m > [22mDeploy Upgrader Contract [33m
|
|
1009
|
-
[33m[2m✓[22m[39m Upgrader Contract Testing[2m > [22mContract Deployments[2m > [22mDeploy Test Upgradeable Contract V1 [33m
|
|
1010
|
-
[33m[2m✓[22m[39m Upgrader Contract Testing[2m > [22mUpgrade Workflow[2m > [22mUpload Test Contract V2 WASM [33m
|
|
1011
|
-
[33m[2m✓[22m[39m Upgrader Contract Testing[2m > [22mUpgrade Workflow[2m > [22mTest Upgrader Contract Can Be Called [33m
|
|
1208
|
+
[32m✓[39m test/upgrader.test.ts [2m([22m[2m7 tests[22m[2m)[22m[33m 7580[2mms[22m[39m
|
|
1209
|
+
[33m[2m✓[22m[39m Upgrader Contract Testing[2m > [22mContract Deployments[2m > [22mDeploy Upgrader Contract [33m 3129[2mms[22m[39m
|
|
1210
|
+
[33m[2m✓[22m[39m Upgrader Contract Testing[2m > [22mContract Deployments[2m > [22mDeploy Test Upgradeable Contract V1 [33m 2162[2mms[22m[39m
|
|
1211
|
+
[33m[2m✓[22m[39m Upgrader Contract Testing[2m > [22mUpgrade Workflow[2m > [22mUpload Test Contract V2 WASM [33m 1089[2mms[22m[39m
|
|
1212
|
+
[33m[2m✓[22m[39m Upgrader Contract Testing[2m > [22mUpgrade Workflow[2m > [22mTest Upgrader Contract Can Be Called [33m 1092[2mms[22m[39m
|
|
1012
1213
|
|
|
1013
1214
|
[2m Test Files [22m [1m[32m4 passed[39m[22m[90m (4)[39m
|
|
1014
|
-
[2m Tests [22m [1m[
|
|
1215
|
+
[2m Tests [22m [1m[32m61 passed[39m[22m[90m (61)[39m
|
|
1015
1216
|
[2mType Errors [22m [2mno errors[22m
|
|
1016
|
-
[2m Start at [22m
|
|
1017
|
-
[2m Duration [22m
|
|
1217
|
+
[2m Start at [22m 04:12:19
|
|
1218
|
+
[2m Duration [22m 347.89s[2m (transform 973ms, setup 0ms, collect 2.89s, tests 104.82s, environment 0ms, prepare 196ms)[22m
|
|
1018
1219
|
|
|
1019
1220
|
|
|
1020
1221
|
========================================
|