@layerzerolabs/protocol-stellar-v2 0.2.19 → 0.2.21

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 (249) hide show
  1. package/.turbo/turbo-build.log +795 -791
  2. package/.turbo/turbo-lint.log +325 -155
  3. package/.turbo/turbo-test.log +1398 -1277
  4. package/Cargo.lock +122 -111
  5. package/Cargo.toml +32 -16
  6. package/contracts/common-macros/Cargo.toml +7 -7
  7. package/contracts/common-macros/src/auth.rs +18 -37
  8. package/contracts/common-macros/src/contract_ttl.rs +18 -7
  9. package/contracts/common-macros/src/lib.rs +31 -14
  10. package/contracts/common-macros/src/lz_contract.rs +38 -7
  11. package/contracts/common-macros/src/storage.rs +251 -292
  12. package/contracts/common-macros/src/tests/contract_ttl.rs +1 -1
  13. package/contracts/common-macros/src/tests/snapshots/common_macros__tests__auth__snapshot_generated_multisig_code.snap +6 -12
  14. package/contracts/common-macros/src/tests/snapshots/common_macros__tests__auth__snapshot_generated_ownable_code.snap +12 -17
  15. package/contracts/common-macros/src/tests/snapshots/common_macros__tests__contract_ttl__snapshot_generated_contractimpl_code.snap +2 -1
  16. package/contracts/common-macros/src/tests/snapshots/common_macros__tests__ttl_configurable__snapshot_generated_ttl_configurable_code.snap +2 -7
  17. package/contracts/common-macros/src/tests/snapshots/common_macros__tests__upgradeable__snapshot_generated_upgradeable_code.snap +20 -14
  18. package/contracts/common-macros/src/tests/upgradeable.rs +26 -4
  19. package/contracts/common-macros/src/ttl_configurable.rs +2 -10
  20. package/contracts/common-macros/src/ttl_extendable.rs +2 -10
  21. package/contracts/common-macros/src/upgradeable.rs +61 -26
  22. package/contracts/common-macros/src/utils.rs +0 -9
  23. package/contracts/endpoint-v2/src/lib.rs +3 -2
  24. package/contracts/endpoint-v2/src/tests/endpoint_v2/clear.rs +2 -2
  25. package/contracts/endpoint-v2/src/tests/endpoint_v2/lz_receive_alert.rs +3 -3
  26. package/contracts/endpoint-v2/src/tests/endpoint_v2/send.rs +4 -4
  27. package/contracts/endpoint-v2/src/tests/endpoint_v2/set_delegate.rs +17 -5
  28. package/contracts/endpoint-v2/src/tests/endpoint_v2/set_zro.rs +4 -4
  29. package/contracts/endpoint-v2/src/tests/endpoint_v2/verify.rs +2 -2
  30. package/contracts/endpoint-v2/src/tests/message_lib_manager/register_library.rs +2 -2
  31. package/contracts/endpoint-v2/src/tests/message_lib_manager/set_default_receive_lib_timeout.rs +6 -6
  32. package/contracts/endpoint-v2/src/tests/message_lib_manager/set_default_receive_library.rs +67 -37
  33. package/contracts/endpoint-v2/src/tests/message_lib_manager/set_default_send_library.rs +5 -5
  34. package/contracts/endpoint-v2/src/tests/message_lib_manager/set_receive_library.rs +44 -54
  35. package/contracts/endpoint-v2/src/tests/message_lib_manager/set_receive_library_timeout.rs +7 -7
  36. package/contracts/endpoint-v2/src/tests/message_lib_manager/set_send_library.rs +8 -8
  37. package/contracts/endpoint-v2/src/tests/messaging_channel/burn.rs +3 -3
  38. package/contracts/endpoint-v2/src/tests/messaging_channel/nilify.rs +4 -4
  39. package/contracts/endpoint-v2/src/tests/messaging_channel/skip.rs +3 -3
  40. package/contracts/endpoint-v2/src/tests/messaging_composer/clear_compose.rs +2 -2
  41. package/contracts/endpoint-v2/src/tests/messaging_composer/lz_compose_alert.rs +3 -3
  42. package/contracts/endpoint-v2/src/tests/messaging_composer/send_compose.rs +2 -2
  43. package/contracts/layerzero-views/Cargo.toml +0 -1
  44. package/contracts/layerzero-views/src/layerzero_view.rs +1 -13
  45. package/contracts/macro-integration-tests/Cargo.toml +5 -15
  46. package/contracts/macro-integration-tests/tests/runtime/oapp/mod.rs +48 -0
  47. package/contracts/macro-integration-tests/tests/runtime/oapp/oapp_core.rs +170 -0
  48. package/contracts/macro-integration-tests/tests/runtime/oapp/options_type3.rs +154 -0
  49. package/contracts/macro-integration-tests/tests/runtime/oapp/receiver.rs +338 -0
  50. package/contracts/macro-integration-tests/tests/runtime/oapp/sender.rs +435 -0
  51. package/contracts/macro-integration-tests/tests/runtime.rs +1 -0
  52. package/contracts/macro-integration-tests/tests/ui/oapp/fail/custom_wrong_value.rs +8 -0
  53. package/contracts/macro-integration-tests/tests/ui/oapp/fail/custom_wrong_value.stderr +5 -0
  54. package/contracts/macro-integration-tests/tests/ui/oapp/fail/missing_lz_receive_internal.rs +8 -0
  55. package/contracts/macro-integration-tests/tests/ui/oapp/fail/missing_lz_receive_internal.stderr +71 -0
  56. package/contracts/macro-integration-tests/tests/ui/oapp/fail/non_struct_input.rs +10 -0
  57. package/contracts/macro-integration-tests/tests/ui/oapp/fail/non_struct_input.stderr +5 -0
  58. package/contracts/macro-integration-tests/tests/ui/oapp/fail/unknown_custom_option.rs +8 -0
  59. package/contracts/macro-integration-tests/tests/ui/oapp/fail/unknown_custom_option.stderr +5 -0
  60. package/contracts/macro-integration-tests/tests/ui/oapp/fail/wrong_key.rs +8 -0
  61. package/contracts/macro-integration-tests/tests/ui/oapp/fail/wrong_key.stderr +5 -0
  62. package/contracts/macro-integration-tests/tests/ui/oapp/pass/custom_all.rs +38 -0
  63. package/contracts/macro-integration-tests/tests/ui/oapp/pass/custom_single_trait.rs +96 -0
  64. package/contracts/macro-integration-tests/tests/ui/oapp/pass/minimal_contract.rs +64 -0
  65. package/contracts/macro-integration-tests/tests/ui/oapp/pass/struct_with_fields.rs +46 -0
  66. package/contracts/macro-integration-tests/tests/ui/ownable/fail/only_auth_missing_env.stderr +8 -0
  67. package/contracts/macro-integration-tests/tests/ui/ownable/pass/namespacing_and_imports.rs +1 -1
  68. package/contracts/macro-integration-tests/tests/ui/ownable/pass/only_auth_env_param_variants.rs +1 -1
  69. package/contracts/macro-integration-tests/tests/ui_oapp.rs +11 -0
  70. package/contracts/message-libs/message-lib-common/Cargo.toml +0 -1
  71. package/contracts/message-libs/message-lib-common/src/errors.rs +1 -1
  72. package/contracts/message-libs/treasury/Cargo.toml +0 -2
  73. package/contracts/message-libs/treasury/src/tests/treasury_tests.rs +2 -2
  74. package/contracts/message-libs/uln-302/src/events.rs +4 -0
  75. package/contracts/message-libs/uln-302/src/send_uln.rs +22 -6
  76. package/contracts/message-libs/uln-302/src/tests/receive_uln302/effective_receive_uln_config.rs +2 -2
  77. package/contracts/message-libs/uln-302/src/tests/receive_uln302/set_default_receive_uln_configs.rs +2 -2
  78. package/contracts/message-libs/uln-302/src/tests/receive_uln302/verify.rs +2 -2
  79. package/contracts/message-libs/uln-302/src/tests/send_uln302/effective_executor_config.rs +2 -2
  80. package/contracts/message-libs/uln-302/src/tests/send_uln302/effective_send_uln_config.rs +2 -2
  81. package/contracts/message-libs/uln-302/src/tests/send_uln302/send.rs +21 -67
  82. package/contracts/message-libs/uln-302/src/tests/send_uln302/set_default_executor_configs.rs +2 -2
  83. package/contracts/message-libs/uln-302/src/tests/send_uln302/set_default_send_uln_configs.rs +2 -2
  84. package/contracts/oapps/counter/Cargo.toml +5 -6
  85. package/contracts/oapps/counter/integration_tests/setup_uln.rs +1 -1
  86. package/contracts/oapps/counter/integration_tests/utils.rs +19 -12
  87. package/contracts/oapps/oapp/src/errors.rs +1 -1
  88. package/contracts/oapps/oapp/src/interfaces/mod.rs +3 -0
  89. package/contracts/oapps/oapp/src/interfaces/oapp_msg_inspector.rs +47 -0
  90. package/contracts/oapps/oapp/src/lib.rs +1 -0
  91. package/contracts/oapps/oapp/src/macro_tests/test_macros.rs +4 -4
  92. package/contracts/oapps/oapp/src/oapp_core.rs +5 -5
  93. package/contracts/oapps/oapp/src/oapp_options_type3.rs +12 -4
  94. package/contracts/oapps/oapp/src/oapp_receiver.rs +14 -9
  95. package/contracts/oapps/oapp/src/tests/mod.rs +4 -4
  96. package/contracts/oapps/oapp/src/tests/oapp_core.rs +223 -0
  97. package/contracts/oapps/oapp/src/tests/oapp_options_type3.rs +240 -0
  98. package/contracts/oapps/oapp/src/tests/oapp_receiver.rs +381 -0
  99. package/contracts/oapps/oapp/src/tests/oapp_sender.rs +569 -0
  100. package/contracts/oapps/oapp-macros/Cargo.toml +8 -4
  101. package/contracts/oapps/oapp-macros/src/generators.rs +9 -34
  102. package/contracts/oapps/oapp-macros/src/lib.rs +3 -0
  103. package/contracts/oapps/oapp-macros/src/tests/mod.rs +2 -0
  104. package/contracts/oapps/oapp-macros/src/tests/oapp.rs +88 -0
  105. package/contracts/oapps/oapp-macros/src/tests/parse_custom_impls.rs +86 -0
  106. package/contracts/oapps/oapp-macros/src/tests/snapshots/oapp_macros__tests__oapp__snapshot_generate_oapp.snap +103 -0
  107. package/contracts/oapps/oft/integration-tests/utils.rs +28 -8
  108. package/contracts/oapps/oft/src/extensions/oft_fee.rs +153 -75
  109. package/contracts/oapps/oft/src/extensions/pausable.rs +61 -12
  110. package/contracts/oapps/oft/src/extensions/rate_limiter.rs +198 -134
  111. package/contracts/oapps/oft/src/oft.rs +45 -50
  112. package/contracts/oapps/oft/src/oft_types/lock_unlock.rs +1 -1
  113. package/contracts/oapps/oft/src/oft_types/mint_burn.rs +4 -26
  114. package/contracts/oapps/oft-core/Cargo.toml +1 -4
  115. package/contracts/oapps/oft-core/integration-tests/setup.rs +3 -3
  116. package/contracts/oapps/oft-core/integration-tests/utils.rs +21 -3
  117. package/contracts/oapps/oft-core/src/errors.rs +3 -2
  118. package/contracts/oapps/oft-core/src/events.rs +6 -0
  119. package/contracts/oapps/oft-core/src/lib.rs +1 -1
  120. package/contracts/oapps/oft-core/src/oft_core.rs +341 -246
  121. package/contracts/oapps/oft-core/src/storage.rs +7 -3
  122. package/contracts/oapps/oft-core/src/tests/mod.rs +1 -0
  123. package/contracts/oapps/oft-core/src/tests/test_decimals.rs +37 -2
  124. package/contracts/oapps/oft-core/src/tests/test_lz_receive.rs +2 -2
  125. package/contracts/oapps/oft-core/src/tests/test_msg_inspector.rs +323 -0
  126. package/contracts/oapps/oft-core/src/tests/test_send.rs +2 -2
  127. package/contracts/oapps/oft-core/src/tests/test_utils.rs +61 -16
  128. package/contracts/upgrader/src/lib.rs +30 -57
  129. package/contracts/upgrader/src/tests/test_data/test_upgradeable_contract1.wasm +0 -0
  130. package/contracts/upgrader/src/tests/test_data/test_upgradeable_contract2.wasm +0 -0
  131. package/contracts/upgrader/src/tests/test_upgrader.rs +44 -35
  132. package/contracts/utils/Cargo.toml +0 -1
  133. package/contracts/utils/src/buffer_reader.rs +1 -0
  134. package/contracts/utils/src/errors.rs +4 -2
  135. package/contracts/utils/src/multisig.rs +17 -8
  136. package/contracts/utils/src/ownable.rs +6 -6
  137. package/contracts/utils/src/testing_utils.rs +124 -54
  138. package/contracts/utils/src/tests/multisig.rs +12 -12
  139. package/contracts/utils/src/tests/ownable.rs +6 -6
  140. package/contracts/utils/src/tests/testing_utils.rs +50 -167
  141. package/contracts/utils/src/tests/ttl_configurable.rs +5 -5
  142. package/contracts/utils/src/tests/upgradeable.rs +372 -175
  143. package/contracts/utils/src/ttl_configurable.rs +13 -7
  144. package/contracts/utils/src/upgradeable.rs +48 -23
  145. package/contracts/workers/dvn/Cargo.toml +6 -6
  146. package/contracts/workers/dvn/src/auth.rs +12 -42
  147. package/contracts/workers/dvn/src/dvn.rs +15 -40
  148. package/contracts/workers/dvn/src/errors.rs +0 -1
  149. package/contracts/workers/dvn/src/interfaces/dvn.rs +35 -0
  150. package/contracts/workers/dvn/src/lib.rs +4 -3
  151. package/contracts/workers/dvn/src/tests/auth.rs +1 -1
  152. package/contracts/workers/dvn/src/tests/dvn.rs +19 -15
  153. package/contracts/workers/dvn/src/tests/multisig/set_threshold.rs +2 -4
  154. package/contracts/workers/dvn/src/tests/multisig/verify_signatures.rs +1 -3
  155. package/contracts/workers/dvn/src/tests/setup.rs +5 -9
  156. package/contracts/workers/dvn-fee-lib/Cargo.toml +2 -2
  157. package/contracts/workers/dvn-fee-lib/src/dvn_fee_lib.rs +38 -22
  158. package/contracts/workers/dvn-fee-lib/src/lib.rs +12 -2
  159. package/contracts/workers/dvn-fee-lib/src/tests/dvn_fee_lib.rs +17 -16
  160. package/contracts/workers/executor/Cargo.toml +4 -0
  161. package/contracts/workers/executor/src/executor.rs +15 -36
  162. package/contracts/workers/executor/src/lib.rs +2 -2
  163. package/contracts/workers/executor/src/tests/auth.rs +394 -0
  164. package/contracts/workers/executor/src/tests/executor.rs +410 -0
  165. package/contracts/workers/executor/src/tests/mod.rs +3 -0
  166. package/contracts/workers/executor/src/tests/setup.rs +250 -0
  167. package/contracts/workers/executor-fee-lib/Cargo.toml +7 -1
  168. package/contracts/workers/executor-fee-lib/src/executor_fee_lib.rs +62 -15
  169. package/contracts/workers/executor-fee-lib/src/executor_option.rs +28 -1
  170. package/contracts/workers/executor-fee-lib/src/lib.rs +11 -2
  171. package/contracts/workers/executor-fee-lib/src/tests/executor_fee_lib.rs +701 -0
  172. package/contracts/workers/executor-fee-lib/src/tests/executor_option.rs +370 -0
  173. package/contracts/workers/executor-fee-lib/src/tests/mod.rs +4 -0
  174. package/contracts/workers/executor-fee-lib/src/tests/setup.rs +60 -0
  175. package/contracts/workers/executor-helper/Cargo.toml +0 -1
  176. package/contracts/workers/executor-helper/src/lib.rs +3 -0
  177. package/contracts/workers/executor-helper/src/tests/executor_helper.rs +184 -0
  178. package/contracts/workers/executor-helper/src/tests/mod.rs +2 -0
  179. package/contracts/workers/executor-helper/src/tests/setup.rs +366 -0
  180. package/contracts/workers/fee-lib-interfaces/Cargo.toml +14 -0
  181. package/contracts/workers/{worker/src/interfaces/mod.rs → fee-lib-interfaces/src/lib.rs} +4 -3
  182. package/contracts/workers/price-feed/Cargo.toml +7 -1
  183. package/contracts/workers/price-feed/src/events.rs +1 -1
  184. package/contracts/workers/price-feed/src/lib.rs +12 -4
  185. package/contracts/workers/price-feed/src/price_feed.rs +5 -21
  186. package/contracts/workers/price-feed/src/storage.rs +1 -1
  187. package/contracts/workers/price-feed/src/tests/mod.rs +2 -0
  188. package/contracts/workers/price-feed/src/tests/price_feed.rs +869 -0
  189. package/contracts/workers/price-feed/src/tests/setup.rs +70 -0
  190. package/contracts/workers/price-feed/src/types.rs +1 -1
  191. package/contracts/workers/worker/src/errors.rs +1 -4
  192. package/contracts/workers/worker/src/lib.rs +0 -2
  193. package/contracts/workers/worker/src/storage.rs +32 -29
  194. package/contracts/workers/worker/src/tests/setup.rs +2 -8
  195. package/contracts/workers/worker/src/tests/worker.rs +96 -74
  196. package/contracts/workers/worker/src/worker.rs +75 -75
  197. package/docs/error-spec.md +55 -0
  198. package/docs/layerzero-v2-on-stellar.md +447 -0
  199. package/docs/oapp-guide.md +212 -0
  200. package/docs/oft-guide.md +314 -0
  201. package/package.json +3 -3
  202. package/sdk/.turbo/turbo-test.log +268 -263
  203. package/sdk/dist/generated/bml.d.ts +12 -4
  204. package/sdk/dist/generated/bml.js +9 -7
  205. package/sdk/dist/generated/counter.d.ts +306 -298
  206. package/sdk/dist/generated/counter.js +48 -46
  207. package/sdk/dist/generated/dvn.d.ts +450 -411
  208. package/sdk/dist/generated/dvn.js +66 -64
  209. package/sdk/dist/generated/dvn_fee_lib.d.ts +294 -338
  210. package/sdk/dist/generated/dvn_fee_lib.js +33 -64
  211. package/sdk/dist/generated/endpoint.d.ts +108 -100
  212. package/sdk/dist/generated/endpoint.js +21 -19
  213. package/sdk/dist/generated/executor.d.ts +414 -370
  214. package/sdk/dist/generated/executor.js +58 -55
  215. package/sdk/dist/generated/executor_fee_lib.d.ts +333 -377
  216. package/sdk/dist/generated/executor_fee_lib.js +34 -65
  217. package/sdk/dist/generated/executor_helper.d.ts +26 -190
  218. package/sdk/dist/generated/executor_helper.js +23 -28
  219. package/sdk/dist/generated/layerzero_view.d.ts +1271 -0
  220. package/sdk/dist/generated/layerzero_view.js +294 -0
  221. package/sdk/dist/generated/oft.d.ts +408 -385
  222. package/sdk/dist/generated/oft.js +89 -92
  223. package/sdk/dist/generated/price_feed.d.ts +385 -429
  224. package/sdk/dist/generated/price_feed.js +50 -81
  225. package/sdk/dist/generated/sml.d.ts +108 -100
  226. package/sdk/dist/generated/sml.js +21 -19
  227. package/sdk/dist/generated/treasury.d.ts +108 -100
  228. package/sdk/dist/generated/treasury.js +21 -19
  229. package/sdk/dist/generated/uln302.d.ts +108 -100
  230. package/sdk/dist/generated/uln302.js +23 -21
  231. package/sdk/dist/generated/upgrader.d.ts +189 -18
  232. package/sdk/dist/generated/upgrader.js +84 -4
  233. package/sdk/dist/index.d.ts +1 -0
  234. package/sdk/dist/index.js +2 -0
  235. package/sdk/package.json +1 -1
  236. package/sdk/src/index.ts +3 -0
  237. package/sdk/test/oft-sml.test.ts +4 -4
  238. package/sdk/test/suites/localnet.ts +84 -20
  239. package/sdk/test/upgrader.test.ts +2 -3
  240. package/tools/ts-bindings-gen/src/main.rs +2 -1
  241. package/contracts/ERROR_SPEC.md +0 -44
  242. package/contracts/endpoint-v2/ARCHITECTURE.md +0 -233
  243. package/contracts/oapps/oapp/src/tests/test_oapp_core.rs +0 -175
  244. package/contracts/oapps/oapp/src/tests/test_oapp_options_type3.rs +0 -212
  245. package/contracts/oapps/oapp/src/tests/test_oapp_receiver.rs +0 -153
  246. package/contracts/oapps/oapp/src/tests/test_oapp_sender.rs +0 -294
  247. /package/contracts/workers/{worker/src/interfaces → fee-lib-interfaces/src}/dvn_fee_lib.rs +0 -0
  248. /package/contracts/workers/{worker/src/interfaces → fee-lib-interfaces/src}/executor_fee_lib.rs +0 -0
  249. /package/contracts/workers/{worker/src/interfaces → fee-lib-interfaces/src}/price_feed.rs +0 -0
