@layerzerolabs/protocol-stellar-v2 0.2.18 → 0.2.20

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 (213) hide show
  1. package/.turbo/turbo-build.log +303 -253
  2. package/.turbo/turbo-lint.log +66 -65
  3. package/.turbo/turbo-test.log +1312 -1282
  4. package/Cargo.lock +21 -8
  5. package/Cargo.toml +2 -0
  6. package/contracts/ERROR_SPEC.md +9 -2
  7. package/contracts/common-macros/src/contract_ttl.rs +18 -7
  8. package/contracts/common-macros/src/lib.rs +4 -4
  9. package/contracts/common-macros/src/tests/contract_ttl.rs +1 -1
  10. package/contracts/common-macros/src/tests/snapshots/common_macros__tests__contract_ttl__snapshot_generated_contractimpl_code.snap +2 -1
  11. package/contracts/common-macros/src/tests/snapshots/common_macros__tests__upgradeable__snapshot_generated_upgradeable_code.snap +7 -12
  12. package/contracts/common-macros/src/upgradeable.rs +15 -21
  13. package/contracts/message-libs/uln-302/src/events.rs +4 -0
  14. package/contracts/message-libs/uln-302/src/send_uln.rs +23 -7
  15. package/contracts/message-libs/uln-302/src/tests/send_uln302/send.rs +38 -64
  16. package/contracts/oapps/counter/Cargo.toml +1 -0
  17. package/contracts/oapps/counter/integration_tests/setup_uln.rs +1 -1
  18. package/contracts/oapps/oapp/src/oapp_receiver.rs +1 -1
  19. package/contracts/oapps/oapp/src/tests/test_oapp_core.rs +113 -65
  20. package/contracts/oapps/oapp/src/tests/test_oapp_options_type3.rs +111 -82
  21. package/contracts/oapps/oapp/src/tests/test_oapp_receiver.rs +293 -65
  22. package/contracts/oapps/oapp/src/tests/test_oapp_sender.rs +331 -56
  23. package/contracts/oapps/oft/Cargo.toml +10 -7
  24. package/contracts/oapps/{oft-std → oft}/integration-tests/extensions/test_oft_fee.rs +3 -4
  25. package/contracts/oapps/{oft-std → oft}/integration-tests/extensions/test_pausable.rs +2 -3
  26. package/contracts/oapps/{oft-std → oft}/integration-tests/extensions/test_rate_limiter.rs +1 -1
  27. package/contracts/oapps/oft/integration-tests/mod.rs +1 -1
  28. package/contracts/oapps/oft/integration-tests/setup.rs +28 -127
  29. package/contracts/oapps/oft/integration-tests/utils.rs +254 -21
  30. package/contracts/oapps/oft/src/extensions/oft_fee.rs +23 -8
  31. package/contracts/oapps/oft/src/extensions/pausable.rs +19 -4
  32. package/contracts/oapps/oft/src/extensions/rate_limiter.rs +52 -28
  33. package/contracts/oapps/oft/src/lib.rs +10 -14
  34. package/contracts/oapps/oft/src/oft.rs +143 -193
  35. package/contracts/oapps/oft/src/oft_types/lock_unlock.rs +9 -11
  36. package/contracts/oapps/oft/src/oft_types/mint_burn.rs +12 -14
  37. package/contracts/oapps/oft/src/oft_types/mod.rs +13 -0
  38. package/contracts/oapps/{oft-std → oft-core}/Cargo.toml +6 -4
  39. package/contracts/oapps/{oft-std → oft-core}/integration-tests/mod.rs +1 -1
  40. package/contracts/oapps/{oft-std → oft-core}/integration-tests/setup.rs +126 -29
  41. package/contracts/oapps/{oft → oft-core}/integration-tests/test_with_sml.rs +3 -3
  42. package/contracts/oapps/oft-core/integration-tests/utils.rs +201 -0
  43. package/contracts/oapps/oft-core/src/lib.rs +18 -0
  44. package/contracts/oapps/oft-core/src/oft_core.rs +479 -0
  45. package/contracts/oapps/{oft → oft-core}/src/tests/mod.rs +0 -2
  46. package/contracts/oapps/{oft → oft-core}/src/tests/test_lz_receive.rs +7 -7
  47. package/contracts/oapps/{oft → oft-core}/src/tests/test_oft_msg_codec.rs +4 -4
  48. package/contracts/oapps/{oft → oft-core}/src/tests/test_resolve_address.rs +3 -3
  49. package/contracts/oapps/{oft → oft-core}/src/tests/test_utils.rs +46 -27
  50. package/contracts/oapps/{oft → oft-core}/src/utils.rs +1 -1
  51. package/contracts/upgrader/src/lib.rs +30 -57
  52. package/contracts/upgrader/src/tests/test_data/test_upgradeable_contract1.wasm +0 -0
  53. package/contracts/upgrader/src/tests/test_data/test_upgradeable_contract2.wasm +0 -0
  54. package/contracts/upgrader/src/tests/test_upgrader.rs +44 -35
  55. package/contracts/utils/src/buffer_reader.rs +1 -0
  56. package/contracts/utils/src/errors.rs +8 -2
  57. package/contracts/utils/src/ownable.rs +125 -3
  58. package/contracts/utils/src/tests/option_ext.rs +1 -1
  59. package/contracts/utils/src/tests/ownable.rs +445 -7
  60. package/contracts/utils/src/tests/ttl_configurable.rs +2 -2
  61. package/contracts/utils/src/tests/upgradeable.rs +372 -175
  62. package/contracts/utils/src/ttl_configurable.rs +3 -3
  63. package/contracts/utils/src/upgradeable.rs +48 -23
  64. package/contracts/workers/dvn/Cargo.toml +1 -0
  65. package/contracts/workers/dvn/src/auth.rs +12 -42
  66. package/contracts/workers/dvn/src/dvn.rs +16 -31
  67. package/contracts/workers/dvn/src/errors.rs +0 -1
  68. package/contracts/workers/dvn/src/interfaces/dvn.rs +35 -0
  69. package/contracts/workers/dvn/src/lib.rs +4 -3
  70. package/contracts/workers/dvn/src/tests/auth.rs +1 -1
  71. package/contracts/workers/dvn/src/tests/dvn.rs +19 -15
  72. package/contracts/workers/dvn/src/tests/multisig/set_threshold.rs +2 -4
  73. package/contracts/workers/dvn/src/tests/multisig/verify_signatures.rs +1 -3
  74. package/contracts/workers/dvn/src/tests/setup.rs +5 -9
  75. package/contracts/workers/dvn-fee-lib/Cargo.toml +1 -1
  76. package/contracts/workers/dvn-fee-lib/src/dvn_fee_lib.rs +3 -5
  77. package/contracts/workers/dvn-fee-lib/src/tests/dvn_fee_lib.rs +2 -3
  78. package/contracts/workers/executor/Cargo.toml +1 -0
  79. package/contracts/workers/executor/src/executor.rs +15 -26
  80. package/contracts/workers/executor-fee-lib/Cargo.toml +2 -1
  81. package/contracts/workers/executor-fee-lib/src/executor_fee_lib.rs +63 -5
  82. package/contracts/workers/executor-fee-lib/src/executor_option.rs +28 -1
  83. package/contracts/workers/executor-fee-lib/src/lib.rs +3 -0
  84. package/contracts/workers/executor-fee-lib/src/tests/executor_fee_lib.rs +701 -0
  85. package/contracts/workers/executor-fee-lib/src/tests/executor_option.rs +370 -0
  86. package/contracts/workers/executor-fee-lib/src/tests/mod.rs +4 -0
  87. package/contracts/workers/executor-fee-lib/src/tests/setup.rs +60 -0
  88. package/contracts/workers/executor-helper/src/lib.rs +3 -0
  89. package/contracts/workers/executor-helper/src/tests/executor_helper.rs +184 -0
  90. package/contracts/workers/executor-helper/src/tests/mod.rs +2 -0
  91. package/contracts/workers/executor-helper/src/tests/setup.rs +366 -0
  92. package/contracts/workers/fee-lib-interfaces/Cargo.toml +14 -0
  93. package/contracts/workers/{worker/src/interfaces/mod.rs → fee-lib-interfaces/src/lib.rs} +4 -3
  94. package/contracts/workers/price-feed/Cargo.toml +2 -1
  95. package/contracts/workers/price-feed/src/events.rs +1 -1
  96. package/contracts/workers/price-feed/src/lib.rs +3 -0
  97. package/contracts/workers/price-feed/src/price_feed.rs +6 -12
  98. package/contracts/workers/price-feed/src/storage.rs +1 -1
  99. package/contracts/workers/price-feed/src/tests/mod.rs +2 -0
  100. package/contracts/workers/price-feed/src/tests/price_feed.rs +869 -0
  101. package/contracts/workers/price-feed/src/tests/setup.rs +70 -0
  102. package/contracts/workers/price-feed/src/types.rs +1 -1
  103. package/contracts/workers/worker/src/errors.rs +0 -3
  104. package/contracts/workers/worker/src/lib.rs +0 -2
  105. package/contracts/workers/worker/src/storage.rs +32 -29
  106. package/contracts/workers/worker/src/tests/setup.rs +1 -7
  107. package/contracts/workers/worker/src/tests/worker.rs +50 -42
  108. package/contracts/workers/worker/src/worker.rs +49 -58
  109. package/package.json +4 -5
  110. package/sdk/.turbo/turbo-test.log +229 -217
  111. package/sdk/dist/generated/bml.d.ts +39 -1
  112. package/sdk/dist/generated/bml.js +33 -8
  113. package/sdk/dist/generated/counter.d.ts +131 -3
  114. package/sdk/dist/generated/counter.js +41 -10
  115. package/sdk/dist/generated/dvn.d.ts +431 -362
  116. package/sdk/dist/generated/dvn.js +80 -55
  117. package/sdk/dist/generated/dvn_fee_lib.d.ts +327 -251
  118. package/sdk/dist/generated/dvn_fee_lib.js +55 -57
  119. package/sdk/dist/generated/endpoint.d.ts +131 -3
  120. package/sdk/dist/generated/endpoint.js +41 -10
  121. package/sdk/dist/generated/executor.d.ts +503 -339
  122. package/sdk/dist/generated/executor.js +80 -48
  123. package/sdk/dist/generated/executor_fee_lib.d.ts +395 -319
  124. package/sdk/dist/generated/executor_fee_lib.js +54 -56
  125. package/sdk/dist/generated/executor_helper.d.ts +53 -187
  126. package/sdk/dist/generated/executor_helper.js +47 -29
  127. package/sdk/dist/generated/layerzero_view.d.ts +1271 -0
  128. package/sdk/dist/generated/layerzero_view.js +294 -0
  129. package/sdk/dist/generated/oft.d.ts +1851 -0
  130. package/sdk/dist/generated/oft.js +347 -0
  131. package/sdk/dist/generated/price_feed.d.ts +329 -253
  132. package/sdk/dist/generated/price_feed.js +55 -57
  133. package/sdk/dist/generated/sml.d.ts +131 -3
  134. package/sdk/dist/generated/sml.js +41 -10
  135. package/sdk/dist/generated/treasury.d.ts +131 -3
  136. package/sdk/dist/generated/treasury.js +41 -10
  137. package/sdk/dist/generated/uln302.d.ts +131 -3
  138. package/sdk/dist/generated/uln302.js +43 -12
  139. package/sdk/dist/generated/upgrader.d.ts +201 -15
  140. package/sdk/dist/generated/upgrader.js +99 -1
  141. package/sdk/dist/index.d.ts +2 -2
  142. package/sdk/dist/index.js +3 -3
  143. package/sdk/package.json +3 -2
  144. package/sdk/src/index.ts +3 -3
  145. package/sdk/test/oft-sml.test.ts +20 -20
  146. package/sdk/test/upgrader.test.ts +2 -3
  147. package/sdk/turbo.json +8 -0
  148. package/tools/ts-bindings-gen/Cargo.toml +2 -0
  149. package/tools/ts-bindings-gen/src/main.rs +53 -5
  150. package/turbo.json +0 -2
  151. package/contracts/oapps/oft/src/interfaces/mint_burn_token.rs +0 -23
  152. package/contracts/oapps/oft/src/interfaces/mod.rs +0 -3
  153. package/contracts/oapps/oft/src/oft_impl.rs +0 -201
  154. package/contracts/oapps/oft/src/tests/extensions/mod.rs +0 -11
  155. package/contracts/oapps/oft/src/tests/extensions/setup.rs +0 -917
  156. package/contracts/oapps/oft/src/tests/extensions/test_oft_fee.rs +0 -751
  157. package/contracts/oapps/oft/src/tests/extensions/test_pausable.rs +0 -434
  158. package/contracts/oapps/oft/src/tests/extensions/test_rate_limiter.rs +0 -1080
  159. package/contracts/oapps/oft-std/integration-tests/utils.rs +0 -427
  160. package/contracts/oapps/oft-std/src/lib.rs +0 -16
  161. package/contracts/oapps/oft-std/src/oft.rs +0 -174
  162. package/sdk/dist/generated/oft_std.d.ts +0 -1722
  163. package/sdk/dist/generated/oft_std.js +0 -316
  164. package/sdk/dist/wasm/blocked-message-lib.d.ts +0 -1
  165. package/sdk/dist/wasm/blocked-message-lib.js +0 -2
  166. package/sdk/dist/wasm/counter.d.ts +0 -1
  167. package/sdk/dist/wasm/counter.js +0 -2
  168. package/sdk/dist/wasm/dvn-fee-lib.d.ts +0 -1
  169. package/sdk/dist/wasm/dvn-fee-lib.js +0 -2
  170. package/sdk/dist/wasm/dvn.d.ts +0 -1
  171. package/sdk/dist/wasm/dvn.js +0 -2
  172. package/sdk/dist/wasm/endpoint-v2.d.ts +0 -1
  173. package/sdk/dist/wasm/endpoint-v2.js +0 -2
  174. package/sdk/dist/wasm/executor-fee-lib.d.ts +0 -1
  175. package/sdk/dist/wasm/executor-fee-lib.js +0 -2
  176. package/sdk/dist/wasm/executor-helper.d.ts +0 -1
  177. package/sdk/dist/wasm/executor-helper.js +0 -2
  178. package/sdk/dist/wasm/executor.d.ts +0 -1
  179. package/sdk/dist/wasm/executor.js +0 -2
  180. package/sdk/dist/wasm/layerzero-views.d.ts +0 -1
  181. package/sdk/dist/wasm/layerzero-views.js +0 -2
  182. package/sdk/dist/wasm/oft-std.d.ts +0 -1
  183. package/sdk/dist/wasm/oft-std.js +0 -2
  184. package/sdk/dist/wasm/price-feed.d.ts +0 -1
  185. package/sdk/dist/wasm/price-feed.js +0 -2
  186. package/sdk/dist/wasm/simple-message-lib.d.ts +0 -1
  187. package/sdk/dist/wasm/simple-message-lib.js +0 -2
  188. package/sdk/dist/wasm/treasury.d.ts +0 -1
  189. package/sdk/dist/wasm/treasury.js +0 -2
  190. package/sdk/dist/wasm/uln302.d.ts +0 -1
  191. package/sdk/dist/wasm/uln302.js +0 -2
  192. package/sdk/dist/wasm/upgrader.d.ts +0 -1
  193. package/sdk/dist/wasm/upgrader.js +0 -2
  194. package/sdk/dist/wasm.d.ts +0 -15
  195. package/sdk/dist/wasm.js +0 -15
  196. /package/contracts/oapps/{oft-std → oft}/integration-tests/extensions/mod.rs +0 -0
  197. /package/contracts/oapps/{oft → oft-core}/src/codec/mod.rs +0 -0
  198. /package/contracts/oapps/{oft → oft-core}/src/codec/oft_compose_msg_codec.rs +0 -0
  199. /package/contracts/oapps/{oft → oft-core}/src/codec/oft_msg_codec.rs +0 -0
  200. /package/contracts/oapps/{oft → oft-core}/src/errors.rs +0 -0
  201. /package/contracts/oapps/{oft → oft-core}/src/events.rs +0 -0
  202. /package/contracts/oapps/{oft → oft-core}/src/storage.rs +0 -0
  203. /package/contracts/oapps/{oft → oft-core}/src/tests/test_decimals.rs +0 -0
  204. /package/contracts/oapps/{oft → oft-core}/src/tests/test_oft_compose_msg_codec.rs +0 -0
  205. /package/contracts/oapps/{oft → oft-core}/src/tests/test_oft_version.rs +0 -0
  206. /package/contracts/oapps/{oft → oft-core}/src/tests/test_quote_oft.rs +0 -0
  207. /package/contracts/oapps/{oft → oft-core}/src/tests/test_quote_send.rs +0 -0
  208. /package/contracts/oapps/{oft → oft-core}/src/tests/test_send.rs +0 -0
  209. /package/contracts/oapps/{oft → oft-core}/src/tests/test_token.rs +0 -0
  210. /package/contracts/oapps/{oft → oft-core}/src/types.rs +0 -0
  211. /package/contracts/workers/{worker/src/interfaces → fee-lib-interfaces/src}/dvn_fee_lib.rs +0 -0
  212. /package/contracts/workers/{worker/src/interfaces → fee-lib-interfaces/src}/executor_fee_lib.rs +0 -0
  213. /package/contracts/workers/{worker/src/interfaces → fee-lib-interfaces/src}/price_feed.rs +0 -0
