@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.
Files changed (328) hide show
  1. package/.turbo/turbo-build.log +331 -261
  2. package/.turbo/turbo-lint.log +262 -192
  3. package/.turbo/turbo-test.log +1696 -1368
  4. package/Cargo.lock +22 -51
  5. package/Cargo.toml +6 -1
  6. package/contracts/common-macros/src/auth.rs +10 -9
  7. package/contracts/common-macros/src/contract_ttl.rs +1 -4
  8. package/contracts/common-macros/src/error.rs +1 -3
  9. package/contracts/common-macros/src/lib.rs +65 -61
  10. package/contracts/common-macros/src/storage.rs +212 -65
  11. package/contracts/common-macros/src/tests/auth.rs +75 -6
  12. package/contracts/common-macros/src/tests/contract_ttl.rs +383 -350
  13. package/contracts/common-macros/src/tests/error.rs +9 -21
  14. package/contracts/common-macros/src/tests/lz_contract.rs +80 -0
  15. package/contracts/common-macros/src/tests/mod.rs +2 -0
  16. package/contracts/common-macros/src/tests/snapshots/common_macros__tests__auth__snapshot_generated_multisig_code.snap +20 -3
  17. package/contracts/common-macros/src/tests/snapshots/common_macros__tests__auth__snapshot_generated_ownable_code.snap +28 -1
  18. package/contracts/common-macros/src/tests/snapshots/common_macros__tests__contract_ttl__snapshot_generated_contractimpl_code.snap +8 -43
  19. package/contracts/common-macros/src/tests/snapshots/common_macros__tests__contract_ttl__snapshot_generated_contracttrait_code.snap +6 -29
  20. package/contracts/common-macros/src/tests/snapshots/common_macros__tests__lz_contract__snapshot_generated_lz_contract_code.snap +31 -0
  21. package/contracts/common-macros/src/tests/snapshots/common_macros__tests__ttl_extendable__snapshot_generated_ttl_extendable_code.snap +8 -0
  22. package/contracts/common-macros/src/tests/storage/extract_fields.rs +87 -0
  23. package/contracts/common-macros/src/tests/storage/gen_accessor_methods.rs +223 -0
  24. package/contracts/common-macros/src/tests/storage/gen_args.rs +65 -0
  25. package/contracts/common-macros/src/tests/storage/gen_enum_variant.rs +78 -0
  26. package/contracts/common-macros/src/tests/storage/gen_key.rs +108 -0
  27. package/contracts/common-macros/src/tests/storage/gen_params.rs +105 -0
  28. package/contracts/common-macros/src/tests/{storage.rs → storage/generate_storage.rs} +54 -129
  29. package/contracts/common-macros/src/tests/storage/is_primitive_type.rs +48 -0
  30. package/contracts/common-macros/src/tests/storage/mod.rs +16 -0
  31. package/contracts/common-macros/src/tests/storage/parse_default.rs +164 -0
  32. package/contracts/common-macros/src/tests/storage/parse_name.rs +159 -0
  33. package/contracts/common-macros/src/tests/storage/parse_no_ttl_extension.rs +124 -0
  34. package/contracts/common-macros/src/tests/storage/parse_storage_type.rs +174 -0
  35. package/contracts/common-macros/src/tests/storage/snapshots/common_macros__tests__storage__generate_storage__snapshot_generated_storage_code.snap +412 -0
  36. package/contracts/common-macros/src/tests/storage/storage_kind.rs +39 -0
  37. package/contracts/common-macros/src/tests/storage/test_setup.rs +25 -0
  38. package/contracts/common-macros/src/tests/storage/validate_attrs.rs +138 -0
  39. package/contracts/common-macros/src/tests/storage/variant_config.rs +226 -0
  40. package/contracts/common-macros/src/tests/test_helpers.rs +4 -10
  41. package/contracts/common-macros/src/tests/ttl_configurable.rs +2 -2
  42. package/contracts/common-macros/src/tests/ttl_extendable.rs +32 -0
  43. package/contracts/common-macros/src/tests/upgradeable.rs +118 -2
  44. package/contracts/common-macros/src/ttl_configurable.rs +1 -4
  45. package/contracts/common-macros/src/upgradeable.rs +21 -3
  46. package/contracts/endpoint-v2/Cargo.toml +0 -4
  47. package/contracts/endpoint-v2/src/endpoint_v2.rs +37 -17
  48. package/contracts/endpoint-v2/src/errors.rs +26 -1
  49. package/contracts/endpoint-v2/src/interfaces/layerzero_endpoint_v2.rs +1 -1
  50. package/contracts/endpoint-v2/src/interfaces/message_lib_manager.rs +4 -4
  51. package/contracts/endpoint-v2/src/interfaces/messaging_composer.rs +2 -2
  52. package/contracts/endpoint-v2/src/lib.rs +0 -1
  53. package/contracts/endpoint-v2/src/message_lib_manager.rs +39 -8
  54. package/contracts/endpoint-v2/src/messaging_channel.rs +36 -4
  55. package/contracts/endpoint-v2/src/messaging_composer.rs +18 -4
  56. package/contracts/endpoint-v2/src/storage.rs +9 -1
  57. package/contracts/endpoint-v2/src/tests/endpoint_setup.rs +2 -2
  58. package/contracts/endpoint-v2/src/tests/endpoint_v2/pay_messaging_fees.rs +1 -1
  59. package/contracts/endpoint-v2/src/tests/endpoint_v2/require_oapp_auth.rs +2 -2
  60. package/contracts/endpoint-v2/src/tests/message_lib_manager/register_library.rs +3 -3
  61. package/contracts/endpoint-v2/src/tests/message_lib_manager/require_receive_lib_for_eid.rs +5 -5
  62. package/contracts/endpoint-v2/src/tests/message_lib_manager/require_registered.rs +2 -2
  63. package/contracts/endpoint-v2/src/tests/message_lib_manager/require_send_lib_for_eid.rs +5 -5
  64. package/contracts/endpoint-v2/src/tests/message_lib_manager/require_supported_eid.rs +3 -3
  65. package/contracts/endpoint-v2/src/tests/messaging_channel/nilify.rs +1 -1
  66. package/contracts/endpoint-v2/src/tests/messaging_composer/clear_compose.rs +4 -3
  67. package/contracts/endpoint-v2/src/tests/messaging_composer/lz_compose_alert.rs +7 -2
  68. package/contracts/endpoint-v2/src/tests/messaging_composer/mod.rs +4 -0
  69. package/contracts/endpoint-v2/src/tests/messaging_composer/send_compose.rs +7 -2
  70. package/contracts/layerzero-views/src/layerzero_view.rs +0 -1
  71. package/contracts/layerzero-views/src/tests/mod.rs +1 -0
  72. package/contracts/layerzero-views/src/tests/types_tests.rs +31 -0
  73. package/contracts/layerzero-views/src/types.rs +2 -3
  74. package/contracts/macro-integration-tests/tests/runtime/contract_ttl/constructor.rs +61 -0
  75. package/contracts/macro-integration-tests/tests/runtime/contract_ttl/contract_impl_ttl_extension.rs +97 -0
  76. package/contracts/macro-integration-tests/tests/runtime/contract_ttl/contract_trait_ttl_extension.rs +99 -0
  77. package/contracts/macro-integration-tests/tests/runtime/contract_ttl/mod.rs +3 -0
  78. package/contracts/macro-integration-tests/tests/runtime/lz_contract/mod.rs +5 -0
  79. package/contracts/macro-integration-tests/tests/runtime/lz_contract/wrapper_default.rs +86 -0
  80. package/contracts/macro-integration-tests/tests/runtime/lz_contract/wrapper_multisig.rs +47 -0
  81. package/contracts/macro-integration-tests/tests/runtime/lz_contract/wrapper_multisig_upgradeable.rs +77 -0
  82. package/contracts/macro-integration-tests/tests/runtime/lz_contract/wrapper_upgradeable.rs +114 -0
  83. package/contracts/macro-integration-tests/tests/runtime/lz_contract/wrapper_upgradeable_no_migration.rs +105 -0
  84. package/contracts/macro-integration-tests/tests/runtime/multisig/admin_entrypoints.rs +242 -0
  85. package/contracts/macro-integration-tests/tests/runtime/multisig/mod.rs +9 -0
  86. package/contracts/macro-integration-tests/tests/runtime/multisig/self_auth.rs +54 -0
  87. package/contracts/macro-integration-tests/tests/runtime/ownable/initialization.rs +13 -0
  88. package/contracts/macro-integration-tests/tests/runtime/ownable/mod.rs +1 -0
  89. package/contracts/macro-integration-tests/tests/runtime/ownable/ownership_transfer.rs +70 -1
  90. package/contracts/macro-integration-tests/tests/runtime/ownable/two_step_transfer.rs +219 -0
  91. package/contracts/macro-integration-tests/tests/runtime/storage/keyed_roundtrip.rs +41 -0
  92. package/contracts/macro-integration-tests/tests/runtime/storage/ttl_extension.rs +48 -16
  93. package/contracts/macro-integration-tests/tests/runtime/storage/unkeyed_roundtrip.rs +10 -0
  94. package/contracts/macro-integration-tests/tests/runtime/ttl_configurable/configuration.rs +96 -3
  95. package/contracts/macro-integration-tests/tests/runtime/ttl_configurable/freeze.rs +4 -0
  96. package/contracts/macro-integration-tests/tests/runtime/ttl_extendable/extend_instance_ttl.rs +64 -0
  97. package/contracts/macro-integration-tests/tests/runtime/ttl_extendable/mod.rs +16 -0
  98. package/contracts/macro-integration-tests/tests/runtime/upgradeable/migrate_guard_and_state.rs +305 -0
  99. package/contracts/macro-integration-tests/tests/runtime/upgradeable/mod.rs +3 -0
  100. package/contracts/macro-integration-tests/tests/runtime/upgradeable/no_migration.rs +59 -0
  101. package/contracts/macro-integration-tests/tests/runtime/upgradeable/upgrade_then_migrate.rs +88 -0
  102. package/contracts/macro-integration-tests/tests/runtime.rs +5 -0
  103. package/contracts/macro-integration-tests/tests/ui/contract_impl/fail/not_impl_item.rs +6 -0
  104. package/contracts/macro-integration-tests/tests/ui/contract_impl/fail/not_impl_item.stderr +7 -0
  105. package/contracts/macro-integration-tests/tests/ui/contract_impl/pass/basic.rs +102 -0
  106. package/contracts/macro-integration-tests/tests/ui/contract_trait/fail/not_a_trait.rs +6 -0
  107. package/contracts/macro-integration-tests/tests/ui/contract_trait/fail/not_a_trait.stderr +7 -0
  108. package/contracts/macro-integration-tests/tests/ui/contract_trait/pass/basic.rs +83 -0
  109. package/contracts/macro-integration-tests/tests/ui/error/fail/discriminant_too_large.rs +11 -0
  110. package/contracts/macro-integration-tests/tests/ui/error/fail/discriminant_too_large.stderr +7 -0
  111. package/contracts/macro-integration-tests/tests/ui/error/fail/non_enum_input.rs +11 -0
  112. package/contracts/macro-integration-tests/tests/ui/error/fail/non_enum_input.stderr +7 -0
  113. package/contracts/macro-integration-tests/tests/ui/error/pass/basic.rs +22 -0
  114. package/contracts/macro-integration-tests/tests/ui/lz_contract/fail/invalid_option.rs +6 -0
  115. package/contracts/macro-integration-tests/tests/ui/lz_contract/fail/invalid_option.stderr +7 -0
  116. package/contracts/macro-integration-tests/tests/ui/lz_contract/fail/multisig_rejects_ownable_api.rs +20 -0
  117. package/contracts/macro-integration-tests/tests/ui/lz_contract/fail/multisig_rejects_ownable_api.stderr +20 -0
  118. package/contracts/macro-integration-tests/tests/ui/lz_contract/fail/not_a_struct.rs +8 -0
  119. package/contracts/macro-integration-tests/tests/ui/lz_contract/fail/not_a_struct.stderr +7 -0
  120. package/contracts/macro-integration-tests/tests/ui/lz_contract/fail/upgradeable_invalid_inner_option.rs +10 -0
  121. package/contracts/macro-integration-tests/tests/ui/lz_contract/fail/upgradeable_invalid_inner_option.stderr +7 -0
  122. package/contracts/macro-integration-tests/tests/ui/lz_contract/fail/upgradeable_missing_internal.rs +20 -0
  123. package/contracts/macro-integration-tests/tests/ui/lz_contract/fail/upgradeable_missing_internal.stderr +86 -0
  124. package/contracts/macro-integration-tests/tests/ui/lz_contract/pass/basic.rs +45 -0
  125. package/contracts/macro-integration-tests/tests/ui/lz_contract/pass/multisig.rs +34 -0
  126. package/contracts/macro-integration-tests/tests/ui/lz_contract/pass/multisig_upgradeable.rs +30 -0
  127. package/contracts/macro-integration-tests/tests/ui/lz_contract/pass/upgradeable.rs +39 -0
  128. package/contracts/macro-integration-tests/tests/ui/lz_contract/pass/upgradeable_no_migration.rs +28 -0
  129. package/contracts/macro-integration-tests/tests/ui/multisig/fail/non_struct_input.rs +8 -0
  130. package/contracts/macro-integration-tests/tests/ui/multisig/fail/non_struct_input.stderr +7 -0
  131. package/contracts/macro-integration-tests/tests/ui/multisig/fail/rejects_ownable_api.rs +20 -0
  132. package/contracts/macro-integration-tests/tests/ui/multisig/fail/rejects_ownable_api.stderr +12 -0
  133. package/contracts/macro-integration-tests/tests/ui/multisig/fail/rejects_ownable_trait.rs +20 -0
  134. package/contracts/macro-integration-tests/tests/ui/multisig/fail/rejects_ownable_trait.stderr +5 -0
  135. package/contracts/macro-integration-tests/tests/ui/multisig/pass/basic.rs +49 -0
  136. package/contracts/macro-integration-tests/tests/ui/ownable/fail/non_struct_input.rs +8 -0
  137. package/contracts/macro-integration-tests/tests/ui/ownable/fail/non_struct_input.stderr +7 -0
  138. package/contracts/macro-integration-tests/tests/ui/ownable/fail/only_auth_missing_auth.rs +19 -0
  139. package/contracts/macro-integration-tests/tests/ui/ownable/fail/only_auth_missing_auth.stderr +12 -0
  140. package/contracts/macro-integration-tests/tests/ui/ownable/fail/only_auth_missing_env.rs +1 -1
  141. package/contracts/macro-integration-tests/tests/ui/ownable/fail/only_auth_missing_env.stderr +0 -8
  142. package/contracts/macro-integration-tests/tests/ui/ownable/pass/basic.rs +39 -0
  143. package/contracts/macro-integration-tests/tests/ui/ownable/pass/only_auth_env_param_variants.rs +7 -1
  144. package/contracts/macro-integration-tests/tests/ui/storage/fail/invalid_storage_type_param.stderr +1 -1
  145. package/contracts/macro-integration-tests/tests/ui/storage/fail/missing_storage_type_param.stderr +1 -1
  146. package/contracts/macro-integration-tests/tests/ui/storage/fail/multiple_default_values.rs +11 -0
  147. package/contracts/macro-integration-tests/tests/ui/storage/fail/multiple_default_values.stderr +7 -0
  148. package/contracts/macro-integration-tests/tests/ui/storage/fail/multiple_name_attrs.rs +11 -0
  149. package/contracts/macro-integration-tests/tests/ui/storage/fail/multiple_name_attrs.stderr +7 -0
  150. package/contracts/macro-integration-tests/tests/ui/storage/fail/multiple_no_ttl_extension.rs +11 -0
  151. package/contracts/macro-integration-tests/tests/ui/storage/fail/multiple_no_ttl_extension.stderr +7 -0
  152. package/contracts/macro-integration-tests/tests/ui/storage/fail/multiple_type_params.stderr +1 -1
  153. package/contracts/macro-integration-tests/tests/ui/storage/fail/no_ttl_extension_rejects_args.rs +13 -0
  154. package/contracts/macro-integration-tests/tests/ui/storage/fail/no_ttl_extension_rejects_args.stderr +7 -0
  155. package/contracts/macro-integration-tests/tests/ui/storage/pass/api_surface.rs +102 -0
  156. package/contracts/macro-integration-tests/tests/ui/storage/pass/basic.rs +43 -0
  157. package/contracts/macro-integration-tests/tests/ui/storage/pass/multi_key.rs +38 -0
  158. package/contracts/macro-integration-tests/tests/ui/ttl_configurable/fail/missing_auth_trait.rs +14 -0
  159. package/contracts/macro-integration-tests/tests/ui/ttl_configurable/fail/missing_auth_trait.stderr +71 -0
  160. package/contracts/macro-integration-tests/tests/ui/ttl_configurable/fail/non_struct_input.rs +8 -0
  161. package/contracts/macro-integration-tests/tests/ui/ttl_configurable/fail/non_struct_input.stderr +7 -0
  162. package/contracts/macro-integration-tests/tests/ui/ttl_configurable/pass/{minimal_contract.rs → basic.rs} +2 -0
  163. package/contracts/macro-integration-tests/tests/ui/ttl_configurable/pass/multisig_contract.rs +28 -0
  164. package/contracts/macro-integration-tests/tests/ui/ttl_configurable/pass/ownable_contract.rs +32 -0
  165. package/contracts/macro-integration-tests/tests/ui/ttl_extendable/fail/non_struct_input.rs +8 -0
  166. package/contracts/macro-integration-tests/tests/ui/ttl_extendable/fail/non_struct_input.stderr +7 -0
  167. package/contracts/macro-integration-tests/tests/ui/ttl_extendable/pass/basic.rs +23 -0
  168. package/contracts/macro-integration-tests/tests/ui/ttl_extendable/pass/no_user_contractimpl.rs +21 -0
  169. package/contracts/macro-integration-tests/tests/ui/upgradeable/fail/attr_args.rs +11 -0
  170. package/contracts/macro-integration-tests/tests/ui/upgradeable/fail/attr_args.stderr +29 -0
  171. package/contracts/macro-integration-tests/tests/ui/upgradeable/fail/missing_auth_trait.rs +20 -0
  172. package/contracts/macro-integration-tests/tests/ui/upgradeable/fail/missing_auth_trait.stderr +71 -0
  173. package/contracts/macro-integration-tests/tests/ui/upgradeable/fail/missing_upgradeable_internal.rs +10 -0
  174. package/contracts/macro-integration-tests/tests/ui/upgradeable/fail/missing_upgradeable_internal.stderr +79 -0
  175. package/contracts/macro-integration-tests/tests/ui/upgradeable/fail/non_struct_input.rs +8 -0
  176. package/contracts/macro-integration-tests/tests/ui/upgradeable/fail/non_struct_input.stderr +7 -0
  177. package/contracts/macro-integration-tests/tests/ui/upgradeable/pass/basic.rs +43 -0
  178. package/contracts/macro-integration-tests/tests/ui/upgradeable/pass/multisig_contract.rs +35 -0
  179. package/contracts/macro-integration-tests/tests/ui/upgradeable/pass/no_migration.rs +30 -0
  180. package/contracts/macro-integration-tests/tests/ui/upgradeable/pass/no_user_contractimpl.rs +29 -0
  181. package/contracts/macro-integration-tests/tests/ui_contract_impl.rs +12 -0
  182. package/contracts/macro-integration-tests/tests/ui_contract_trait.rs +12 -0
  183. package/contracts/macro-integration-tests/tests/ui_lz_contract.rs +11 -0
  184. package/contracts/macro-integration-tests/tests/ui_multisig.rs +11 -0
  185. package/contracts/macro-integration-tests/tests/ui_ttl_extendable.rs +12 -0
  186. package/contracts/macro-integration-tests/tests/ui_upgradeable.rs +11 -0
  187. package/contracts/message-libs/blocked-message-lib/Cargo.toml +1 -1
  188. package/contracts/message-libs/blocked-message-lib/src/lib.rs +4 -1
  189. package/contracts/message-libs/blocked-message-lib/src/tests/blocked_message_lib_tests.rs +108 -0
  190. package/contracts/message-libs/blocked-message-lib/src/tests/mod.rs +4 -0
  191. package/contracts/message-libs/blocked-message-lib/src/tests/setup.rs +40 -0
  192. package/contracts/message-libs/simple-message-lib/src/lib.rs +1 -1
  193. package/contracts/message-libs/simple-message-lib/src/tests/mod.rs +2 -0
  194. package/contracts/message-libs/simple-message-lib/src/tests/setup.rs +124 -0
  195. package/contracts/message-libs/simple-message-lib/src/tests/simple_message_lib_tests.rs +309 -0
  196. package/contracts/message-libs/uln-302/src/errors.rs +21 -0
  197. package/contracts/message-libs/uln-302/src/interfaces/receive_uln.rs +1 -1
  198. package/contracts/message-libs/uln-302/src/receive_uln.rs +6 -4
  199. package/contracts/message-libs/uln-302/src/send_uln.rs +15 -6
  200. package/contracts/message-libs/uln-302/src/storage.rs +5 -5
  201. package/contracts/message-libs/uln-302/src/tests/uln302/get_config.rs +71 -0
  202. package/contracts/message-libs/uln-302/src/tests/uln302/mod.rs +1 -0
  203. package/contracts/message-libs/uln-302/src/uln302.rs +3 -0
  204. package/contracts/oapps/counter/Cargo.toml +2 -0
  205. package/contracts/oapps/counter/integration_tests/mod.rs +1 -0
  206. package/contracts/oapps/counter/integration_tests/setup_sml.rs +6 -4
  207. package/contracts/oapps/counter/integration_tests/setup_uln.rs +12 -5
  208. package/contracts/oapps/counter/integration_tests/test_with_blocked.rs +67 -0
  209. package/contracts/oapps/counter/src/tests/mod.rs +1 -0
  210. package/contracts/oapps/counter/src/tests/test_u256_ext.rs +48 -0
  211. package/contracts/oapps/oapp/src/lib.rs +0 -3
  212. package/contracts/oapps/oapp/src/tests/mod.rs +1 -0
  213. package/contracts/oapps/oft/integration-tests/setup.rs +2 -3
  214. package/contracts/oapps/oft/src/lib.rs +3 -0
  215. package/contracts/oapps/oft/src/tests/extensions/mod.rs +3 -0
  216. package/contracts/oapps/oft/src/tests/extensions/oft_fee.rs +240 -0
  217. package/contracts/oapps/oft/src/tests/extensions/pausable.rs +141 -0
  218. package/contracts/oapps/oft/src/tests/extensions/rate_limiter.rs +447 -0
  219. package/contracts/oapps/oft/src/tests/mod.rs +2 -0
  220. package/contracts/oapps/oft/src/tests/oft_types/lock_unlock.rs +180 -0
  221. package/contracts/oapps/oft/src/tests/oft_types/mod.rs +1 -0
  222. package/contracts/oapps/oft-core/integration-tests/setup.rs +2 -3
  223. package/contracts/oapps/oft-core/src/lib.rs +2 -2
  224. package/contracts/oapps/oft-core/src/tests/mod.rs +1 -1
  225. package/contracts/oapps/oft-core/src/tests/{test_oft_version.rs → test_oft_version_and_approval.rs} +9 -0
  226. package/contracts/oapps/oft-core/src/tests/test_utils.rs +0 -43
  227. package/contracts/upgrader/src/tests/test_upgrader.rs +18 -0
  228. package/contracts/utils/src/auth.rs +2 -2
  229. package/contracts/utils/src/buffer_reader.rs +61 -10
  230. package/contracts/utils/src/buffer_writer.rs +35 -20
  231. package/contracts/utils/src/bytes_ext.rs +1 -2
  232. package/contracts/utils/src/errors.rs +5 -3
  233. package/contracts/utils/src/multisig.rs +59 -36
  234. package/contracts/utils/src/option_ext.rs +3 -3
  235. package/contracts/utils/src/ownable.rs +12 -6
  236. package/contracts/utils/src/tests/auth.rs +179 -0
  237. package/contracts/utils/src/tests/buffer_reader.rs +203 -1
  238. package/contracts/utils/src/tests/buffer_writer.rs +176 -5
  239. package/contracts/utils/src/tests/mod.rs +2 -0
  240. package/contracts/utils/src/tests/multisig.rs +170 -141
  241. package/contracts/utils/src/tests/option_ext.rs +1 -1
  242. package/contracts/utils/src/tests/ownable.rs +156 -161
  243. package/contracts/utils/src/tests/test_helper.rs +21 -1
  244. package/contracts/utils/src/tests/testing_utils.rs +84 -2
  245. package/contracts/utils/src/tests/ttl_configurable.rs +66 -86
  246. package/contracts/utils/src/tests/ttl_extendable.rs +64 -0
  247. package/contracts/utils/src/tests/upgradeable.rs +115 -6
  248. package/contracts/utils/src/ttl_configurable.rs +22 -12
  249. package/contracts/utils/src/ttl_extendable.rs +1 -3
  250. package/contracts/utils/src/upgradeable.rs +21 -24
  251. package/contracts/workers/dvn/src/auth.rs +1 -1
  252. package/contracts/workers/dvn/src/interfaces/dvn.rs +2 -2
  253. package/contracts/workers/dvn/src/storage.rs +1 -1
  254. package/contracts/workers/dvn/src/tests/auth.rs +136 -3
  255. package/contracts/workers/dvn/src/tests/mod.rs +0 -1
  256. package/contracts/workers/dvn/src/tests/setup.rs +4 -10
  257. package/contracts/workers/executor-helper/src/tests/executor_helper.rs +279 -0
  258. package/contracts/workers/executor-helper/src/tests/setup.rs +106 -1
  259. package/contracts/workers/worker/src/worker.rs +1 -1
  260. package/docs/oft-guide.md +5 -5
  261. package/package.json +5 -7
  262. package/sdk/.turbo/turbo-test.log +667 -466
  263. package/sdk/LICENSE +23 -0
  264. package/sdk/dist/generated/bml.d.ts +101 -106
  265. package/sdk/dist/generated/bml.js +108 -26
  266. package/sdk/dist/generated/counter.d.ts +123 -484
  267. package/sdk/dist/generated/counter.js +103 -25
  268. package/sdk/dist/generated/dvn.d.ts +141 -699
  269. package/sdk/dist/generated/dvn.js +106 -28
  270. package/sdk/dist/generated/dvn_fee_lib.d.ts +31 -248
  271. package/sdk/dist/generated/dvn_fee_lib.js +27 -24
  272. package/sdk/dist/generated/endpoint.d.ts +158 -836
  273. package/sdk/dist/generated/endpoint.js +107 -29
  274. package/sdk/dist/generated/executor.d.ts +139 -671
  275. package/sdk/dist/generated/executor.js +106 -28
  276. package/sdk/dist/generated/executor_fee_lib.d.ts +109 -264
  277. package/sdk/dist/generated/executor_fee_lib.js +106 -28
  278. package/sdk/dist/generated/executor_helper.d.ts +95 -92
  279. package/sdk/dist/generated/executor_helper.js +103 -25
  280. package/sdk/dist/generated/layerzero_view.d.ts +178 -335
  281. package/sdk/dist/generated/layerzero_view.js +172 -33
  282. package/sdk/dist/generated/oft.d.ts +137 -680
  283. package/sdk/dist/generated/oft.js +103 -25
  284. package/sdk/dist/generated/price_feed.d.ts +45 -444
  285. package/sdk/dist/generated/price_feed.js +27 -24
  286. package/sdk/dist/generated/sml.d.ts +119 -428
  287. package/sdk/dist/generated/sml.js +103 -25
  288. package/sdk/dist/generated/treasury.d.ts +109 -288
  289. package/sdk/dist/generated/treasury.js +103 -25
  290. package/sdk/dist/generated/uln302.d.ts +190 -527
  291. package/sdk/dist/generated/uln302.js +170 -31
  292. package/sdk/dist/generated/upgrader.d.ts +14 -34
  293. package/sdk/dist/generated/upgrader.js +24 -21
  294. package/sdk/package.json +3 -4
  295. package/sdk/test/counter-sml.test.ts +218 -142
  296. package/sdk/test/counter-uln.test.ts +189 -145
  297. package/sdk/test/oft-sml.test.ts +173 -156
  298. package/sdk/test/suites/constants.ts +7 -1
  299. package/sdk/test/suites/globalSetup.ts +140 -74
  300. package/sdk/turbo.json +1 -1
  301. package/tools/ts-bindings-gen/Cargo.toml +4 -4
  302. package/tools/ts-bindings-gen/src/main.rs +4 -0
  303. package/turbo.json +3 -0
  304. package/contracts/common-macros/src/tests/snapshots/common_macros__tests__storage__snapshot_generated_storage_code.snap +0 -1072
  305. package/contracts/endpoint-v2/src/constants.rs +0 -52
  306. package/contracts/macro-integration-tests/tests/ui/error/fail/attr_not_empty.rs +0 -12
  307. package/contracts/macro-integration-tests/tests/ui/error/fail/attr_not_empty.stderr +0 -7
  308. package/contracts/macro-integration-tests/tests/ui/error/pass/attr_on_variant_allowed.rs +0 -20
  309. package/contracts/macro-integration-tests/tests/ui/error/pass/basic_auto_discriminants.rs +0 -15
  310. package/contracts/macro-integration-tests/tests/ui/error/pass/mixed_discriminants.rs +0 -16
  311. package/contracts/macro-integration-tests/tests/ui/ownable/pass/minimal_contract.rs +0 -26
  312. package/contracts/macro-integration-tests/tests/ui/ownable/pass/namespacing_and_imports.rs +0 -21
  313. package/contracts/macro-integration-tests/tests/ui/storage/fail/storage_attr_rejects_args.rs +0 -12
  314. package/contracts/macro-integration-tests/tests/ui/storage/fail/storage_attr_rejects_args.stderr +0 -7
  315. package/contracts/macro-integration-tests/tests/ui/storage/pass/default_value_on_variant.rs +0 -14
  316. package/contracts/macro-integration-tests/tests/ui/storage/pass/enum_instance_unit_basic.rs +0 -14
  317. package/contracts/macro-integration-tests/tests/ui/storage/pass/enum_persistent_named_fields_keyed.rs +0 -16
  318. package/contracts/macro-integration-tests/tests/ui/storage/pass/enum_temporary_unit_option.rs +0 -15
  319. package/contracts/macro-integration-tests/tests/ui/storage/pass/name_override.rs +0 -14
  320. package/contracts/macro-integration-tests/tests/ui/storage/pass/no_auto_ttl_extension.rs +0 -19
  321. package/contracts/macro-integration-tests/tests/ui/storage/pass/ttl_provider_basic.rs +0 -15
  322. package/contracts/message-libs/simple-message-lib/src/test.rs +0 -280
  323. package/contracts/oapps/oapp/src/macro_tests/mod.rs +0 -1
  324. package/contracts/workers/dvn/src/tests/multisig/mod.rs +0 -3
  325. package/contracts/workers/dvn/src/tests/multisig/set_signer.rs +0 -132
  326. package/contracts/workers/dvn/src/tests/multisig/set_threshold.rs +0 -109
  327. package/contracts/workers/dvn/src/tests/multisig/verify_signatures.rs +0 -106
  328. /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