@@ -14,56 +14,59 @@ Breaking changes might not follow SemVer, please pin Vitest's version when using
14
14
 
15
15
  🚀 Starting Stellar localnet...
16
16
  Error response from daemon: No such container: stellar-localnet
17
- 📥 Pulling stellar/quickstart...
18
- Failed to fund account Error: read ECONNRESET
19
- Waiting for Stellar localnet to start...
20
- Failed to fund account Error: read ECONNRESET
21
- ⏳ Waiting for Stellar localnet to start...
22
- Failed to fund account Error: read ECONNRESET
23
- ⏳ Waiting for Stellar localnet to start...
24
- Failed to fund account Error: read ECONNRESET
25
- ⏳ Waiting for Stellar localnet to start...
26
- Failed to fund account Error: read ECONNRESET
27
- ⏳ Waiting for Stellar localnet to start...
28
- Failed to fund account Error: read ECONNRESET
29
- ⏳ Waiting for Stellar localnet to start...
30
- Failed to fund account Error: socket hang up
31
- ⏳ Waiting for Stellar localnet to start...
32
- Failed to fund account Error: read ECONNRESET
33
- ⏳ Waiting for Stellar localnet to start...
34
- Failed to fund account Error: read ECONNRESET
35
- ⏳ Waiting for Stellar localnet to start...
36
- Failed to fund account Error: socket hang up
37
- ⏳ Waiting for Stellar localnet to start...
38
- Failed to fund account Error: socket hang up
39
- ⏳ Waiting for Stellar localnet to start...
40
- Failed to fund account AxiosError: Request failed with status code 502
41
- ⏳ Waiting for Stellar localnet to start...
42
- Failed to fund account AxiosError: Request failed with status code 502
43
- ⏳ Waiting for Stellar localnet to start...
44
- Failed to fund account AxiosError: Request failed with status code 502
45
- ⏳ Waiting for Stellar localnet to start...
46
- Failed to fund account AxiosError: Request failed with status code 502
47
- ⏳ Waiting for Stellar localnet to start...
48
- Failed to fund account AxiosError: Request failed with status code 502
49
- ⏳ Waiting for Stellar localnet to start...
50
- Failed to fund account AxiosError: Request failed with status code 502
51
- ⏳ Waiting for Stellar localnet to start...
52
- Failed to fund account AxiosError: Request failed with status code 502
53
- ⏳ Waiting for Stellar localnet to start...
54
- Failed to fund account AxiosError: Request failed with status code 502
55
- ⏳ Waiting for Stellar localnet to start...
56
- Failed to fund account AxiosError: Request failed with status code 502
57
- ⏳ Waiting for Stellar localnet to start...
58
- Failed to fund account AxiosError: Request failed with status code 502
59
- ⏳ Waiting for Stellar localnet to start...
60
- Failed to fund account AxiosError: Request failed with status code 502
61
- ⏳ Waiting for Stellar localnet to start...
62
- Failed to fund account AxiosError: Request failed with status code 502
63
- ⏳ Waiting for Stellar localnet to start...
64
- Account GC3CEFPRE265JEVEHYD7XPVYZ2IB2YA4QLDBGZZIGQYN2CMTSU3O5FHM funded
65
- Account GCG7WDMXVXFSVIZOO3VWZTSWS3UL4ZEFAC3JTCRJEUFD4KUSY7FEGLOB funded
66
- Account GC72DFYB5KMI4IHRX63L3PTJ73XCZD6NM5BLHQOHNNJKNZVIIVMK3RTH funded
17
+ 📥 Pulling stellar/quickstart:testing...
18
+ Waiting for Stellar RPC to be healthy...
19
+ Stellar RPC is healthy
20
+ Waiting for friendbot to be ready...
21
+ [22s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
22
+ [24s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
23
+ [26s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
24
+ [28s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
25
+ [30s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
26
+ [32s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
27
+ [34s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
28
+ [36s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
29
+ [38s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
30
+ [40s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
31
+ [42s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
32
+ [44s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
33
+ [46s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
34
+ [48s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
35
+ [50s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
36
+ [52s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
37
+ [54s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
38
+ [56s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
39
+ [58s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
40
+ [60s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
41
+ [62s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
42
+ [64s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
43
+ [66s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
44
+ [68s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
45
+ [70s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
46
+ [72s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
47
+ [74s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
48
+ [76s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
49
+ [78s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
50
+ [80s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
51
+ [82s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
52
+ [84s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
53
+ [86s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
54
+ [88s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
55
+ [90s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
56
+ [92s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
57
+ [94s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
58
+ [96s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
59
+ [98s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
60
+ [100s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
61
+ [102s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
62
+ [104s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
63
+ [106s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
64
+ [108s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
65
+ [110s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
66
+ [112s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
67
+ ✅ Account DEFAULT_DEPLOYER (GC3CEFPRE265JEVEHYD7XPVYZ2IB2YA4QLDBGZZIGQYN2CMTSU3O5FHM) funded
68
+ ✅ Account ZRO_DISTRIBUTOR (GCG7WDMXVXFSVIZOO3VWZTSWS3UL4ZEFAC3JTCRJEUFD4KUSY7FEGLOB) funded
69
+ ✅ Account EXECUTOR_ADMIN (GC72DFYB5KMI4IHRX63L3PTJ73XCZD6NM5BLHQOHNNJKNZVIIVMK3RTH) funded
67
70
  ✅ Stellar localnet started
68
71
  Deploying SAC for asset: native
69
72
  ✅ Native SAC deployed
@@ -78,103 +81,103 @@ Deploying SAC for asset: ZRO:GC3CEFPRE265JEVEHYD7XPVYZ2IB2YA4QLDBGZZIGQYN2CMTSU3
78
81
  🚀 Deploying Endpoint...
79
82
  📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/endpoint_v2.wasm
80
83
  📤 Uploading WASM...
81
- 📦 WASM buffer size: 58849 bytes (57.47 KB)
82
- 💰 Upload transaction fee: 33655946 stroops (3.3655946 XLM)
83
- ⏰ WASM TTL: live until ledger 120983 (120959 ledgers remaining, ~7.00 days)
84
- ✅ WASM uploaded, hash: d7c15e83a1ac049aa09b98bdf584d2eee06cbc273de60ec732ab08f67f5a9b9d
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
85
88
  🚀 Deploying contract...
86
- ✅ Contract deployed at: CCYHNLAKLLLV4OSKM7YTYPIN2URC6XAXRSPWGCWCGAJT5LYAUNMV5DUV
87
- ✅ Endpoint deployed: CCYHNLAKLLLV4OSKM7YTYPIN2URC6XAXRSPWGCWCGAJT5LYAUNMV5DUV
89
+ ✅ Contract deployed at: CCPTRUANJUH2YDEMMNFTRLHNCUAUJVMCQLXE3OYYQQEEKHXBFFXAIO3Z
90
+ ✅ Endpoint deployed: CCPTRUANJUH2YDEMMNFTRLHNCUAUJVMCQLXE3OYYQQEEKHXBFFXAIO3Z
88
91
  🚀 Deploying Treasury...
89
92
  📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/treasury.wasm
90
93
  📤 Uploading WASM...
91
- 📦 WASM buffer size: 27240 bytes (26.60 KB)
92
- 💰 Upload transaction fee: 12086106 stroops (1.2086106 XLM)
93
- ⏰ WASM TTL: live until ledger 120988 (120959 ledgers remaining, ~7.00 days)
94
- ✅ WASM uploaded, hash: 1bfeb72123ffa91ac90e056f03dc8b2370a5d6563e5cedc9495b175d1e8caf20
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
95
98
  🚀 Deploying contract...
96
- ✅ Contract deployed at: CDLJ5VJTUIK7UWYONJSOOA3JBE6L3OR76SUT4TUZMX7IHTYZERM27WZX
97
- ✅ Treasury deployed: CDLJ5VJTUIK7UWYONJSOOA3JBE6L3OR76SUT4TUZMX7IHTYZERM27WZX
99
+ ✅ Contract deployed at: CCX7GIHVRRWXAKSHAIO36RD42ENUJLANGNGMP4DGGSPSQ5LUL76RNPKW
100
+ ✅ Treasury deployed: CCX7GIHVRRWXAKSHAIO36RD42ENUJLANGNGMP4DGGSPSQ5LUL76RNPKW
98
101
  🚀 Deploying ULN302...
99
102
  📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/uln302.wasm
100
103
  📤 Uploading WASM...
101
- 📦 WASM buffer size: 57134 bytes (55.79 KB)
102
- 💰 Upload transaction fee: 32687761 stroops (3.2687761 XLM)
103
- ⏰ WASM TTL: live until ledger 120992 (120959 ledgers remaining, ~7.00 days)
104
- ✅ WASM uploaded, hash: c672ec2924162d976095c4cf9d6ea67a02d68d1c8fce2367338f46ccd3265268
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
105
108
  🚀 Deploying contract...
106
- ✅ Contract deployed at: CB3Y42BT777UPHUZKVBHFHMULQ5SLFPPTFHDQ3I3TLCNMPJZ27VZXRVR
107
- ✅ ULN302 deployed: CB3Y42BT777UPHUZKVBHFHMULQ5SLFPPTFHDQ3I3TLCNMPJZ27VZXRVR
109
+ ✅ Contract deployed at: CBQFR5WLFIVELDHM2IWMWHBOKC6NO7L7UTGFJ6WP2LJOBUJMKCZK4OB6
110
+ ✅ ULN302 deployed: CBQFR5WLFIVELDHM2IWMWHBOKC6NO7L7UTGFJ6WP2LJOBUJMKCZK4OB6
108
111
  🚀 Deploying SimpleMessageLib...
109
112
  📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/simple_message_lib.wasm
110
113
  📤 Uploading WASM...
111
- 📦 WASM buffer size: 29063 bytes (28.38 KB)
112
- 💰 Upload transaction fee: 14321765 stroops (1.4321765 XLM)
113
- ⏰ WASM TTL: live until ledger 120996 (120959 ledgers remaining, ~7.00 days)
114
- ✅ WASM uploaded, hash: 00d120a82635e4e4497d07d1233a432efc4301a890ce92b159b977a8b5275462
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
115
118
  🚀 Deploying contract...
116
- ✅ Contract deployed at: CBY5FT36DWEJ5BW4PY5ZBPVZO2ZCVBZOS27OXRVDKEC2HM7XQI7JDQQX
117
- ✅ SimpleMessageLib deployed: CBY5FT36DWEJ5BW4PY5ZBPVZO2ZCVBZOS27OXRVDKEC2HM7XQI7JDQQX
119
+ ✅ Contract deployed at: CDZVL2G3TTVEHD46VTC6QQQQCEYRY4UUAILIPUZU67H3KKFBEFELJGQJ
120
+ ✅ SimpleMessageLib deployed: CDZVL2G3TTVEHD46VTC6QQQQCEYRY4UUAILIPUZU67H3KKFBEFELJGQJ
118
121
  🚀 Deploying Price Feed...
119
122
  📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/price_feed.wasm
120
123
  📤 Uploading WASM...
121
- 📦 WASM buffer size: 34996 bytes (34.18 KB)
122
- 💰 Upload transaction fee: 18592926 stroops (1.8592926 XLM)
123
- ⏰ WASM TTL: live until ledger 120998 (120959 ledgers remaining, ~7.00 days)
124
- ✅ WASM uploaded, hash: cfc1615712a9510f7edc8a62ea2a39bf33e6f9d6717342400e93a23775b55abe
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
125
128
  🚀 Deploying contract...
126
- ✅ Contract deployed at: CCXML7YR3XUU4S73GOMZEJQGF6MPHYGSPEAJYD4WD2HYFD42RGGZLLEM
127
- ✅ Price Feed deployed: CCXML7YR3XUU4S73GOMZEJQGF6MPHYGSPEAJYD4WD2HYFD42RGGZLLEM
129
+ ✅ Contract deployed at: CCWSOS5FZF7D6JMWCQJGDNWPURGY4I46Y377VBBOFLVQXOOQE6MURNQ2
130
+ ✅ Price Feed deployed: CCWSOS5FZF7D6JMWCQJGDNWPURGY4I46Y377VBBOFLVQXOOQE6MURNQ2
128
131
  🚀 Deploying Executor Fee Lib...
129
132
  📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/executor_fee_lib.wasm
130
133
  📤 Uploading WASM...
131
- 📦 WASM buffer size: 35000 bytes (34.18 KB)
132
- 💰 Upload transaction fee: 14674697 stroops (1.4674697 XLM)
133
- ⏰ WASM TTL: live until ledger 121001 (120959 ledgers remaining, ~7.00 days)
134
- ✅ WASM uploaded, hash: 78a68782035118b045c5980b4b7045158774d4469e103175216969efa8b589ba
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
135
138
  🚀 Deploying contract...
136
- ✅ Contract deployed at: CAUL6XZIPGYZO44SKDNZ6DVKLJIYKHIEWI6Y6VSMLHVD7UNSJPBH2ZKP
137
- ✅ Executor Fee Lib deployed: CAUL6XZIPGYZO44SKDNZ6DVKLJIYKHIEWI6Y6VSMLHVD7UNSJPBH2ZKP
139
+ ✅ Contract deployed at: CBQ2254DMWMNCJHOLLBNEHZSPCSWZUVF2NMF6CVYHDZMEOTTQ2GYYKIE
140
+ ✅ Executor Fee Lib deployed: CBQ2254DMWMNCJHOLLBNEHZSPCSWZUVF2NMF6CVYHDZMEOTTQ2GYYKIE
138
141
  🚀 Deploying DVN Fee Lib...
139
142
  📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/dvn_fee_lib.wasm
140
143
  📤 Uploading WASM...
141
- 📦 WASM buffer size: 23312 bytes (22.77 KB)
142
- 💰 Upload transaction fee: 11777082 stroops (1.1777082 XLM)
143
- ⏰ WASM TTL: live until ledger 121005 (120959 ledgers remaining, ~7.00 days)
144
- ✅ WASM uploaded, hash: bc0c5db74d86951e8ef2edf14feb273b5a4eb8d038b3f0d191981161ba98d5dd
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
145
148
  🚀 Deploying contract...
146
- ✅ Contract deployed at: CD3IBAA3JOIPK7KV2XMCUZ7Q2IOLN2OFNUVIODIC6RT5DM3WART5QZRS
147
- ✅ DVN Fee Lib deployed: CD3IBAA3JOIPK7KV2XMCUZ7Q2IOLN2OFNUVIODIC6RT5DM3WART5QZRS
149
+ ✅ Contract deployed at: CAWX5N22ATDMPBXF64FB4V3YMLWMQUGZLMYN3OB7T6BWJ5ZGFSRMT2X3
150
+ ✅ DVN Fee Lib deployed: CAWX5N22ATDMPBXF64FB4V3YMLWMQUGZLMYN3OB7T6BWJ5ZGFSRMT2X3
148
151
  🚀 Deploying DVN...
149
152
  📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/dvn.wasm
150
153
  📤 Uploading WASM...
151
- 📦 WASM buffer size: 56667 bytes (55.34 KB)
152
- 💰 Upload transaction fee: 26661078 stroops (2.6661078 XLM)
153
- ⏰ WASM TTL: live until ledger 121007 (120959 ledgers remaining, ~7.00 days)
154
- ✅ WASM uploaded, hash: 5c52cac1c298d768f8af85192d911b1f33f3885278ff4ae8f05b251c068d02a2
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
155
158
  🚀 Deploying contract...
156
- ✅ Contract deployed at: CA5D2C6V2RHO2ROVKMLAAHW2QWI6PHEIAXU52YKRP7XRRRZZ3NRCXFUX
157
- ✅ DVN deployed: CA5D2C6V2RHO2ROVKMLAAHW2QWI6PHEIAXU52YKRP7XRRRZZ3NRCXFUX
159
+ ✅ Contract deployed at: CDESQGCJI2BSY5ARNOKMD5OS4CSGXKS73KZPTUHTO4GLT7PNPNRQYAME
160
+ ✅ DVN deployed: CDESQGCJI2BSY5ARNOKMD5OS4CSGXKS73KZPTUHTO4GLT7PNPNRQYAME
158
161
  🚀 Deploying Executor Helper...
159
162
  📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/executor_helper.wasm
160
163
  📤 Uploading WASM...
161
- 📦 WASM buffer size: 27792 bytes (27.14 KB)
162
- 💰 Upload transaction fee: 8859204 stroops (0.8859204 XLM)
163
- ⏰ WASM TTL: live until ledger 121011 (120959 ledgers remaining, ~7.00 days)
164
- ✅ WASM uploaded, hash: 5103971ef8c9ef09d1add5a8471f46323505ab6a40f02656f2b3f6012a7ccf9e
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
165
168
  🚀 Deploying contract...
166
- ✅ Contract deployed at: CAUJQ5S6UC5HDLFVYYVDZULNXPQVRUQTZQICZ7MTN7IUUWQBZD3YOP2A
167
- ✅ Executor Helper deployed: CAUJQ5S6UC5HDLFVYYVDZULNXPQVRUQTZQICZ7MTN7IUUWQBZD3YOP2A
169
+ ✅ Contract deployed at: CCOFEESMY4XA4JWUMKYAGIKOVONPTXENZXJVBIMWQOQTFQADMGHH7255
170
+ ✅ Executor Helper deployed: CCOFEESMY4XA4JWUMKYAGIKOVONPTXENZXJVBIMWQOQTFQADMGHH7255
168
171
  🚀 Deploying Executor...
169
172
  📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/executor.wasm
170
173
  📤 Uploading WASM...
171
- 📦 WASM buffer size: 56028 bytes (54.71 KB)
172
- 💰 Upload transaction fee: 25360436 stroops (2.5360436 XLM)
173
- ⏰ WASM TTL: live until ledger 121013 (120959 ledgers remaining, ~7.00 days)
174
- ✅ WASM uploaded, hash: 8292af76dd7a2983d4ba9b224c35ec25fdf9e43803307e90ff50529a63afdf04
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
175
178
  🚀 Deploying contract...
176
- ✅ Contract deployed at: CBH5IW337SJR27M7MAI46P2ISUTZS5IAFHECT5WWM7ECO4IIJJJNZMZ6
177
- ✅ Executor deployed: CBH5IW337SJR27M7MAI46P2ISUTZS5IAFHECT5WWM7ECO4IIJJJNZMZ6
179
+ ✅ Contract deployed at: CCGANXSRKYEDVQARDFK4EYFDFLUYFAF5ZMSAC6F6EZSSGSNFBD5WSGQV
180
+ ✅ Executor deployed: CCGANXSRKYEDVQARDFK4EYFDFLUYFAF5ZMSAC6F6EZSSGSNFBD5WSGQV
178
181
 
179
182
  ========================================
180
183
  🔗 GLOBAL SETUP: Wiring Protocol Contracts
@@ -200,59 +203,59 @@ Deploying SAC for asset: ZRO:GC3CEFPRE265JEVEHYD7XPVYZ2IB2YA4QLDBGZZIGQYN2CMTSU3
200
203
  stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML)
201
204
  
202
205
  📋 Protocol addresses injected from globalSetup
203
- Endpoint: CCYHNLAKLLLV4OSKM7YTYPIN2URC6XAXRSPWGCWCGAJT5LYAUNMV5DUV
204
- SML: CBY5FT36DWEJ5BW4PY5ZBPVZO2ZCVBZOS27OXRVDKEC2HM7XQI7JDQQX
205
- Executor: CBH5IW337SJR27M7MAI46P2ISUTZS5IAFHECT5WWM7ECO4IIJJJNZMZ6
206
- Executor Helper: CAUJQ5S6UC5HDLFVYYVDZULNXPQVRUQTZQICZ7MTN7IUUWQBZD3YOP2A
206
+ Endpoint: CCPTRUANJUH2YDEMMNFTRLHNCUAUJVMCQLXE3OYYQQEEKHXBFFXAIO3Z
207
+ SML: CDZVL2G3TTVEHD46VTC6QQQQCEYRY4UUAILIPUZU67H3KKFBEFELJGQJ
208
+ Executor: CCGANXSRKYEDVQARDFK4EYFDFLUYFAF5ZMSAC6F6EZSSGSNFBD5WSGQV
209
+ Executor Helper: CCOFEESMY4XA4JWUMKYAGIKOVONPTXENZXJVBIMWQOQTFQADMGHH7255
207
210
 
208
211
  stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Deploy OFT Contracts > Deploy OFT Token SAC
209
212
  ✅ OFT token issued to DEFAULT_DEPLOYER
210
- Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHPAOMOH
213
+ Deploying SAC for asset: OFT:GCGIA426MAHY6RWYU3LKGKMWKLJRDAP675SXL2EEQB33TVPRTYF4F522
211
214
 
212
215
  stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Deploy OFT Contracts > Deploy OFT Token SAC
213
- ✅ OFT Token SAC deployed: CCD3GEM3LBIO6FXCWDHRTYFFSZCZYKMWIPXII4TQUAQEB6ZNY5NHXX2V
216
+ ✅ OFT Token SAC deployed: CAJBW7DPRVEHANBZ6LSA22XCOA2CGUIX2JSEC5VMME5DZNJQCEOIUOJT
214
217
 
215
218
  stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Deploy OFT Contracts > Deploy Lock/Unlock OFT
216
219
  📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/oft.wasm
217
220
  📤 Uploading WASM...
218
- 📦 WASM buffer size: 59520 bytes (58.13 KB)
221
+ 📦 WASM buffer size: 61037 bytes (59.61 KB)
219
222
 
220
223
  stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Deploy OFT Contracts > Deploy Lock/Unlock OFT
221
- 💰 Upload transaction fee: 32674742 stroops (3.2674742 XLM)
224
+ 💰 Upload transaction fee: 32904331 stroops (3.2904331 XLM)
222
225
 
223
226
  stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Deploy OFT Contracts > Deploy Lock/Unlock OFT
224
- ⏰ WASM TTL: live until ledger 121045 (120959 ledgers remaining, ~7.00 days)
227
+ ⏰ WASM TTL: live until ledger 121128 (120959 ledgers remaining, ~7.00 days)
225
228
 
226
229
  stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Deploy OFT Contracts > Deploy Lock/Unlock OFT
227
- ✅ WASM uploaded, hash: 1b2ae0ec201aefddd7d1aadd4c9fdafa9addc742333490b509be519b5e01869b
230
+ ✅ WASM uploaded, hash: 6ded194b3d2189d1ab1b2bb0c877f3f758363aff666fbff8a67c25b545bad453
228
231
  🚀 Deploying contract...
229
232
 
230
233
  stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Deploy OFT Contracts > Deploy Lock/Unlock OFT
231
- ✅ Contract deployed at: CC732CRT5H25UCCIKNU7ZVHYJY2HOGOWJEZSNQVC2NMEZNXJPBPBP347
234
+ ✅ Contract deployed at: CDIXNIIZL2ZU22PRZVP5JXELIHF2BLTW3VD2IRPTFXTC7HURJ7VBSOJ6
232
235
 
233
236
  stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Deploy OFT Contracts > Deploy Lock/Unlock OFT
234
- ✅ Lock/Unlock OFT deployed: CC732CRT5H25UCCIKNU7ZVHYJY2HOGOWJEZSNQVC2NMEZNXJPBPBP347
237
+ ✅ Lock/Unlock OFT deployed: CDIXNIIZL2ZU22PRZVP5JXELIHF2BLTW3VD2IRPTFXTC7HURJ7VBSOJ6
235
238
 
236
239
  stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Deploy OFT Contracts > Deploy Mint/Burn OFT
237
240
  📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/oft.wasm
238
241
  📤 Uploading WASM...
239
- 📦 WASM buffer size: 59520 bytes (58.13 KB)
242
+ 📦 WASM buffer size: 61037 bytes (59.61 KB)
240
243
 
241
244
  stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Deploy OFT Contracts > Deploy Mint/Burn OFT
242
- 💰 Upload transaction fee: 1317751 stroops (0.1317751 XLM)
245
+ 💰 Upload transaction fee: 1350235 stroops (0.1350235 XLM)
243
246
 
244
247
  stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Deploy OFT Contracts > Deploy Mint/Burn OFT
245
- ⏰ WASM TTL: live until ledger 121045 (120955 ledgers remaining, ~7.00 days)
248
+ ⏰ WASM TTL: live until ledger 121128 (120955 ledgers remaining, ~7.00 days)
246
249
 
247
250
  stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Deploy OFT Contracts > Deploy Mint/Burn OFT
248
- ✅ WASM uploaded, hash: 1b2ae0ec201aefddd7d1aadd4c9fdafa9addc742333490b509be519b5e01869b
251
+ ✅ WASM uploaded, hash: 6ded194b3d2189d1ab1b2bb0c877f3f758363aff666fbff8a67c25b545bad453
249
252
  🚀 Deploying contract...
250
253
 
251
254
  stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Deploy OFT Contracts > Deploy Mint/Burn OFT
252
- ✅ Contract deployed at: CBQSPHXEGXRRR3ENRWNDBEXFJJRG6AEZDZNOUMH56BL4IQBYFSSAUUWS
255
+ ✅ Contract deployed at: CAXHVKIGDIKD4BVH3AROE4JBW2G4YOCOESONC647RNKJ4PJWZGZ7UJPN
253
256
 
254
257
  stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Deploy OFT Contracts > Deploy Mint/Burn OFT
255
- ✅ Mint/Burn OFT deployed: CBQSPHXEGXRRR3ENRWNDBEXFJJRG6AEZDZNOUMH56BL4IQBYFSSAUUWS
258
+ ✅ Mint/Burn OFT deployed: CAXHVKIGDIKD4BVH3AROE4JBW2G4YOCOESONC647RNKJ4PJWZGZ7UJPN
256
259
 
257
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
258
261
  ✅ Lock/Unlock OFT send library set to SML
@@ -295,13 +298,14 @@ Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHP
295
298
  📊 Messaging Fee: { native_fee: 100n, zro_fee: 99n }
296
299
 
297
300
  stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Send: Lock/Unlock -> Mint/Burn > Send tokens (Lock/Unlock -> Mint/Burn)
298
- ✅ Tokens sent, ledger: 106
301
+ ✅ Tokens sent, ledger: 186
299
302
 
300
303
  stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Send: Lock/Unlock -> Mint/Burn > Scan PacketSent events
301
304
  📦 Scanning for PacketSent events...
302
305
 
303
306
  stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Send: Lock/Unlock -> Mint/Burn > Scan PacketSent events
304
- 🔍 Scanning events from ledger 106
307
+ 🔍 Scanning events from ledger 186
308
+ Waiting for next ledger...
305
309
 
306
310
  stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Send: Lock/Unlock -> Mint/Burn > Scan PacketSent events
307
311
  ✅ Found 1 events
@@ -323,9 +327,9 @@ Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHP
323
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)
324
328
  ✅ Simulation complete
325
329
  Auth entries returned: 1
326
- Processing auth entry for address: CBH5IW337SJR27M7MAI46P2ISUTZS5IAFHECT5WWM7ECO4IIJJJNZMZ6
330
+ Processing auth entry for address: CCGANXSRKYEDVQARDFK4EYFDFLUYFAF5ZMSAC6F6EZSSGSNFBD5WSGQV
327
331
  Auth entry tree:
328
- 📞 CBQSPHXEGXRRR3ENRWNDBEXFJJRG6AEZDZNOUMH56BL4IQBYFSSAUUWS...lz_receive()
332
+ 📞 CAXHVKIGDIKD4BVH3AROE4JBW2G4YOCOESONC647RNKJ4PJWZGZ7UJPN...lz_receive()
329
333
  ✍️ Signing executor auth entry (Abstract Account)...
330
334
 
331
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)
@@ -339,7 +343,7 @@ Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHP
339
343
  ✅ Transaction envelope signed
340
344
 
341
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)
342
- ✅ Transaction sent, hash: 0a5e2cf31633e4556d2459743e9153414bb0efc24aa6b2a6d1893925679a94e5
346
+ ✅ Transaction sent, hash: 0e6245fb68b4ba7eb1293c1b754c0fa4c9fba9078144642c7189c61e31efb754
343
347
 
344
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)
345
349
  ✅ Transaction completed successfully
@@ -366,14 +370,13 @@ Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHP
366
370
  📊 Reverse Messaging Fee: { native_fee: 100n, zro_fee: 99n }
367
371
 
368
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)
369
- ✅ Tokens sent (reverse), ledger: 112
373
+ ✅ Tokens sent (reverse), ledger: 192
370
374
 
371
375
  stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Send: Mint/Burn -> Lock/Unlock (Reverse) > Scan PacketSent events (reverse)
372
376
  📦 Scanning for PacketSent events...
373
377
 
374
378
  stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Send: Mint/Burn -> Lock/Unlock (Reverse) > Scan PacketSent events (reverse)
375
- 🔍 Scanning events from ledger 112
376
- Waiting for next ledger...
379
+ 🔍 Scanning events from ledger 192
377
380
 
378
381
  stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Send: Mint/Burn -> Lock/Unlock (Reverse) > Scan PacketSent events (reverse)
379
382
  ✅ Found 1 events
@@ -395,9 +398,9 @@ Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHP
395
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)
396
399
  ✅ Simulation complete
397
400
  Auth entries returned: 1
398
- Processing auth entry for address: CBH5IW337SJR27M7MAI46P2ISUTZS5IAFHECT5WWM7ECO4IIJJJNZMZ6
401
+ Processing auth entry for address: CCGANXSRKYEDVQARDFK4EYFDFLUYFAF5ZMSAC6F6EZSSGSNFBD5WSGQV
399
402
  Auth entry tree:
400
- 📞 CC732CRT5H25UCCIKNU7ZVHYJY2HOGOWJEZSNQVC2NMEZNXJPBPBP347...lz_receive()
403
+ 📞 CDIXNIIZL2ZU22PRZVP5JXELIHF2BLTW3VD2IRPTFXTC7HURJ7VBSOJ6...lz_receive()
401
404
  ✍️ Signing executor auth entry (Abstract Account)...
402
405
 
403
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)
@@ -411,7 +414,7 @@ Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHP
411
414
  ✅ Transaction envelope signed
412
415
 
413
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)
414
- ✅ Transaction sent, hash: 63531b69b72cc98645f04397ff19fa5ed17f8a02a2187c5c3b2aafd2dd6d5148
417
+ ✅ Transaction sent, hash: 011e6723d9207a9d8ac6ba1eb46ec195cf694146e3f6ed4d4734fc54f12aadab
415
418
 
416
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)
417
420
  ✅ Transaction completed successfully
@@ -428,53 +431,53 @@ Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHP
428
431
  - RECIPIENT_B (unlocked): 500000000 (expected: 500000000)
429
432
  ✅ OFT E2E test completed successfully!
430
433
 
431
- ✓ test/oft-sml.test.ts (23 tests) 38478ms
432
- ✓ OFT E2E Testing with SAC (SML) > Deploy OFT Contracts > Deploy OFT Token SAC  2157ms
433
- ✓ OFT E2E Testing with SAC (SML) > Deploy OFT Contracts > Deploy Lock/Unlock OFT  4144ms
434
- ✓ OFT E2E Testing with SAC (SML) > Deploy OFT Contracts > Deploy Mint/Burn OFT  3907ms
435
- ✓ OFT E2E Testing with SAC (SML) > Wire OFT Contracts to use SML > Set Lock/Unlock OFT Send Library to SML  1166ms
436
- ✓ OFT E2E Testing with SAC (SML) > Wire OFT Contracts to use SML > Set Lock/Unlock OFT Receive Library to SML  1167ms
437
- ✓ OFT E2E Testing with SAC (SML) > Wire OFT Contracts to use SML > Set Mint/Burn OFT Send Library to SML  2685ms
438
- ✓ OFT E2E Testing with SAC (SML) > Wire OFT Contracts to use SML > Set Mint/Burn OFT Receive Library to SML  1156ms
439
- ✓ OFT E2E Testing with SAC (SML) > Wire OFT Contracts to use SML > Set Lock/Unlock OFT Peer (to Mint/Burn OFT)  1123ms
440
- ✓ OFT E2E Testing with SAC (SML) > Wire OFT Contracts to use SML > Set Mint/Burn OFT Peer (to Lock/Unlock OFT)  2648ms
441
- ✓ OFT E2E Testing with SAC (SML) > Wire OFT Contracts to use SML > Set SAC Admin to Mint/Burn OFT (for minting)  1049ms
442
- ✓ OFT E2E Testing with SAC (SML) > Send: Lock/Unlock -> Mint/Burn > Send tokens (Lock/Unlock -> Mint/Burn)  2826ms
443
- ✓ OFT E2E Testing with SAC (SML) > Send: Lock/Unlock -> Mint/Burn > Validate packet via SML  1148ms
444
- ✓ OFT E2E Testing with SAC (SML) > Send: Lock/Unlock -> Mint/Burn > Receive tokens (mint on Mint/Burn OFT)  2406ms
445
- ✓ OFT E2E Testing with SAC (SML) > Send: Mint/Burn -> Lock/Unlock (Reverse) > Send tokens (Mint/Burn -> Lock/Unlock)  1357ms
446
- ✓ OFT E2E Testing with SAC (SML) > Send: Mint/Burn -> Lock/Unlock (Reverse) > Scan PacketSent events (reverse)  1026ms
447
- ✓ OFT E2E Testing with SAC (SML) > Send: Mint/Burn -> Lock/Unlock (Reverse) > Validate packet via SML (reverse)  1153ms
448
- ✓ OFT E2E Testing with SAC (SML) > Send: Mint/Burn -> Lock/Unlock (Reverse) > Receive tokens (unlock on Lock/Unlock OFT)  2353ms
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
449
452
  stdout | test/counter-uln.test.ts > Counter with ULN302 testing
450
453
  
451
454
  📋 Protocol addresses injected from globalSetup
452
- Endpoint: CCYHNLAKLLLV4OSKM7YTYPIN2URC6XAXRSPWGCWCGAJT5LYAUNMV5DUV
453
- ULN302: CB3Y42BT777UPHUZKVBHFHMULQ5SLFPPTFHDQ3I3TLCNMPJZ27VZXRVR
454
- DVN: CA5D2C6V2RHO2ROVKMLAAHW2QWI6PHEIAXU52YKRP7XRRRZZ3NRCXFUX
455
- Executor: CBH5IW337SJR27M7MAI46P2ISUTZS5IAFHECT5WWM7ECO4IIJJJNZMZ6
456
- Executor Helper: CAUJQ5S6UC5HDLFVYYVDZULNXPQVRUQTZQICZ7MTN7IUUWQBZD3YOP2A
455
+ Endpoint: CCPTRUANJUH2YDEMMNFTRLHNCUAUJVMCQLXE3OYYQQEEKHXBFFXAIO3Z
456
+ ULN302: CBQFR5WLFIVELDHM2IWMWHBOKC6NO7L7UTGFJ6WP2LJOBUJMKCZK4OB6
457
+ DVN: CDESQGCJI2BSY5ARNOKMD5OS4CSGXKS73KZPTUHTO4GLT7PNPNRQYAME
458
+ Executor: CCGANXSRKYEDVQARDFK4EYFDFLUYFAF5ZMSAC6F6EZSSGSNFBD5WSGQV
459
+ Executor Helper: CCOFEESMY4XA4JWUMKYAGIKOVONPTXENZXJVBIMWQOQTFQADMGHH7255
457
460
 
458
461
  stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Deploy Counter > Deploy Counter
459
462
  📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/counter.wasm
460
463
  📤 Uploading WASM...
461
- 📦 WASM buffer size: 40111 bytes (39.17 KB)
464
+ 📦 WASM buffer size: 40336 bytes (39.39 KB)
462
465
 
463
466
  stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Deploy Counter > Deploy Counter
464
- 💰 Upload transaction fee: 20579390 stroops (2.0579390 XLM)
467
+ 💰 Upload transaction fee: 20647268 stroops (2.0647268 XLM)
465
468
 
466
469
  stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Deploy Counter > Deploy Counter
467
- ⏰ WASM TTL: live until ledger 121077 (120959 ledgers remaining, ~7.00 days)
470
+ ⏰ WASM TTL: live until ledger 121157 (120959 ledgers remaining, ~7.00 days)
468
471
 
469
472
  stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Deploy Counter > Deploy Counter
470
- ✅ WASM uploaded, hash: 85427aebe5a3f0a70bb9c3c4b5ea70ffd885c17e9fec536cfa04b4d48230b605
473
+ ✅ WASM uploaded, hash: 21be5b9ff062d6e92fce084fdb0a3b5b2281f4f79b292eb1e533528e9a394aac
471
474
  🚀 Deploying contract...
472
475
 
473
476
  stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Deploy Counter > Deploy Counter
474
- ✅ Contract deployed at: CD3HQ6N6EEJJ4FZLBLOEO6WPAGV6XT6YJDCIZ6RDJ62Z442CXOEKMCCY
477
+ ✅ Contract deployed at: CA35FZCOFWBKM5MYE5QGQWH3GBKNYYLIOZKYZTXOE3EON6TWKIZBHZYQ
475
478
 
476
479
  stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Deploy Counter > Deploy Counter
477
- ✅ Counter deployed: CD3HQ6N6EEJJ4FZLBLOEO6WPAGV6XT6YJDCIZ6RDJ62Z442CXOEKMCCY
480
+ ✅ Counter deployed: CA35FZCOFWBKM5MYE5QGQWH3GBKNYYLIOZKYZTXOE3EON6TWKIZBHZYQ
478
481
 
479
482
  stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Deploy Counter > Set Counter Peer
480
483
  ✅ Counter peer set for EID 30400
@@ -492,7 +495,7 @@ Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHP
492
495
  📦 Scanning for PacketSent events...
493
496
 
494
497
  stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Scan PacketSent Events (Composed ABA)
495
- 🔍 Scanning events from ledger 122
498
+ 🔍 Scanning events from ledger 203
496
499
  Waiting for next ledger...
497
500
 
498
501
  stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Scan PacketSent Events (Composed ABA)
@@ -506,7 +509,7 @@ Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHP
506
509
 
507
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)
508
511
  ✅ Packet header extracted, length: 81
509
- ✅ Payload hash extracted: 33594a55545fd128...
512
+ ✅ Payload hash extracted: 1ff64438b6c0d350...
510
513
 
511
514
  stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > DVN Verifies Message (Composed ABA)
512
515
  
@@ -514,19 +517,19 @@ Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHP
514
517
 
515
518
  stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > DVN Verifies Message (Composed ABA)
516
519
  
517
- 📋 Addresses needing to sign: [ 'CA5D2C6V2RHO2ROVKMLAAHW2QWI6PHEIAXU52YKRP7XRRRZZ3NRCXFUX' ]
520
+ 📋 Addresses needing to sign: [ 'CDESQGCJI2BSY5ARNOKMD5OS4CSGXKS73KZPTUHTO4GLT7PNPNRQYAME' ]
518
521
 
519
522
  stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > DVN Verifies Message (Composed ABA)
520
523
  
521
524
  🌳 DVN Auth Entry Tree:
522
- 📞 CB3Y42BT777UPHUZKVBHFHMULQ5SLFPPTFHDQ3I3TLCNMPJZ27VZXRVR...verify()
525
+ 📞 CBQFR5WLFIVELDHM2IWMWHBOKC6NO7L7UTGFJ6WP2LJOBUJMKCZK4OB6...verify()
523
526
 
524
- 📝 Signature payload (soroban auth hash): fb800f53d93dc7ada7b7c171d12e9fcf6de20d3471546ef16ed4788c4caeef55
525
- ✍️ Admin Ed25519 signature created: 111f7716a17c991eb3dfd61da12f3c8d...
526
- 📝 Call hash for multisig: 34ec7fb8719b8e34ac4355a5062fff990df9d2be8209f93cb52484fb8b9c7941
527
+ 📝 Signature payload (soroban auth hash): 5c107b81be82fcf4dc520e689c44901c5bf8ccdfee05c0ebffe426ed842606b4
528
+ ✍️ Admin Ed25519 signature created: c1e25ef8c05397c748c37c385d83111a...
529
+ 📝 Call hash for multisig: f9211a14a72a96208a5c70a50250fc7ec886f1bc1cfdbe9026b7bbc6a6f43947
527
530
 
528
531
  stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > DVN Verifies Message (Composed ABA)
529
- ✍️ Multisig signature created: 876fe2c82dacf6be93b971e6005d2f54...
532
+ ✍️ Multisig signature created: 381c38abff0bac28188d70f50212ab37...
530
533
 
531
534
  stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > DVN Verifies Message (Composed ABA)
532
535
  
@@ -545,7 +548,7 @@ Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHP
545
548
  ✅ Verification committed to endpoint (Composed ABA)
546
549
 
547
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)
548
- 💰 Balance before native drop: 99702319625n
551
+ 💰 Balance before native drop: 99102178597n
549
552
 
550
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)
551
554
  
@@ -557,12 +560,12 @@ Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHP
557
560
  Auth entries returned: 2
558
561
  Processing auth entry for address: GC72DFYB5KMI4IHRX63L3PTJ73XCZD6NM5BLHQOHNNJKNZVIIVMK3RTH
559
562
  Auth entry tree:
560
- 📞 CBH5IW337SJR27M7MAI46P2ISUTZS5IAFHECT5WWM7ECO4IIJJJNZMZ6...native_drop()
563
+ 📞 CCGANXSRKYEDVQARDFK4EYFDFLUYFAF5ZMSAC6F6EZSSGSNFBD5WSGQV...native_drop()
561
564
  📞 CDMLFMKMMD7MWZP3FKUBZPVHTUEDLSX4BYGYKH4GCESXYHS3IHQ4EIG4...transfer()
562
565
  ✍️ Signing admin auth entry (regular account)...
563
- Processing auth entry for address: CBH5IW337SJR27M7MAI46P2ISUTZS5IAFHECT5WWM7ECO4IIJJJNZMZ6
566
+ Processing auth entry for address: CCGANXSRKYEDVQARDFK4EYFDFLUYFAF5ZMSAC6F6EZSSGSNFBD5WSGQV
564
567
  Auth entry tree:
565
- 📞 CD3HQ6N6EEJJ4FZLBLOEO6WPAGV6XT6YJDCIZ6RDJ62Z442CXOEKMCCY...lz_receive()
568
+ 📞 CA35FZCOFWBKM5MYE5QGQWH3GBKNYYLIOZKYZTXOE3EON6TWKIZBHZYQ...lz_receive()
566
569
  ✍️ Signing executor auth entry (Abstract Account)...
567
570
 
568
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)
@@ -576,13 +579,13 @@ Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHP
576
579
  ✅ Transaction envelope signed
577
580
 
578
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)
579
- ✅ Transaction sent, hash: 19bf5c32e2228619f53d8885732a71871f661ce834e3e06442208dffc546b836
582
+ ✅ Transaction sent, hash: 6d9a1243099bc1fb9c9d8694939c4130589ac11db990cf70e36c77a726f447e9
580
583
 
581
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)
582
585
  ✅ Transaction completed successfully
583
586
 
584
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)
585
- 💰 Balance after native drop: 99703319625n
588
+ 💰 Balance after native drop: 99103178597n
586
589
  ✅ Native drop received: 1000000n stroops
587
590
 
588
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)
@@ -600,9 +603,9 @@ Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHP
600
603
  Auth entry tree:
601
604
  📞 CDMLFMKMMD7MWZP3FKUBZPVHTUEDLSX4BYGYKH4GCESXYHS3IHQ4EIG4...transfer()
602
605
  ✍️ Signing admin auth entry (regular account)...
603
- Processing auth entry for address: CBH5IW337SJR27M7MAI46P2ISUTZS5IAFHECT5WWM7ECO4IIJJJNZMZ6
606
+ Processing auth entry for address: CCGANXSRKYEDVQARDFK4EYFDFLUYFAF5ZMSAC6F6EZSSGSNFBD5WSGQV
604
607
  Auth entry tree:
605
- 📞 CD3HQ6N6EEJJ4FZLBLOEO6WPAGV6XT6YJDCIZ6RDJ62Z442CXOEKMCCY...lz_compose()
608
+ 📞 CA35FZCOFWBKM5MYE5QGQWH3GBKNYYLIOZKYZTXOE3EON6TWKIZBHZYQ...lz_compose()
606
609
  📞 CDMLFMKMMD7MWZP3FKUBZPVHTUEDLSX4BYGYKH4GCESXYHS3IHQ4EIG4...transfer()
607
610
  ✍️ Signing executor auth entry (Abstract Account)...
608
611
 
@@ -617,7 +620,7 @@ Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHP
617
620
  ✅ Transaction envelope signed
618
621
 
619
622
  stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Execute lz_compose (Composed ABA)
620
- ✅ Transaction sent, hash: a8d01b8db4daae076d1701845d8193d82504bf2b2ceac360887c4bf4036c09cd
623
+ ✅ Transaction sent, hash: 2cbe238e8a7230d90abb84582df337f8ff4b4116945c9ad388adbe9cfcd063ad
621
624
 
622
625
  stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Execute lz_compose (Composed ABA)
623
626
  ✅ Transaction completed successfully
@@ -632,7 +635,7 @@ Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHP
632
635
  📦 Scanning for PacketSent events...
633
636
 
634
637
  stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Scan Return PacketSent Events
635
- 🔍 Scanning events from ledger 132
638
+ 🔍 Scanning events from ledger 213
636
639
  Waiting for next ledger...
637
640
 
638
641
  stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Scan Return PacketSent Events
@@ -646,7 +649,7 @@ Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHP
646
649
 
647
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
648
651
  ✅ Return packet header extracted, length: 81
649
- ✅ Return payload hash extracted: 090b7d5db6b6f30b...
652
+ ✅ Return payload hash extracted: e7bd1e9bd9d292af...
650
653
 
651
654
  stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > DVN Verifies Return Message
652
655
  
@@ -654,19 +657,19 @@ Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHP
654
657
 
655
658
  stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > DVN Verifies Return Message
656
659
  
657
- 📋 Addresses needing to sign: [ 'CA5D2C6V2RHO2ROVKMLAAHW2QWI6PHEIAXU52YKRP7XRRRZZ3NRCXFUX' ]
660
+ 📋 Addresses needing to sign: [ 'CDESQGCJI2BSY5ARNOKMD5OS4CSGXKS73KZPTUHTO4GLT7PNPNRQYAME' ]
658
661
 
659
662
  stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > DVN Verifies Return Message
660
663
  
661
664
  🌳 DVN Auth Entry Tree:
662
- 📞 CB3Y42BT777UPHUZKVBHFHMULQ5SLFPPTFHDQ3I3TLCNMPJZ27VZXRVR...verify()
665
+ 📞 CBQFR5WLFIVELDHM2IWMWHBOKC6NO7L7UTGFJ6WP2LJOBUJMKCZK4OB6...verify()
663
666
 
664
- 📝 Signature payload (soroban auth hash): 9b4b02fb19a84918a0526ed7ae4580d0462222b3efd98871fb4dcab08d934337
665
- ✍️ Admin Ed25519 signature created: 232f0e8d55480acec9ce99303472520c...
666
- 📝 Call hash for multisig: 75f586184d943c2536864df5d7f8eca314f146af0b8ed213a4889649cb9a19cd
667
+ 📝 Signature payload (soroban auth hash): a5ab146cb6e1d3492bbd2f9a875d09d3379a2304d3aaa59a4b349d85295a6130
668
+ ✍️ Admin Ed25519 signature created: 11dfdfdd387bb20acca000b1014ceb3b...
669
+ 📝 Call hash for multisig: 8582b74772b17446c8d5aa0bce6a8214114edae0111fdbe498bd0d8ac9827478
667
670
 
668
671
  stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > DVN Verifies Return Message
669
- ✍️ Multisig signature created: 0774f9ac2002b5de44e29b62e5ece689...
672
+ ✍️ Multisig signature created: 291e4edb30a337d2d4831a73faadd962...
670
673
 
671
674
  stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > DVN Verifies Return Message
672
675
  
@@ -692,9 +695,9 @@ Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHP
692
695
  stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Receive Return Message (lz_receive)
693
696
  ✅ Simulation complete
694
697
  Auth entries returned: 1
695
- Processing auth entry for address: CBH5IW337SJR27M7MAI46P2ISUTZS5IAFHECT5WWM7ECO4IIJJJNZMZ6
698
+ Processing auth entry for address: CCGANXSRKYEDVQARDFK4EYFDFLUYFAF5ZMSAC6F6EZSSGSNFBD5WSGQV
696
699
  Auth entry tree:
697
- 📞 CD3HQ6N6EEJJ4FZLBLOEO6WPAGV6XT6YJDCIZ6RDJ62Z442CXOEKMCCY...lz_receive()
700
+ 📞 CA35FZCOFWBKM5MYE5QGQWH3GBKNYYLIOZKYZTXOE3EON6TWKIZBHZYQ...lz_receive()
698
701
  ✍️ Signing executor auth entry (Abstract Account)...
699
702
 
700
703
  stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Receive Return Message (lz_receive)
@@ -708,7 +711,7 @@ Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHP
708
711
  ✅ Transaction envelope signed
709
712
 
710
713
  stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Receive Return Message (lz_receive)
711
- ✅ Transaction sent, hash: f7814a3a4543b6ecc824555d10426d18dec4a25e49c3d87535997aca6d585e62
714
+ ✅ Transaction sent, hash: 1a211927fdfe30e47298f2e020bfba55cafa6f25bf455adbff31f70e20917d7c
712
715
 
713
716
  stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Receive Return Message (lz_receive)
714
717
  ✅ Transaction completed successfully
@@ -723,47 +726,47 @@ Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHP
723
726
  Workflow: Send ComposedABA → DVN Verify → Commit → native_drop_and_execute
724
727
  → lz_compose (sends return) → DVN Verify → Commit → lz_receive
725
728
 
726
- ✓ test/counter-uln.test.ts (14 tests) 21842ms
727
- ✓ Counter with ULN302 testing > Deploy Counter > Deploy Counter  2298ms
728
- ✓ Counter with ULN302 testing > Deploy Counter > Set Counter Peer  1149ms
729
- ✓ Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Counter Increment (Composed ABA with Native Drop)  1943ms
730
- ✓ Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Scan PacketSent Events (Composed ABA)  1023ms
731
- ✓ Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > DVN Verifies Message (Composed ABA)  2858ms
732
- ✓ Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Commit Verification (Composed ABA)  1173ms
733
- ✓ Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Execute native_drop_and_execute (Composed ABA)  2559ms
734
- ✓ Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Execute lz_compose (Composed ABA)  2942ms
735
- ✓ Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Scan Return PacketSent Events  1016ms
736
- ✓ Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > DVN Verifies Return Message  1347ms
737
- ✓ Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Commit Verification (Return Message)  1104ms
738
- ✓ Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Receive Return Message (lz_receive)  2418ms
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
739
742
  stdout | test/counter-sml.test.ts > Counter with SML testing
740
743
  
741
744
  📋 Protocol addresses injected from globalSetup
742
- Endpoint: CCYHNLAKLLLV4OSKM7YTYPIN2URC6XAXRSPWGCWCGAJT5LYAUNMV5DUV
743
- SML: CBY5FT36DWEJ5BW4PY5ZBPVZO2ZCVBZOS27OXRVDKEC2HM7XQI7JDQQX
744
- Executor: CBH5IW337SJR27M7MAI46P2ISUTZS5IAFHECT5WWM7ECO4IIJJJNZMZ6
745
- Executor Helper: CAUJQ5S6UC5HDLFVYYVDZULNXPQVRUQTZQICZ7MTN7IUUWQBZD3YOP2A
745
+ Endpoint: CCPTRUANJUH2YDEMMNFTRLHNCUAUJVMCQLXE3OYYQQEEKHXBFFXAIO3Z
746
+ SML: CDZVL2G3TTVEHD46VTC6QQQQCEYRY4UUAILIPUZU67H3KKFBEFELJGQJ
747
+ Executor: CCGANXSRKYEDVQARDFK4EYFDFLUYFAF5ZMSAC6F6EZSSGSNFBD5WSGQV
748
+ Executor Helper: CCOFEESMY4XA4JWUMKYAGIKOVONPTXENZXJVBIMWQOQTFQADMGHH7255
746
749
 
747
750
  stdout | test/counter-sml.test.ts > Counter with SML testing > Deploy Counter > Deploy Counter
748
751
  📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/counter.wasm
749
752
  📤 Uploading WASM...
750
- 📦 WASM buffer size: 40111 bytes (39.17 KB)
753
+ 📦 WASM buffer size: 40336 bytes (39.39 KB)
751
754
 
752
755
  stdout | test/counter-sml.test.ts > Counter with SML testing > Deploy Counter > Deploy Counter
753
- 💰 Upload transaction fee: 902902 stroops (0.0902902 XLM)
756
+ 💰 Upload transaction fee: 907684 stroops (0.0907684 XLM)
754
757
 
755
758
  stdout | test/counter-sml.test.ts > Counter with SML testing > Deploy Counter > Deploy Counter
756
- ⏰ WASM TTL: live until ledger 121077 (120937 ledgers remaining, ~7.00 days)
759
+ ⏰ WASM TTL: live until ledger 518601 (518379 ledgers remaining, ~30.00 days)
757
760
 
758
761
  stdout | test/counter-sml.test.ts > Counter with SML testing > Deploy Counter > Deploy Counter
759
- ✅ WASM uploaded, hash: 85427aebe5a3f0a70bb9c3c4b5ea70ffd885c17e9fec536cfa04b4d48230b605
762
+ ✅ WASM uploaded, hash: 21be5b9ff062d6e92fce084fdb0a3b5b2281f4f79b292eb1e533528e9a394aac
760
763
  🚀 Deploying contract...
761
764
 
762
765
  stdout | test/counter-sml.test.ts > Counter with SML testing > Deploy Counter > Deploy Counter
763
- ✅ Contract deployed at: CCYST42ZVPYYDELHUMYQ7SXIE3BV4EZZB7XVS7BLBJCLWKCYNWFEK76T
766
+ ✅ Contract deployed at: CBFQU3EDG7L2WNSBFOUHM2VYG3ATB5YW6SYCKFBLEYA65J6IHL5FOKL5
764
767
 
765
768
  stdout | test/counter-sml.test.ts > Counter with SML testing > Deploy Counter > Deploy Counter
766
- ✅ Counter deployed: CCYST42ZVPYYDELHUMYQ7SXIE3BV4EZZB7XVS7BLBJCLWKCYNWFEK76T
769
+ ✅ Counter deployed: CBFQU3EDG7L2WNSBFOUHM2VYG3ATB5YW6SYCKFBLEYA65J6IHL5FOKL5
767
770
 
768
771
  stdout | test/counter-sml.test.ts > Counter with SML testing > Wire Counter to use SML > Set Counter Send Library to SML
769
772
  ✅ Counter send library set to SML
@@ -787,7 +790,7 @@ Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHP
787
790
  📦 Scanning for PacketSent events...
788
791
 
789
792
  stdout | test/counter-sml.test.ts > Counter with SML testing > Counter ABA Messaging > Scan PacketSent Events
790
- 🔍 Scanning events from ledger 150
793
+ 🔍 Scanning events from ledger 230
791
794
 
792
795
  stdout | test/counter-sml.test.ts > Counter with SML testing > Counter ABA Messaging > Scan PacketSent Events
793
796
  ✅ Found 1 events
@@ -811,16 +814,16 @@ Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHP
811
814
  Auth entries returned: 3
812
815
  Processing auth entry for address: GC72DFYB5KMI4IHRX63L3PTJ73XCZD6NM5BLHQOHNNJKNZVIIVMK3RTH
813
816
  Auth entry tree:
814
- 📞 CBH5IW337SJR27M7MAI46P2ISUTZS5IAFHECT5WWM7ECO4IIJJJNZMZ6...native_drop()
817
+ 📞 CCGANXSRKYEDVQARDFK4EYFDFLUYFAF5ZMSAC6F6EZSSGSNFBD5WSGQV...native_drop()
815
818
  📞 CDMLFMKMMD7MWZP3FKUBZPVHTUEDLSX4BYGYKH4GCESXYHS3IHQ4EIG4...transfer()
816
819
  ✍️ Signing admin auth entry (regular account)...
817
820
  Processing auth entry for address: GC72DFYB5KMI4IHRX63L3PTJ73XCZD6NM5BLHQOHNNJKNZVIIVMK3RTH
818
821
  Auth entry tree:
819
822
  📞 CDMLFMKMMD7MWZP3FKUBZPVHTUEDLSX4BYGYKH4GCESXYHS3IHQ4EIG4...transfer()
820
823
  ✍️ Signing admin auth entry (regular account)...
821
- Processing auth entry for address: CBH5IW337SJR27M7MAI46P2ISUTZS5IAFHECT5WWM7ECO4IIJJJNZMZ6
824
+ Processing auth entry for address: CCGANXSRKYEDVQARDFK4EYFDFLUYFAF5ZMSAC6F6EZSSGSNFBD5WSGQV
822
825
  Auth entry tree:
823
- 📞 CCYST42ZVPYYDELHUMYQ7SXIE3BV4EZZB7XVS7BLBJCLWKCYNWFEK76T...lz_receive()
826
+ 📞 CBFQU3EDG7L2WNSBFOUHM2VYG3ATB5YW6SYCKFBLEYA65J6IHL5FOKL5...lz_receive()
824
827
  📞 CDMLFMKMMD7MWZP3FKUBZPVHTUEDLSX4BYGYKH4GCESXYHS3IHQ4EIG4...transfer()
825
828
  ✍️ Signing executor auth entry (Abstract Account)...
826
829
 
@@ -835,7 +838,7 @@ Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHP
835
838
  ✅ Transaction envelope signed
836
839
 
837
840
  stdout | test/counter-sml.test.ts > Counter with SML testing > Counter ABA Messaging > Receive Counter Message (ABA - triggers response)
838
- ✅ Transaction sent, hash: 3e85b402d940bbd5a5c6d000827307739e7ef573be93c92c97870f319aee2594
841
+ ✅ Transaction sent, hash: ccc35351142cc7035796e57494b1ad238d2f539c47fa637cb263c202fcee1f9f
839
842
 
840
843
  stdout | test/counter-sml.test.ts > Counter with SML testing > Counter ABA Messaging > Receive Counter Message (ABA - triggers response)
841
844
  ✅ Transaction completed successfully
@@ -847,7 +850,8 @@ Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHP
847
850
  📦 Scanning for PacketSent events...
848
851
 
849
852
  stdout | test/counter-sml.test.ts > Counter with SML testing > Counter ABA Messaging > Scan ABA Response PacketSent Events
850
- 🔍 Scanning events from ledger 154
853
+ 🔍 Scanning events from ledger 235
854
+ Waiting for next ledger...
851
855
 
852
856
  stdout | test/counter-sml.test.ts > Counter with SML testing > Counter ABA Messaging > Scan ABA Response PacketSent Events
853
857
  ✅ Found 2 events
@@ -873,9 +877,9 @@ Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHP
873
877
  Auth entry tree:
874
878
  📞 CDMLFMKMMD7MWZP3FKUBZPVHTUEDLSX4BYGYKH4GCESXYHS3IHQ4EIG4...transfer()
875
879
  ✍️ Signing admin auth entry (regular account)...
876
- Processing auth entry for address: CBH5IW337SJR27M7MAI46P2ISUTZS5IAFHECT5WWM7ECO4IIJJJNZMZ6
880
+ Processing auth entry for address: CCGANXSRKYEDVQARDFK4EYFDFLUYFAF5ZMSAC6F6EZSSGSNFBD5WSGQV
877
881
  Auth entry tree:
878
- 📞 CCYST42ZVPYYDELHUMYQ7SXIE3BV4EZZB7XVS7BLBJCLWKCYNWFEK76T...lz_receive()
882
+ 📞 CBFQU3EDG7L2WNSBFOUHM2VYG3ATB5YW6SYCKFBLEYA65J6IHL5FOKL5...lz_receive()
879
883
  📞 CDMLFMKMMD7MWZP3FKUBZPVHTUEDLSX4BYGYKH4GCESXYHS3IHQ4EIG4...transfer()
880
884
  ✍️ Signing executor auth entry (Abstract Account)...
881
885
 
@@ -890,7 +894,7 @@ Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHP
890
894
  ✅ Transaction envelope signed
891
895
 
892
896
  stdout | test/counter-sml.test.ts > Counter with SML testing > Counter ABA Messaging > Receive ABA Response Message
893
- ✅ Transaction sent, hash: 574faf8173b442dedc325e97959cde95996c356b9113b3d2fbe9c99985fd40ca
897
+ ✅ Transaction sent, hash: 20e36666f0692e5d8038253d2485fdebb89aa270af89773a5c86694bf8d04e46
894
898
 
895
899
  stdout | test/counter-sml.test.ts > Counter with SML testing > Counter ABA Messaging > Receive ABA Response Message
896
900
  ✅ Transaction completed successfully
@@ -902,74 +906,75 @@ Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHP
902
906
  Request: Counter → Counter (ABA)
903
907
  Response: Counter → Counter (Vanilla)
904
908
 
905
- ✓ test/counter-sml.test.ts (11 tests) 19953ms
906
- ✓ Counter with SML testing > Deploy Counter > Deploy Counter  4723ms
907
- ✓ Counter with SML testing > Wire Counter to use SML > Set Counter Send Library to SML  2651ms
908
- ✓ Counter with SML testing > Wire Counter to use SML > Set Counter Receive Library to SML  1146ms
909
- ✓ Counter with SML testing > Wire Counter to use SML > Set Counter Peer  1113ms
910
- ✓ Counter with SML testing > Counter ABA Messaging > Counter Increment (ABA)  2919ms
911
- ✓ Counter with SML testing > Counter ABA Messaging > Verify Counter Message  1125ms
912
- ✓ Counter with SML testing > Counter ABA Messaging > Receive Counter Message (ABA - triggers response)  2679ms
913
- ✓ Counter with SML testing > Counter ABA Messaging > Verify ABA Response Message  1089ms
914
- ✓ Counter with SML testing > Counter ABA Messaging > Receive ABA Response Message  2479ms
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
915
920
  stdout | test/upgrader.test.ts > Upgrader Contract Testing > Contract Deployments > Deploy Upgrader Contract
916
921
  📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/upgrader.wasm
917
922
  📤 Uploading WASM...
918
- 📦 WASM buffer size: 1597 bytes (1.56 KB)
923
+ 📦 WASM buffer size: 5053 bytes (4.93 KB)
919
924
 
920
925
  stdout | test/upgrader.test.ts > Upgrader Contract Testing > Contract Deployments > Deploy Upgrader Contract
921
- 💰 Upload transaction fee: 1332096 stroops (0.1332096 XLM)
926
+ 💰 Upload transaction fee: 1867151 stroops (0.1867151 XLM)
922
927
 
923
928
  stdout | test/upgrader.test.ts > Upgrader Contract Testing > Contract Deployments > Deploy Upgrader Contract
924
- ⏰ WASM TTL: live until ledger 121119 (120959 ledgers remaining, ~7.00 days)
929
+ ⏰ WASM TTL: live until ledger 121202 (120959 ledgers remaining, ~7.00 days)
925
930
 
926
931
  stdout | test/upgrader.test.ts > Upgrader Contract Testing > Contract Deployments > Deploy Upgrader Contract
927
- ✅ WASM uploaded, hash: 250cba854264d9d437c960e9f8ed838dbf39876947b4fb84c5a209a39b794da6
932
+ ✅ WASM uploaded, hash: 298d3c3d596be9f28c28c7919c00bfba604b1f7a615b2930ac0e65a9eac84655
928
933
  🚀 Deploying contract...
929
934
 
930
935
  stdout | test/upgrader.test.ts > Upgrader Contract Testing > Contract Deployments > Deploy Upgrader Contract
931
- ✅ Contract deployed at: CDVKZM64756FFJEIYJMSGXLUYU4WEJN4EXOZQXTVTVZLVTAZSHERFMYY
936
+ ✅ Contract deployed at: CCALUAVYJ2Z2RNDSWIMZMR2S4FOBKBL4RB6BAQK7NL7HW42KSYQVJIWZ
932
937
 
933
938
  stdout | test/upgrader.test.ts > Upgrader Contract Testing > Contract Deployments > Deploy Upgrader Contract
934
- ✅ Upgrader deployed at: CDVKZM64756FFJEIYJMSGXLUYU4WEJN4EXOZQXTVTVZLVTAZSHERFMYY
939
+ ✅ Upgrader deployed at: CCALUAVYJ2Z2RNDSWIMZMR2S4FOBKBL4RB6BAQK7NL7HW42KSYQVJIWZ
935
940
 
936
941
  stdout | test/upgrader.test.ts > Upgrader Contract Testing > Contract Deployments > Deploy Test Upgradeable Contract V1
937
942
  📖 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
938
- 📦 WASM buffer size: 5305 bytes (5.18 KB)
943
+ 📦 WASM buffer size: 13683 bytes (13.36 KB)
939
944
 
940
945
  stdout | test/upgrader.test.ts > Upgrader Contract Testing > Contract Deployments > Deploy Test Upgradeable Contract V1
941
- 💰 Upload transaction fee: 4120294 stroops (0.4120294 XLM)
946
+ 💰 Upload transaction fee: 7768174 stroops (0.7768174 XLM)
942
947
 
943
948
  stdout | test/upgrader.test.ts > Upgrader Contract Testing > Contract Deployments > Deploy Test Upgradeable Contract V1
944
- ⏰ WASM TTL: live until ledger 121123 (120959 ledgers remaining, ~7.00 days)
949
+ ⏰ WASM TTL: live until ledger 121206 (120959 ledgers remaining, ~7.00 days)
945
950
 
946
951
  stdout | test/upgrader.test.ts > Upgrader Contract Testing > Contract Deployments > Deploy Test Upgradeable Contract V1
947
- ✅ Test Contract V1 WASM uploaded, hash: 9fb48823f5df25ebe4f0a89d8c73d1ced2665d5e63c4db558717ae4394ccc3d3
952
+ ✅ Test Contract V1 WASM uploaded, hash: 98a1e80e28f1ff1c1ee5b0616b874e41eff1a3f3a63e9de8d9f7e914c1ee8c17
948
953
  🚀 Deploying Test Contract V1...
949
954
 
950
955
  stdout | test/upgrader.test.ts > Upgrader Contract Testing > Contract Deployments > Deploy Test Upgradeable Contract V1
951
- ✅ Test Contract V1 deployed at: CB5TM2X7V57NXX5NMR7E747LTPWE4WU6QVPHKJT2QSVSHFUVJHD5LAJ4
956
+ ✅ Test Contract V1 deployed at: CC7T4NBA52REBSSETWAAYT4M6XEIJAWDFWZRXU7L6NYGIVAERPFCPCEQ
952
957
 
953
958
  stdout | test/upgrader.test.ts > Upgrader Contract Testing > Contract Deployments > Verify Test Contract V1 Counter
954
959
  ✅ Test Contract V1 counter value: 1
955
960
 
956
961
  stdout | test/upgrader.test.ts > Upgrader Contract Testing > Upgrade Workflow > Upload Test Contract V2 WASM
957
962
  📖 Reading Test Contract V2 WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/contracts/upgrader/src/tests/test_data/test_upgradeable_contract2.wasm
958
- 📦 WASM buffer size: 5305 bytes (5.18 KB)
963
+ 📦 WASM buffer size: 13908 bytes (13.58 KB)
959
964
 
960
965
  stdout | test/upgrader.test.ts > Upgrader Contract Testing > Upgrade Workflow > Upload Test Contract V2 WASM
961
- 💰 Upload transaction fee: 4164122 stroops (0.4164122 XLM)
966
+ 💰 Upload transaction fee: 7953801 stroops (0.7953801 XLM)
962
967
 
963
968
  stdout | test/upgrader.test.ts > Upgrader Contract Testing > Upgrade Workflow > Upload Test Contract V2 WASM
964
- ⏰ WASM TTL: live until ledger 121126 (120959 ledgers remaining, ~7.00 days)
969
+ ⏰ WASM TTL: live until ledger 121209 (120959 ledgers remaining, ~7.00 days)
965
970
 
966
971
  stdout | test/upgrader.test.ts > Upgrader Contract Testing > Upgrade Workflow > Upload Test Contract V2 WASM
967
- ✅ Test Contract V2 WASM uploaded, hash: aaa6e6710fc91d2d72055ed744b9f359a49b4b16fa6cfd069ea747a387e9f5a2
972
+ ✅ Test Contract V2 WASM uploaded, hash: 7d1325b2b683099974089972a3b52573b5bd090e474c56be1d7759baaa0f227e
968
973
 
969
974
  stdout | test/upgrader.test.ts > Upgrader Contract Testing > Upgrade Workflow > Test Upgrader Contract Can Be Called
970
975
  🔄 Testing upgrader contract call...
971
- Contract address: CB5TM2X7V57NXX5NMR7E747LTPWE4WU6QVPHKJT2QSVSHFUVJHD5LAJ4
972
- New WASM hash: aaa6e6710fc91d2d72055ed744b9f359a49b4b16fa6cfd069ea747a387e9f5a2
976
+ Contract address: CC7T4NBA52REBSSETWAAYT4M6XEIJAWDFWZRXU7L6NYGIVAERPFCPCEQ
977
+ New WASM hash: 7d1325b2b683099974089972a3b52573b5bd090e474c56be1d7759baaa0f227e
973
978
 
974
979
  stdout | test/upgrader.test.ts > Upgrader Contract Testing > Upgrade Workflow > Test Upgrader Contract Can Be Called
975
980
  ✅ Transaction built with generated client
@@ -987,7 +992,7 @@ Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHP
987
992
  ✅ Transaction envelope signed
988
993
 
989
994
  stdout | test/upgrader.test.ts > Upgrader Contract Testing > Upgrade Workflow > Test Upgrader Contract Can Be Called
990
- ✅ Transaction sent, hash: e69b77fc08680c8be1d2b61089dd03a104f8513886d2cba1e1082411f862a0fa
995
+ ✅ Transaction sent, hash: eb3d180500470ecc025cdb018bf5417ef87306073008200a3ed917c961361cd3
991
996
 
992
997
  stdout | test/upgrader.test.ts > Upgrader Contract Testing > Upgrade Workflow > Test Upgrader Contract Can Be Called
993
998
  ✅ Upgrade transaction completed
@@ -999,17 +1004,17 @@ Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHP
999
1004
  stdout | test/upgrader.test.ts > Upgrader Contract Testing > Upgrade Workflow > Verify Test Contract V1 Counter Still Works After Upgrade
1000
1005
  ✅ Test Contract V2 counter value (from V1): 1
1001
1006
 
1002
- ✓ test/upgrader.test.ts (7 tests) 10995ms
1003
- ✓ Upgrader Contract Testing > Contract Deployments > Deploy Upgrader Contract  4620ms
1004
- ✓ Upgrader Contract Testing > Contract Deployments > Deploy Test Upgradeable Contract V1  2125ms
1005
- ✓ Upgrader Contract Testing > Upgrade Workflow > Upload Test Contract V2 WASM  2076ms
1006
- ✓ Upgrader Contract Testing > Upgrade Workflow > Test Upgrader Contract Can Be Called  2071ms
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
1007
1012
 
1008
1013
   Test Files  4 passed (4)
1009
1014
   Tests  55 passed (55)
1010
1015
  Type Errors  no errors
1011
-  Start at  00:20:28
1012
-  Duration  226.44s (transform 722ms, setup 0ms, collect 1.93s, tests 91.27s, environment 0ms, prepare 188ms)
1016
+  Start at  21:11:36
1017
+  Duration  278.12s (transform 467ms, setup 0ms, collect 770ms, tests 92.83s, environment 0ms, prepare 81ms)
1013
1018
 
1014
1019
 
1015
1020
  ========================================