@@ -15,6 +15,20 @@ Breaking changes might not follow SemVer, please pin Vitest's version when using
15
15
  🚀 Starting Stellar localnet...
16
16
  Error response from daemon: No such container: stellar-localnet
17
17
  📥 Pulling stellar/quickstart...
18
+ ❌ Failed to fund account Error: socket hang up
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: socket hang up
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: read ECONNRESET
31
+ ⏳ Waiting for Stellar localnet to start...
18
32
  ❌ Failed to fund account Error: read ECONNRESET
19
33
  ⏳ Waiting for Stellar localnet to start...
20
34
  ❌ Failed to fund account Error: read ECONNRESET
@@ -44,8 +58,6 @@ Error response from daemon: No such container: stellar-localnet
44
58
  ❌ Failed to fund account AxiosError: Request failed with status code 502
45
59
  ⏳ Waiting for Stellar localnet to start...
46
60
  ❌ Failed to fund account AxiosError: Request failed with status code 502
47
- ❌ Failed to fund account AxiosError: Request failed with status code 502
48
- ⏳ Waiting for Stellar localnet to start...
49
61
  ⏳ Waiting for Stellar localnet to start...
50
62
  ❌ Failed to fund account AxiosError: Request failed with status code 502
51
63
  ⏳ Waiting for Stellar localnet to start...
@@ -68,103 +80,103 @@ Deploying SAC for asset: ZRO:GC3CEFPRE265JEVEHYD7XPVYZ2IB2YA4QLDBGZZIGQYN2CMTSU3
68
80
  🚀 Deploying Endpoint...
69
81
  📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/endpoint_v2.wasm
70
82
  📤 Uploading WASM...
71
- 📦 WASM buffer size: 55941 bytes (54.63 KB)
72
- 💰 Upload transaction fee: 32631631 stroops (3.2631631 XLM)
73
- ⏰ WASM TTL: live until ledger 120982 (120959 ledgers remaining, ~7.00 days)
74
- ✅ WASM uploaded, hash: b86e25337989703e3702f05c14078ed60d3d82510f8a9335204aef32a849c9cb
83
+ 📦 WASM buffer size: 58985 bytes (57.60 KB)
84
+ 💰 Upload transaction fee: 33718345 stroops (3.3718345 XLM)
85
+ ⏰ WASM TTL: live until ledger 120980 (120959 ledgers remaining, ~7.00 days)
86
+ ✅ WASM uploaded, hash: 3c42a2e71fd12e74110068c18613ad48ea3d0134d9d64b69a7e4054542f238b4
75
87
  🚀 Deploying contract...
76
- ✅ Contract deployed at: CAAXJXFDDUYTAASU5K6HTINGPGOCX4RZQCHWE2EJR2OKGNVMVNHKS6R6
77
- ✅ Endpoint deployed: CAAXJXFDDUYTAASU5K6HTINGPGOCX4RZQCHWE2EJR2OKGNVMVNHKS6R6
88
+ ✅ Contract deployed at: CDR4QYHJTQU6HBD6XCXONSB5DVFQGKC77RA5UO22DFANXZT7IRWPPEMI
89
+ ✅ Endpoint deployed: CDR4QYHJTQU6HBD6XCXONSB5DVFQGKC77RA5UO22DFANXZT7IRWPPEMI
78
90
  🚀 Deploying Treasury...
79
91
  📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/treasury.wasm
80
92
  📤 Uploading WASM...
81
- 📦 WASM buffer size: 24293 bytes (23.72 KB)
82
- 💰 Upload transaction fee: 10966900 stroops (1.0966900 XLM)
83
- ⏰ WASM TTL: live until ledger 120986 (120959 ledgers remaining, ~7.00 days)
84
- ✅ WASM uploaded, hash: 9586e202580ed2950991a997af897a2ca73b85e373120fd0ec6bb6d2a7b2a8d9
93
+ 📦 WASM buffer size: 27376 bytes (26.73 KB)
94
+ 💰 Upload transaction fee: 12148490 stroops (1.2148490 XLM)
95
+ ⏰ WASM TTL: live until ledger 120984 (120959 ledgers remaining, ~7.00 days)
96
+ ✅ WASM uploaded, hash: 4a095275d9b66e8866541540ae197b1a26aa87cb91c6c8aa4c2a5c30eac9f0ab
85
97
  🚀 Deploying contract...
86
- ✅ Contract deployed at: CBITDFDM2WIBQW2QCVPDSZCBVAZYQVIEDSNLA5QHZ4UBM2NV7VVGJLSZ
87
- ✅ Treasury deployed: CBITDFDM2WIBQW2QCVPDSZCBVAZYQVIEDSNLA5QHZ4UBM2NV7VVGJLSZ
98
+ ✅ Contract deployed at: CAGBBN66P6456YBGEL6DPUKFUZE256LFH3CJME6R5CTWJY6YXFSAQB55
99
+ ✅ Treasury deployed: CAGBBN66P6456YBGEL6DPUKFUZE256LFH3CJME6R5CTWJY6YXFSAQB55
88
100
  🚀 Deploying ULN302...
89
101
  📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/uln302.wasm
90
102
  📤 Uploading WASM...
91
- 📦 WASM buffer size: 54211 bytes (52.94 KB)
92
- 💰 Upload transaction fee: 31614801 stroops (3.1614801 XLM)
93
- ⏰ WASM TTL: live until ledger 120988 (120959 ledgers remaining, ~7.00 days)
94
- ✅ WASM uploaded, hash: dd27c711128d08f43737043bad6cd149fea952c166c50878a023906eed6984e4
103
+ 📦 WASM buffer size: 57360 bytes (56.02 KB)
104
+ 💰 Upload transaction fee: 32789462 stroops (3.2789462 XLM)
105
+ ⏰ WASM TTL: live until ledger 120986 (120959 ledgers remaining, ~7.00 days)
106
+ ✅ WASM uploaded, hash: 34b659da7e2eb6fdca5e34979e277a0993271a71063d8608153c9e3d4b8d281c
95
107
  🚀 Deploying contract...
96
- ✅ Contract deployed at: CDAWZZ4Z5TUZ73MSZLMJ7CCW7XCYFRA4PT74MEJLWGGK3LZV7A4CCSXT
97
- ✅ ULN302 deployed: CDAWZZ4Z5TUZ73MSZLMJ7CCW7XCYFRA4PT74MEJLWGGK3LZV7A4CCSXT
108
+ ✅ Contract deployed at: CDTJOY7KSNKIQABUAASNTYUISMEQOOK25E4BP43TTWABT3HZGC4L5QKQ
109
+ ✅ ULN302 deployed: CDTJOY7KSNKIQABUAASNTYUISMEQOOK25E4BP43TTWABT3HZGC4L5QKQ
98
110
  🚀 Deploying SimpleMessageLib...
99
111
  📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/simple_message_lib.wasm
100
112
  📤 Uploading WASM...
101
- 📦 WASM buffer size: 26121 bytes (25.51 KB)
102
- 💰 Upload transaction fee: 13221637 stroops (1.3221637 XLM)
103
- ⏰ WASM TTL: live until ledger 120991 (120959 ledgers remaining, ~7.00 days)
104
- ✅ WASM uploaded, hash: fc3c7cd3f0249916cff4c361a1930507c61b1de4f84c0c591481323285589e70
113
+ 📦 WASM buffer size: 29199 bytes (28.51 KB)
114
+ 💰 Upload transaction fee: 14384203 stroops (1.4384203 XLM)
115
+ ⏰ WASM TTL: live until ledger 120989 (120959 ledgers remaining, ~7.00 days)
116
+ ✅ WASM uploaded, hash: a8120456f0ed6f500b5b32c1b1957468833d8a9bb26f25a89b28ae31c8732454
105
117
  🚀 Deploying contract...