- 🚀 Deploying Endpoint...
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: 59070 bytes (57.69 KB)
85
- 💰 Upload transaction fee: 33723547 stroops (3.3723547 XLM)
86
- ⏰ WASM TTL: live until ledger 121074 (120959 ledgers remaining, ~7.00 days)
87
- ✅ WASM uploaded, hash: f55501593e422dcad948d5bb9280623f3ecd937eb4e71071e64f9679946bebf0
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: CCPTRUANJUH2YDEMMNFTRLHNCUAUJVMCQLXE3OYYQQEEKHXBFFXAIO3Z
90
- ✅ Endpoint deployed: CCPTRUANJUH2YDEMMNFTRLHNCUAUJVMCQLXE3OYYQQEEKHXBFFXAIO3Z
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: 27461 bytes (26.82 KB)
95
- 💰 Upload transaction fee: 12153942 stroops (1.2153942 XLM)
96
- ⏰ WASM TTL: live until ledger 121077 (120959 ledgers remaining, ~7.00 days)
97
- ✅ WASM uploaded, hash: 1e88f3e179cb6dbabb6332b6b4279b5b04c3d10f361e12f084a3db2ec1872553
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: CCX7GIHVRRWXAKSHAIO36RD42ENUJLANGNGMP4DGGSPSQ5LUL76RNPKW
100
- ✅ Treasury deployed: CCX7GIHVRRWXAKSHAIO36RD42ENUJLANGNGMP4DGGSPSQ5LUL76RNPKW
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: 57445 bytes (56.10 KB)
105
- 💰 Upload transaction fee: 32794915 stroops (3.2794915 XLM)
106
- ⏰ WASM TTL: live until ledger 121079 (120959 ledgers remaining, ~7.00 days)
107
- ✅ WASM uploaded, hash: f93089924ff22ed0acf1296dfd2e865ed07d37e36de9074c3b61923a076df0b5
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: CBQFR5WLFIVELDHM2IWMWHBOKC6NO7L7UTGFJ6WP2LJOBUJMKCZK4OB6
110
- ✅ ULN302 deployed: CBQFR5WLFIVELDHM2IWMWHBOKC6NO7L7UTGFJ6WP2LJOBUJMKCZK4OB6
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: 29284 bytes (28.60 KB)
115
- 💰 Upload transaction fee: 14389402 stroops (1.4389402 XLM)
116
- ⏰ WASM TTL: live until ledger 121083 (120959 ledgers remaining, ~7.00 days)
117
- ✅ WASM uploaded, hash: 50f95eceb29103f5c23981254e80a68d3c38a9837917b7e39bb951670c5ae19f
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: CDZVL2G3TTVEHD46VTC6QQQQCEYRY4UUAILIPUZU67H3KKFBEFELJGQJ
120
- ✅ SimpleMessageLib deployed: CDZVL2G3TTVEHD46VTC6QQQQCEYRY4UUAILIPUZU67H3KKFBEFELJGQJ
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: 33995 bytes (33.20 KB)
125
- 💰 Upload transaction fee: 18949553 stroops (1.8949553 XLM)
126
- ⏰ WASM TTL: live until ledger 121085 (120959 ledgers remaining, ~7.00 days)
127
- ✅ WASM uploaded, hash: dcf39d3b282fd9dc1b9b499e6d4a1833ad63ebcbaeac3611bb465f9e05abba24
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: CCWSOS5FZF7D6JMWCQJGDNWPURGY4I46Y377VBBOFLVQXOOQE6MURNQ2
130
- ✅ Price Feed deployed: CCWSOS5FZF7D6JMWCQJGDNWPURGY4I46Y377VBBOFLVQXOOQE6MURNQ2
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: 33966 bytes (33.17 KB)
135
- 💰 Upload transaction fee: 15020064 stroops (1.5020064 XLM)
136
- ⏰ WASM TTL: live until ledger 121089 (120959 ledgers remaining, ~7.00 days)
137
- ✅ WASM uploaded, hash: 05a18caf82faa48c7261039b061654cf831092422854a7c1d1b54fd32c459430
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: CBQ2254DMWMNCJHOLLBNEHZSPCSWZUVF2NMF6CVYHDZMEOTTQ2GYYKIE
140
- ✅ Executor Fee Lib deployed: CBQ2254DMWMNCJHOLLBNEHZSPCSWZUVF2NMF6CVYHDZMEOTTQ2GYYKIE
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: 22288 bytes (21.77 KB)
145
- 💰 Upload transaction fee: 12130515 stroops (1.2130515 XLM)
146
- ⏰ WASM TTL: live until ledger 121091 (120958 ledgers remaining, ~7.00 days)
147
- ✅ WASM uploaded, hash: 472a898aa11cb6faa417732d3365a9a4d69083cf978ec18a332571e5a2bc208e
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: CAWX5N22ATDMPBXF64FB4V3YMLWMQUGZLMYN3OB7T6BWJ5ZGFSRMT2X3
150
- ✅ DVN Fee Lib deployed: CAWX5N22ATDMPBXF64FB4V3YMLWMQUGZLMYN3OB7T6BWJ5ZGFSRMT2X3
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: 57505 bytes (56.16 KB)
155
- 💰 Upload transaction fee: 27083579 stroops (2.7083579 XLM)
156
- ⏰ WASM TTL: live until ledger 121094 (120959 ledgers remaining, ~7.00 days)
157
- ✅ WASM uploaded, hash: 58784606010f24b0342599b3f6f0da7c5a0ed3254c26bdc4d64b51e71c213368
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: CDESQGCJI2BSY5ARNOKMD5OS4CSGXKS73KZPTUHTO4GLT7PNPNRQYAME
160
- ✅ DVN deployed: CDESQGCJI2BSY5ARNOKMD5OS4CSGXKS73KZPTUHTO4GLT7PNPNRQYAME
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: 23493 bytes (22.94 KB)
165
- 💰 Upload transaction fee: 8592958 stroops (0.8592958 XLM)
166
- ⏰ WASM TTL: live until ledger 121096 (120959 ledgers remaining, ~7.00 days)
167
- ✅ WASM uploaded, hash: 721ef1dd97bb02a775a0ef4d1ce97b24f4625e3fd0c91181d77c483b68195503
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: CCOFEESMY4XA4JWUMKYAGIKOVONPTXENZXJVBIMWQOQTFQADMGHH7255
170
- ✅ Executor Helper deployed: CCOFEESMY4XA4JWUMKYAGIKOVONPTXENZXJVBIMWQOQTFQADMGHH7255
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: 57119 bytes (55.78 KB)
175
- 💰 Upload transaction fee: 25850618 stroops (2.5850618 XLM)
176
- ⏰ WASM TTL: live until ledger 121100 (120959 ledgers remaining, ~7.00 days)
177
- ✅ WASM uploaded, hash: 68df81efe2d090ace4a1802098c00dcdacaa4c9e4e21c329536c60d715da8bef
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: CCGANXSRKYEDVQARDFK4EYFDFLUYFAF5ZMSAC6F6EZSSGSNFBD5WSGQV
180
- ✅ Executor deployed: CCGANXSRKYEDVQARDFK4EYFDFLUYFAF5ZMSAC6F6EZSSGSNFBD5WSGQV
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
- Protocol addresses provided to tests (in-memory)
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
- stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML)
324
+ stdout | test/oft-sml.test.ts > OFT Cross-Chain E2E Testing with SAC (SML)
204
325
  
205
- 📋 Protocol addresses injected from globalSetup
206
- Endpoint: CCPTRUANJUH2YDEMMNFTRLHNCUAUJVMCQLXE3OYYQQEEKHXBFFXAIO3Z
207
- SML: CDZVL2G3TTVEHD46VTC6QQQQCEYRY4UUAILIPUZU67H3KKFBEFELJGQJ
208
- Executor: CCGANXSRKYEDVQARDFK4EYFDFLUYFAF5ZMSAC6F6EZSSGSNFBD5WSGQV
209
- Executor Helper: CCOFEESMY4XA4JWUMKYAGIKOVONPTXENZXJVBIMWQOQTFQADMGHH7255
326
+ 📋 Chain A addresses (EID: 30401)
327
+ Endpoint: CB463RGN4O5RWVSTYL6KWOYTVGFEC5YPXSSUNVRTKLHIQ6QGWNECU53X
328
+ SML: CBWOGKDTM2ANRKNBORQ4OMQM4SGFO2JRU5PHHDII5QJRCYD4RNGEIJI3
329
+ Executor: CBP7QVSTABNUF7LM65JT5GUE732YAMXQ5DCKFMGEA62M3KU3AIOODW4I
210
330
 
211
- stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Deploy OFT Contracts > Deploy OFT Token SAC
331
+ 📋 Chain B addresses (EID: 30402)
332
+ Endpoint: CC3Q6IP62KI3TTMZBHPGUT3BWZALOR4H4GGAMKXHRZML632LFZFUQ6FQ
333
+ SML: CAOAAIEGGF3TXOCIB3PI3R6BFPS7ZDIUA2WVP2SZVYEFH7G5BPZEOKC3
334
+ Executor: CAAEJHQMXHPHBN4CD7VMU7ULJNSOHCQF66PTIUCH6IBSALBVTWZB4CDY
335
+
336
+ stdout | test/oft-sml.test.ts > OFT Cross-Chain E2E Testing with SAC (SML) > Deploy OFT Contracts on Both Chains > Deploy OFT Token SAC
212
337
  ✅ OFT token issued to DEFAULT_DEPLOYER
213
- Deploying SAC for asset: OFT:GCGIA426MAHY6RWYU3LKGKMWKLJRDAP675SXL2EEQB33TVPRTYF4F522
338
+ Deploying SAC for asset: OFT:GDAUFVVPZGTGHWP5YPLYMDAULKXUQXI3MNN5GTK2LMQGJK43HBADBX4B
214
339
 
215
- stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Deploy OFT Contracts > Deploy OFT Token SAC
216
- ✅ OFT Token SAC deployed: CAJBW7DPRVEHANBZ6LSA22XCOA2CGUIX2JSEC5VMME5DZNJQCEOIUOJT
340
+ stdout | test/oft-sml.test.ts > OFT Cross-Chain E2E Testing with SAC (SML) > Deploy OFT Contracts on Both Chains > Deploy OFT Token SAC
341
+ ✅ OFT Token SAC deployed: CAOJ7UUWS7N4SDHF5YVIFWYCKWCFVLHLXN3R63APVLXAWPYV5RNC262L
217
342
 
218
- stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Deploy OFT Contracts > Deploy Lock/Unlock OFT
343
+ stdout | test/oft-sml.test.ts > OFT Cross-Chain E2E Testing with SAC (SML) > Deploy OFT Contracts on Both Chains > Deploy Lock/Unlock OFT on Chain A
219
344
  📖 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: 61037 bytes (59.61 KB)
346
+ 📦 WASM buffer size: 60817 bytes (59.39 KB)
222
347
 
223
- stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Deploy OFT Contracts > Deploy Lock/Unlock OFT
224
- 💰 Upload transaction fee: 32904331 stroops (3.2904331 XLM)
348
+ stdout | test/oft-sml.test.ts > OFT Cross-Chain E2E Testing with SAC (SML) > Deploy OFT Contracts on Both Chains > Deploy Lock/Unlock OFT on Chain A
349
+ 💰 Upload transaction fee: 31471661 stroops (3.1471661 XLM)
225
350
 
226
- stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Deploy OFT Contracts > Deploy Lock/Unlock OFT
227
- ⏰ WASM TTL: live until ledger 121128 (120959 ledgers remaining, ~7.00 days)
351
+ stdout | test/oft-sml.test.ts > OFT Cross-Chain E2E Testing with SAC (SML) > Deploy OFT Contracts on Both Chains > Deploy Lock/Unlock OFT on Chain A
352
+ ⏰ WASM TTL: live until ledger 121179 (120959 ledgers remaining, ~7.00 days)
228
353
 
229
- stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Deploy OFT Contracts > Deploy Lock/Unlock OFT
230
- ✅ WASM uploaded, hash: 6ded194b3d2189d1ab1b2bb0c877f3f758363aff666fbff8a67c25b545bad453
354
+ stdout | test/oft-sml.test.ts > OFT Cross-Chain E2E Testing with SAC (SML) > Deploy OFT Contracts on Both Chains > Deploy Lock/Unlock OFT on Chain A
355
+ ✅ WASM uploaded, hash: ecf9c8191d272ba8c743e743738241148f509549b9a5ab41be11ad50e1bffd0f
231
356
  🚀 Deploying contract...
232
357
 
233
- stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Deploy OFT Contracts > Deploy Lock/Unlock OFT
234
- ✅ Contract deployed at: CDIXNIIZL2ZU22PRZVP5JXELIHF2BLTW3VD2IRPTFXTC7HURJ7VBSOJ6
358
+ stdout | test/oft-sml.test.ts > OFT Cross-Chain E2E Testing with SAC (SML) > Deploy OFT Contracts on Both Chains > Deploy Lock/Unlock OFT on Chain A
359
+ ✅ Contract deployed at: CACUI5QF5YM6UQRONF7N4LTXXHHDMX3TNIGDZT5EWG2A6KGGW4GPTDXB
235
360
 
236
- stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Deploy OFT Contracts > Deploy Lock/Unlock OFT
237
- ✅ Lock/Unlock OFT deployed: CDIXNIIZL2ZU22PRZVP5JXELIHF2BLTW3VD2IRPTFXTC7HURJ7VBSOJ6
361
+ stdout | test/oft-sml.test.ts > OFT Cross-Chain E2E Testing with SAC (SML) > Deploy OFT Contracts on Both Chains > Deploy Lock/Unlock OFT on Chain A
362
+ ✅ Lock/Unlock OFT deployed on Chain A: CACUI5QF5YM6UQRONF7N4LTXXHHDMX3TNIGDZT5EWG2A6KGGW4GPTDXB
238
363
 
239
- stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Deploy OFT Contracts > Deploy Mint/Burn OFT
364
+ stdout | test/oft-sml.test.ts > OFT Cross-Chain E2E Testing with SAC (SML) > Deploy OFT Contracts on Both Chains > Deploy Mint/Burn OFT on Chain B
240
365
  📖 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: 61037 bytes (59.61 KB)
367
+ 📦 WASM buffer size: 60817 bytes (59.39 KB)
243
368
 
244
- stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Deploy OFT Contracts > Deploy Mint/Burn OFT
245
- 💰 Upload transaction fee: 1350235 stroops (0.1350235 XLM)
369
+ stdout | test/oft-sml.test.ts > OFT Cross-Chain E2E Testing with SAC (SML) > Deploy OFT Contracts on Both Chains > Deploy Mint/Burn OFT on Chain B
370
+ 💰 Upload transaction fee: 1345533 stroops (0.1345533 XLM)
246
371
 
247
- stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Deploy OFT Contracts > Deploy Mint/Burn OFT
248
- ⏰ WASM TTL: live until ledger 121128 (120955 ledgers remaining, ~7.00 days)
372
+ stdout | test/oft-sml.test.ts > OFT Cross-Chain E2E Testing with SAC (SML) > Deploy OFT Contracts on Both Chains > Deploy Mint/Burn OFT on Chain B
373
+ ⏰ WASM TTL: live until ledger 121179 (120955 ledgers remaining, ~7.00 days)
249
374
 
250
- stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Deploy OFT Contracts > Deploy Mint/Burn OFT
251
- ✅ WASM uploaded, hash: 6ded194b3d2189d1ab1b2bb0c877f3f758363aff666fbff8a67c25b545bad453
375
+ stdout | test/oft-sml.test.ts > OFT Cross-Chain E2E Testing with SAC (SML) > Deploy OFT Contracts on Both Chains > Deploy Mint/Burn OFT on Chain B
376
+ ✅ WASM uploaded, hash: ecf9c8191d272ba8c743e743738241148f509549b9a5ab41be11ad50e1bffd0f
252
377
  🚀 Deploying contract...
253
378
 
254
- stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Deploy OFT Contracts > Deploy Mint/Burn OFT
255
- ✅ Contract deployed at: CAXHVKIGDIKD4BVH3AROE4JBW2G4YOCOESONC647RNKJ4PJWZGZ7UJPN
379
+ stdout | test/oft-sml.test.ts > OFT Cross-Chain E2E Testing with SAC (SML) > Deploy OFT Contracts on Both Chains > Deploy Mint/Burn OFT on Chain B
380
+ ✅ Contract deployed at: CAZFHUPYNQ2ZDTRXR6JTFU32LKORBIUW6I57UMTP5OMVPHIVIPWOEHBQ
256
381
 
257
- stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Deploy OFT Contracts > Deploy Mint/Burn OFT
258
- ✅ Mint/Burn OFT deployed: CAXHVKIGDIKD4BVH3AROE4JBW2G4YOCOESONC647RNKJ4PJWZGZ7UJPN
382
+ stdout | test/oft-sml.test.ts > OFT Cross-Chain E2E Testing with SAC (SML) > Deploy OFT Contracts on Both Chains > Deploy Mint/Burn OFT on Chain B
383
+ ✅ Mint/Burn OFT deployed on Chain B: CAZFHUPYNQ2ZDTRXR6JTFU32LKORBIUW6I57UMTP5OMVPHIVIPWOEHBQ
259
384
 
260
- stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Wire OFT Contracts to use SML > Set Lock/Unlock OFT Send Library to SML
261
- ✅ Lock/Unlock OFT send library set to SML
385
+ stdout | test/oft-sml.test.ts > OFT Cross-Chain E2E Testing with SAC (SML) > Wire OFT Contracts to use SML (Cross-Chain) > Set Lock/Unlock OFT (Chain A) Send Library to SML for Chain B
386
+ ✅ Lock/Unlock OFT (Chain A) send library set to SML for EID_B
262
387
 
263
- stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Wire OFT Contracts to use SML > Set Lock/Unlock OFT Receive Library to SML
264
- ✅ Lock/Unlock OFT receive library set to SML
388
+ stdout | test/oft-sml.test.ts > OFT Cross-Chain E2E Testing with SAC (SML) > Wire OFT Contracts to use SML (Cross-Chain) > Set Lock/Unlock OFT (Chain A) Receive Library to SML for Chain B
389
+ ✅ Lock/Unlock OFT (Chain A) receive library set to SML for EID_B
265
390
 
266
- stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Wire OFT Contracts to use SML > Set Mint/Burn OFT Send Library to SML
267
- ✅ Mint/Burn OFT send library set to SML
391
+ stdout | test/oft-sml.test.ts > OFT Cross-Chain E2E Testing with SAC (SML) > Wire OFT Contracts to use SML (Cross-Chain) > Set Mint/Burn OFT (Chain B) Send Library to SML for Chain A
392
+ ✅ Mint/Burn OFT (Chain B) send library set to SML for EID_A
268
393
 
269
- stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Wire OFT Contracts to use SML > Set Mint/Burn OFT Receive Library to SML
270
- ✅ Mint/Burn OFT receive library set to SML
394
+ stdout | test/oft-sml.test.ts > OFT Cross-Chain E2E Testing with SAC (SML) > Wire OFT Contracts to use SML (Cross-Chain) > Set Mint/Burn OFT (Chain B) Receive Library to SML for Chain A
395
+ ✅ Mint/Burn OFT (Chain B) receive library set to SML for EID_A
271
396
 
272
- stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Wire OFT Contracts to use SML > Set Lock/Unlock OFT Peer (to Mint/Burn OFT)
273
- ✅ Lock/Unlock OFT peer set to Mint/Burn OFT
397
+ stdout | test/oft-sml.test.ts > OFT Cross-Chain E2E Testing with SAC (SML) > Wire OFT Contracts to use SML (Cross-Chain) > Set Lock/Unlock OFT (Chain A) Peer to Mint/Burn OFT (Chain B)
398
+ ✅ Lock/Unlock OFT (Chain A) peer set to Mint/Burn OFT for EID_B
274
399
 
275
- stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Wire OFT Contracts to use SML > Set Mint/Burn OFT Peer (to Lock/Unlock OFT)
276
- ✅ Mint/Burn OFT peer set to Lock/Unlock OFT
400
+ stdout | test/oft-sml.test.ts > OFT Cross-Chain E2E Testing with SAC (SML) > Wire OFT Contracts to use SML (Cross-Chain) > Set Mint/Burn OFT (Chain B) Peer to Lock/Unlock OFT (Chain A)
401
+ ✅ Mint/Burn OFT (Chain B) peer set to Lock/Unlock OFT for EID_A
277
402
 
278
- stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Wire OFT Contracts to use SML > Set SAC Admin to Mint/Burn OFT (for minting)
403
+ stdout | test/oft-sml.test.ts > OFT Cross-Chain E2E Testing with SAC (SML) > Wire OFT Contracts to use SML (Cross-Chain) > Set SAC Admin to Mint/Burn OFT (for minting)
279
404
  ✅ SAC admin set to Mint/Burn OFT
280
405
 
281
- stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Send: Lock/Unlock -> Mint/Burn > Verify initial balances
406
+ stdout | test/oft-sml.test.ts > OFT Cross-Chain E2E Testing with SAC (SML) > Send: Chain A (Lock) Chain B (Mint) > Verify initial balances
282
407
  📊 Initial Balances:
283
408
  - Sender (DEFAULT_DEPLOYER): 10000000000 (expected: 10000000000)
284
409
 
285
- stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Send: Lock/Unlock -> Mint/Burn > Verify initial balances
286
-  - RECIPIENT_A: 0 (expected: 0)
410
+ stdout | test/oft-sml.test.ts > OFT Cross-Chain E2E Testing with SAC (SML) > Send: Chain A (Lock) Chain B (Mint) > Verify initial balances
411
+  - RECIPIENT_B (Chain B): 0 (expected: 0)
287
412
 