106
- ✅ Contract deployed at: CDFATRHI66X73D5BMRVAINMAYK4QZ3NOPFVYVIJ43T2FB2AKPDXWEVIJ
107
- ✅ SimpleMessageLib deployed: CDFATRHI66X73D5BMRVAINMAYK4QZ3NOPFVYVIJ43T2FB2AKPDXWEVIJ
118
+ ✅ Contract deployed at: CDKYEEYGMJTO6IXCVZI6TZRUFD73O6QQ37OBEEX2Z6YHDAI4LINHHOI2
119
+ ✅ SimpleMessageLib deployed: CDKYEEYGMJTO6IXCVZI6TZRUFD73O6QQ37OBEEX2Z6YHDAI4LINHHOI2
108
120
  🚀 Deploying Price Feed...
109
121
  📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/price_feed.wasm
110
122
  📤 Uploading WASM...
111
- 📦 WASM buffer size: 32046 bytes (31.29 KB)
112
- 💰 Upload transaction fee: 17483299 stroops (1.7483299 XLM)
113
- ⏰ WASM TTL: live until ledger 120995 (120959 ledgers remaining, ~7.00 days)
114
- ✅ WASM uploaded, hash: f7d079796608eeafd46070b4a73ebaa8327d7f73cd9aa826dd9699b497976381
123
+ 📦 WASM buffer size: 33910 bytes (33.12 KB)
124
+ 💰 Upload transaction fee: 18944352 stroops (1.8944352 XLM)
125
+ ⏰ WASM TTL: live until ledger 120991 (120959 ledgers remaining, ~7.00 days)
126
+ ✅ WASM uploaded, hash: c745d00ca5ca4d2a880fb240dd5bba420626671986b02889d06070506b127fc0
115
127
  🚀 Deploying contract...
116
- ✅ Contract deployed at: CD544ZRWJTLYF4AU3JPFW3R6M2FGJ6NBS67SUTGH6X2PBS6FCQWGSQEM
117
- ✅ Price Feed deployed: CD544ZRWJTLYF4AU3JPFW3R6M2FGJ6NBS67SUTGH6X2PBS6FCQWGSQEM
128
+ ✅ Contract deployed at: CAAXEQK4XDZGAE5BDG56C434AEIW7JX4LAUS3ROPWDH7RKJ5SRHDMUJC
129
+ ✅ Price Feed deployed: CAAXEQK4XDZGAE5BDG56C434AEIW7JX4LAUS3ROPWDH7RKJ5SRHDMUJC
118
130
  🚀 Deploying Executor Fee Lib...
119
131
  📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/executor_fee_lib.wasm
120
132
  📤 Uploading WASM...
121
- 📦 WASM buffer size: 32063 bytes (31.31 KB)
122
- 💰 Upload transaction fee: 13570418 stroops (1.3570418 XLM)
123
- ⏰ WASM TTL: live until ledger 120997 (120959 ledgers remaining, ~7.00 days)
124
- ✅ WASM uploaded, hash: 37b458810f6efd38c4e7a568f64b9e4bff8542360def48b7bb3de7352b2c3a41
133
+ 📦 WASM buffer size: 33881 bytes (33.09 KB)
134
+ 💰 Upload transaction fee: 15014845 stroops (1.5014845 XLM)
135
+ ⏰ WASM TTL: live until ledger 120993 (120959 ledgers remaining, ~7.00 days)
136
+ ✅ WASM uploaded, hash: cd7e67ffb0c0df7c74799d98f380733f77370f7f989df944d2ba0937982f4b4c
125
137
  🚀 Deploying contract...
126
- ✅ Contract deployed at: CD5C3OM7IMEUKS6IFC35SVNJ3WRC6NQ4O5AFURKWLWZ2P636ZCMIIAJL
127
- ✅ Executor Fee Lib deployed: CD5C3OM7IMEUKS6IFC35SVNJ3WRC6NQ4O5AFURKWLWZ2P636ZCMIIAJL
138
+ ✅ Contract deployed at: CBQYHOAGUW25F2E43ILZZUZKXNDEPAUU7SKDXYAHQDNGHIXPHBCW4GZN
139
+ ✅ Executor Fee Lib deployed: CBQYHOAGUW25F2E43ILZZUZKXNDEPAUU7SKDXYAHQDNGHIXPHBCW4GZN
128
140
  🚀 Deploying DVN Fee Lib...
129
141
  📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/dvn_fee_lib.wasm
130
142
  📤 Uploading WASM...
131
- 📦 WASM buffer size: 20368 bytes (19.89 KB)
132
- 💰 Upload transaction fee: 10653461 stroops (1.0653461 XLM)
133
- ⏰ WASM TTL: live until ledger 121000 (120959 ledgers remaining, ~7.00 days)
134
- ✅ WASM uploaded, hash: 67aedc35b7d2dbf1e84011a2b7e6faf9dfecd5d187e6ccfcd3950b2d45fc71a9
143
+ 📦 WASM buffer size: 22203 bytes (21.68 KB)
144
+ 💰 Upload transaction fee: 12125297 stroops (1.2125297 XLM)
145
+ ⏰ WASM TTL: live until ledger 120996 (120959 ledgers remaining, ~7.00 days)
146
+ ✅ WASM uploaded, hash: c0fc2b3021df87431d9ec8748c0ef774e0e831ec7da10948ebcad3022aaa7e3a
135
147
  🚀 Deploying contract...
136
- ✅ Contract deployed at: CAW523NDD6IJH44EN2234HHEEXKM7F6BSN7AVCIA7CSXSCOWDHB47S4J
137
- ✅ DVN Fee Lib deployed: CAW523NDD6IJH44EN2234HHEEXKM7F6BSN7AVCIA7CSXSCOWDHB47S4J
148
+ ✅ Contract deployed at: CAKAYPOSGZJOCKZ4VMVFALDJ4DTGMQYDNUSYLSOYBYRQ7W3NC6GOAKVU
149
+ ✅ DVN Fee Lib deployed: CAKAYPOSGZJOCKZ4VMVFALDJ4DTGMQYDNUSYLSOYBYRQ7W3NC6GOAKVU
138
150
  🚀 Deploying DVN...
139
151
  📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/dvn.wasm
140
152
  📤 Uploading WASM...
141
- 📦 WASM buffer size: 56263 bytes (54.94 KB)
142
- 💰 Upload transaction fee: 26636030 stroops (2.6636030 XLM)
143
- ⏰ WASM TTL: live until ledger 121004 (120959 ledgers remaining, ~7.00 days)
144
- ✅ WASM uploaded, hash: e3856e8f0951e48af74ef84c83633161642b910fc82093e6b611b55c58033e5e
153
+ 📦 WASM buffer size: 57424 bytes (56.08 KB)
154
+ 💰 Upload transaction fee: 27078369 stroops (2.7078369 XLM)
155
+ ⏰ WASM TTL: live until ledger 121000 (120959 ledgers remaining, ~7.00 days)
156
+ ✅ WASM uploaded, hash: 5486564b27e8880db98760b9451c9e180986c8c6b53b45b0e4400e43a1a61139
145
157
  🚀 Deploying contract...
146
- ✅ Contract deployed at: CC3ABUWLZYQP7C3TOLTB7KFLO5423LVHLHEDDD2MXZ3HFZFCDP6ERUKE
147
- ✅ DVN deployed: CC3ABUWLZYQP7C3TOLTB7KFLO5423LVHLHEDDD2MXZ3HFZFCDP6ERUKE
158
+ ✅ Contract deployed at: CBQAMCBIQ6IQK4GHVFA3OSRDJ6UAAPGD3VQB5WWY573V3NYYOIJHKHXQ
159
+ ✅ DVN deployed: CBQAMCBIQ6IQK4GHVFA3OSRDJ6UAAPGD3VQB5WWY573V3NYYOIJHKHXQ
148
160
  🚀 Deploying Executor Helper...
149
161
  📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/executor_helper.wasm
150
162
  📤 Uploading WASM...
151
- 📦 WASM buffer size: 27388 bytes (26.75 KB)
152
- 💰 Upload transaction fee: 8834175 stroops (0.8834175 XLM)
153
- ⏰ WASM TTL: live until ledger 121006 (120959 ledgers remaining, ~7.00 days)
154
- ✅ WASM uploaded, hash: 5dd035ee62d871f20d7ef66dfacb38a9207f05d406f9504d05983442a5499e15
163
+ 📦 WASM buffer size: 23408 bytes (22.86 KB)
164
+ 💰 Upload transaction fee: 8587524 stroops (0.8587524 XLM)
165
+ ⏰ WASM TTL: live until ledger 121003 (120959 ledgers remaining, ~7.00 days)
166
+ ✅ WASM uploaded, hash: fac720170d400a770bd3a859a9fe557494fafac9b61e2af24cfca0900ef38054
155
167
  🚀 Deploying contract...
156
- ✅ Contract deployed at: CCBGQAHT55533N27BNRUQBQQMIABCH7O2RNSPO5ODNYWMSKFNM5SAIOS
157
- ✅ Executor Helper deployed: CCBGQAHT55533N27BNRUQBQQMIABCH7O2RNSPO5ODNYWMSKFNM5SAIOS
168
+ ✅ Contract deployed at: CAQSUVQVM6H44P4AMPE6JKAXRQ2G7GDLPSTVQCOLLT3CKT7JPLHH3XQE
169
+ ✅ Executor Helper deployed: CAQSUVQVM6H44P4AMPE6JKAXRQ2G7GDLPSTVQCOLLT3CKT7JPLHH3XQE
158
170
  🚀 Deploying Executor...
159
171
  📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/executor.wasm
160
172
  📤 Uploading WASM...
161
- 📦 WASM buffer size: 53108 bytes (51.86 KB)
162
- 💰 Upload transaction fee: 24327219 stroops (2.4327219 XLM)
163
- ⏰ WASM TTL: live until ledger 121009 (120959 ledgers remaining, ~7.00 days)
164
- ✅ WASM uploaded, hash: 46bd394defe8fcacaffa8d09f6e546ca85c414d67a399584799bde1c33b98bc9
173
+ 📦 WASM buffer size: 57016 bytes (55.68 KB)
174
+ 💰 Upload transaction fee: 25817815 stroops (2.5817815 XLM)
175
+ ⏰ WASM TTL: live until ledger 121007 (120959 ledgers remaining, ~7.00 days)
176
+ ✅ WASM uploaded, hash: ec6441f915add093cc083aec8a44de354224ca57b5ffc5c9bbc39b6a79dabf4d
165
177
  🚀 Deploying contract...
166
- ✅ Contract deployed at: CB5EEPA7LHQ6X2FK7Q2U7YCE2BSNOB7S65KXHBZJQ4RI32GQCD5O5R4D
167
- ✅ Executor deployed: CB5EEPA7LHQ6X2FK7Q2U7YCE2BSNOB7S65KXHBZJQ4RI32GQCD5O5R4D
178
+ ✅ Contract deployed at: CB3AOOTO3M2KBIZKYEEFYR6HD665VU7WGLNL3HUDESRJK3SCDIIWCNOK
179
+ ✅ Executor deployed: CB3AOOTO3M2KBIZKYEEFYR6HD665VU7WGLNL3HUDESRJK3SCDIIWCNOK
168
180
 
169
181
  ========================================
170
182
  🔗 GLOBAL SETUP: Wiring Protocol Contracts
@@ -190,59 +202,59 @@ Deploying SAC for asset: ZRO:GC3CEFPRE265JEVEHYD7XPVYZ2IB2YA4QLDBGZZIGQYN2CMTSU3
190
202
  stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML)
191
203
  
192
204
  📋 Protocol addresses injected from globalSetup
193
- Endpoint: CAAXJXFDDUYTAASU5K6HTINGPGOCX4RZQCHWE2EJR2OKGNVMVNHKS6R6
194
- SML: CDFATRHI66X73D5BMRVAINMAYK4QZ3NOPFVYVIJ43T2FB2AKPDXWEVIJ
195
- Executor: CB5EEPA7LHQ6X2FK7Q2U7YCE2BSNOB7S65KXHBZJQ4RI32GQCD5O5R4D
196
- Executor Helper: CCBGQAHT55533N27BNRUQBQQMIABCH7O2RNSPO5ODNYWMSKFNM5SAIOS
205
+ Endpoint: CDR4QYHJTQU6HBD6XCXONSB5DVFQGKC77RA5UO22DFANXZT7IRWPPEMI
206
+ SML: CDKYEEYGMJTO6IXCVZI6TZRUFD73O6QQ37OBEEX2Z6YHDAI4LINHHOI2
207
+ Executor: CB3AOOTO3M2KBIZKYEEFYR6HD665VU7WGLNL3HUDESRJK3SCDIIWCNOK
208
+ Executor Helper: CAQSUVQVM6H44P4AMPE6JKAXRQ2G7GDLPSTVQCOLLT3CKT7JPLHH3XQE
197
209
 
198
210
  stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Deploy OFT Contracts > Deploy OFT Token SAC
199
211
  ✅ OFT token issued to DEFAULT_DEPLOYER
200
- Deploying SAC for asset: OFT:GDSYLMZQWJWZKWFLKOC3QNFDAAMJPTHQKQ74EUZB72E55INSKPPFK5SS
212
+ Deploying SAC for asset: OFT:GBUCE5O77BTWDERBLLPW7OC6UZ7UW5WVBQLIQHFSALFRAGTD5YLM37A3
201
213
 
202
214
  stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Deploy OFT Contracts > Deploy OFT Token SAC
203
- ✅ OFT Token SAC deployed: CDXSOO23BLOTGKNZSH7S2G7VA5KOOT3A7MRLPQYBHEILZKJUFCUYLPOF
215
+ ✅ OFT Token SAC deployed: CBIGVFPTO2BE4PGRRWJLBXKIPSNFRFPI2E6G73MJ33JDK52BQ2NB4OCP
204
216
 
205
217
  stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Deploy OFT Contracts > Deploy Lock/Unlock OFT
206
- 📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/oft_std.wasm
218
+ 📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/oft.wasm
207
219
  📤 Uploading WASM...
208
- 📦 WASM buffer size: 56449 bytes (55.13 KB)
220
+ 📦 WASM buffer size: 59665 bytes (58.27 KB)
209
221
 
210
222
  stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Deploy OFT Contracts > Deploy Lock/Unlock OFT
211
- 💰 Upload transaction fee: 31534065 stroops (3.1534065 XLM)
223
+ 💰 Upload transaction fee: 32715255 stroops (3.2715255 XLM)
212
224
 
213
225
  stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Deploy OFT Contracts > Deploy Lock/Unlock OFT
214
- ⏰ WASM TTL: live until ledger 121039 (120959 ledgers remaining, ~7.00 days)
226
+ ⏰ WASM TTL: live until ledger 121033 (120959 ledgers remaining, ~7.00 days)
215
227
 
216
228
  stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Deploy OFT Contracts > Deploy Lock/Unlock OFT
217
- ✅ WASM uploaded, hash: 1755d6982c64bd05dab4882627748c1d0808dd4ea177bc53ef6cbbed3f4aa08b
229
+ ✅ WASM uploaded, hash: eaee4dc138ccd2dd79d0eae000e0c22cd7dee1c3d67ac66313aafda6dab59894
218
230
  🚀 Deploying contract...
219
231
 
220
232
  stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Deploy OFT Contracts > Deploy Lock/Unlock OFT
221
- ✅ Contract deployed at: CBV575AAO7ORPSPOJSTYHINRD4MQVGQMFB6LNSP3K5QZPW6EYYDJTLNU
233
+ ✅ Contract deployed at: CBIXTUHY4DCE4EA2B6AIC5YBT7X42V5ENB3ZKGACCZN3Y44OVCM434GN
222
234
 
223
235
  stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Deploy OFT Contracts > Deploy Lock/Unlock OFT
224
- ✅ Lock/Unlock OFT deployed: CBV575AAO7ORPSPOJSTYHINRD4MQVGQMFB6LNSP3K5QZPW6EYYDJTLNU
236
+ ✅ Lock/Unlock OFT deployed: CBIXTUHY4DCE4EA2B6AIC5YBT7X42V5ENB3ZKGACCZN3Y44OVCM434GN
225
237
 
226
238
  stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Deploy OFT Contracts > Deploy Mint/Burn OFT
227
- 📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/oft_std.wasm
239
+ 📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/oft.wasm
228
240
  📤 Uploading WASM...
229
- 📦 WASM buffer size: 56449 bytes (55.13 KB)
241
+ 📦 WASM buffer size: 59665 bytes (58.27 KB)
230
242
 
231
243
  stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Deploy OFT Contracts > Deploy Mint/Burn OFT
232
- 💰 Upload transaction fee: 1252163 stroops (0.1252163 XLM)
244
+ 💰 Upload transaction fee: 1320912 stroops (0.1320912 XLM)
233
245
 
234
246
  stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Deploy OFT Contracts > Deploy Mint/Burn OFT
235
- ⏰ WASM TTL: live until ledger 121039 (120957 ledgers remaining, ~7.00 days)
247
+ ⏰ WASM TTL: live until ledger 121033 (120957 ledgers remaining, ~7.00 days)
236
248
 
237
249
  stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Deploy OFT Contracts > Deploy Mint/Burn OFT
238
- ✅ WASM uploaded, hash: 1755d6982c64bd05dab4882627748c1d0808dd4ea177bc53ef6cbbed3f4aa08b
250
+ ✅ WASM uploaded, hash: eaee4dc138ccd2dd79d0eae000e0c22cd7dee1c3d67ac66313aafda6dab59894
239
251
  🚀 Deploying contract...
240
252
 
241
253
  stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Deploy OFT Contracts > Deploy Mint/Burn OFT
242
- ✅ Contract deployed at: CCWB6W55SIWNY76LNC2ZPX74OORMQPMIBGWMMVC34KRKMUBU7C3HNO7X
254
+ ✅ Contract deployed at: CBFR4SQDK2DL7YA6L7PK4NEWREMA6BIZOM3CMNPHEHW6CUFOHUGSRXJT
243
255
 
244
256
  stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Deploy OFT Contracts > Deploy Mint/Burn OFT
245
- ✅ Mint/Burn OFT deployed: CCWB6W55SIWNY76LNC2ZPX74OORMQPMIBGWMMVC34KRKMUBU7C3HNO7X
257
+ ✅ Mint/Burn OFT deployed: CBFR4SQDK2DL7YA6L7PK4NEWREMA6BIZOM3CMNPHEHW6CUFOHUGSRXJT
246
258
 
247
259
  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
248
260
  ✅ Lock/Unlock OFT send library set to SML
@@ -285,13 +297,14 @@ Deploying SAC for asset: OFT:GDSYLMZQWJWZKWFLKOC3QNFDAAMJPTHQKQ74EUZB72E55INSKPP
285
297
  📊 Messaging Fee: { native_fee: 100n, zro_fee: 99n }
286
298
 
287
299
  stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Send: Lock/Unlock -> Mint/Burn > Send tokens (Lock/Unlock -> Mint/Burn)
288
- ✅ Tokens sent, ledger: 97
300
+ ✅ Tokens sent, ledger: 89
289
301
 
290
302
  stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Send: Lock/Unlock -> Mint/Burn > Scan PacketSent events
291
303
  📦 Scanning for PacketSent events...
292
304
 
293
305
  stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Send: Lock/Unlock -> Mint/Burn > Scan PacketSent events
294
- 🔍 Scanning events from ledger 97
306
+ 🔍 Scanning events from ledger 89
307
+ Waiting for next ledger...
295
308
 
296
309
  stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Send: Lock/Unlock -> Mint/Burn > Scan PacketSent events
297
310
  ✅ Found 1 events
@@ -313,9 +326,9 @@ Deploying SAC for asset: OFT:GDSYLMZQWJWZKWFLKOC3QNFDAAMJPTHQKQ74EUZB72E55INSKPP
313
326
  stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Send: Lock/Unlock -> Mint/Burn > Receive tokens (mint on Mint/Burn OFT)
314
327
  ✅ Simulation complete
315
328
  Auth entries returned: 1
316
- Processing auth entry for address: CB5EEPA7LHQ6X2FK7Q2U7YCE2BSNOB7S65KXHBZJQ4RI32GQCD5O5R4D
329
+ Processing auth entry for address: CB3AOOTO3M2KBIZKYEEFYR6HD665VU7WGLNL3HUDESRJK3SCDIIWCNOK
317
330
  Auth entry tree:
318
- 📞 CCWB6W55SIWNY76LNC2ZPX74OORMQPMIBGWMMVC34KRKMUBU7C3HNO7X...lz_receive()
331
+ 📞 CBFR4SQDK2DL7YA6L7PK4NEWREMA6BIZOM3CMNPHEHW6CUFOHUGSRXJT...lz_receive()
319
332
  ✍️ Signing executor auth entry (Abstract Account)...
320
333
 
321
334
  stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Send: Lock/Unlock -> Mint/Burn > Receive tokens (mint on Mint/Burn OFT)
@@ -329,7 +342,7 @@ Deploying SAC for asset: OFT:GDSYLMZQWJWZKWFLKOC3QNFDAAMJPTHQKQ74EUZB72E55INSKPP
329
342
  ✅ Transaction envelope signed
330
343
 
331
344
  stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Send: Lock/Unlock -> Mint/Burn > Receive tokens (mint on Mint/Burn OFT)
332
- ✅ Transaction sent, hash: 043c56b2a74c0f83bdef509dd89bb3ba97e3cbd57542714c01520be744e21c1c
345
+ ✅ Transaction sent, hash: c20daa9fae99f48e6eb14cc94f642195511e7561fbee46ac60bd72e6d684df2a
333
346
 
334
347
  stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Send: Lock/Unlock -> Mint/Burn > Receive tokens (mint on Mint/Burn OFT)
335
348
  ✅ Transaction completed successfully
@@ -356,13 +369,13 @@ Deploying SAC for asset: OFT:GDSYLMZQWJWZKWFLKOC3QNFDAAMJPTHQKQ74EUZB72E55INSKPP
356
369
  📊 Reverse Messaging Fee: { native_fee: 100n, zro_fee: 99n }
357
370
 
358
371
  stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Send: Mint/Burn -> Lock/Unlock (Reverse) > Send tokens (Mint/Burn -> Lock/Unlock)
359
- ✅ Tokens sent (reverse), ledger: 104
372
+ ✅ Tokens sent (reverse), ledger: 96
360
373
 
361
374
  stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Send: Mint/Burn -> Lock/Unlock (Reverse) > Scan PacketSent events (reverse)
362
375
  📦 Scanning for PacketSent events...
363
376
 
364
377
  stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Send: Mint/Burn -> Lock/Unlock (Reverse) > Scan PacketSent events (reverse)
365
- 🔍 Scanning events from ledger 104
378
+ 🔍 Scanning events from ledger 96
366
379
 
367
380
  stdout | test/oft-sml.test.ts > OFT E2E Testing with SAC (SML) > Send: Mint/Burn -> Lock/Unlock (Reverse) > Scan PacketSent events (reverse)
368
381
  ✅ Found 1 events
@@ -384,9 +397,9 @@ Deploying SAC for asset: OFT:GDSYLMZQWJWZKWFLKOC3QNFDAAMJPTHQKQ74EUZB72E55INSKPP
384
397
  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)
385
398
  ✅ Simulation complete
386
399
  Auth entries returned: 1
387
- Processing auth entry for address: CB5EEPA7LHQ6X2FK7Q2U7YCE2BSNOB7S65KXHBZJQ4RI32GQCD5O5R4D
400
+ Processing auth entry for address: CB3AOOTO3M2KBIZKYEEFYR6HD665VU7WGLNL3HUDESRJK3SCDIIWCNOK
388
401
  Auth entry tree:
389
- 📞 CBV575AAO7ORPSPOJSTYHINRD4MQVGQMFB6LNSP3K5QZPW6EYYDJTLNU...lz_receive()
402
+ 📞 CBIXTUHY4DCE4EA2B6AIC5YBT7X42V5ENB3ZKGACCZN3Y44OVCM434GN...lz_receive()
390
403
  ✍️ Signing executor auth entry (Abstract Account)...
391
404
 
392
405
  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)
@@ -400,7 +413,7 @@ Deploying SAC for asset: OFT:GDSYLMZQWJWZKWFLKOC3QNFDAAMJPTHQKQ74EUZB72E55INSKPP
400
413
  ✅ Transaction envelope signed
401
414
 
402
415
  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)
403
- ✅ Transaction sent, hash: e4fb474a350330651ccf757e6cbbf7f54a3ab53c45be08d22caae192fe95ee6f
416
+ ✅ Transaction sent, hash: 02a5dde6e08a8cae4e8be318ab904f0a0fe9d34a666327963a556b272ebe77fe
404
417
 
405
418
  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)
406
419
  ✅ Transaction completed successfully
@@ -417,52 +430,53 @@ Deploying SAC for asset: OFT:GDSYLMZQWJWZKWFLKOC3QNFDAAMJPTHQKQ74EUZB72E55INSKPP
417
430
  - RECIPIENT_B (unlocked): 500000000 (expected: 500000000)
418
431
  ✅ OFT E2E test completed successfully!
419
432
 