288
- stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Send: Lock/Unlock -> Mint/Burn > Quote OFT send
289
- 📊 OFT Quote:
413
+ stdout | test/oft-sml.test.ts > OFT Cross-Chain E2E Testing with SAC (SML) > Send: Chain A (Lock) Chain B (Mint) > Quote OFT send (A → B)
414
+ 📊 OFT Quote (A → B):
290
415
  Limit: {
291
416
  max_amount_ld: 170141183460469231731687303715884105727n,
292
417
  min_amount_ld: 0n
@@ -294,71 +419,71 @@ Deploying SAC for asset: OFT:GCGIA426MAHY6RWYU3LKGKMWKLJRDAP675SXL2EEQB33TVPRTYF
294
419
  Fee Details: []
295
420
  Receipt: { amount_received_ld: 1000000000n, amount_sent_ld: 1000000000n }
296
421
 
297
- stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Send: Lock/Unlock -> Mint/Burn > Send tokens (Lock/Unlock -> Mint/Burn)
298
- 📊 Messaging Fee: { native_fee: 100n, zro_fee: 99n }
422
+ stdout | test/oft-sml.test.ts > OFT Cross-Chain E2E Testing with SAC (SML) > Send: Chain A (Lock) Chain B (Mint) > Send tokens from Chain A to Chain B (Lock Mint)
423
+ 📊 Messaging Fee (A → B): { native_fee: 100n, zro_fee: 99n }
299
424
 
300
- stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Send: Lock/Unlock -> Mint/Burn > Send tokens (Lock/Unlock -> Mint/Burn)
301
- ✅ Tokens sent, ledger: 186
425
+ stdout | test/oft-sml.test.ts > OFT Cross-Chain E2E Testing with SAC (SML) > Send: Chain A (Lock) Chain B (Mint) > Send tokens from Chain A to Chain B (Lock Mint)
426
+ ✅ Tokens sent from Chain A, ledger: 240
302
427
 
303
- stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Send: Lock/Unlock -> Mint/Burn > Scan PacketSent events
428
+ stdout | test/oft-sml.test.ts > OFT Cross-Chain E2E Testing with SAC (SML) > Send: Chain A (Lock) Chain B (Mint) > Scan PacketSent events (A → B)
304
429
  📦 Scanning for PacketSent events...
305
430
 
306
- stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Send: Lock/Unlock -> Mint/Burn > Scan PacketSent events
307
- 🔍 Scanning events from ledger 186
431
+ stdout | test/oft-sml.test.ts > OFT Cross-Chain E2E Testing with SAC (SML) > Send: Chain A (Lock) Chain B (Mint) > Scan PacketSent events (A → B)
432
+ 🔍 Scanning events from ledger 240
308
433
  Waiting for next ledger...
309
434
 
310
- stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Send: Lock/Unlock -> Mint/Burn > Scan PacketSent events
435
+ stdout | test/oft-sml.test.ts > OFT Cross-Chain E2E Testing with SAC (SML) > Send: Chain A (Lock) Chain B (Mint) > Scan PacketSent events (A → B)
311
436
  ✅ Found 1 events
312
437
 
313
- stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Send: Lock/Unlock -> Mint/Burn > Scan PacketSent events
438
+ stdout | test/oft-sml.test.ts > OFT Cross-Chain E2E Testing with SAC (SML) > Send: Chain A (Lock) Chain B (Mint) > Scan PacketSent events (A → B)
314
439
  ✅ Found 1 PacketSent events
315
440
 
316
- stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Send: Lock/Unlock -> Mint/Burn > Scan PacketSent events
317
- ✅ PacketSent events scanned. Found 1 events
441
+ stdout | test/oft-sml.test.ts > OFT Cross-Chain E2E Testing with SAC (SML) > Send: Chain A (Lock) Chain B (Mint) > Scan PacketSent events (A → B)
442
+ ✅ PacketSent events scanned from Chain A. Found 1 events
318
443
 
319
- stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Send: Lock/Unlock -> Mint/Burn > Validate packet via SML
320
- ✅ Packet validated via SML
444
+ stdout | test/oft-sml.test.ts > OFT Cross-Chain E2E Testing with SAC (SML) > Send: Chain A (Lock) Chain B (Mint) > Validate packet via SML on Chain B
445
+ ✅ Packet validated via SML on Chain B
321
446
 
322
- stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Send: Lock/Unlock -> Mint/Burn > Receive tokens (mint on Mint/Burn OFT)
447
+ stdout | test/oft-sml.test.ts > OFT Cross-Chain E2E Testing with SAC (SML) > Send: Chain A (Lock) Chain B (Mint) > Receive tokens on Chain B (mint)
323
448
  
324
449
  🔄 Building transaction for non-root auth...
325
450
  🔄 Simulating with record_allow_nonroot...
326
451
 
327
- stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Send: Lock/Unlock -> Mint/Burn > Receive tokens (mint on Mint/Burn OFT)
452
+ stdout | test/oft-sml.test.ts > OFT Cross-Chain E2E Testing with SAC (SML) > Send: Chain A (Lock) Chain B (Mint) > Receive tokens on Chain B (mint)
328
453
  ✅ Simulation complete
329
454
  Auth entries returned: 1
330
- Processing auth entry for address: CCGANXSRKYEDVQARDFK4EYFDFLUYFAF5ZMSAC6F6EZSSGSNFBD5WSGQV
455
+ Processing auth entry for address: CAAEJHQMXHPHBN4CD7VMU7ULJNSOHCQF66PTIUCH6IBSALBVTWZB4CDY
331
456
  Auth entry tree:
332
- 📞 CAXHVKIGDIKD4BVH3AROE4JBW2G4YOCOESONC647RNKJ4PJWZGZ7UJPN...lz_receive()
457
+ 📞 CAZFHUPYNQ2ZDTRXR6JTFU32LKORBIUW6I57UMTP5OMVPHIVIPWOEHBQ...lz_receive()
333
458
  ✍️ Signing executor auth entry (Abstract Account)...
334
459
 
335
- stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Send: Lock/Unlock -> Mint/Burn > Receive tokens (mint on Mint/Burn OFT)
460
+ stdout | test/oft-sml.test.ts > OFT Cross-Chain E2E Testing with SAC (SML) > Send: Chain A (Lock) Chain B (Mint) > Receive tokens on Chain B (mint)
336
461
  ✅ Auth entries signed
337
462
  ✅ Transaction assembled with signed auth entries
338
463
 
339
- stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Send: Lock/Unlock -> Mint/Burn > Receive tokens (mint on Mint/Burn OFT)
464
+ stdout | test/oft-sml.test.ts > OFT Cross-Chain E2E Testing with SAC (SML) > Send: Chain A (Lock) Chain B (Mint) > Receive tokens on Chain B (mint)
340
465
  ✅ Final simulation completed
341
466
 
342
- stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Send: Lock/Unlock -> Mint/Burn > Receive tokens (mint on Mint/Burn OFT)
467
+ stdout | test/oft-sml.test.ts > OFT Cross-Chain E2E Testing with SAC (SML) > Send: Chain A (Lock) Chain B (Mint) > Receive tokens on Chain B (mint)
343
468
  ✅ Transaction envelope signed
344
469
 
345
- stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Send: Lock/Unlock -> Mint/Burn > Receive tokens (mint on Mint/Burn OFT)
346
- ✅ Transaction sent, hash: 0e6245fb68b4ba7eb1293c1b754c0fa4c9fba9078144642c7189c61e31efb754
470
+ stdout | test/oft-sml.test.ts > OFT Cross-Chain E2E Testing with SAC (SML) > Send: Chain A (Lock) Chain B (Mint) > Receive tokens on Chain B (mint)
471
+ ✅ Transaction sent, hash: 3b76e5fa1651b4762c1a57f3358e820da5ca97976b3cfb5ae0abf945428859f0
347
472
 
348
- stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Send: Lock/Unlock -> Mint/Burn > Receive tokens (mint on Mint/Burn OFT)
473
+ stdout | test/oft-sml.test.ts > OFT Cross-Chain E2E Testing with SAC (SML) > Send: Chain A (Lock) Chain B (Mint) > Receive tokens on Chain B (mint)
349
474
  ✅ Transaction completed successfully
350
475
 
351
- stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Send: Lock/Unlock -> Mint/Burn > Receive tokens (mint on Mint/Burn OFT)
352
- ✅ Tokens received and minted on Mint/Burn OFT
476
+ stdout | test/oft-sml.test.ts > OFT Cross-Chain E2E Testing with SAC (SML) > Send: Chain A (Lock) Chain B (Mint) > Receive tokens on Chain B (mint)
477
+ ✅ Tokens received and minted on Chain B
353
478
 
354
- stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Send: Lock/Unlock -> Mint/Burn > Verify balances after forward send
355
- 📊 Balances after forward send:
479
+ stdout | test/oft-sml.test.ts > OFT Cross-Chain E2E Testing with SAC (SML) > Send: Chain A (Lock) Chain B (Mint) > Verify balances after forward send (A → B)
480
+ 📊 Balances after forward send (A → B):
356
481
  - Sender (DEFAULT_DEPLOYER): 9000000000 (expected: 9000000000)
357
- - Lock/Unlock OFT (locked): 1000000000 (expected: 1000000000)
358
- - RECIPIENT_A (minted): 1000000000 (expected: 1000000000)
482
+ - Lock/Unlock OFT (Chain A, locked): 1000000000 (expected: 1000000000)
483
+ - RECIPIENT_B (Chain B, minted): 1000000000 (expected: 1000000000)
359
484
 
360
- stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Send: Mint/Burn -> Lock/Unlock (Reverse) > Quote OFT send (reverse)
361
- 📊 Reverse OFT Quote:
485
+ stdout | test/oft-sml.test.ts > OFT Cross-Chain E2E Testing with SAC (SML) > Send: Chain B (Burn) Chain A (Unlock) > Quote OFT send (B → A)
486
+ 📊 Reverse OFT Quote (B → A):
362
487
  Limit: {
363
488
  max_amount_ld: 170141183460469231731687303715884105727n,
364
489
  min_amount_ld: 0n
@@ -366,577 +491,653 @@ Deploying SAC for asset: OFT:GCGIA426MAHY6RWYU3LKGKMWKLJRDAP675SXL2EEQB33TVPRTYF
366
491
  Fee Details: []
367
492
  Receipt: { amount_received_ld: 500000000n, amount_sent_ld: 500000000n }
368
493
 
369
- stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Send: Mint/Burn -> Lock/Unlock (Reverse) > Send tokens (Mint/Burn -> Lock/Unlock)
370
- 📊 Reverse Messaging Fee: { native_fee: 100n, zro_fee: 99n }
494
+ stdout | test/oft-sml.test.ts > OFT Cross-Chain E2E Testing with SAC (SML) > Send: Chain B (Burn) Chain A (Unlock) > Send tokens from Chain B to Chain A (Burn Unlock)
495
+ 📊 Reverse Messaging Fee (B → A): { native_fee: 100n, zro_fee: 99n }
371
496
 
372
- stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Send: Mint/Burn -> Lock/Unlock (Reverse) > Send tokens (Mint/Burn -> Lock/Unlock)
373
- ✅ Tokens sent (reverse), ledger: 192
497
+ stdout | test/oft-sml.test.ts > OFT Cross-Chain E2E Testing with SAC (SML) > Send: Chain B (Burn) Chain A (Unlock) > Send tokens from Chain B to Chain A (Burn Unlock)
498
+ ✅ Tokens sent from Chain B (reverse), ledger: 246
374
499
 
375
- stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Send: Mint/Burn -> Lock/Unlock (Reverse) > Scan PacketSent events (reverse)
500
+ stdout | test/oft-sml.test.ts > OFT Cross-Chain E2E Testing with SAC (SML) > Send: Chain B (Burn) Chain A (Unlock) > Scan PacketSent events (B → A)
376
501
  📦 Scanning for PacketSent events...
377
502
 
378
- stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Send: Mint/Burn -> Lock/Unlock (Reverse) > Scan PacketSent events (reverse)
379
- 🔍 Scanning events from ledger 192
503
+ stdout | test/oft-sml.test.ts > OFT Cross-Chain E2E Testing with SAC (SML) > Send: Chain B (Burn) Chain A (Unlock) > Scan PacketSent events (B → A)
504
+ 🔍 Scanning events from ledger 246
505
+ Waiting for next ledger...
380
506
 
381
- stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Send: Mint/Burn -> Lock/Unlock (Reverse) > Scan PacketSent events (reverse)
507
+ stdout | test/oft-sml.test.ts > OFT Cross-Chain E2E Testing with SAC (SML) > Send: Chain B (Burn) Chain A (Unlock) > Scan PacketSent events (B → A)
382
508
  ✅ Found 1 events
383
509
 
384
- stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Send: Mint/Burn -> Lock/Unlock (Reverse) > Scan PacketSent events (reverse)
510
+ stdout | test/oft-sml.test.ts > OFT Cross-Chain E2E Testing with SAC (SML) > Send: Chain B (Burn) Chain A (Unlock) > Scan PacketSent events (B → A)
385
511
  ✅ Found 1 PacketSent events
386
512
 
387
- stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Send: Mint/Burn -> Lock/Unlock (Reverse) > Scan PacketSent events (reverse)
388
- ✅ PacketSent events scanned (reverse). Found 1 events
513
+ stdout | test/oft-sml.test.ts > OFT Cross-Chain E2E Testing with SAC (SML) > Send: Chain B (Burn) Chain A (Unlock) > Scan PacketSent events (B → A)
514
+ ✅ PacketSent events scanned from Chain B (reverse). Found 1 events
389
515
 
390
- stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Send: Mint/Burn -> Lock/Unlock (Reverse) > Validate packet via SML (reverse)
391
- ✅ Packet validated via SML (reverse)
516
+ stdout | test/oft-sml.test.ts > OFT Cross-Chain E2E Testing with SAC (SML) > Send: Chain B (Burn) Chain A (Unlock) > Validate packet via SML on Chain A (reverse)
517
+ ✅ Packet validated via SML on Chain A (reverse)
392
518
 
393
- stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Send: Mint/Burn -> Lock/Unlock (Reverse) > Receive tokens (unlock on Lock/Unlock OFT)
519
+ stdout | test/oft-sml.test.ts > OFT Cross-Chain E2E Testing with SAC (SML) > Send: Chain B (Burn) Chain A (Unlock) > Receive tokens on Chain A (unlock)
394
520
  
395
521
  🔄 Building transaction for non-root auth...
396
522
  🔄 Simulating with record_allow_nonroot...
397
523
 
398
- stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Send: Mint/Burn -> Lock/Unlock (Reverse) > Receive tokens (unlock on Lock/Unlock OFT)
524
+ stdout | test/oft-sml.test.ts > OFT Cross-Chain E2E Testing with SAC (SML) > Send: Chain B (Burn) Chain A (Unlock) > Receive tokens on Chain A (unlock)
399
525
  ✅ Simulation complete
400
526
  Auth entries returned: 1
401
- Processing auth entry for address: CCGANXSRKYEDVQARDFK4EYFDFLUYFAF5ZMSAC6F6EZSSGSNFBD5WSGQV
527
+ Processing auth entry for address: CBP7QVSTABNUF7LM65JT5GUE732YAMXQ5DCKFMGEA62M3KU3AIOODW4I
402
528
  Auth entry tree:
403
- 📞 CDIXNIIZL2ZU22PRZVP5JXELIHF2BLTW3VD2IRPTFXTC7HURJ7VBSOJ6...lz_receive()
529
+ 📞 CACUI5QF5YM6UQRONF7N4LTXXHHDMX3TNIGDZT5EWG2A6KGGW4GPTDXB...lz_receive()
404
530
  ✍️ Signing executor auth entry (Abstract Account)...
405
531
 
406
- stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Send: Mint/Burn -> Lock/Unlock (Reverse) > Receive tokens (unlock on Lock/Unlock OFT)
532
+ stdout | test/oft-sml.test.ts > OFT Cross-Chain E2E Testing with SAC (SML) > Send: Chain B (Burn) Chain A (Unlock) > Receive tokens on Chain A (unlock)
407
533
  ✅ Auth entries signed
408
534
  ✅ Transaction assembled with signed auth entries
409
535
 
410
- stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Send: Mint/Burn -> Lock/Unlock (Reverse) > Receive tokens (unlock on Lock/Unlock OFT)
536
+ stdout | test/oft-sml.test.ts > OFT Cross-Chain E2E Testing with SAC (SML) > Send: Chain B (Burn) Chain A (Unlock) > Receive tokens on Chain A (unlock)
411
537
  ✅ Final simulation completed
412
538
 
413
- stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Send: Mint/Burn -> Lock/Unlock (Reverse) > Receive tokens (unlock on Lock/Unlock OFT)
539
+ stdout | test/oft-sml.test.ts > OFT Cross-Chain E2E Testing with SAC (SML) > Send: Chain B (Burn) Chain A (Unlock) > Receive tokens on Chain A (unlock)
414
540
  ✅ Transaction envelope signed
415
541
 
416
- stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Send: Mint/Burn -> Lock/Unlock (Reverse) > Receive tokens (unlock on Lock/Unlock OFT)
417
- ✅ Transaction sent, hash: 011e6723d9207a9d8ac6ba1eb46ec195cf694146e3f6ed4d4734fc54f12aadab
542
+ stdout | test/oft-sml.test.ts > OFT Cross-Chain E2E Testing with SAC (SML) > Send: Chain B (Burn) Chain A (Unlock) > Receive tokens on Chain A (unlock)
543
+ ✅ Transaction sent, hash: 74c6d1b0ab7fb6a45a13989201032610a11f5477f6ccb64d53cab65a2088988b
418
544
 
419
- stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Send: Mint/Burn -> Lock/Unlock (Reverse) > Receive tokens (unlock on Lock/Unlock OFT)
545
+ stdout | test/oft-sml.test.ts > OFT Cross-Chain E2E Testing with SAC (SML) > Send: Chain B (Burn) Chain A (Unlock) > Receive tokens on Chain A (unlock)
420
546
  ✅ Transaction completed successfully
421
547
 
422
- stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Send: Mint/Burn -> Lock/Unlock (Reverse) > Receive tokens (unlock on Lock/Unlock OFT)
423
- ✅ Tokens received and unlocked on Lock/Unlock OFT
548
+ stdout | test/oft-sml.test.ts > OFT Cross-Chain E2E Testing with SAC (SML) > Send: Chain B (Burn) Chain A (Unlock) > Receive tokens on Chain A (unlock)
549
+ ✅ Tokens received and unlocked on Chain A
424
550
 
425
- stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Send: Mint/Burn -> Lock/Unlock (Reverse) > Verify final balances
551
+ stdout | test/oft-sml.test.ts > OFT Cross-Chain E2E Testing with SAC (SML) > Send: Chain B (Burn) Chain A (Unlock) > Verify final balances
426
552
  
427
553
  📊 Final Balance Summary:
428
554
  - Sender (DEFAULT_DEPLOYER): 8500000000 (expected: 8500000000)
429
- - Lock/Unlock OFT (locked): 500000000 (expected: 500000000)
430
- - RECIPIENT_A (minted): 1000000000 (expected: 1000000000)
431
- - RECIPIENT_B (unlocked): 500000000 (expected: 500000000)
432
- ✅ OFT E2E test completed successfully!
433
-
434
- ✓ test/oft-sml.test.ts (23 tests) 37376ms
435
- ✓ OFT E2E Testing with SAC (SML) > Deploy OFT Contracts > Deploy OFT Token SAC  2074ms
436
- ✓ OFT E2E Testing with SAC (SML) > Deploy OFT Contracts > Deploy Lock/Unlock OFT  4710ms
437
- ✓ OFT E2E Testing with SAC (SML) > Deploy OFT Contracts > Deploy Mint/Burn OFT  2170ms
438
- ✓ OFT E2E Testing with SAC (SML) > Wire OFT Contracts to use SML > Set Lock/Unlock OFT Send Library to SML  1082ms
439
- ✓ OFT E2E Testing with SAC (SML) > Wire OFT Contracts to use SML > Set Lock/Unlock OFT Receive Library to SML  1081ms
440
- ✓ OFT E2E Testing with SAC (SML) > Wire OFT Contracts to use SML > Set Mint/Burn OFT Send Library to SML  2581ms
441
- ✓ OFT E2E Testing with SAC (SML) > Wire OFT Contracts to use SML > Set Mint/Burn OFT Receive Library to SML  1082ms
442
- ✓ OFT E2E Testing with SAC (SML) > Wire OFT Contracts to use SML > Set Lock/Unlock OFT Peer (to Mint/Burn OFT)  1090ms
443
- ✓ OFT E2E Testing with SAC (SML) > Wire OFT Contracts to use SML > Set Mint/Burn OFT Peer (to Lock/Unlock OFT)  2599ms
444
- ✓ OFT E2E Testing with SAC (SML) > Wire OFT Contracts to use SML > Set SAC Admin to Mint/Burn OFT (for minting)  1033ms
445
- ✓ OFT E2E Testing with SAC (SML) > Send: Lock/Unlock -> Mint/Burn > Send tokens (Lock/Unlock -> Mint/Burn)  1189ms
446
- ✓ OFT E2E Testing with SAC (SML) > Send: Lock/Unlock -> Mint/Burn > Scan PacketSent events  1016ms
447
- ✓ OFT E2E Testing with SAC (SML) > Send: Lock/Unlock -> Mint/Burn > Validate packet via SML  1132ms
448
- ✓ OFT E2E Testing with SAC (SML) > Send: Lock/Unlock -> Mint/Burn > Receive tokens (mint on Mint/Burn OFT)  2315ms
449
- ✓ OFT E2E Testing with SAC (SML) > Send: Mint/Burn -> Lock/Unlock (Reverse) > Send tokens (Mint/Burn -> Lock/Unlock)  2676ms
450
- ✓ OFT E2E Testing with SAC (SML) > Send: Mint/Burn -> Lock/Unlock (Reverse) > Validate packet via SML (reverse)  2576ms
451
- ✓ OFT E2E Testing with SAC (SML) > Send: Mint/Burn -> Lock/Unlock (Reverse) > Receive tokens (unlock on Lock/Unlock OFT)  1184ms
452
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing
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
+ ✓ test/oft-sml.test.ts (23 tests) 37782ms
564
+ ✓ OFT Cross-Chain E2E Testing with SAC (SML) > Deploy OFT Contracts on Both Chains > Deploy OFT Token SAC  2251ms
565
+ ✓ OFT Cross-Chain E2E Testing with SAC (SML) > Deploy OFT Contracts on Both Chains > Deploy Lock/Unlock OFT on Chain A  4021ms
566
+ ✓ OFT Cross-Chain E2E Testing with SAC (SML) > Deploy OFT Contracts on Both Chains > Deploy Mint/Burn OFT on Chain B  3923ms
567
+ ✓ OFT Cross-Chain E2E Testing with SAC (SML) > Wire OFT Contracts to use SML (Cross-Chain) > Set Lock/Unlock OFT (Chain A) Send Library to SML for Chain B  1185ms
568
+ ✓ OFT Cross-Chain E2E Testing with SAC (SML) > Wire OFT Contracts to use SML (Cross-Chain) > Set Lock/Unlock OFT (Chain A) Receive Library to SML for Chain B  2723ms
569
+ ✓ OFT Cross-Chain E2E Testing with SAC (SML) > Wire OFT Contracts to use SML (Cross-Chain) > Set Mint/Burn OFT (Chain B) Send Library to SML for Chain A  1170ms
570
+ ✓ OFT Cross-Chain E2E Testing with SAC (SML) > Wire OFT Contracts to use SML (Cross-Chain) > Set Mint/Burn OFT (Chain B) Receive Library to SML for Chain A  1196ms
571
+ ✓ OFT Cross-Chain E2E Testing with SAC (SML) > Wire OFT Contracts to use SML (Cross-Chain) > Set Lock/Unlock OFT (Chain A) Peer to Mint/Burn OFT (Chain B)  2711ms
572
+ ✓ OFT Cross-Chain E2E Testing with SAC (SML) > Wire OFT Contracts to use SML (Cross-Chain) > Set Mint/Burn OFT (Chain B) Peer to Lock/Unlock OFT (Chain A)  1211ms
573
+ ✓ OFT Cross-Chain E2E Testing with SAC (SML) > Wire OFT Contracts to use SML (Cross-Chain) > Set SAC Admin to Mint/Burn OFT (for minting)  1090ms
574
+ ✓ OFT Cross-Chain E2E Testing with SAC (SML) > Send: Chain A (Lock) Chain B (Mint) > Send tokens from Chain A to Chain B (Lock Mint)  1382ms
575
+ ✓ OFT Cross-Chain E2E Testing with SAC (SML) > Send: Chain A (Lock) → Chain B (Mint) > Scan PacketSent events (A B)  1055ms
576
+ ✓ OFT Cross-Chain E2E Testing with SAC (SML) > Send: Chain A (Lock) → Chain B (Mint) > Validate packet via SML on Chain B  1212ms
577
+ ✓ OFT Cross-Chain E2E Testing with SAC (SML) > Send: Chain A (Lock) → Chain B (Mint) > Receive tokens on Chain B (mint)  2364ms
578
+ ✓ OFT Cross-Chain E2E Testing with SAC (SML) > Send: Chain B (Burn) → Chain A (Unlock) > Send tokens from Chain B to Chain A (Burn → Unlock)  1427ms
579
+ ✓ OFT Cross-Chain E2E Testing with SAC (SML) > Send: Chain B (Burn) → Chain A (Unlock) > Scan PacketSent events (B → A)  1028ms
580
+ ✓ OFT Cross-Chain E2E Testing with SAC (SML) > Send: Chain B (Burn) → Chain A (Unlock) > Validate packet via SML on Chain A (reverse)  1240ms
581
+ ✓ OFT Cross-Chain E2E Testing with SAC (SML) > Send: Chain B (Burn) → Chain A (Unlock) > Receive tokens on Chain A (unlock)  1528ms
582
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302)
453
583
  
454
- 📋 Protocol addresses injected from globalSetup
455
- Endpoint: CCPTRUANJUH2YDEMMNFTRLHNCUAUJVMCQLXE3OYYQQEEKHXBFFXAIO3Z
456
- ULN302: CBQFR5WLFIVELDHM2IWMWHBOKC6NO7L7UTGFJ6WP2LJOBUJMKCZK4OB6
457
- DVN: CDESQGCJI2BSY5ARNOKMD5OS4CSGXKS73KZPTUHTO4GLT7PNPNRQYAME
458
- Executor: CCGANXSRKYEDVQARDFK4EYFDFLUYFAF5ZMSAC6F6EZSSGSNFBD5WSGQV
459
- Executor Helper: CCOFEESMY4XA4JWUMKYAGIKOVONPTXENZXJVBIMWQOQTFQADMGHH7255
460
-
461
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Deploy Counter > Deploy Counter
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
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Deploy Counters on Both Chains > Deploy Counter A on Chain A
462
597
  📖 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: 40336 bytes (39.39 KB)
599
+ 📦 WASM buffer size: 40680 bytes (39.73 KB)
465
600
 
466
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Deploy Counter > Deploy Counter
467
- 💰 Upload transaction fee: 20647268 stroops (2.0647268 XLM)
601
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Deploy Counters on Both Chains > Deploy Counter A on Chain A
602
+ 💰 Upload transaction fee: 19651874 stroops (1.9651874 XLM)
468
603
 
469
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Deploy Counter > Deploy Counter
470
- ⏰ WASM TTL: live until ledger 121157 (120959 ledgers remaining, ~7.00 days)
604
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Deploy Counters on Both Chains > Deploy Counter A on Chain A
605
+ ⏰ WASM TTL: live until ledger 121211 (120959 ledgers remaining, ~7.00 days)
471
606
 
472
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Deploy Counter > Deploy Counter
473
- ✅ WASM uploaded, hash: 21be5b9ff062d6e92fce084fdb0a3b5b2281f4f79b292eb1e533528e9a394aac
607
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Deploy Counters on Both Chains > Deploy Counter A on Chain A
608
+ ✅ WASM uploaded, hash: e031afc9dc07436fdb36aac32169ea184720496f3c7a9890aec65f777258336d
474
609
  🚀 Deploying contract...
475
610
 
476
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Deploy Counter > Deploy Counter
477
- ✅ Contract deployed at: CA35FZCOFWBKM5MYE5QGQWH3GBKNYYLIOZKYZTXOE3EON6TWKIZBHZYQ
611
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Deploy Counters on Both Chains > Deploy Counter A on Chain A
612
+ ✅ Contract deployed at: CCLEX6L7CIMIHSRIXJYL6BZNYLZNRTO2APFHIH3Z74FDLODSCU7KVOP2
613
+
614
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Deploy Counters on Both Chains > Deploy Counter A on Chain A
615
+ ✅ Counter A deployed on Chain A: CCLEX6L7CIMIHSRIXJYL6BZNYLZNRTO2APFHIH3Z74FDLODSCU7KVOP2
616
+
617
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Deploy Counters on Both Chains > Deploy Counter B on Chain B
618
+ 📖 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
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Deploy Counters on Both Chains > Deploy Counter B on Chain B
623
+ 💰 Upload transaction fee: 915048 stroops (0.0915048 XLM)
624
+
625
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Deploy Counters on Both Chains > Deploy Counter B on Chain B
626
+ ⏰ WASM TTL: live until ledger 121211 (120955 ledgers remaining, ~7.00 days)
627
+
628
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Deploy Counters on Both Chains > Deploy Counter B on Chain B
629
+ ✅ WASM uploaded, hash: e031afc9dc07436fdb36aac32169ea184720496f3c7a9890aec65f777258336d
630
+ 🚀 Deploying contract...
478
631
 
479
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Deploy Counter > Deploy Counter
480
- ✅ Counter deployed: CA35FZCOFWBKM5MYE5QGQWH3GBKNYYLIOZKYZTXOE3EON6TWKIZBHZYQ
632
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Deploy Counters on Both Chains > Deploy Counter B on Chain B
633
+ ✅ Contract deployed at: CCYUE4Q6TJN6ZDGJ5WIDN4DACE7YP7YIWCWHZ2ACIKASSES2AIIKBZBF
481
634
 
482
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Deploy Counter > Set Counter Peer
483
- ✅ Counter peer set for EID 30400
635
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Deploy Counters on Both Chains > Deploy Counter B on Chain B
636
+ ✅ Counter B deployed on Chain B: CCYUE4Q6TJN6ZDGJ5WIDN4DACE7YP7YIWCWHZ2ACIKASSES2AIIKBZBF
484
637
 
485
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Counter Increment (Composed ABA with Native Drop)
486
- ✅ Return fee for ComposedABA: { native_fee: 400681n, zro_fee: 0n }
638
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Deploy Counters on Both Chains > Set Counter A Peer to Counter B
639
+ ✅ Counter A peer set to Counter B for EID_B
487
640
 
488
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Counter Increment (Composed ABA with Native Drop)
489
- ✅ ComposedABA Fee: { native_fee: 2055368n, zro_fee: 0n }
641
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Deploy Counters on Both Chains > Set Counter B Peer to Counter A
642
+ ✅ Counter B peer set to Counter A for EID_A
490
643
 
491
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Counter Increment (Composed ABA with Native Drop)
492
- ✅ Counter incremented (Composed ABA), outbound count: 1n
644
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > Counter A Increment (Composed ABA with Native Drop) - sends to Chain B
645
+ ✅ Return fee for ComposedABA (B→A): { native_fee: 400681n, zro_fee: 0n }
493
646
 
494
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Scan PacketSent Events (Composed ABA)
647
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > Counter A Increment (Composed ABA with Native Drop) - sends to Chain B
648
+ ✅ ComposedABA Fee (A→B): { native_fee: 2055368n, zro_fee: 0n }
649
+
650
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > Counter A Increment (Composed ABA with Native Drop) - sends to Chain B
651
+ ✅ Counter A incremented (Composed ABA to B), outbound count: 1n
652
+
653
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > Scan PacketSent Events (A → B)
495
654
  📦 Scanning for PacketSent events...
496
655
 
497
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Scan PacketSent Events (Composed ABA)
498
- 🔍 Scanning events from ledger 203
656
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > Scan PacketSent Events (A → B)
657
+ 🔍 Scanning events from ledger 263
499
658
  Waiting for next ledger...
500
659
 
501
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Scan PacketSent Events (Composed ABA)
660
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > Scan PacketSent Events (A → B)
502
661
  ✅ Found 1 events
503
662
 
504
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Scan PacketSent Events (Composed ABA)
663
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > Scan PacketSent Events (A → B)
505
664
  ✅ Found 1 PacketSent events
506
665
 
507
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Scan PacketSent Events (Composed ABA)
508
- ✅ PacketSent events scanned successfully. Found 1 events
666
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > Scan PacketSent Events (A → B)
667
+ ✅ PacketSent events scanned from Chain A. Found 1 events
509
668
 
510
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Extract Packet Header and Payload Hash (Composed ABA)
669
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > Extract Packet Header and Payload Hash (A → B)
511
670
  ✅ Packet header extracted, length: 81
512
- ✅ Payload hash extracted: 1ff64438b6c0d350...
671
+ ✅ Payload hash extracted: 44602c281adf494f...
513
672
 
514
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > DVN Verifies Message (Composed ABA)
673
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > DVN B Verifies Message on Chain B (from Chain A)
515
674
  
516
675
  🔄 Simulating DVN transaction to get the auth entries
517
676
 
518
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > DVN Verifies Message (Composed ABA)
677
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > DVN B Verifies Message on Chain B (from Chain A)
519
678
  
520
- 📋 Addresses needing to sign: [ 'CDESQGCJI2BSY5ARNOKMD5OS4CSGXKS73KZPTUHTO4GLT7PNPNRQYAME' ]
679
+ 📋 Addresses needing to sign: [ 'CAJBNWAQQU4SACJSOBREZWQQAAUEM4BKUTIZ5SD7W5THUKCOG2PI33QK' ]
521
680
 
522
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > DVN Verifies Message (Composed ABA)
681
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > DVN B Verifies Message on Chain B (from Chain A)
523
682
  
524
683
  🌳 DVN Auth Entry Tree:
525
- 📞 CBQFR5WLFIVELDHM2IWMWHBOKC6NO7L7UTGFJ6WP2LJOBUJMKCZK4OB6...verify()
684
+ 📞 CDWJN3QVOSI7PV5VO5R6QWQ32SLJNVTJXXFVTNFBHYYK6536D2NEUMQP...verify()
526
685
 
527
- 📝 Signature payload (soroban auth hash): 5c107b81be82fcf4dc520e689c44901c5bf8ccdfee05c0ebffe426ed842606b4
528
- ✍️ Admin Ed25519 signature created: c1e25ef8c05397c748c37c385d83111a...
529
- 📝 Call hash for multisig: f9211a14a72a96208a5c70a50250fc7ec886f1bc1cfdbe9026b7bbc6a6f43947
686
+ 📝 Signature payload (soroban auth hash): 7766f51fda17ff9565315f985a2e78a23e51365caac483afd4d2ded4a4d37e6c
687
+ ✍️ Admin Ed25519 signature created: 935f9f0fa964319e09232d1a39f336ed...
688
+ 📝 Call hash for multisig: 9f75e2849a8f0be62922967af1dac061d7ed34f6faab5df17f9173f48e424ec4
530
689
 
531
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > DVN Verifies Message (Composed ABA)
532
- ✍️ Multisig signature created: 381c38abff0bac28188d70f50212ab37...
690
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > DVN B Verifies Message on Chain B (from Chain A)
691
+ ✍️ Multisig signature created: 8df7f330f5e4abe37a5a7af7d3c10610...
533
692
 
534
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > DVN Verifies Message (Composed ABA)
693
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > DVN B Verifies Message on Chain B (from Chain A)
535
694
  
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
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > DVN Verifies Message (Composed ABA)
700
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > DVN B Verifies Message on Chain B (from Chain A)
542
701
  ✅ Final simulation complete
543
702
 
544
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > DVN Verifies Message (Composed ABA)
545
- ✅ DVN verified message (Composed ABA)
703
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > DVN B Verifies Message on Chain B (from Chain A)
704
+ ✅ DVN B verified message on Chain B
546
705
 
547
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Commit Verification (Composed ABA)
548
- ✅ Verification committed to endpoint (Composed ABA)
706
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > Commit Verification on Chain B
707
+ ✅ Verification committed to endpoint on Chain B
549
708
 
550
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Execute native_drop_and_execute (Composed ABA)
551
- 💰 Balance before native drop: 99102178597n
709
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > Execute native_drop_and_execute on Chain B
710
+ 💰 Balance before native drop: 99134547212n
552
711
 
553
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Execute native_drop_and_execute (Composed ABA)
712
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > Execute native_drop_and_execute on Chain B
554
713
  
555
714
  🔄 Building transaction for non-root auth...
556
715
  🔄 Simulating with record_allow_nonroot...
557
716
 
558
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Execute native_drop_and_execute (Composed ABA)
717
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > Execute native_drop_and_execute on Chain B
559
718
  ✅ Simulation complete
560
719
  Auth entries returned: 2
561
720
  Processing auth entry for address: GC72DFYB5KMI4IHRX63L3PTJ73XCZD6NM5BLHQOHNNJKNZVIIVMK3RTH
562
721
  Auth entry tree:
563
- 📞 CCGANXSRKYEDVQARDFK4EYFDFLUYFAF5ZMSAC6F6EZSSGSNFBD5WSGQV...native_drop()
722
+ 📞 CAAEJHQMXHPHBN4CD7VMU7ULJNSOHCQF66PTIUCH6IBSALBVTWZB4CDY...native_drop()
564
723
  📞 CDMLFMKMMD7MWZP3FKUBZPVHTUEDLSX4BYGYKH4GCESXYHS3IHQ4EIG4...transfer()
565
724
  ✍️ Signing admin auth entry (regular account)...
566
- Processing auth entry for address: CCGANXSRKYEDVQARDFK4EYFDFLUYFAF5ZMSAC6F6EZSSGSNFBD5WSGQV
725
+ Processing auth entry for address: CAAEJHQMXHPHBN4CD7VMU7ULJNSOHCQF66PTIUCH6IBSALBVTWZB4CDY
567
726
  Auth entry tree:
568
- 📞 CA35FZCOFWBKM5MYE5QGQWH3GBKNYYLIOZKYZTXOE3EON6TWKIZBHZYQ...lz_receive()
727
+ 📞 CCYUE4Q6TJN6ZDGJ5WIDN4DACE7YP7YIWCWHZ2ACIKASSES2AIIKBZBF...lz_receive()
569
728
  ✍️ Signing executor auth entry (Abstract Account)...
570
729
 
571
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Execute native_drop_and_execute (Composed ABA)
730
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > Execute native_drop_and_execute on Chain B
572
731
  ✅ Auth entries signed
573
732
  ✅ Transaction assembled with signed auth entries
574
733
 
575
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Execute native_drop_and_execute (Composed ABA)
734
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > Execute native_drop_and_execute on Chain B
576
735
  ✅ Final simulation completed
577
736
 
578
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Execute native_drop_and_execute (Composed ABA)
737
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > Execute native_drop_and_execute on Chain B
579
738
  ✅ Transaction envelope signed
580
739
 
581
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Execute native_drop_and_execute (Composed ABA)
582
- ✅ Transaction sent, hash: 6d9a1243099bc1fb9c9d8694939c4130589ac11db990cf70e36c77a726f447e9
740
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > Execute native_drop_and_execute on Chain B
741
+ ✅ Transaction sent, hash: f7119fb06fccf9ff7b9985681b19559af801551240df05e4c6ef944611f20b6c
583
742
 
584
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Execute native_drop_and_execute (Composed ABA)
743
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > Execute native_drop_and_execute on Chain B
585
744
  ✅ Transaction completed successfully
586
745
 
587
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Execute native_drop_and_execute (Composed ABA)
588
- 💰 Balance after native drop: 99103178597n
746
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > Execute native_drop_and_execute on Chain B
747
+ 💰 Balance after native drop: 99135547212n
589
748
  ✅ Native drop received: 1000000n stroops
590
749
 
591
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Execute native_drop_and_execute (Composed ABA)
592
- ✅ Inbound count from EID 30400 : 1n
750
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > Execute native_drop_and_execute on Chain B
751
+ ✅ Counter B inbound count from EID_A: 1n
593
752
 
594
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Execute lz_compose (Composed ABA)
753
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > Execute lz_compose on Chain B (sends response to Chain A)
595
754
  
596
755
  🔄 Building transaction for non-root auth...
597
756
  🔄 Simulating with record_allow_nonroot...
598
757
 
599
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Execute lz_compose (Composed ABA)
758
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > Execute lz_compose on Chain B (sends response to Chain A)
600
759
  ✅ Simulation complete
601
760
  Auth entries returned: 2
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: CCGANXSRKYEDVQARDFK4EYFDFLUYFAF5ZMSAC6F6EZSSGSNFBD5WSGQV
765
+ Processing auth entry for address: CAAEJHQMXHPHBN4CD7VMU7ULJNSOHCQF66PTIUCH6IBSALBVTWZB4CDY
607
766
  Auth entry tree:
608
- 📞 CA35FZCOFWBKM5MYE5QGQWH3GBKNYYLIOZKYZTXOE3EON6TWKIZBHZYQ...lz_compose()
767
+ 📞 CCYUE4Q6TJN6ZDGJ5WIDN4DACE7YP7YIWCWHZ2ACIKASSES2AIIKBZBF...lz_compose()
609
768
  📞 CDMLFMKMMD7MWZP3FKUBZPVHTUEDLSX4BYGYKH4GCESXYHS3IHQ4EIG4...transfer()
610
769
  ✍️ Signing executor auth entry (Abstract Account)...
611
770
 
612
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Execute lz_compose (Composed ABA)
771
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > Execute lz_compose on Chain B (sends response to Chain A)
613
772
  ✅ Auth entries signed
614
773
  ✅ Transaction assembled with signed auth entries
615
774
 
616
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Execute lz_compose (Composed ABA)
775
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > Execute lz_compose on Chain B (sends response to Chain A)
617
776
  ✅ Final simulation completed
618
777
 
619
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Execute lz_compose (Composed ABA)
778
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > Execute lz_compose on Chain B (sends response to Chain A)
620
779
  ✅ Transaction envelope signed
621
780
 
622
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Execute lz_compose (Composed ABA)
623
- ✅ Transaction sent, hash: 2cbe238e8a7230d90abb84582df337f8ff4b4116945c9ad388adbe9cfcd063ad
781
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > Execute lz_compose on Chain B (sends response to Chain A)
782
+ ✅ Transaction sent, hash: cbc2f8b15f1a4a6406f602dcbb214e7951952a201588bf4357e833e3b1e83ef3
624
783
 
625
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Execute lz_compose (Composed ABA)
784
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > Execute lz_compose on Chain B (sends response to Chain A)
626
785
  ✅ Transaction completed successfully
627
786
 
628
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Execute lz_compose (Composed ABA)
629
- ✅ Composed count: 1n
787
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > Execute lz_compose on Chain B (sends response to Chain A)
788
+ ✅ Counter B composed count: 1n
630
789
 
631
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Execute lz_compose (Composed ABA)
632
- ✅ Outbound count (including return message): 2n
790
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > Execute lz_compose on Chain B (sends response to Chain A)
791
+ ✅ Counter B outbound count (response to A): 1n
633
792
 
634
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Scan Return PacketSent Events
793
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > Scan Return PacketSent Events (B → A)
635
794
  📦 Scanning for PacketSent events...
636
795
 
637
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Scan Return PacketSent Events
638
- 🔍 Scanning events from ledger 213
796
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > Scan Return PacketSent Events (B → A)
797
+ 🔍 Scanning events from ledger 275
639
798
  Waiting for next ledger...
640
799
 
641
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Scan Return PacketSent Events
800
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > Scan Return PacketSent Events (B → A)
642
801
  ✅ Found 2 events
643
802
 
644
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Scan Return PacketSent Events
803
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > Scan Return PacketSent Events (B → A)
645
804
  ✅ Found 1 PacketSent events
646
805
 
647
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Scan Return PacketSent Events
648
- ✅ Return PacketSent events scanned. Found 1 events
806
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > Scan Return PacketSent Events (B → A)
807
+ ✅ Return PacketSent events scanned from Chain B. Found 1 events
649
808
 
650
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Extract Return Packet Header and Payload Hash
809
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > Extract Return Packet Header and Payload Hash (B → A)
651
810
  ✅ Return packet header extracted, length: 81
652
- ✅ Return payload hash extracted: e7bd1e9bd9d292af...
811
+ ✅ Return payload hash extracted: 37f853f6b47a514c...
653
812
 
654
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > DVN Verifies Return Message
813
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > DVN A Verifies Return Message on Chain A (from Chain B)
655
814
  
656
815
  🔄 Simulating DVN transaction to get the auth entries
657
816
 
658
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > DVN Verifies Return Message
817
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > DVN A Verifies Return Message on Chain A (from Chain B)
659
818
  
660
- 📋 Addresses needing to sign: [ 'CDESQGCJI2BSY5ARNOKMD5OS4CSGXKS73KZPTUHTO4GLT7PNPNRQYAME' ]
819
+ 📋 Addresses needing to sign: [ 'CCXM665ZCYNM25K4HTK2VPRBOLRXOX32AZ2OW6FV3K6YQUGBICGSZC76' ]
661
820
 
662
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > DVN Verifies Return Message
821
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > DVN A Verifies Return Message on Chain A (from Chain B)
663
822
  
664
823
  🌳 DVN Auth Entry Tree:
665
- 📞 CBQFR5WLFIVELDHM2IWMWHBOKC6NO7L7UTGFJ6WP2LJOBUJMKCZK4OB6...verify()
824
+ 📞 CBL2GAXGPYSEGBF4B7BQB45GSGZTHP7YU7QLMD5FNEZ6CGUR36PXMIVF...verify()
666
825
 
667
- 📝 Signature payload (soroban auth hash): a5ab146cb6e1d3492bbd2f9a875d09d3379a2304d3aaa59a4b349d85295a6130
668
- ✍️ Admin Ed25519 signature created: 11dfdfdd387bb20acca000b1014ceb3b...
669
- 📝 Call hash for multisig: 8582b74772b17446c8d5aa0bce6a8214114edae0111fdbe498bd0d8ac9827478
826
+ 📝 Signature payload (soroban auth hash): 554736daabbdbf4589d087c06204ac7a8c2c21461ba6058a5d2a90b497c3e414
827
+ ✍️ Admin Ed25519 signature created: 2d2c7296ccca3ab0ddbeed5bddcdc2db...
828
+ 📝 Call hash for multisig: 90d49d467a48a235968fcbdb728a93010580066b6a6956c6b940d6a5f1b69cb9
670
829
 
671
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > DVN Verifies Return Message
672
- ✍️ Multisig signature created: 291e4edb30a337d2d4831a73faadd962...
830
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > DVN A Verifies Return Message on Chain A (from Chain B)
831
+ ✍️ Multisig signature created: 6c6933653595b7f2817d39c403463cde...
673
832
 
674
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > DVN Verifies Return Message
833
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > DVN A Verifies Return Message on Chain A (from Chain B)
675
834
  
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
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > DVN Verifies Return Message
840
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > DVN A Verifies Return Message on Chain A (from Chain B)
682
841
  ✅ Final simulation complete
683
842
 
684
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > DVN Verifies Return Message
685
- ✅ DVN verified return message
843
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > DVN A Verifies Return Message on Chain A (from Chain B)
844
+ ✅ DVN A verified return message on Chain A
686
845
 
687
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Commit Verification (Return Message)
688
- ✅ Verification committed for return message
846
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > Commit Verification on Chain A (Return Message)
847
+ ✅ Verification committed for return message on Chain A
689
848
 
690
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Receive Return Message (lz_receive)
849
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > Receive Return Message on Chain A (lz_receive)
691
850
  
692
851
  🔄 Building transaction for non-root auth...
693
852
  🔄 Simulating with record_allow_nonroot...
694
853
 
695
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Receive Return Message (lz_receive)
854
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > Receive Return Message on Chain A (lz_receive)
696
855
  ✅ Simulation complete
697
856
  Auth entries returned: 1
698
- Processing auth entry for address: CCGANXSRKYEDVQARDFK4EYFDFLUYFAF5ZMSAC6F6EZSSGSNFBD5WSGQV
857
+ Processing auth entry for address: CBP7QVSTABNUF7LM65JT5GUE732YAMXQ5DCKFMGEA62M3KU3AIOODW4I
699
858
  Auth entry tree:
700
- 📞 CA35FZCOFWBKM5MYE5QGQWH3GBKNYYLIOZKYZTXOE3EON6TWKIZBHZYQ...lz_receive()
859
+ 📞 CCLEX6L7CIMIHSRIXJYL6BZNYLZNRTO2APFHIH3Z74FDLODSCU7KVOP2...lz_receive()
701
860
  ✍️ Signing executor auth entry (Abstract Account)...
702
861
 
703
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Receive Return Message (lz_receive)
862
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > Receive Return Message on Chain A (lz_receive)
704
863
  ✅ Auth entries signed
705
864
  ✅ Transaction assembled with signed auth entries
706
865
 
707
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Receive Return Message (lz_receive)
866
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > Receive Return Message on Chain A (lz_receive)
708
867
  ✅ Final simulation completed
709
868
 
710
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Receive Return Message (lz_receive)
869
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > Receive Return Message on Chain A (lz_receive)
711
870
  ✅ Transaction envelope signed
712
871
 
713
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Receive Return Message (lz_receive)
714
- ✅ Transaction sent, hash: 1a211927fdfe30e47298f2e020bfba55cafa6f25bf455adbff31f70e20917d7c
872
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > Receive Return Message on Chain A (lz_receive)
873
+ ✅ Transaction sent, hash: 6edc5a1c628b7f99e701ff86c97beb7d8b577159af2b26c4dce5505996ec3695
715
874
 
716
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Receive Return Message (lz_receive)
875
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > Receive Return Message on Chain A (lz_receive)
717
876
  ✅ Transaction completed successfully
718
877
 
719
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Receive Return Message (lz_receive)
720
- ✅ Final counter count: 2n
721
-
722
- stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Receive Return Message (lz_receive)
723
- ✅ Final inbound count from EID 30400 : 2n
724
-
725
- 🎉 Counter Composed ABA with Native Drop - Full Round Trip completed!
726
- Workflow: Send ComposedABA DVN Verify Commit → native_drop_and_execute
727
- lz_compose (sends return) DVN Verify Commitlz_receive
728
-
729
- ✓ test/counter-uln.test.ts (14 tests) 24100ms
730
- ✓ Counter with ULN302 testing > Deploy Counter > Deploy Counter  2124ms
731
- ✓ Counter with ULN302 testing > Deploy Counter > Set Counter Peer  2580ms
732
- ✓ Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Counter Increment (Composed ABA with Native Drop)  1463ms
733
- ✓ Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Scan PacketSent Events (Composed ABA)  1011ms
734
- ✓ Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > DVN Verifies Message (Composed ABA)  2735ms
735
- ✓ Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Commit Verification (Composed ABA)  1132ms
736
- ✓ Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Execute native_drop_and_execute (Composed ABA)  2512ms
737
- ✓ Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Execute lz_compose (Composed ABA)  2730ms
738
- ✓ Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Scan Return PacketSent Events  1015ms
739
- ✓ Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > DVN Verifies Return Message  2808ms
740
- ✓ Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Commit Verification (Return Message)  2638ms
741
- ✓ Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Receive Return Message (lz_receive)  1346ms
742
- stdout | test/counter-sml.test.ts > Counter with SML testing
878
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > Receive Return Message on Chain A (lz_receive)
879
+ ✅ Final counter A count: 1n
880
+
881
+ stdout | test/counter-uln.test.ts > Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > Receive Return Message on Chain A (lz_receive)
882
+ ✅ Counter A inbound count from EID_B: 1n
883
+
884
+ 🎉 Counter Cross-Chain Composed ABA with Native Drop - Full Round Trip!
885
+ Chain AChain B: ComposedABA with native_drop
886
+ DVN B verifiesCommitnative_drop_and_executelz_compose
887
+ Chain B → Chain A: Response (Vanilla)
888
+ DVN A verifies Commit → lz_receive
889
+
890
+ ✓ test/counter-uln.test.ts (16 tests) 31347ms
891
+ ✓ Counter Cross-Chain Testing (ULN302) > Deploy Counters on Both Chains > Deploy Counter A on Chain A  4803ms
892
+ ✓ Counter Cross-Chain Testing (ULN302) > Deploy Counters on Both Chains > Deploy Counter B on Chain B  3894ms
893
+ ✓ Counter Cross-Chain Testing (ULN302) > Deploy Counters on Both Chains > Set Counter A Peer to Counter B  1138ms
894
+ ✓ Counter Cross-Chain Testing (ULN302) > Deploy Counters on Both Chains > Set Counter B Peer to Counter A  1198ms
895
+ ✓ Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > Counter A Increment (Composed ABA with Native Drop) - sends to Chain B  1984ms
896
+ ✓ Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > Scan PacketSent Events (A → B)  1031ms
897
+ ✓ Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > DVN B Verifies Message on Chain B (from Chain A)  2926ms
898
+ ✓ Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > Commit Verification on Chain B  2680ms
899
+ ✓ Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > Execute native_drop_and_execute on Chain B  2791ms
900
+ ✓ Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > Execute lz_compose on Chain B (sends response to Chain A)  2897ms
901
+ ✓ Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > Scan Return PacketSent Events (B → A)  1020ms
902
+ ✓ Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > DVN A Verifies Return Message on Chain A (from Chain B)  1352ms
903
+ ✓ Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > Commit Verification on Chain A (Return Message)  1153ms
904
+ ✓ Counter Cross-Chain Testing (ULN302) > Counter Increment with Composed ABA and Native Drop (A → B → A) > Receive Return Message on Chain A (lz_receive)  2448ms
905
+ stdout | test/counter-sml.test.ts > Counter Cross-Chain Testing (SML)
743
906
  
744
- 📋 Protocol addresses injected from globalSetup
745
- Endpoint: CCPTRUANJUH2YDEMMNFTRLHNCUAUJVMCQLXE3OYYQQEEKHXBFFXAIO3Z
746
- SML: CDZVL2G3TTVEHD46VTC6QQQQCEYRY4UUAILIPUZU67H3KKFBEFELJGQJ
747
- Executor: CCGANXSRKYEDVQARDFK4EYFDFLUYFAF5ZMSAC6F6EZSSGSNFBD5WSGQV
748
- Executor Helper: CCOFEESMY4XA4JWUMKYAGIKOVONPTXENZXJVBIMWQOQTFQADMGHH7255
907
+ 📋 Chain A addresses (EID: 30401)
908
+ Endpoint: CB463RGN4O5RWVSTYL6KWOYTVGFEC5YPXSSUNVRTKLHIQ6QGWNECU53X
909
+ SML: CBWOGKDTM2ANRKNBORQ4OMQM4SGFO2JRU5PHHDII5QJRCYD4RNGEIJI3
910
+ Executor: CBP7QVSTABNUF7LM65JT5GUE732YAMXQ5DCKFMGEA62M3KU3AIOODW4I
749
911
 
750
- stdout | test/counter-sml.test.ts > Counter with SML testing > Deploy Counter > Deploy Counter
912
+ 📋 Chain B addresses (EID: 30402)
913
+ Endpoint: CC3Q6IP62KI3TTMZBHPGUT3BWZALOR4H4GGAMKXHRZML632LFZFUQ6FQ
914
+ SML: CAOAAIEGGF3TXOCIB3PI3R6BFPS7ZDIUA2WVP2SZVYEFH7G5BPZEOKC3
915
+ Executor: CAAEJHQMXHPHBN4CD7VMU7ULJNSOHCQF66PTIUCH6IBSALBVTWZB4CDY
916
+
917
+ stdout | test/counter-sml.test.ts > Counter Cross-Chain Testing (SML) > Deploy Counters on Both Chains > Deploy Counter A on Chain A
751
918
  📖 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: 40336 bytes (39.39 KB)
920
+ 📦 WASM buffer size: 40680 bytes (39.73 KB)
754
921
 
755
- stdout | test/counter-sml.test.ts > Counter with SML testing > Deploy Counter > Deploy Counter
756
- 💰 Upload transaction fee: 907684 stroops (0.0907684 XLM)
922
+ stdout | test/counter-sml.test.ts > Counter Cross-Chain Testing (SML) > Deploy Counters on Both Chains > Deploy Counter A on Chain A
923
+ 💰 Upload transaction fee: 915048 stroops (0.0915048 XLM)
757
924
 
758
- stdout | test/counter-sml.test.ts > Counter with SML testing > Deploy Counter > Deploy Counter
759
- ⏰ WASM TTL: live until ledger 518601 (518379 ledgers remaining, ~30.00 days)
925
+ stdout | test/counter-sml.test.ts > Counter Cross-Chain Testing (SML) > Deploy Counters on Both Chains > Deploy Counter A on Chain A
926
+ ⏰ WASM TTL: live until ledger 518660 (518377 ledgers remaining, ~30.00 days)
760
927
 
761
- stdout | test/counter-sml.test.ts > Counter with SML testing > Deploy Counter > Deploy Counter
762
- ✅ WASM uploaded, hash: 21be5b9ff062d6e92fce084fdb0a3b5b2281f4f79b292eb1e533528e9a394aac
928
+ stdout | test/counter-sml.test.ts > Counter Cross-Chain Testing (SML) > Deploy Counters on Both Chains > Deploy Counter A on Chain A
929
+ ✅ WASM uploaded, hash: e031afc9dc07436fdb36aac32169ea184720496f3c7a9890aec65f777258336d
763
930
  🚀 Deploying contract...
764
931
 
765
- stdout | test/counter-sml.test.ts > Counter with SML testing > Deploy Counter > Deploy Counter
766
- ✅ Contract deployed at: CBFQU3EDG7L2WNSBFOUHM2VYG3ATB5YW6SYCKFBLEYA65J6IHL5FOKL5
932
+ stdout | test/counter-sml.test.ts > Counter Cross-Chain Testing (SML) > Deploy Counters on Both Chains > Deploy Counter A on Chain A
933
+ ✅ Contract deployed at: CAZBYTI6VMCSFFIASMNACGPII4VZHACA32HXLEFKYLPKVJAP5HFNB62E
934
+
935
+ stdout | test/counter-sml.test.ts > Counter Cross-Chain Testing (SML) > Deploy Counters on Both Chains > Deploy Counter A on Chain A
936
+ ✅ Counter A deployed on Chain A: CAZBYTI6VMCSFFIASMNACGPII4VZHACA32HXLEFKYLPKVJAP5HFNB62E
937
+
938
+ stdout | test/counter-sml.test.ts > Counter Cross-Chain Testing (SML) > Deploy Counters on Both Chains > Deploy Counter B on Chain B
939
+ 📖 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
+ stdout | test/counter-sml.test.ts > Counter Cross-Chain Testing (SML) > Deploy Counters on Both Chains > Deploy Counter B on Chain B
944
+ 💰 Upload transaction fee: 915048 stroops (0.0915048 XLM)
945
+
946
+ stdout | test/counter-sml.test.ts > Counter Cross-Chain Testing (SML) > Deploy Counters on Both Chains > Deploy Counter B on Chain B
947
+ ⏰ WASM TTL: live until ledger 518660 (518374 ledgers remaining, ~30.00 days)
948
+
949
+ stdout | test/counter-sml.test.ts > Counter Cross-Chain Testing (SML) > Deploy Counters on Both Chains > Deploy Counter B on Chain B
950
+ ✅ WASM uploaded, hash: e031afc9dc07436fdb36aac32169ea184720496f3c7a9890aec65f777258336d
951
+ 🚀 Deploying contract...
952
+
953
+ stdout | test/counter-sml.test.ts > Counter Cross-Chain Testing (SML) > Deploy Counters on Both Chains > Deploy Counter B on Chain B
954
+ ✅ Contract deployed at: CBNTHMMV5CINMJFAZ5EGFJVYUASADR6TI3CFXMBBZLKP2NPQKRH4CNP6
955
+
956
+ stdout | test/counter-sml.test.ts > Counter Cross-Chain Testing (SML) > Deploy Counters on Both Chains > Deploy Counter B on Chain B
957
+ ✅ Counter B deployed on Chain B: CBNTHMMV5CINMJFAZ5EGFJVYUASADR6TI3CFXMBBZLKP2NPQKRH4CNP6
958
+
959
+ stdout | test/counter-sml.test.ts > Counter Cross-Chain Testing (SML) > Wire Counters to use SML (Cross-Chain) > Set Counter A Send Library to SML (for sending to Chain B)
960
+ ✅ Counter A send library set to SML for EID_B
961
+
962
+ stdout | test/counter-sml.test.ts > Counter Cross-Chain Testing (SML) > Wire Counters to use SML (Cross-Chain) > Set Counter A Receive Library to SML (for receiving from Chain B)
963
+ ✅ Counter A receive library set to SML for EID_B
767
964
 
768
- stdout | test/counter-sml.test.ts > Counter with SML testing > Deploy Counter > Deploy Counter
769
- ✅ Counter deployed: CBFQU3EDG7L2WNSBFOUHM2VYG3ATB5YW6SYCKFBLEYA65J6IHL5FOKL5
965
+ stdout | test/counter-sml.test.ts > Counter Cross-Chain Testing (SML) > Wire Counters to use SML (Cross-Chain) > Set Counter B Send Library to SML (for sending to Chain A)
966
+ ✅ Counter B send library set to SML for EID_A
770
967
 
771
- stdout | test/counter-sml.test.ts > Counter with SML testing > Wire Counter to use SML > Set Counter Send Library to SML
772
- ✅ Counter send library set to SML
968
+ stdout | test/counter-sml.test.ts > Counter Cross-Chain Testing (SML) > Wire Counters to use SML (Cross-Chain) > Set Counter B Receive Library to SML (for receiving from Chain A)
969
+ ✅ Counter B receive library set to SML for EID_A
773
970
 
774
- stdout | test/counter-sml.test.ts > Counter with SML testing > Wire Counter to use SML > Set Counter Receive Library to SML
775
- ✅ Counter receive library set to SML
971
+ stdout | test/counter-sml.test.ts > Counter Cross-Chain Testing (SML) > Wire Counters to use SML (Cross-Chain) > Set Counter A Peer to Counter B
972
+ ✅ Counter A peer set to Counter B for EID_B
776
973
 
777
- stdout | test/counter-sml.test.ts > Counter with SML testing > Wire Counter to use SML > Set Counter Peer
778
- ✅ Counter peer set for EID 30400
974
+ stdout | test/counter-sml.test.ts > Counter Cross-Chain Testing (SML) > Wire Counters to use SML (Cross-Chain) > Set Counter B Peer to Counter A
975
+ ✅ Counter B peer set to Counter A for EID_A
779
976
 
780
- stdout | test/counter-sml.test.ts > Counter with SML testing > Counter ABA Messaging > Counter Increment (ABA)
781
- ✅ Return fee for ABA: { native_fee: 100n, zro_fee: 0n }
977
+ stdout | test/counter-sml.test.ts > Counter Cross-Chain Testing (SML) > Cross-Chain ABA Messaging (A → B → A) > Counter A Increment (ABA) - sends to Chain B
978
+ ✅ Return fee for ABA (B→A): { native_fee: 100n, zro_fee: 0n }
782
979
 
783
- stdout | test/counter-sml.test.ts > Counter with SML testing > Counter ABA Messaging > Counter Increment (ABA)
784
- ✅ ABA Fee: { native_fee: 100n, zro_fee: 99n }
980
+ stdout | test/counter-sml.test.ts > Counter Cross-Chain Testing (SML) > Cross-Chain ABA Messaging (A → B → A) > Counter A Increment (ABA) - sends to Chain B
981
+ ✅ ABA Fee (A→B): { native_fee: 100n, zro_fee: 99n }
785
982
 
786
- stdout | test/counter-sml.test.ts > Counter with SML testing > Counter ABA Messaging > Counter Increment (ABA)
787
- ✅ Counter incremented (ABA), outbound count: 1n
983
+ stdout | test/counter-sml.test.ts > Counter Cross-Chain Testing (SML) > Cross-Chain ABA Messaging (A → B → A) > Counter A Increment (ABA) - sends to Chain B
984
+ ✅ Counter A incremented (ABA to B), outbound count: 1n
788
985
 
789
- stdout | test/counter-sml.test.ts > Counter with SML testing > Counter ABA Messaging > Scan PacketSent Events
986
+ stdout | test/counter-sml.test.ts > Counter Cross-Chain Testing (SML) > Cross-Chain ABA Messaging (A → B → A) > Scan PacketSent Events (A → B)
790
987
  📦 Scanning for PacketSent events...
791
988
 
792
- stdout | test/counter-sml.test.ts > Counter with SML testing > Counter ABA Messaging > Scan PacketSent Events
793
- 🔍 Scanning events from ledger 230
989
+ stdout | test/counter-sml.test.ts > Counter Cross-Chain Testing (SML) > Cross-Chain ABA Messaging (A → B → A) > Scan PacketSent Events (A → B)
990
+ 🔍 Scanning events from ledger 299
794
991
 
795
- stdout | test/counter-sml.test.ts > Counter with SML testing > Counter ABA Messaging > Scan PacketSent Events
992
+ stdout | test/counter-sml.test.ts > Counter Cross-Chain Testing (SML) > Cross-Chain ABA Messaging (A → B → A) > Scan PacketSent Events (A → B)
796
993
  ✅ Found 1 events
797
994
 
798
- stdout | test/counter-sml.test.ts > Counter with SML testing > Counter ABA Messaging > Scan PacketSent Events
995
+ stdout | test/counter-sml.test.ts > Counter Cross-Chain Testing (SML) > Cross-Chain ABA Messaging (A → B → A) > Scan PacketSent Events (A → B)
799
996
  ✅ Found 1 PacketSent events
800
997
 
801
- stdout | test/counter-sml.test.ts > Counter with SML testing > Counter ABA Messaging > Scan PacketSent Events
802
- ✅ PacketSent events scanned successfully. Found 1 events
998
+ stdout | test/counter-sml.test.ts > Counter Cross-Chain Testing (SML) > Cross-Chain ABA Messaging (A → B → A) > Scan PacketSent Events (A → B)
999
+ ✅ PacketSent events scanned from Chain A. Found 1 events
803
1000
 
804
- stdout | test/counter-sml.test.ts > Counter with SML testing > Counter ABA Messaging > Verify Counter Message
805
- ✅ ABA request packet validated
1001
+ stdout | test/counter-sml.test.ts > Counter Cross-Chain Testing (SML) > Cross-Chain ABA Messaging (A → B → A) > Verify Counter Message on Chain B (via SML)
1002
+ ✅ ABA request packet validated on Chain B
806
1003
 
807
- stdout | test/counter-sml.test.ts > Counter with SML testing > Counter ABA Messaging > Receive Counter Message (ABA - triggers response)
1004
+ stdout | test/counter-sml.test.ts > Counter Cross-Chain Testing (SML) > Cross-Chain ABA Messaging (A → B → A) > Receive Counter Message on Chain B (ABA - triggers response to A)
808
1005
  
809
1006
  🔄 Building transaction for non-root auth...
810
1007
  🔄 Simulating with record_allow_nonroot...
811
1008
 
812
- stdout | test/counter-sml.test.ts > Counter with SML testing > Counter ABA Messaging > Receive Counter Message (ABA - triggers response)
1009
+ stdout | test/counter-sml.test.ts > Counter Cross-Chain Testing (SML) > Cross-Chain ABA Messaging (A → B → A) > Receive Counter Message on Chain B (ABA - triggers response to A)
813
1010
  ✅ Simulation complete
814
1011
  Auth entries returned: 3
815
1012
  Processing auth entry for address: GC72DFYB5KMI4IHRX63L3PTJ73XCZD6NM5BLHQOHNNJKNZVIIVMK3RTH
816
1013
  Auth entry tree:
817
- 📞 CCGANXSRKYEDVQARDFK4EYFDFLUYFAF5ZMSAC6F6EZSSGSNFBD5WSGQV...native_drop()
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: CCGANXSRKYEDVQARDFK4EYFDFLUYFAF5ZMSAC6F6EZSSGSNFBD5WSGQV
1021
+ Processing auth entry for address: CAAEJHQMXHPHBN4CD7VMU7ULJNSOHCQF66PTIUCH6IBSALBVTWZB4CDY
825
1022
  Auth entry tree:
826
- 📞 CBFQU3EDG7L2WNSBFOUHM2VYG3ATB5YW6SYCKFBLEYA65J6IHL5FOKL5...lz_receive()
1023
+ 📞 CBNTHMMV5CINMJFAZ5EGFJVYUASADR6TI3CFXMBBZLKP2NPQKRH4CNP6...lz_receive()
827
1024
  📞 CDMLFMKMMD7MWZP3FKUBZPVHTUEDLSX4BYGYKH4GCESXYHS3IHQ4EIG4...transfer()
828
1025
  ✍️ Signing executor auth entry (Abstract Account)...
829
1026
 
830
- stdout | test/counter-sml.test.ts > Counter with SML testing > Counter ABA Messaging > Receive Counter Message (ABA - triggers response)
1027
+ stdout | test/counter-sml.test.ts > Counter Cross-Chain Testing (SML) > Cross-Chain ABA Messaging (A → B → A) > Receive Counter Message on Chain B (ABA - triggers response to A)
831
1028
  ✅ Auth entries signed
832
1029
  ✅ Transaction assembled with signed auth entries
833
1030
 
834
- stdout | test/counter-sml.test.ts > Counter with SML testing > Counter ABA Messaging > Receive Counter Message (ABA - triggers response)
1031
+ stdout | test/counter-sml.test.ts > Counter Cross-Chain Testing (SML) > Cross-Chain ABA Messaging (A → B → A) > Receive Counter Message on Chain B (ABA - triggers response to A)
835
1032
  ✅ Final simulation completed
836
1033
 
837
- stdout | test/counter-sml.test.ts > Counter with SML testing > Counter ABA Messaging > Receive Counter Message (ABA - triggers response)
1034
+ stdout | test/counter-sml.test.ts > Counter Cross-Chain Testing (SML) > Cross-Chain ABA Messaging (A → B → A) > Receive Counter Message on Chain B (ABA - triggers response to A)
838
1035
  ✅ Transaction envelope signed
839
1036
 
840
- stdout | test/counter-sml.test.ts > Counter with SML testing > Counter ABA Messaging > Receive Counter Message (ABA - triggers response)
841
- ✅ Transaction sent, hash: ccc35351142cc7035796e57494b1ad238d2f539c47fa637cb263c202fcee1f9f
1037
+ stdout | test/counter-sml.test.ts > Counter Cross-Chain Testing (SML) > Cross-Chain ABA Messaging (A → B → A) > Receive Counter Message on Chain B (ABA - triggers response to A)
1038
+ ✅ Transaction sent, hash: 8b572ee800f4707716c8eeeb5585bd9aaa3bc0c32af70f07611be79fde5a80b5
842
1039
 
843
- stdout | test/counter-sml.test.ts > Counter with SML testing > Counter ABA Messaging > Receive Counter Message (ABA - triggers response)
1040
+ stdout | test/counter-sml.test.ts > Counter Cross-Chain Testing (SML) > Cross-Chain ABA Messaging (A → B → A) > Receive Counter Message on Chain B (ABA - triggers response to A)
844
1041
  ✅ Transaction completed successfully
845
1042
 
846
- stdout | test/counter-sml.test.ts > Counter with SML testing > Counter ABA Messaging > Receive Counter Message (ABA - triggers response)
847
- ✅ ABA message received and response sent, outbound count: 2n
1043
+ stdout | test/counter-sml.test.ts > Counter Cross-Chain Testing (SML) > Cross-Chain ABA Messaging (A → B → A) > Receive Counter Message on Chain B (ABA - triggers response to A)
1044
+ ✅ Counter B received ABA message and sent response, outbound count: 1n
848
1045
 
849
- stdout | test/counter-sml.test.ts > Counter with SML testing > Counter ABA Messaging > Scan ABA Response PacketSent Events
1046
+ stdout | test/counter-sml.test.ts > Counter Cross-Chain Testing (SML) > Cross-Chain ABA Messaging (A → B → A) > Scan ABA Response PacketSent Events (B → A)
850
1047
  📦 Scanning for PacketSent events...
851
1048
 
852
- stdout | test/counter-sml.test.ts > Counter with SML testing > Counter ABA Messaging > Scan ABA Response PacketSent Events
853
- 🔍 Scanning events from ledger 235
1049
+ stdout | test/counter-sml.test.ts > Counter Cross-Chain Testing (SML) > Cross-Chain ABA Messaging (A → B → A) > Scan ABA Response PacketSent Events (B → A)
1050
+ 🔍 Scanning events from ledger 303
854
1051
  Waiting for next ledger...
855
1052
 
856
- stdout | test/counter-sml.test.ts > Counter with SML testing > Counter ABA Messaging > Scan ABA Response PacketSent Events
1053
+ stdout | test/counter-sml.test.ts > Counter Cross-Chain Testing (SML) > Cross-Chain ABA Messaging (A → B → A) > Scan ABA Response PacketSent Events (B → A)
857
1054
  ✅ Found 2 events
858
1055
 
859
- stdout | test/counter-sml.test.ts > Counter with SML testing > Counter ABA Messaging > Scan ABA Response PacketSent Events
1056
+ stdout | test/counter-sml.test.ts > Counter Cross-Chain Testing (SML) > Cross-Chain ABA Messaging (A → B → A) > Scan ABA Response PacketSent Events (B → A)
860
1057
  ✅ Found 1 PacketSent events
861
1058
 
862
- stdout | test/counter-sml.test.ts > Counter with SML testing > Counter ABA Messaging > Scan ABA Response PacketSent Events
863
- ✅ ABA response PacketSent events scanned. Found 1 events
1059
+ stdout | test/counter-sml.test.ts > Counter Cross-Chain Testing (SML) > Cross-Chain ABA Messaging (A → B → A) > Scan ABA Response PacketSent Events (B → A)
1060
+ ✅ ABA response PacketSent events scanned from Chain B. Found 1 events
864
1061
 
865
- stdout | test/counter-sml.test.ts > Counter with SML testing > Counter ABA Messaging > Verify ABA Response Message
866
- ✅ ABA response packet validated
1062
+ stdout | test/counter-sml.test.ts > Counter Cross-Chain Testing (SML) > Cross-Chain ABA Messaging (A → B → A) > Verify ABA Response Message on Chain A (via SML)
1063
+ ✅ ABA response packet validated on Chain A
867
1064
 
868
- stdout | test/counter-sml.test.ts > Counter with SML testing > Counter ABA Messaging > Receive ABA Response Message
1065
+ stdout | test/counter-sml.test.ts > Counter Cross-Chain Testing (SML) > Cross-Chain ABA Messaging (A → B → A) > Receive ABA Response Message on Chain A
869
1066
  
870
1067
  🔄 Building transaction for non-root auth...
871
1068
  🔄 Simulating with record_allow_nonroot...
872
1069
 
873
- stdout | test/counter-sml.test.ts > Counter with SML testing > Counter ABA Messaging > Receive ABA Response Message
1070
+ stdout | test/counter-sml.test.ts > Counter Cross-Chain Testing (SML) > Cross-Chain ABA Messaging (A → B → A) > Receive ABA Response Message on Chain A
874
1071
  ✅ Simulation complete
875
1072
  Auth entries returned: 2
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: CCGANXSRKYEDVQARDFK4EYFDFLUYFAF5ZMSAC6F6EZSSGSNFBD5WSGQV
1077
+ Processing auth entry for address: CBP7QVSTABNUF7LM65JT5GUE732YAMXQ5DCKFMGEA62M3KU3AIOODW4I
881
1078
  Auth entry tree:
882
- 📞 CBFQU3EDG7L2WNSBFOUHM2VYG3ATB5YW6SYCKFBLEYA65J6IHL5FOKL5...lz_receive()
1079
+ 📞 CAZBYTI6VMCSFFIASMNACGPII4VZHACA32HXLEFKYLPKVJAP5HFNB62E...lz_receive()
883
1080
  📞 CDMLFMKMMD7MWZP3FKUBZPVHTUEDLSX4BYGYKH4GCESXYHS3IHQ4EIG4...transfer()
884
1081
  ✍️ Signing executor auth entry (Abstract Account)...
885
1082
 
886
- stdout | test/counter-sml.test.ts > Counter with SML testing > Counter ABA Messaging > Receive ABA Response Message
1083
+ stdout | test/counter-sml.test.ts > Counter Cross-Chain Testing (SML) > Cross-Chain ABA Messaging (A → B → A) > Receive ABA Response Message on Chain A
887
1084
  ✅ Auth entries signed
888
1085
  ✅ Transaction assembled with signed auth entries
889
1086
 
890
- stdout | test/counter-sml.test.ts > Counter with SML testing > Counter ABA Messaging > Receive ABA Response Message
1087
+ stdout | test/counter-sml.test.ts > Counter Cross-Chain Testing (SML) > Cross-Chain ABA Messaging (A → B → A) > Receive ABA Response Message on Chain A
891
1088
  ✅ Final simulation completed
892
1089
 
893
- stdout | test/counter-sml.test.ts > Counter with SML testing > Counter ABA Messaging > Receive ABA Response Message
1090
+ stdout | test/counter-sml.test.ts > Counter Cross-Chain Testing (SML) > Cross-Chain ABA Messaging (A → B → A) > Receive ABA Response Message on Chain A
894
1091
  ✅ Transaction envelope signed
895
1092
 
896
- stdout | test/counter-sml.test.ts > Counter with SML testing > Counter ABA Messaging > Receive ABA Response Message
897
- ✅ Transaction sent, hash: 20e36666f0692e5d8038253d2485fdebb89aa270af89773a5c86694bf8d04e46
1093
+ stdout | test/counter-sml.test.ts > Counter Cross-Chain Testing (SML) > Cross-Chain ABA Messaging (A → B → A) > Receive ABA Response Message on Chain A
1094
+ ✅ Transaction sent, hash: 34536362f12cade0aa4c0af8704adce64977abe1f20725d19344d7830fa68462
898
1095
 
899
- stdout | test/counter-sml.test.ts > Counter with SML testing > Counter ABA Messaging > Receive ABA Response Message
1096
+ stdout | test/counter-sml.test.ts > Counter Cross-Chain Testing (SML) > Cross-Chain ABA Messaging (A → B → A) > Receive ABA Response Message on Chain A
900
1097
  ✅ Transaction completed successfully
901
1098
 
902
- stdout | test/counter-sml.test.ts > Counter with SML testing > Counter ABA Messaging > Receive ABA Response Message
903
- ✅ ABA response received, total inbound count: 2n
904
-
905
- 🎉 ABA round-trip completed successfully!
906
- Request: Counter → Counter (ABA)
907
- Response: Counter → Counter (Vanilla)
908
-
909
- ✓ test/counter-sml.test.ts (11 tests) 20317ms
910
- ✓ Counter with SML testing > Deploy Counter > Deploy Counter  3720ms
911
- ✓ Counter with SML testing > Wire Counter to use SML > Set Counter Send Library to SML  1134ms
912
- ✓ Counter with SML testing > Wire Counter to use SML > Set Counter Receive Library to SML  1143ms
913
- ✓ Counter with SML testing > Wire Counter to use SML > Set Counter Peer  1117ms
914
- ✓ Counter with SML testing > Counter ABA Messaging > Counter Increment (ABA)  2926ms
915
- ✓ Counter with SML testing > Counter ABA Messaging > Verify Counter Message  2624ms
916
- ✓ Counter with SML testing > Counter ABA Messaging > Receive Counter Message (ABA - triggers response)  1573ms
917
- ✓ Counter with SML testing > Counter ABA Messaging > Scan ABA Response PacketSent Events  1020ms
918
- ✓ Counter with SML testing > Counter ABA Messaging > Verify ABA Response Message  2599ms
919
- ✓ Counter with SML testing > Counter ABA Messaging > Receive ABA Response Message  2442ms
1099
+ stdout | test/counter-sml.test.ts > Counter Cross-Chain Testing (SML) > Cross-Chain ABA Messaging (A → B → A) > Receive ABA Response Message on Chain A
1100
+ ✅ Counter A received ABA response, inbound count: 1n
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
+ ✓ test/counter-sml.test.ts (15 tests) 28109ms
1107
+ ✓ Counter Cross-Chain Testing (SML) > Deploy Counters on Both Chains > Deploy Counter A on Chain A  3281ms
1108
+ ✓ Counter Cross-Chain Testing (SML) > Deploy Counters on Both Chains > Deploy Counter B on Chain B  2201ms
1109
+ ✓ Counter Cross-Chain Testing (SML) > Wire Counters to use SML (Cross-Chain) > Set Counter A Send Library to SML (for sending to Chain B)  1148ms
1110
+ ✓ Counter Cross-Chain Testing (SML) > Wire Counters to use SML (Cross-Chain) > Set Counter A Receive Library to SML (for receiving from Chain B)  2710ms
1111
+ ✓ Counter Cross-Chain Testing (SML) > Wire Counters to use SML (Cross-Chain) > Set Counter B Send Library to SML (for sending to Chain A)  1203ms
1112
+ ✓ Counter Cross-Chain Testing (SML) > Wire Counters to use SML (Cross-Chain) > Set Counter B Receive Library to SML (for receiving from Chain A)  1177ms
1113
+ ✓ Counter Cross-Chain Testing (SML) > Wire Counters to use SML (Cross-Chain) > Set Counter A Peer to Counter B  2640ms
1114
+ ✓ Counter Cross-Chain Testing (SML) > Wire Counters to use SML (Cross-Chain) > Set Counter B Peer to Counter A  1118ms
1115
+ ✓ Counter Cross-Chain Testing (SML) > Cross-Chain ABA Messaging (A → B → A) > Counter A Increment (ABA) - sends to Chain B  2845ms
1116
+ ✓ Counter Cross-Chain Testing (SML) > Cross-Chain ABA Messaging (A → B → A) > Verify Counter Message on Chain B (via SML)  1128ms
1117
+ ✓ Counter Cross-Chain Testing (SML) > Cross-Chain ABA Messaging (A → B → A) > Receive Counter Message on Chain B (ABA - triggers response to A)  2605ms
1118
+ ✓ Counter Cross-Chain Testing (SML) > Cross-Chain ABA Messaging (A → B → A) > Scan ABA Response PacketSent Events (B → A)  1014ms
1119
+ ✓ Counter Cross-Chain Testing (SML) > Cross-Chain ABA Messaging (A → B → A) > Verify ABA Response Message on Chain A (via SML)  2608ms
1120
+ ✓ Counter Cross-Chain Testing (SML) > Cross-Chain ABA Messaging (A → B → A) > Receive ABA Response Message on Chain A  2387ms
920
1121
  stdout | test/upgrader.test.ts > Upgrader Contract Testing > Contract Deployments > Deploy Upgrader Contract
921
1122
  📖 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: 5053 bytes (4.93 KB)
1124
+ 📦 WASM buffer size: 5329 bytes (5.20 KB)
924
1125
 
925
1126
  stdout | test/upgrader.test.ts > Upgrader Contract Testing > Contract Deployments > Deploy Upgrader Contract
926
- 💰 Upload transaction fee: 1867151 stroops (0.1867151 XLM)
1127
+ 💰 Upload transaction fee: 1884262 stroops (0.1884262 XLM)
927
1128
 
928
1129
  stdout | test/upgrader.test.ts > Upgrader Contract Testing > Contract Deployments > Deploy Upgrader Contract
929
- ⏰ WASM TTL: live until ledger 121202 (120959 ledgers remaining, ~7.00 days)
1130
+ ⏰ WASM TTL: live until ledger 121270 (120959 ledgers remaining, ~7.00 days)
930
1131
 
931
1132
  stdout | test/upgrader.test.ts > Upgrader Contract Testing > Contract Deployments > Deploy Upgrader Contract
932
- ✅ WASM uploaded, hash: 298d3c3d596be9f28c28c7919c00bfba604b1f7a615b2930ac0e65a9eac84655
1133
+ ✅ WASM uploaded, hash: bc5993c9cefc30e892532d78cb8a0c6eb5cc6723fec6f595dae266ad016275be
933
1134
  🚀 Deploying contract...
934
1135
 
935
1136
  stdout | test/upgrader.test.ts > Upgrader Contract Testing > Contract Deployments > Deploy Upgrader Contract
936
- ✅ Contract deployed at: CCALUAVYJ2Z2RNDSWIMZMR2S4FOBKBL4RB6BAQK7NL7HW42KSYQVJIWZ
1137
+ ✅ Contract deployed at: CCQUCWYWFH5EGFCHVMBGKAHZWJPBN4JZTFNRP2DLYTN2SY4ITCWG2O3O
937
1138
 
938
1139
  stdout | test/upgrader.test.ts > Upgrader Contract Testing > Contract Deployments > Deploy Upgrader Contract
939
- ✅ Upgrader deployed at: CCALUAVYJ2Z2RNDSWIMZMR2S4FOBKBL4RB6BAQK7NL7HW42KSYQVJIWZ
1140
+ ✅ Upgrader deployed at: CCQUCWYWFH5EGFCHVMBGKAHZWJPBN4JZTFNRP2DLYTN2SY4ITCWG2O3O
940
1141
 
941
1142
  stdout | test/upgrader.test.ts > Upgrader Contract Testing > Contract Deployments > Deploy Test Upgradeable Contract V1
942
1143
  📖 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
  💰 Upload transaction fee: 7768174 stroops (0.7768174 XLM)
947
1148
 
948
1149
  stdout | test/upgrader.test.ts > Upgrader Contract Testing > Contract Deployments > Deploy Test Upgradeable Contract V1
949
- ⏰ WASM TTL: live until ledger 121206 (120959 ledgers remaining, ~7.00 days)
1150
+ ⏰ WASM TTL: live until ledger 121273 (120959 ledgers remaining, ~7.00 days)
950
1151
 
951
1152
  stdout | test/upgrader.test.ts > Upgrader Contract Testing > Contract Deployments > Deploy Test Upgradeable Contract V1
952
1153
  ✅ Test Contract V1 WASM uploaded, hash: 98a1e80e28f1ff1c1ee5b0616b874e41eff1a3f3a63e9de8d9f7e914c1ee8c17
953
1154
  🚀 Deploying Test Contract V1...
954
1155
 
955
1156
  stdout | test/upgrader.test.ts > Upgrader Contract Testing > Contract Deployments > Deploy Test Upgradeable Contract V1
956
- ✅ Test Contract V1 deployed at: CC7T4NBA52REBSSETWAAYT4M6XEIJAWDFWZRXU7L6NYGIVAERPFCPCEQ
1157
+ ✅ Test Contract V1 deployed at: CALH2CLPVTN3MC2UIBJRSBURS4Y3LMQ3TMIB7OIYXSR42HT5BRVKLPH7
957
1158
 
958
1159
  stdout | test/upgrader.test.ts > Upgrader Contract Testing > Contract Deployments > Verify Test Contract V1 Counter
959
1160
  ✅ Test Contract V1 counter value: 1
@@ -966,14 +1167,14 @@ Deploying SAC for asset: OFT:GCGIA426MAHY6RWYU3LKGKMWKLJRDAP675SXL2EEQB33TVPRTYF
966
1167
  💰 Upload transaction fee: 7953801 stroops (0.7953801 XLM)
967
1168
 
968
1169
  stdout | test/upgrader.test.ts > Upgrader Contract Testing > Upgrade Workflow > Upload Test Contract V2 WASM
969
- ⏰ WASM TTL: live until ledger 121209 (120959 ledgers remaining, ~7.00 days)
1170
+ ⏰ WASM TTL: live until ledger 121275 (120959 ledgers remaining, ~7.00 days)
970
1171
 
971
1172
  stdout | test/upgrader.test.ts > Upgrader Contract Testing > Upgrade Workflow > Upload Test Contract V2 WASM
972
1173
  ✅ Test Contract V2 WASM uploaded, hash: 7d1325b2b683099974089972a3b52573b5bd090e474c56be1d7759baaa0f227e
973
1174
 
974
1175
  stdout | test/upgrader.test.ts > Upgrader Contract Testing > Upgrade Workflow > Test Upgrader Contract Can Be Called
975
1176
  🔄 Testing upgrader contract call...
976
- Contract address: CC7T4NBA52REBSSETWAAYT4M6XEIJAWDFWZRXU7L6NYGIVAERPFCPCEQ
1177
+ Contract address: CALH2CLPVTN3MC2UIBJRSBURS4Y3LMQ3TMIB7OIYXSR42HT5BRVKLPH7
977
1178
  New WASM hash: 7d1325b2b683099974089972a3b52573b5bd090e474c56be1d7759baaa0f227e
978
1179
 
979
1180
  stdout | test/upgrader.test.ts > Upgrader Contract Testing > Upgrade Workflow > Test Upgrader Contract Can Be Called
@@ -992,7 +1193,7 @@ Deploying SAC for asset: OFT:GCGIA426MAHY6RWYU3LKGKMWKLJRDAP675SXL2EEQB33TVPRTYF
992
1193
  ✅ Transaction envelope signed
993
1194
 
994
1195
  stdout | test/upgrader.test.ts > Upgrader Contract Testing > Upgrade Workflow > Test Upgrader Contract Can Be Called
995
- ✅ Transaction sent, hash: eb3d180500470ecc025cdb018bf5417ef87306073008200a3ed917c961361cd3
1196
+ ✅ Transaction sent, hash: bbc415b87df664e2fbf8e901d5314611dee44edd00ea539c5c035a6790c48744
996
1197
 
997
1198
  stdout | test/upgrader.test.ts > Upgrader Contract Testing > Upgrade Workflow > Test Upgrader Contract Can Be Called
998
1199
  ✅ Upgrade transaction completed
@@ -1004,17 +1205,17 @@ Deploying SAC for asset: OFT:GCGIA426MAHY6RWYU3LKGKMWKLJRDAP675SXL2EEQB33TVPRTYF
1004
1205
  stdout | test/upgrader.test.ts > Upgrader Contract Testing > Upgrade Workflow > Verify Test Contract V1 Counter Still Works After Upgrade
1005
1206
  ✅ Test Contract V2 counter value (from V1): 1
1006
1207
 
1007
- ✓ test/upgrader.test.ts (7 tests) 11041ms
1008
- ✓ Upgrader Contract Testing > Contract Deployments > Deploy Upgrader Contract  4622ms
1009
- ✓ Upgrader Contract Testing > Contract Deployments > Deploy Test Upgradeable Contract V1  2132ms
1010
- ✓ Upgrader Contract Testing > Upgrade Workflow > Upload Test Contract V2 WASM  2087ms
1011
- ✓ Upgrader Contract Testing > Upgrade Workflow > Test Upgrader Contract Can Be Called  2097ms
1208
+ ✓ test/upgrader.test.ts (7 tests) 7580ms
1209
+ ✓ Upgrader Contract Testing > Contract Deployments > Deploy Upgrader Contract  3129ms
1210
+ ✓ Upgrader Contract Testing > Contract Deployments > Deploy Test Upgradeable Contract V1  2162ms
1211
+ ✓ Upgrader Contract Testing > Upgrade Workflow > Upload Test Contract V2 WASM  1089ms
1212
+ ✓ Upgrader Contract Testing > Upgrade Workflow > Test Upgrader Contract Can Be Called  1092ms
1012
1213
 
1013
1214
   Test Files  4 passed (4)
1014
-  Tests  55 passed (55)
1215
+  Tests  61 passed (61)
1015
1216
  Type Errors  no errors
1016
-  Start at  21:11:36
1017
-  Duration  278.12s (transform 467ms, setup 0ms, collect 770ms, tests 92.83s, environment 0ms, prepare 81ms)
1217
+  Start at  04:12:19
1218
+  Duration  347.89s (transform 973ms, setup 0ms, collect 2.89s, tests 104.82s, environment 0ms, prepare 196ms)
1018
1219
 
1019
1220
 
1020
1221
  ========================================