420
- ✓ test/oft-sml.test.ts (23 tests) 37229ms
421
- ✓ OFT E2E Testing with SAC (SML) > Deploy OFT Contracts > Deploy OFT Token SAC  2099ms
422
- ✓ OFT E2E Testing with SAC (SML) > Deploy OFT Contracts > Deploy Lock/Unlock OFT  2344ms
423
- ✓ OFT E2E Testing with SAC (SML) > Deploy OFT Contracts > Deploy Mint/Burn OFT  3759ms
424
- ✓ OFT E2E Testing with SAC (SML) > Wire OFT Contracts to use SML > Set Lock/Unlock OFT Send Library to SML  1151ms
425
- ✓ OFT E2E Testing with SAC (SML) > Wire OFT Contracts to use SML > Set Lock/Unlock OFT Receive Library to SML  1152ms
426
- ✓ OFT E2E Testing with SAC (SML) > Wire OFT Contracts to use SML > Set Mint/Burn OFT Send Library to SML  2675ms
427
- ✓ OFT E2E Testing with SAC (SML) > Wire OFT Contracts to use SML > Set Mint/Burn OFT Receive Library to SML  1185ms
428
- ✓ OFT E2E Testing with SAC (SML) > Wire OFT Contracts to use SML > Set Lock/Unlock OFT Peer (to Mint/Burn OFT)  1114ms
429
- ✓ OFT E2E Testing with SAC (SML) > Wire OFT Contracts to use SML > Set Mint/Burn OFT Peer (to Lock/Unlock OFT)  1109ms
430
- ✓ OFT E2E Testing with SAC (SML) > Wire OFT Contracts to use SML > Set SAC Admin to Mint/Burn OFT (for minting)  2043ms
431
- ✓ OFT E2E Testing with SAC (SML) > Send: Lock/Unlock -> Mint/Burn > Send tokens (Lock/Unlock -> Mint/Burn)  2752ms
432
- ✓ OFT E2E Testing with SAC (SML) > Send: Lock/Unlock -> Mint/Burn > Validate packet via SML  2612ms
433
- ✓ OFT E2E Testing with SAC (SML) > Send: Lock/Unlock -> Mint/Burn > Receive tokens (mint on Mint/Burn OFT)  1283ms
434
- ✓ OFT E2E Testing with SAC (SML) > Send: Mint/Burn -> Lock/Unlock (Reverse) > Send tokens (Mint/Burn -> Lock/Unlock)  2755ms
435
- ✓ OFT E2E Testing with SAC (SML) > Send: Mint/Burn -> Lock/Unlock (Reverse) > Validate packet via SML (reverse)  1101ms
436
- ✓ OFT E2E Testing with SAC (SML) > Send: Mint/Burn -> Lock/Unlock (Reverse) > Receive tokens (unlock on Lock/Unlock OFT)  2299ms
433
+ ✓ test/oft-sml.test.ts (23 tests) 33367ms
434
+ ✓ OFT E2E Testing with SAC (SML) > Deploy OFT Contracts > Deploy OFT Token SAC  2077ms
435
+ ✓ OFT E2E Testing with SAC (SML) > Deploy OFT Contracts > Deploy Lock/Unlock OFT  2211ms
436
+ ✓ OFT E2E Testing with SAC (SML) > Deploy OFT Contracts > Deploy Mint/Burn OFT  3696ms
437
+ ✓ OFT E2E Testing with SAC (SML) > Wire OFT Contracts to use SML > Set Lock/Unlock OFT Send Library to SML  1099ms
438
+ ✓ OFT E2E Testing with SAC (SML) > Wire OFT Contracts to use SML > Set Lock/Unlock OFT Receive Library to SML  1098ms
439
+ ✓ OFT E2E Testing with SAC (SML) > Wire OFT Contracts to use SML > Set Mint/Burn OFT Send Library to SML  1096ms
440
+ ✓ OFT E2E Testing with SAC (SML) > Wire OFT Contracts to use SML > Set Mint/Burn OFT Receive Library to SML  1098ms
441
+ ✓ OFT E2E Testing with SAC (SML) > Wire OFT Contracts to use SML > Set Lock/Unlock OFT Peer (to Mint/Burn OFT)  1079ms
442
+ ✓ OFT E2E Testing with SAC (SML) > Wire OFT Contracts to use SML > Set Mint/Burn OFT Peer (to Lock/Unlock OFT)  2579ms
443
+ ✓ OFT E2E Testing with SAC (SML) > Wire OFT Contracts to use SML > Set SAC Admin to Mint/Burn OFT (for minting)  1034ms
444
+ ✓ OFT E2E Testing with SAC (SML) > Send: Lock/Unlock -> Mint/Burn > Send tokens (Lock/Unlock -> Mint/Burn)  1197ms
445
+ ✓ OFT E2E Testing with SAC (SML) > Send: Lock/Unlock -> Mint/Burn > Scan PacketSent events  1013ms
446
+ ✓ OFT E2E Testing with SAC (SML) > Send: Lock/Unlock -> Mint/Burn > Validate packet via SML  2591ms
447
+ ✓ OFT E2E Testing with SAC (SML) > Send: Lock/Unlock -> Mint/Burn > Receive tokens (mint on Mint/Burn OFT)  1211ms
448
+ ✓ OFT E2E Testing with SAC (SML) > Send: Mint/Burn -> Lock/Unlock (Reverse) > Send tokens (Mint/Burn -> Lock/Unlock)  2701ms
449
+ ✓ OFT E2E Testing with SAC (SML) > Send: Mint/Burn -> Lock/Unlock (Reverse) > Validate packet via SML (reverse)  1131ms
450
+ ✓ OFT E2E Testing with SAC (SML) > Send: Mint/Burn -> Lock/Unlock (Reverse) > Receive tokens (unlock on Lock/Unlock OFT)  2346ms
437
451
  stdout | test/counter-uln.test.ts > Counter with ULN302 testing
438
452
  
439
453
  📋 Protocol addresses injected from globalSetup
440
- Endpoint: CAAXJXFDDUYTAASU5K6HTINGPGOCX4RZQCHWE2EJR2OKGNVMVNHKS6R6
441
- ULN302: CDAWZZ4Z5TUZ73MSZLMJ7CCW7XCYFRA4PT74MEJLWGGK3LZV7A4CCSXT
442
- DVN: CC3ABUWLZYQP7C3TOLTB7KFLO5423LVHLHEDDD2MXZ3HFZFCDP6ERUKE
443
- Executor: CB5EEPA7LHQ6X2FK7Q2U7YCE2BSNOB7S65KXHBZJQ4RI32GQCD5O5R4D
444
- Executor Helper: CCBGQAHT55533N27BNRUQBQQMIABCH7O2RNSPO5ODNYWMSKFNM5SAIOS
454
+ Endpoint: CDR4QYHJTQU6HBD6XCXONSB5DVFQGKC77RA5UO22DFANXZT7IRWPPEMI
455
+ ULN302: CDTJOY7KSNKIQABUAASNTYUISMEQOOK25E4BP43TTWABT3HZGC4L5QKQ
456
+ DVN: CBQAMCBIQ6IQK4GHVFA3OSRDJ6UAAPGD3VQB5WWY573V3NYYOIJHKHXQ
457
+ Executor: CB3AOOTO3M2KBIZKYEEFYR6HD665VU7WGLNL3HUDESRJK3SCDIIWCNOK
458
+ Executor Helper: CAQSUVQVM6H44P4AMPE6JKAXRQ2G7GDLPSTVQCOLLT3CKT7JPLHH3XQE
445
459
 
446
460
  stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Deploy Counter > Deploy Counter
447
461
  📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/counter.wasm
448
462
  📤 Uploading WASM...
449
- 📦 WASM buffer size: 37218 bytes (36.35 KB)
463
+ 📦 WASM buffer size: 40248 bytes (39.30 KB)
450
464
 
451
465
  stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Deploy Counter > Deploy Counter
452
- 💰 Upload transaction fee: 19583055 stroops (1.9583055 XLM)
466
+ 💰 Upload transaction fee: 20641829 stroops (2.0641829 XLM)
453
467
 
454
468
  stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Deploy Counter > Deploy Counter
455
- ⏰ WASM TTL: live until ledger 121069 (120959 ledgers remaining, ~7.00 days)
469
+ ⏰ WASM TTL: live until ledger 121061 (120959 ledgers remaining, ~7.00 days)
456
470
 
457
471
  stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Deploy Counter > Deploy Counter
458
- ✅ WASM uploaded, hash: 18404f479f5466a66b07e3a44c751b3cb012dd185874584c98603a7974d3d8af
472
+ ✅ WASM uploaded, hash: 4b2f912a1752b17f4f44def177a2ee391423e3462c1bdb97d6364e71ebe5f66c
459
473
  🚀 Deploying contract...
460
474
 
461
475
  stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Deploy Counter > Deploy Counter
462
- ✅ Contract deployed at: CDFIXYSO5N26ML72UHHZATHEW5KEH45BZCXH3OMLXCKZTE5T35F2B6HM
476
+ ✅ Contract deployed at: CCZGBNMXQGQTZ5NMTB4FDJ7PGWSE2MVVDX4HPCX6TAPEQS4TWUK2GMYH
463
477
 
464
478
  stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Deploy Counter > Deploy Counter
465
- ✅ Counter deployed: CDFIXYSO5N26ML72UHHZATHEW5KEH45BZCXH3OMLXCKZTE5T35F2B6HM
479
+ ✅ Counter deployed: CCZGBNMXQGQTZ5NMTB4FDJ7PGWSE2MVVDX4HPCX6TAPEQS4TWUK2GMYH
466
480
 
467
481
  stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Deploy Counter > Set Counter Peer
468
482
  ✅ Counter peer set for EID 30400
@@ -480,7 +494,7 @@ Deploying SAC for asset: OFT:GDSYLMZQWJWZKWFLKOC3QNFDAAMJPTHQKQ74EUZB72E55INSKPP
480
494
  📦 Scanning for PacketSent events...
481
495
 
482
496
  stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Scan PacketSent Events (Composed ABA)
483
- 🔍 Scanning events from ledger 116
497
+ 🔍 Scanning events from ledger 108
484
498
  Waiting for next ledger...
485
499
 
486
500
  stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Scan PacketSent Events (Composed ABA)
@@ -494,7 +508,7 @@ Deploying SAC for asset: OFT:GDSYLMZQWJWZKWFLKOC3QNFDAAMJPTHQKQ74EUZB72E55INSKPP
494
508
 
495
509
  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)
496
510
  ✅ Packet header extracted, length: 81
497
- ✅ Payload hash extracted: e1378115a7813bf7...
511
+ ✅ Payload hash extracted: 9951a1c59b69e536...
498
512
 
499
513
  stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > DVN Verifies Message (Composed ABA)
500
514
  
@@ -502,19 +516,19 @@ Deploying SAC for asset: OFT:GDSYLMZQWJWZKWFLKOC3QNFDAAMJPTHQKQ74EUZB72E55INSKPP
502
516
 
503
517
  stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > DVN Verifies Message (Composed ABA)
504
518
  
505
- 📋 Addresses needing to sign: [ 'CC3ABUWLZYQP7C3TOLTB7KFLO5423LVHLHEDDD2MXZ3HFZFCDP6ERUKE' ]
519
+ 📋 Addresses needing to sign: [ 'CBQAMCBIQ6IQK4GHVFA3OSRDJ6UAAPGD3VQB5WWY573V3NYYOIJHKHXQ' ]
506
520
 
507
521
  stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > DVN Verifies Message (Composed ABA)
508
522
  
509
523
  🌳 DVN Auth Entry Tree:
510
- 📞 CDAWZZ4Z5TUZ73MSZLMJ7CCW7XCYFRA4PT74MEJLWGGK3LZV7A4CCSXT...verify()
524
+ 📞 CDTJOY7KSNKIQABUAASNTYUISMEQOOK25E4BP43TTWABT3HZGC4L5QKQ...verify()
511
525
 
512
- 📝 Signature payload (soroban auth hash): a77d8a0b90f034d98e7044aee3f921a67f935f488a686b6ef1fab92f75fdb140
513
- ✍️ Admin Ed25519 signature created: c2d66db755969b10a66950b6b7ce4f51...
514
- 📝 Call hash for multisig: a15242bac4b8eb2ab15fea339daf2347702e506480ae9d0a8ed308514900f2b6
526
+ 📝 Signature payload (soroban auth hash): 3b2b3aac399da73cedc03fc3ebf627aa24ce55400712ae77866d4de3470b6de0
527
+ ✍️ Admin Ed25519 signature created: 5d4e10c544fdb06503d0ba98c77a24f4...
528
+ 📝 Call hash for multisig: 8adf93f3447b968e39328c5912a94a673052ba645bfe02d707c128c027a02d12
515
529
 
516
530
  stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > DVN Verifies Message (Composed ABA)
517
- ✍️ Multisig signature created: 7a34de1f929b8cb7e18ee539f3def546...
531
+ ✍️ Multisig signature created: 35d71f9547cd213c1a64954d01ec409a...
518
532
 
519
533
  stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > DVN Verifies Message (Composed ABA)
520
534
  
@@ -533,7 +547,7 @@ Deploying SAC for asset: OFT:GDSYLMZQWJWZKWFLKOC3QNFDAAMJPTHQKQ74EUZB72E55INSKPP
533
547
  ✅ Verification committed to endpoint (Composed ABA)
534
548
 
535
549
  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)
536
- 💰 Balance before native drop: 99711945685n
550
+ 💰 Balance before native drop: 99103041002n
537
551
 
538
552
  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)
539
553
  
@@ -545,12 +559,12 @@ Deploying SAC for asset: OFT:GDSYLMZQWJWZKWFLKOC3QNFDAAMJPTHQKQ74EUZB72E55INSKPP
545
559
  Auth entries returned: 2
546
560
  Processing auth entry for address: GC72DFYB5KMI4IHRX63L3PTJ73XCZD6NM5BLHQOHNNJKNZVIIVMK3RTH
547
561
  Auth entry tree:
548
- 📞 CB5EEPA7LHQ6X2FK7Q2U7YCE2BSNOB7S65KXHBZJQ4RI32GQCD5O5R4D...native_drop()
562
+ 📞 CB3AOOTO3M2KBIZKYEEFYR6HD665VU7WGLNL3HUDESRJK3SCDIIWCNOK...native_drop()
549
563
  📞 CDMLFMKMMD7MWZP3FKUBZPVHTUEDLSX4BYGYKH4GCESXYHS3IHQ4EIG4...transfer()
550
564
  ✍️ Signing admin auth entry (regular account)...
551
- Processing auth entry for address: CB5EEPA7LHQ6X2FK7Q2U7YCE2BSNOB7S65KXHBZJQ4RI32GQCD5O5R4D
565
+ Processing auth entry for address: CB3AOOTO3M2KBIZKYEEFYR6HD665VU7WGLNL3HUDESRJK3SCDIIWCNOK
552
566
  Auth entry tree:
553
- 📞 CDFIXYSO5N26ML72UHHZATHEW5KEH45BZCXH3OMLXCKZTE5T35F2B6HM...lz_receive()
567
+ 📞 CCZGBNMXQGQTZ5NMTB4FDJ7PGWSE2MVVDX4HPCX6TAPEQS4TWUK2GMYH...lz_receive()
554
568
  ✍️ Signing executor auth entry (Abstract Account)...
555
569
 
556
570
  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)
@@ -564,13 +578,13 @@ Deploying SAC for asset: OFT:GDSYLMZQWJWZKWFLKOC3QNFDAAMJPTHQKQ74EUZB72E55INSKPP
564
578
  ✅ Transaction envelope signed
565
579
 
566
580
  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)
567
- ✅ Transaction sent, hash: cec4c800b616c85292bdf1c0acd1446e8cb6ae136d43d6e0ae59e5c1e9185835
581
+ ✅ Transaction sent, hash: 7f8223fbf0bbc29c28ea11cf30724159dfcf645572ea7cfd8cd146f51c3ebde5
568
582
 
569
583
  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)
570
584
  ✅ Transaction completed successfully
571
585
 
572
586
  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)
573
- 💰 Balance after native drop: 99712945685n
587
+ 💰 Balance after native drop: 99104041002n
574
588
  ✅ Native drop received: 1000000n stroops
575
589
 
576
590
  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,9 +602,9 @@ Deploying SAC for asset: OFT:GDSYLMZQWJWZKWFLKOC3QNFDAAMJPTHQKQ74EUZB72E55INSKPP
588
602
  Auth entry tree:
589
603
  📞 CDMLFMKMMD7MWZP3FKUBZPVHTUEDLSX4BYGYKH4GCESXYHS3IHQ4EIG4...transfer()
590
604
  ✍️ Signing admin auth entry (regular account)...
591
- Processing auth entry for address: CB5EEPA7LHQ6X2FK7Q2U7YCE2BSNOB7S65KXHBZJQ4RI32GQCD5O5R4D
605
+ Processing auth entry for address: CB3AOOTO3M2KBIZKYEEFYR6HD665VU7WGLNL3HUDESRJK3SCDIIWCNOK
592
606
  Auth entry tree:
593
- 📞 CDFIXYSO5N26ML72UHHZATHEW5KEH45BZCXH3OMLXCKZTE5T35F2B6HM...lz_compose()
607
+ 📞 CCZGBNMXQGQTZ5NMTB4FDJ7PGWSE2MVVDX4HPCX6TAPEQS4TWUK2GMYH...lz_compose()
594
608
  📞 CDMLFMKMMD7MWZP3FKUBZPVHTUEDLSX4BYGYKH4GCESXYHS3IHQ4EIG4...transfer()
595
609
  ✍️ Signing executor auth entry (Abstract Account)...
596
610
 
@@ -605,7 +619,7 @@ Deploying SAC for asset: OFT:GDSYLMZQWJWZKWFLKOC3QNFDAAMJPTHQKQ74EUZB72E55INSKPP
605
619
  ✅ Transaction envelope signed
606
620
 
607
621
  stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Execute lz_compose (Composed ABA)
608
- ✅ Transaction sent, hash: cfd5b97974db8066fb1176396ec241258a06e334b56172a7ce3ea4b5767b77b2
622
+ ✅ Transaction sent, hash: d5e2e6529cf359cc7dcf6dcf564896bacf1eab6122bcd5bfb56c612668f54237
609
623
 
610
624
  stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Execute lz_compose (Composed ABA)
611
625
  ✅ Transaction completed successfully
@@ -620,8 +634,7 @@ Deploying SAC for asset: OFT:GDSYLMZQWJWZKWFLKOC3QNFDAAMJPTHQKQ74EUZB72E55INSKPP
620
634
  📦 Scanning for PacketSent events...
621
635
 
622
636
  stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Scan Return PacketSent Events
623
- 🔍 Scanning events from ledger 125
624
- Waiting for next ledger...
637
+ 🔍 Scanning events from ledger 117
625
638
 
626
639
  stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Scan Return PacketSent Events
627
640
  ✅ Found 2 events
@@ -634,7 +647,7 @@ Deploying SAC for asset: OFT:GDSYLMZQWJWZKWFLKOC3QNFDAAMJPTHQKQ74EUZB72E55INSKPP
634
647
 
635
648
  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
636
649
  ✅ Return packet header extracted, length: 81
637
- ✅ Return payload hash extracted: dbf8e5a9cb0e4d4e...
650
+ ✅ Return payload hash extracted: 371b7a6fea028ff2...
638
651
 
639
652
  stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > DVN Verifies Return Message
640
653
  
@@ -642,19 +655,19 @@ Deploying SAC for asset: OFT:GDSYLMZQWJWZKWFLKOC3QNFDAAMJPTHQKQ74EUZB72E55INSKPP
642
655
 
643
656
  stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > DVN Verifies Return Message
644
657
  
645
- 📋 Addresses needing to sign: [ 'CC3ABUWLZYQP7C3TOLTB7KFLO5423LVHLHEDDD2MXZ3HFZFCDP6ERUKE' ]
658
+ 📋 Addresses needing to sign: [ 'CBQAMCBIQ6IQK4GHVFA3OSRDJ6UAAPGD3VQB5WWY573V3NYYOIJHKHXQ' ]
646
659
 
647
660
  stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > DVN Verifies Return Message
648
661
  
649
662
  🌳 DVN Auth Entry Tree:
650
- 📞 CDAWZZ4Z5TUZ73MSZLMJ7CCW7XCYFRA4PT74MEJLWGGK3LZV7A4CCSXT...verify()
663
+ 📞 CDTJOY7KSNKIQABUAASNTYUISMEQOOK25E4BP43TTWABT3HZGC4L5QKQ...verify()
651
664
 
652
- 📝 Signature payload (soroban auth hash): e8ae9502e8a40797c69090814e434c76d11af0b4a984ab7e17e6fba75cd1459d
653
- ✍️ Admin Ed25519 signature created: c65f122dd856867a1a00cde95ae7038b...
654
- 📝 Call hash for multisig: 4a15cd817a9820e53a3bfdb77e263b9a70693140050de4f920f4f14afbe6ede5
665
+ 📝 Signature payload (soroban auth hash): 3ad89be9321aa7d109d0c7384996dea969081bf50e5c019507640d4a3c734f7a
666
+ ✍️ Admin Ed25519 signature created: 911630240bac64edcc6017594c3b66b5...
667
+ 📝 Call hash for multisig: 8fb1216d96f4d5b428df5085d3f9b33f8f7d96889a4bae56f373407142463750
655
668
 
656
669
  stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > DVN Verifies Return Message
657
- ✍️ Multisig signature created: 9c327f57480a6819cab72ec792e05a71...
670
+ ✍️ Multisig signature created: 001f6d75fed96334dbece424d975a294...
658
671
 
659
672
  stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > DVN Verifies Return Message
660
673
  
@@ -680,9 +693,9 @@ Deploying SAC for asset: OFT:GDSYLMZQWJWZKWFLKOC3QNFDAAMJPTHQKQ74EUZB72E55INSKPP
680
693
  stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Receive Return Message (lz_receive)
681
694
  ✅ Simulation complete
682
695
  Auth entries returned: 1
683
- Processing auth entry for address: CB5EEPA7LHQ6X2FK7Q2U7YCE2BSNOB7S65KXHBZJQ4RI32GQCD5O5R4D
696
+ Processing auth entry for address: CB3AOOTO3M2KBIZKYEEFYR6HD665VU7WGLNL3HUDESRJK3SCDIIWCNOK
684
697
  Auth entry tree:
685
- 📞 CDFIXYSO5N26ML72UHHZATHEW5KEH45BZCXH3OMLXCKZTE5T35F2B6HM...lz_receive()
698
+ 📞 CCZGBNMXQGQTZ5NMTB4FDJ7PGWSE2MVVDX4HPCX6TAPEQS4TWUK2GMYH...lz_receive()
686
699
  ✍️ Signing executor auth entry (Abstract Account)...
687
700
 
688
701
  stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Receive Return Message (lz_receive)
@@ -696,7 +709,7 @@ Deploying SAC for asset: OFT:GDSYLMZQWJWZKWFLKOC3QNFDAAMJPTHQKQ74EUZB72E55INSKPP
696
709
  ✅ Transaction envelope signed
697
710
 
698
711
  stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Receive Return Message (lz_receive)
699
- ✅ Transaction sent, hash: 1b5ad1987cedc0a5fdb9f06d02aa706474bf37e27f366d73bcf028f7ca873b25
712
+ ✅ Transaction sent, hash: b450135967844c058d68bd4dfe651ae37c4167675881ea1e00a040a1d5156a44
700
713
 
701
714
  stdout | test/counter-uln.test.ts > Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Receive Return Message (lz_receive)
702
715
  ✅ Transaction completed successfully
@@ -711,47 +724,46 @@ Deploying SAC for asset: OFT:GDSYLMZQWJWZKWFLKOC3QNFDAAMJPTHQKQ74EUZB72E55INSKPP
711
724
  Workflow: Send ComposedABA → DVN Verify → Commit → native_drop_and_execute
712
725
  → lz_compose (sends return) → DVN Verify → Commit → lz_receive
713
726
 
714
- ✓ test/counter-uln.test.ts (14 tests) 23988ms
715
- ✓ Counter with ULN302 testing > Deploy Counter > Deploy Counter  4712ms
716
- ✓ Counter with ULN302 testing > Deploy Counter > Set Counter Peer  1097ms
717
- ✓ Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Counter Increment (Composed ABA with Native Drop)  1740ms
718
- ✓ Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Scan PacketSent Events (Composed ABA)  1011ms
719
- ✓ Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > DVN Verifies Message (Composed ABA)  1271ms
720
- ✓ Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Commit Verification (Composed ABA)  2619ms
721
- ✓ Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Execute native_drop_and_execute (Composed ABA)  2484ms
722
- ✓ Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Execute lz_compose (Composed ABA)  1751ms
723
- ✓ Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Scan Return PacketSent Events  1011ms
724
- ✓ Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > DVN Verifies Return Message  2810ms
725
- ✓ Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Commit Verification (Return Message)  1102ms
726
- ✓ Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Receive Return Message (lz_receive)  2372ms
727
+ ✓ test/counter-uln.test.ts (14 tests) 22866ms
728
+ ✓ Counter with ULN302 testing > Deploy Counter > Deploy Counter  4662ms
729
+ ✓ Counter with ULN302 testing > Deploy Counter > Set Counter Peer  1153ms
730
+ ✓ Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Counter Increment (Composed ABA with Native Drop)  1849ms
731
+ ✓ Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Scan PacketSent Events (Composed ABA)  1025ms
732
+ ✓ Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > DVN Verifies Message (Composed ABA)  2967ms
733
+ ✓ Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Commit Verification (Composed ABA)  1158ms
734
+ ✓ Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Execute native_drop_and_execute (Composed ABA)  1607ms
735
+ ✓ Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Execute lz_compose (Composed ABA)  2962ms
736
+ ✓ Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > DVN Verifies Return Message  1368ms
737
+ ✓ Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Commit Verification (Return Message)  2636ms
738
+ ✓ Counter with ULN302 testing > Counter Increment with Composed ABA and Native Drop > Receive Return Message (lz_receive)  1428ms
727
739
  stdout | test/counter-sml.test.ts > Counter with SML testing
728
740
  
729
741
  📋 Protocol addresses injected from globalSetup
730
- Endpoint: CAAXJXFDDUYTAASU5K6HTINGPGOCX4RZQCHWE2EJR2OKGNVMVNHKS6R6
731
- SML: CDFATRHI66X73D5BMRVAINMAYK4QZ3NOPFVYVIJ43T2FB2AKPDXWEVIJ
732
- Executor: CB5EEPA7LHQ6X2FK7Q2U7YCE2BSNOB7S65KXHBZJQ4RI32GQCD5O5R4D
733
- Executor Helper: CCBGQAHT55533N27BNRUQBQQMIABCH7O2RNSPO5ODNYWMSKFNM5SAIOS
742
+ Endpoint: CDR4QYHJTQU6HBD6XCXONSB5DVFQGKC77RA5UO22DFANXZT7IRWPPEMI
743
+ SML: CDKYEEYGMJTO6IXCVZI6TZRUFD73O6QQ37OBEEX2Z6YHDAI4LINHHOI2
744
+ Executor: CB3AOOTO3M2KBIZKYEEFYR6HD665VU7WGLNL3HUDESRJK3SCDIIWCNOK
745
+ Executor Helper: CAQSUVQVM6H44P4AMPE6JKAXRQ2G7GDLPSTVQCOLLT3CKT7JPLHH3XQE
734
746
 
735
747
  stdout | test/counter-sml.test.ts > Counter with SML testing > Deploy Counter > Deploy Counter
736
748
  📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/counter.wasm
737
749
  📤 Uploading WASM...
738
- 📦 WASM buffer size: 37218 bytes (36.35 KB)
750
+ 📦 WASM buffer size: 40248 bytes (39.30 KB)
739
751
 
740
752
  stdout | test/counter-sml.test.ts > Counter with SML testing > Deploy Counter > Deploy Counter
741
- 💰 Upload transaction fee: 841087 stroops (0.0841087 XLM)
753
+ 💰 Upload transaction fee: 905817 stroops (0.0905817 XLM)
742
754
 
743
755
  stdout | test/counter-sml.test.ts > Counter with SML testing > Deploy Counter > Deploy Counter
744
- ⏰ WASM TTL: live until ledger 121069 (120935 ledgers remaining, ~7.00 days)
756
+ ⏰ WASM TTL: live until ledger 518506 (518381 ledgers remaining, ~30.00 days)
745
757
 
746
758
  stdout | test/counter-sml.test.ts > Counter with SML testing > Deploy Counter > Deploy Counter
747
- ✅ WASM uploaded, hash: 18404f479f5466a66b07e3a44c751b3cb012dd185874584c98603a7974d3d8af
759
+ ✅ WASM uploaded, hash: 4b2f912a1752b17f4f44def177a2ee391423e3462c1bdb97d6364e71ebe5f66c
748
760
  🚀 Deploying contract...
749
761
 
750
762
  stdout | test/counter-sml.test.ts > Counter with SML testing > Deploy Counter > Deploy Counter
751
- ✅ Contract deployed at: CDRLQAXGT7CG7OVR4A54OS564WDO4XUV4Q5L2SM6GUNE5CX2PFJAHXNW
763
+ ✅ Contract deployed at: CAKWE6JTTT7PT4RPMAXIBHOKOPOBWPG7P42JA6G3JR35E3ANVWVS56YW
752
764
 
753
765
  stdout | test/counter-sml.test.ts > Counter with SML testing > Deploy Counter > Deploy Counter
754
- ✅ Counter deployed: CDRLQAXGT7CG7OVR4A54OS564WDO4XUV4Q5L2SM6GUNE5CX2PFJAHXNW
766
+ ✅ Counter deployed: CAKWE6JTTT7PT4RPMAXIBHOKOPOBWPG7P42JA6G3JR35E3ANVWVS56YW
755
767
 
756
768
  stdout | test/counter-sml.test.ts > Counter with SML testing > Wire Counter to use SML > Set Counter Send Library to SML
757
769
  ✅ Counter send library set to SML
@@ -775,7 +787,7 @@ Deploying SAC for asset: OFT:GDSYLMZQWJWZKWFLKOC3QNFDAAMJPTHQKQ74EUZB72E55INSKPP
775
787
  📦 Scanning for PacketSent events...
776
788
 
777
789
  stdout | test/counter-sml.test.ts > Counter with SML testing > Counter ABA Messaging > Scan PacketSent Events
778
- 🔍 Scanning events from ledger 144
790
+ 🔍 Scanning events from ledger 135
779
791
 
780
792
  stdout | test/counter-sml.test.ts > Counter with SML testing > Counter ABA Messaging > Scan PacketSent Events
781
793
  ✅ Found 1 events
@@ -799,16 +811,16 @@ Deploying SAC for asset: OFT:GDSYLMZQWJWZKWFLKOC3QNFDAAMJPTHQKQ74EUZB72E55INSKPP
799
811
  Auth entries returned: 3
800
812
  Processing auth entry for address: GC72DFYB5KMI4IHRX63L3PTJ73XCZD6NM5BLHQOHNNJKNZVIIVMK3RTH
801
813
  Auth entry tree:
802
- 📞 CB5EEPA7LHQ6X2FK7Q2U7YCE2BSNOB7S65KXHBZJQ4RI32GQCD5O5R4D...native_drop()
814
+ 📞 CB3AOOTO3M2KBIZKYEEFYR6HD665VU7WGLNL3HUDESRJK3SCDIIWCNOK...native_drop()
803
815
  📞 CDMLFMKMMD7MWZP3FKUBZPVHTUEDLSX4BYGYKH4GCESXYHS3IHQ4EIG4...transfer()
804
816
  ✍️ Signing admin auth entry (regular account)...
805
817
  Processing auth entry for address: GC72DFYB5KMI4IHRX63L3PTJ73XCZD6NM5BLHQOHNNJKNZVIIVMK3RTH
806
818
  Auth entry tree:
807
819
  📞 CDMLFMKMMD7MWZP3FKUBZPVHTUEDLSX4BYGYKH4GCESXYHS3IHQ4EIG4...transfer()
808
820
  ✍️ Signing admin auth entry (regular account)...
809
- Processing auth entry for address: CB5EEPA7LHQ6X2FK7Q2U7YCE2BSNOB7S65KXHBZJQ4RI32GQCD5O5R4D
821
+ Processing auth entry for address: CB3AOOTO3M2KBIZKYEEFYR6HD665VU7WGLNL3HUDESRJK3SCDIIWCNOK
810
822
  Auth entry tree:
811
- 📞 CDRLQAXGT7CG7OVR4A54OS564WDO4XUV4Q5L2SM6GUNE5CX2PFJAHXNW...lz_receive()
823
+ 📞 CAKWE6JTTT7PT4RPMAXIBHOKOPOBWPG7P42JA6G3JR35E3ANVWVS56YW...lz_receive()
812
824
  📞 CDMLFMKMMD7MWZP3FKUBZPVHTUEDLSX4BYGYKH4GCESXYHS3IHQ4EIG4...transfer()
813
825
  ✍️ Signing executor auth entry (Abstract Account)...
814
826
 
@@ -823,7 +835,7 @@ Deploying SAC for asset: OFT:GDSYLMZQWJWZKWFLKOC3QNFDAAMJPTHQKQ74EUZB72E55INSKPP
823
835
  ✅ Transaction envelope signed
824
836
 
825
837
  stdout | test/counter-sml.test.ts > Counter with SML testing > Counter ABA Messaging > Receive Counter Message (ABA - triggers response)
826
- ✅ Transaction sent, hash: 7f2f53591d19b001a000899e6c1841c07e615c6ed4b286dd0115c8b4a42cbf25
838
+ ✅ Transaction sent, hash: 4aef28b9643dcd58f3f239591495a16743f234f8ca3218dec99048071cbdd672
827
839
 
828
840
  stdout | test/counter-sml.test.ts > Counter with SML testing > Counter ABA Messaging > Receive Counter Message (ABA - triggers response)
829
841
  ✅ Transaction completed successfully
@@ -835,7 +847,7 @@ Deploying SAC for asset: OFT:GDSYLMZQWJWZKWFLKOC3QNFDAAMJPTHQKQ74EUZB72E55INSKPP
835
847
  📦 Scanning for PacketSent events...
836
848
 
837
849
  stdout | test/counter-sml.test.ts > Counter with SML testing > Counter ABA Messaging > Scan ABA Response PacketSent Events
838
- 🔍 Scanning events from ledger 148
850
+ 🔍 Scanning events from ledger 139
839
851
  Waiting for next ledger...
840
852
 
841
853
  stdout | test/counter-sml.test.ts > Counter with SML testing > Counter ABA Messaging > Scan ABA Response PacketSent Events
@@ -862,9 +874,9 @@ Deploying SAC for asset: OFT:GDSYLMZQWJWZKWFLKOC3QNFDAAMJPTHQKQ74EUZB72E55INSKPP
862
874
  Auth entry tree:
863
875
  📞 CDMLFMKMMD7MWZP3FKUBZPVHTUEDLSX4BYGYKH4GCESXYHS3IHQ4EIG4...transfer()
864
876
  ✍️ Signing admin auth entry (regular account)...
865
- Processing auth entry for address: CB5EEPA7LHQ6X2FK7Q2U7YCE2BSNOB7S65KXHBZJQ4RI32GQCD5O5R4D
877
+ Processing auth entry for address: CB3AOOTO3M2KBIZKYEEFYR6HD665VU7WGLNL3HUDESRJK3SCDIIWCNOK
866
878
  Auth entry tree:
867
- 📞 CDRLQAXGT7CG7OVR4A54OS564WDO4XUV4Q5L2SM6GUNE5CX2PFJAHXNW...lz_receive()
879
+ 📞 CAKWE6JTTT7PT4RPMAXIBHOKOPOBWPG7P42JA6G3JR35E3ANVWVS56YW...lz_receive()
868
880
  📞 CDMLFMKMMD7MWZP3FKUBZPVHTUEDLSX4BYGYKH4GCESXYHS3IHQ4EIG4...transfer()
869
881
  ✍️ Signing executor auth entry (Abstract Account)...
870
882
 
@@ -879,7 +891,7 @@ Deploying SAC for asset: OFT:GDSYLMZQWJWZKWFLKOC3QNFDAAMJPTHQKQ74EUZB72E55INSKPP
879
891
  ✅ Transaction envelope signed
880
892
 
881
893
  stdout | test/counter-sml.test.ts > Counter with SML testing > Counter ABA Messaging > Receive ABA Response Message
882
- ✅ Transaction sent, hash: 82d54cf33a3972245182046e18e92196cf6796ca91f1aa7953a79438fea0910d
894
+ ✅ Transaction sent, hash: 271d99ed6794e3f540c90ab79ee3408e0eed3854b9a10a207b4385f05ff19d07
883
895
 
884
896
  stdout | test/counter-sml.test.ts > Counter with SML testing > Counter ABA Messaging > Receive ABA Response Message
885
897
  ✅ Transaction completed successfully
@@ -891,75 +903,75 @@ Deploying SAC for asset: OFT:GDSYLMZQWJWZKWFLKOC3QNFDAAMJPTHQKQ74EUZB72E55INSKPP
891
903
  Request: Counter → Counter (ABA)
892
904
  Response: Counter → Counter (Vanilla)
893
905
 
894
- ✓ test/counter-sml.test.ts (11 tests) 22014ms
895
- ✓ Counter with SML testing > Deploy Counter > Deploy Counter  4679ms
896
- ✓ Counter with SML testing > Wire Counter to use SML > Set Counter Send Library to SML  1143ms
897
- ✓ Counter with SML testing > Wire Counter to use SML > Set Counter Receive Library to SML  2628ms
898
- ✓ Counter with SML testing > Wire Counter to use SML > Set Counter Peer  1095ms
899
- ✓ Counter with SML testing > Counter ABA Messaging > Counter Increment (ABA)  2815ms
900
- ✓ Counter with SML testing > Counter ABA Messaging > Verify Counter Message  1092ms
901
- ✓ Counter with SML testing > Counter ABA Messaging > Receive Counter Message (ABA - triggers response)  2554ms
902
- ✓ Counter with SML testing > Counter ABA Messaging > Scan ABA Response PacketSent Events  1020ms
903
- ✓ Counter with SML testing > Counter ABA Messaging > Verify ABA Response Message  2607ms
904
- ✓ Counter with SML testing > Counter ABA Messaging > Receive ABA Response Message  2364ms
906
+ ✓ test/counter-sml.test.ts (11 tests) 21989ms
907
+ ✓ Counter with SML testing > Deploy Counter > Deploy Counter  4794ms
908
+ ✓ Counter with SML testing > Wire Counter to use SML > Set Counter Send Library to SML  1163ms
909
+ ✓ Counter with SML testing > Wire Counter to use SML > Set Counter Receive Library to SML  2675ms
910
+ ✓ Counter with SML testing > Wire Counter to use SML > Set Counter Peer  1107ms
911
+ ✓ Counter with SML testing > Counter ABA Messaging > Counter Increment (ABA)  2898ms
912
+ ✓ Counter with SML testing > Counter ABA Messaging > Verify Counter Message  1086ms
913
+ ✓ Counter with SML testing > Counter ABA Messaging > Receive Counter Message (ABA - triggers response)  2434ms
914
+ ✓ Counter with SML testing > Counter ABA Messaging > Scan ABA Response PacketSent Events  1009ms
915
+ ✓ Counter with SML testing > Counter ABA Messaging > Verify ABA Response Message  2553ms
916
+ ✓ Counter with SML testing > Counter ABA Messaging > Receive ABA Response Message  2244ms
905
917
  stdout | test/upgrader.test.ts > Upgrader Contract Testing > Contract Deployments > Deploy Upgrader Contract
906
918
  📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/upgrader.wasm
907
919
  📤 Uploading WASM...
908
- 📦 WASM buffer size: 1597 bytes (1.56 KB)
920
+ 📦 WASM buffer size: 4968 bytes (4.85 KB)
909
921
 
910
922
  stdout | test/upgrader.test.ts > Upgrader Contract Testing > Contract Deployments > Deploy Upgrader Contract
911
- 💰 Upload transaction fee: 1332096 stroops (0.1332096 XLM)
923
+ 💰 Upload transaction fee: 1861717 stroops (0.1861717 XLM)
912
924
 
913
925
  stdout | test/upgrader.test.ts > Upgrader Contract Testing > Contract Deployments > Deploy Upgrader Contract
914
- ⏰ WASM TTL: live until ledger 121115 (120959 ledgers remaining, ~7.00 days)
926
+ ⏰ WASM TTL: live until ledger 121106 (120959 ledgers remaining, ~7.00 days)
915
927
 
916
928
  stdout | test/upgrader.test.ts > Upgrader Contract Testing > Contract Deployments > Deploy Upgrader Contract
917
- ✅ WASM uploaded, hash: 250cba854264d9d437c960e9f8ed838dbf39876947b4fb84c5a209a39b794da6
929
+ ✅ WASM uploaded, hash: 6c749cc6678cc29a835dff31a3198b9cee989f2077b55b662bc1e7df1f9cad26
918
930
  🚀 Deploying contract...
919
931
 
920
932
  stdout | test/upgrader.test.ts > Upgrader Contract Testing > Contract Deployments > Deploy Upgrader Contract
921
- ✅ Contract deployed at: CCMGRTPLVRZGUH6UVVVGPXLXWZL4AMI3G54IIDO4NT6ZQRFMDT2IYEML
933
+ ✅ Contract deployed at: CD2M53L4BFVO2C35XMUD4FXJFY4WIUS4OEYPVI4MYQHB7OOTT7LARRHP
922
934
 
923
935
  stdout | test/upgrader.test.ts > Upgrader Contract Testing > Contract Deployments > Deploy Upgrader Contract
924
- ✅ Upgrader deployed at: CCMGRTPLVRZGUH6UVVVGPXLXWZL4AMI3G54IIDO4NT6ZQRFMDT2IYEML
936
+ ✅ Upgrader deployed at: CD2M53L4BFVO2C35XMUD4FXJFY4WIUS4OEYPVI4MYQHB7OOTT7LARRHP
925
937
 
926
938
  stdout | test/upgrader.test.ts > Upgrader Contract Testing > Contract Deployments > Deploy Test Upgradeable Contract V1
927
939
  📖 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
928
- 📦 WASM buffer size: 5305 bytes (5.18 KB)
940
+ 📦 WASM buffer size: 13683 bytes (13.36 KB)
929
941
 
930
942
  stdout | test/upgrader.test.ts > Upgrader Contract Testing > Contract Deployments > Deploy Test Upgradeable Contract V1
931
- 💰 Upload transaction fee: 4120294 stroops (0.4120294 XLM)
943
+ 💰 Upload transaction fee: 7768174 stroops (0.7768174 XLM)
932
944
 
933
945
  stdout | test/upgrader.test.ts > Upgrader Contract Testing > Contract Deployments > Deploy Test Upgradeable Contract V1
934
- ⏰ WASM TTL: live until ledger 121119 (120959 ledgers remaining, ~7.00 days)
946
+ ⏰ WASM TTL: live until ledger 121110 (120959 ledgers remaining, ~7.00 days)
935
947
 
936
948
  stdout | test/upgrader.test.ts > Upgrader Contract Testing > Contract Deployments > Deploy Test Upgradeable Contract V1
937
- ✅ Test Contract V1 WASM uploaded, hash: 9fb48823f5df25ebe4f0a89d8c73d1ced2665d5e63c4db558717ae4394ccc3d3
949
+ ✅ Test Contract V1 WASM uploaded, hash: 98a1e80e28f1ff1c1ee5b0616b874e41eff1a3f3a63e9de8d9f7e914c1ee8c17
938
950
  🚀 Deploying Test Contract V1...
939
951
 
940
952
  stdout | test/upgrader.test.ts > Upgrader Contract Testing > Contract Deployments > Deploy Test Upgradeable Contract V1
941
- ✅ Test Contract V1 deployed at: CBWDC25QRRQ2DAXLPPKDODDMUCP3QD4W7HC4Z6XXHWJU3SDNHCD5XCHA
953
+ ✅ Test Contract V1 deployed at: CDSLJJFZKKMML4WIS4PULFBB3ECEYIZVJ2OBWXQD5YEN2BOCX262UU5J
942
954
 
943
955
  stdout | test/upgrader.test.ts > Upgrader Contract Testing > Contract Deployments > Verify Test Contract V1 Counter
944
956
  ✅ Test Contract V1 counter value: 1
945
957
 
946
958
  stdout | test/upgrader.test.ts > Upgrader Contract Testing > Upgrade Workflow > Upload Test Contract V2 WASM
947
959
  📖 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
948
- 📦 WASM buffer size: 5305 bytes (5.18 KB)
960
+ 📦 WASM buffer size: 13908 bytes (13.58 KB)
949
961
 
950
962
  stdout | test/upgrader.test.ts > Upgrader Contract Testing > Upgrade Workflow > Upload Test Contract V2 WASM
951
- 💰 Upload transaction fee: 4164122 stroops (0.4164122 XLM)
963
+ 💰 Upload transaction fee: 7953801 stroops (0.7953801 XLM)
952
964
 
953
965
  stdout | test/upgrader.test.ts > Upgrader Contract Testing > Upgrade Workflow > Upload Test Contract V2 WASM
954
- ⏰ WASM TTL: live until ledger 121121 (120959 ledgers remaining, ~7.00 days)
966
+ ⏰ WASM TTL: live until ledger 121112 (120959 ledgers remaining, ~7.00 days)
955
967
 
956
968
  stdout | test/upgrader.test.ts > Upgrader Contract Testing > Upgrade Workflow > Upload Test Contract V2 WASM
957
- ✅ Test Contract V2 WASM uploaded, hash: aaa6e6710fc91d2d72055ed744b9f359a49b4b16fa6cfd069ea747a387e9f5a2
969
+ ✅ Test Contract V2 WASM uploaded, hash: 7d1325b2b683099974089972a3b52573b5bd090e474c56be1d7759baaa0f227e
958
970
 
959
971
  stdout | test/upgrader.test.ts > Upgrader Contract Testing > Upgrade Workflow > Test Upgrader Contract Can Be Called
960
972
  🔄 Testing upgrader contract call...
961
- Contract address: CBWDC25QRRQ2DAXLPPKDODDMUCP3QD4W7HC4Z6XXHWJU3SDNHCD5XCHA
962
- New WASM hash: aaa6e6710fc91d2d72055ed744b9f359a49b4b16fa6cfd069ea747a387e9f5a2
973
+ Contract address: CDSLJJFZKKMML4WIS4PULFBB3ECEYIZVJ2OBWXQD5YEN2BOCX262UU5J
974
+ New WASM hash: 7d1325b2b683099974089972a3b52573b5bd090e474c56be1d7759baaa0f227e
963
975
 
964
976
  stdout | test/upgrader.test.ts > Upgrader Contract Testing > Upgrade Workflow > Test Upgrader Contract Can Be Called
965
977
  ✅ Transaction built with generated client
@@ -977,7 +989,7 @@ Deploying SAC for asset: OFT:GDSYLMZQWJWZKWFLKOC3QNFDAAMJPTHQKQ74EUZB72E55INSKPP
977
989
  ✅ Transaction envelope signed
978
990
 
979
991
  stdout | test/upgrader.test.ts > Upgrader Contract Testing > Upgrade Workflow > Test Upgrader Contract Can Be Called
980
- ✅ Transaction sent, hash: 52028eb4a35499a0193f006934de65988021cb7b4728c66ecaa5261706a9b5d8
992
+ ✅ Transaction sent, hash: 9247a059ef8490f9b4380abb27b59b19626c5ea4dd7f33713cf0586380160f2d
981
993
 
982
994
  stdout | test/upgrader.test.ts > Upgrader Contract Testing > Upgrade Workflow > Test Upgrader Contract Can Be Called
983
995
  ✅ Upgrade transaction completed
@@ -989,17 +1001,17 @@ Deploying SAC for asset: OFT:GDSYLMZQWJWZKWFLKOC3QNFDAAMJPTHQKQ74EUZB72E55INSKPP
989
1001
  stdout | test/upgrader.test.ts > Upgrader Contract Testing > Upgrade Workflow > Verify Test Contract V1 Counter Still Works After Upgrade
990
1002
  ✅ Test Contract V2 counter value (from V1): 1
991
1003
 
992
- ✓ test/upgrader.test.ts (7 tests) 9899ms
993
- ✓ Upgrader Contract Testing > Contract Deployments > Deploy Upgrader Contract  4603ms
994
- ✓ Upgrader Contract Testing > Contract Deployments > Deploy Test Upgradeable Contract V1  2087ms
995
- ✓ Upgrader Contract Testing > Upgrade Workflow > Upload Test Contract V2 WASM  1058ms
996
- ✓ Upgrader Contract Testing > Upgrade Workflow > Test Upgrader Contract Can Be Called  2070ms
1004
+ ✓ test/upgrader.test.ts (7 tests) 8799ms
1005
+ ✓ Upgrader Contract Testing > Contract Deployments > Deploy Upgrader Contract  4577ms
1006
+ ✓ Upgrader Contract Testing > Contract Deployments > Deploy Test Upgradeable Contract V1  2078ms
1007
+ ✓ Upgrader Contract Testing > Upgrade Workflow > Upload Test Contract V2 WASM  1040ms
1008
+ ✓ Upgrader Contract Testing > Upgrade Workflow > Test Upgrader Contract Can Be Called  1041ms
997
1009
 
998
1010
   Test Files  4 passed (4)
999
1011
   Tests  55 passed (55)
1000
1012
  Type Errors  no errors
1001
-  Start at  16:14:00
1002
-  Duration  191.10s (transform 499ms, setup 0ms, collect 938ms, tests 93.13s, environment 0ms, prepare 175ms)
1013
+  Start at  01:02:57
1014
+  Duration  190.38s (transform 546ms, setup 0ms, collect 819ms, tests 87.02s, environment 0ms, prepare 69ms)
1003
1015
 
1004
1016
 
1005
1017
  ========================================