@layerzerolabs/lz-v2-stellar-sdk 0.2.13 → 0.2.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +1 -0
- package/.turbo/turbo-test.log +1009 -0
- package/dist/generated/bml.d.ts +104 -37
- package/dist/generated/bml.js +83 -42
- package/dist/generated/counter.d.ts +334 -175
- package/dist/generated/counter.js +109 -63
- package/dist/generated/dvn.d.ts +1985 -0
- package/dist/generated/dvn.js +326 -0
- package/dist/generated/dvn_fee_lib.d.ts +690 -0
- package/dist/generated/dvn_fee_lib.js +163 -0
- package/dist/generated/endpoint.d.ts +155 -46
- package/dist/generated/endpoint.js +93 -50
- package/dist/generated/executor.d.ts +1841 -0
- package/dist/generated/executor.js +312 -0
- package/dist/generated/executor_fee_lib.d.ts +1083 -0
- package/dist/generated/executor_fee_lib.js +255 -0
- package/dist/generated/executor_helper.d.ts +981 -0
- package/dist/generated/executor_helper.js +236 -0
- package/dist/generated/oft_std.d.ts +1722 -0
- package/dist/generated/oft_std.js +316 -0
- package/dist/generated/price_feed.d.ts +1077 -0
- package/dist/generated/price_feed.js +210 -0
- package/dist/generated/sml.d.ts +171 -56
- package/dist/generated/sml.js +111 -62
- package/dist/generated/treasury.d.ts +896 -0
- package/dist/generated/treasury.js +219 -0
- package/dist/generated/uln302.d.ts +175 -75
- package/dist/generated/uln302.js +126 -82
- package/dist/generated/upgrader.d.ts +70 -0
- package/dist/generated/upgrader.js +19 -0
- package/dist/index.d.ts +10 -0
- package/dist/index.js +14 -0
- package/dist/wasm/blocked-message-lib.d.ts +1 -0
- package/dist/wasm/blocked-message-lib.js +2 -0
- package/dist/wasm/counter.d.ts +1 -0
- package/dist/wasm/counter.js +2 -0
- package/dist/wasm/dvn-fee-lib.d.ts +1 -0
- package/dist/wasm/dvn-fee-lib.js +2 -0
- package/dist/wasm/dvn.d.ts +1 -0
- package/dist/wasm/dvn.js +2 -0
- package/dist/wasm/endpoint-v2.d.ts +1 -0
- package/dist/wasm/endpoint-v2.js +2 -0
- package/dist/wasm/executor-fee-lib.d.ts +1 -0
- package/dist/wasm/executor-fee-lib.js +2 -0
- package/dist/wasm/executor-helper.d.ts +1 -0
- package/dist/wasm/executor-helper.js +2 -0
- package/dist/wasm/executor.d.ts +1 -0
- package/dist/wasm/executor.js +2 -0
- package/dist/wasm/layerzero-views.d.ts +1 -0
- package/dist/wasm/layerzero-views.js +2 -0
- package/dist/wasm/oft-std.d.ts +1 -0
- package/dist/wasm/oft-std.js +2 -0
- package/dist/wasm/price-feed.d.ts +1 -0
- package/dist/wasm/price-feed.js +2 -0
- package/dist/wasm/simple-message-lib.d.ts +1 -0
- package/dist/wasm/simple-message-lib.js +2 -0
- package/dist/wasm/treasury.d.ts +1 -0
- package/dist/wasm/treasury.js +2 -0
- package/dist/wasm/uln302.d.ts +1 -0
- package/dist/wasm/uln302.js +2 -0
- package/dist/wasm/upgrader.d.ts +1 -0
- package/dist/wasm/upgrader.js +2 -0
- package/dist/wasm.d.ts +15 -0
- package/dist/wasm.js +15 -0
- package/package.json +12 -9
- package/src/generated/bml.ts +117 -66
- package/src/generated/counter.ts +338 -191
- package/src/generated/dvn.ts +2036 -0
- package/src/generated/dvn_fee_lib.ts +693 -0
- package/src/generated/endpoint.ts +177 -80
- package/src/generated/executor.ts +228 -127
- package/src/generated/executor_fee_lib.ts +1072 -0
- package/src/generated/executor_helper.ts +163 -57
- package/src/generated/oft_std.ts +800 -246
- package/src/generated/price_feed.ts +1108 -0
- package/src/generated/sml.ts +194 -91
- package/src/generated/treasury.ts +943 -0
- package/src/generated/uln302.ts +211 -113
- package/src/generated/upgrader.ts +102 -0
- package/src/index.ts +17 -0
- package/src/wasm/blocked-message-lib.ts +2 -0
- package/src/wasm/counter.ts +2 -0
- package/src/wasm/dvn-fee-lib.ts +2 -0
- package/src/wasm/dvn.ts +2 -0
- package/src/wasm/endpoint-v2.ts +2 -0
- package/src/wasm/executor-fee-lib.ts +2 -0
- package/src/wasm/executor-helper.ts +2 -0
- package/src/wasm/executor.ts +2 -0
- package/src/wasm/layerzero-views.ts +2 -0
- package/src/wasm/oft-std.ts +2 -0
- package/src/wasm/price-feed.ts +2 -0
- package/src/wasm/simple-message-lib.ts +2 -0
- package/src/wasm/treasury.ts +2 -0
- package/src/wasm/uln302.ts +2 -0
- package/src/wasm/upgrader.ts +2 -0
- package/src/wasm.ts +15 -0
- package/test/counter-sml.test.ts +376 -0
- package/test/counter-uln.test.ts +493 -0
- package/test/{oft.test.ts → oft-sml.test.ts} +187 -323
- package/test/suites/constants.ts +22 -2
- package/test/suites/dummyContractClient.ts +169 -0
- package/test/suites/globalSetup.ts +450 -0
- package/test/suites/localnet.ts +23 -6
- package/test/upgrader.test.ts +300 -0
- package/test/utils.ts +558 -85
- package/vitest.config.ts +21 -0
- package/test/index.test.ts +0 -376
|
@@ -0,0 +1,1009 @@
|
|
|
1
|
+
|
|
2
|
+
> @layerzerolabs/lz-v2-stellar-sdk@0.0.1 test /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/sdk
|
|
3
|
+
> vitest --run --pass-with-no-tests --typecheck
|
|
4
|
+
|
|
5
|
+
[33mTesting types with tsc and vue-tsc is an experimental feature.
|
|
6
|
+
Breaking changes might not follow SemVer, please pin Vitest's version when using it.[39m
|
|
7
|
+
|
|
8
|
+
[1m[46m RUN [49m[22m [36mv3.2.4 [39m[90m/home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/sdk[39m
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
========================================
|
|
12
|
+
🌐 GLOBAL SETUP: Starting Stellar Localnet
|
|
13
|
+
========================================
|
|
14
|
+
|
|
15
|
+
🚀 Starting Stellar localnet...
|
|
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: socket hang up
|
|
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 AxiosError: Request failed with status code 502
|
|
31
|
+
⏳ Waiting for Stellar localnet to start...
|
|
32
|
+
❌ Failed to fund account AxiosError: Request failed with status code 502
|
|
33
|
+
⏳ Waiting for Stellar localnet to start...
|
|
34
|
+
❌ Failed to fund account AxiosError: Request failed with status code 502
|
|
35
|
+
⏳ Waiting for Stellar localnet to start...
|
|
36
|
+
❌ Failed to fund account AxiosError: Request failed with status code 502
|
|
37
|
+
⏳ Waiting for Stellar localnet to start...
|
|
38
|
+
❌ Failed to fund account AxiosError: Request failed with status code 502
|
|
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
|
+
❌ Failed to fund account AxiosError: Request failed with status code 502
|
|
48
|
+
⏳ Waiting for Stellar localnet to start...
|
|
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
|
+
✅ Account GC3CEFPRE265JEVEHYD7XPVYZ2IB2YA4QLDBGZZIGQYN2CMTSU3O5FHM funded
|
|
55
|
+
✅ Account GCG7WDMXVXFSVIZOO3VWZTSWS3UL4ZEFAC3JTCRJEUFD4KUSY7FEGLOB funded
|
|
56
|
+
✅ Account GC72DFYB5KMI4IHRX63L3PTJ73XCZD6NM5BLHQOHNNJKNZVIIVMK3RTH funded
|
|
57
|
+
✅ Stellar localnet started
|
|
58
|
+
Deploying SAC for asset: native
|
|
59
|
+
✅ Native SAC deployed
|
|
60
|
+
✅ ZRO asset issued
|
|
61
|
+
Deploying SAC for asset: ZRO:GC3CEFPRE265JEVEHYD7XPVYZ2IB2YA4QLDBGZZIGQYN2CMTSU3O5FHM
|
|
62
|
+
✅ ZRO SAC deployed
|
|
63
|
+
|
|
64
|
+
========================================
|
|
65
|
+
📦 GLOBAL SETUP: Deploying Protocol Contracts
|
|
66
|
+
========================================
|
|
67
|
+
|
|
68
|
+
🚀 Deploying Endpoint...
|
|
69
|
+
📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/endpoint_v2.wasm
|
|
70
|
+
📤 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
|
|
75
|
+
🚀 Deploying contract...
|
|
76
|
+
✅ Contract deployed at: CAAXJXFDDUYTAASU5K6HTINGPGOCX4RZQCHWE2EJR2OKGNVMVNHKS6R6
|
|
77
|
+
✅ Endpoint deployed: CAAXJXFDDUYTAASU5K6HTINGPGOCX4RZQCHWE2EJR2OKGNVMVNHKS6R6
|
|
78
|
+
🚀 Deploying Treasury...
|
|
79
|
+
📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/treasury.wasm
|
|
80
|
+
📤 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
|
|
85
|
+
🚀 Deploying contract...
|
|
86
|
+
✅ Contract deployed at: CBITDFDM2WIBQW2QCVPDSZCBVAZYQVIEDSNLA5QHZ4UBM2NV7VVGJLSZ
|
|
87
|
+
✅ Treasury deployed: CBITDFDM2WIBQW2QCVPDSZCBVAZYQVIEDSNLA5QHZ4UBM2NV7VVGJLSZ
|
|
88
|
+
🚀 Deploying ULN302...
|
|
89
|
+
📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/uln302.wasm
|
|
90
|
+
📤 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
|
|
95
|
+
🚀 Deploying contract...
|
|
96
|
+
✅ Contract deployed at: CDAWZZ4Z5TUZ73MSZLMJ7CCW7XCYFRA4PT74MEJLWGGK3LZV7A4CCSXT
|
|
97
|
+
✅ ULN302 deployed: CDAWZZ4Z5TUZ73MSZLMJ7CCW7XCYFRA4PT74MEJLWGGK3LZV7A4CCSXT
|
|
98
|
+
🚀 Deploying SimpleMessageLib...
|
|
99
|
+
📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/simple_message_lib.wasm
|
|
100
|
+
📤 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
|
|
105
|
+
🚀 Deploying contract...
|
|
106
|
+
✅ Contract deployed at: CDFATRHI66X73D5BMRVAINMAYK4QZ3NOPFVYVIJ43T2FB2AKPDXWEVIJ
|
|
107
|
+
✅ SimpleMessageLib deployed: CDFATRHI66X73D5BMRVAINMAYK4QZ3NOPFVYVIJ43T2FB2AKPDXWEVIJ
|
|
108
|
+
🚀 Deploying Price Feed...
|
|
109
|
+
📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/price_feed.wasm
|
|
110
|
+
📤 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
|
|
115
|
+
🚀 Deploying contract...
|
|
116
|
+
✅ Contract deployed at: CD544ZRWJTLYF4AU3JPFW3R6M2FGJ6NBS67SUTGH6X2PBS6FCQWGSQEM
|
|
117
|
+
✅ Price Feed deployed: CD544ZRWJTLYF4AU3JPFW3R6M2FGJ6NBS67SUTGH6X2PBS6FCQWGSQEM
|
|
118
|
+
🚀 Deploying Executor Fee Lib...
|
|
119
|
+
📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/executor_fee_lib.wasm
|
|
120
|
+
📤 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
|
|
125
|
+
🚀 Deploying contract...
|
|
126
|
+
✅ Contract deployed at: CD5C3OM7IMEUKS6IFC35SVNJ3WRC6NQ4O5AFURKWLWZ2P636ZCMIIAJL
|
|
127
|
+
✅ Executor Fee Lib deployed: CD5C3OM7IMEUKS6IFC35SVNJ3WRC6NQ4O5AFURKWLWZ2P636ZCMIIAJL
|
|
128
|
+
🚀 Deploying DVN Fee Lib...
|
|
129
|
+
📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/dvn_fee_lib.wasm
|
|
130
|
+
📤 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
|
|
135
|
+
🚀 Deploying contract...
|
|
136
|
+
✅ Contract deployed at: CAW523NDD6IJH44EN2234HHEEXKM7F6BSN7AVCIA7CSXSCOWDHB47S4J
|
|
137
|
+
✅ DVN Fee Lib deployed: CAW523NDD6IJH44EN2234HHEEXKM7F6BSN7AVCIA7CSXSCOWDHB47S4J
|
|
138
|
+
🚀 Deploying DVN...
|
|
139
|
+
📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/dvn.wasm
|
|
140
|
+
📤 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
|
|
145
|
+
🚀 Deploying contract...
|
|
146
|
+
✅ Contract deployed at: CC3ABUWLZYQP7C3TOLTB7KFLO5423LVHLHEDDD2MXZ3HFZFCDP6ERUKE
|
|
147
|
+
✅ DVN deployed: CC3ABUWLZYQP7C3TOLTB7KFLO5423LVHLHEDDD2MXZ3HFZFCDP6ERUKE
|
|
148
|
+
🚀 Deploying Executor Helper...
|
|
149
|
+
📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/executor_helper.wasm
|
|
150
|
+
📤 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
|
|
155
|
+
🚀 Deploying contract...
|
|
156
|
+
✅ Contract deployed at: CCBGQAHT55533N27BNRUQBQQMIABCH7O2RNSPO5ODNYWMSKFNM5SAIOS
|
|
157
|
+
✅ Executor Helper deployed: CCBGQAHT55533N27BNRUQBQQMIABCH7O2RNSPO5ODNYWMSKFNM5SAIOS
|
|
158
|
+
🚀 Deploying Executor...
|
|
159
|
+
📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/executor.wasm
|
|
160
|
+
📤 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
|
|
165
|
+
🚀 Deploying contract...
|
|
166
|
+
✅ Contract deployed at: CB5EEPA7LHQ6X2FK7Q2U7YCE2BSNOB7S65KXHBZJQ4RI32GQCD5O5R4D
|
|
167
|
+
✅ Executor deployed: CB5EEPA7LHQ6X2FK7Q2U7YCE2BSNOB7S65KXHBZJQ4RI32GQCD5O5R4D
|
|
168
|
+
|
|
169
|
+
========================================
|
|
170
|
+
🔗 GLOBAL SETUP: Wiring Protocol Contracts
|
|
171
|
+
========================================
|
|
172
|
+
|
|
173
|
+
🔗 Wiring protocol contracts...
|
|
174
|
+
✅ Libraries registered (ULN302 + SML)
|
|
175
|
+
✅ ZRO token set
|
|
176
|
+
✅ ULN302 executor config set
|
|
177
|
+
✅ ULN302 send/receive configs set
|
|
178
|
+
✅ Default libraries set to ULN302
|
|
179
|
+
✅ Price Feed configured
|
|
180
|
+
✅ Executor configured
|
|
181
|
+
✅ DVN configured
|
|
182
|
+
🎉 Protocol wiring complete!
|
|
183
|
+
|
|
184
|
+
✅ Protocol addresses provided to tests (in-memory)
|
|
185
|
+
|
|
186
|
+
========================================
|
|
187
|
+
✅ GLOBAL SETUP COMPLETE
|
|
188
|
+
========================================
|
|
189
|
+
|
|
190
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)
|
|
191
|
+
[22m[39m
|
|
192
|
+
📋 Protocol addresses injected from globalSetup
|
|
193
|
+
Endpoint: CAAXJXFDDUYTAASU5K6HTINGPGOCX4RZQCHWE2EJR2OKGNVMVNHKS6R6
|
|
194
|
+
SML: CDFATRHI66X73D5BMRVAINMAYK4QZ3NOPFVYVIJ43T2FB2AKPDXWEVIJ
|
|
195
|
+
Executor: CB5EEPA7LHQ6X2FK7Q2U7YCE2BSNOB7S65KXHBZJQ4RI32GQCD5O5R4D
|
|
196
|
+
Executor Helper: CCBGQAHT55533N27BNRUQBQQMIABCH7O2RNSPO5ODNYWMSKFNM5SAIOS
|
|
197
|
+
|
|
198
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mDeploy OFT Contracts[2m > [22m[2mDeploy OFT Token SAC
|
|
199
|
+
[22m[39m✅ OFT token issued to DEFAULT_DEPLOYER
|
|
200
|
+
Deploying SAC for asset: OFT:GDSYLMZQWJWZKWFLKOC3QNFDAAMJPTHQKQ74EUZB72E55INSKPPFK5SS
|
|
201
|
+
|
|
202
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mDeploy OFT Contracts[2m > [22m[2mDeploy OFT Token SAC
|
|
203
|
+
[22m[39m✅ OFT Token SAC deployed: CDXSOO23BLOTGKNZSH7S2G7VA5KOOT3A7MRLPQYBHEILZKJUFCUYLPOF
|
|
204
|
+
|
|
205
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mDeploy OFT Contracts[2m > [22m[2mDeploy Lock/Unlock OFT
|
|
206
|
+
[22m[39m📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/oft_std.wasm
|
|
207
|
+
📤 Uploading WASM...
|
|
208
|
+
📦 WASM buffer size: 56449 bytes (55.13 KB)
|
|
209
|
+
|
|
210
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mDeploy OFT Contracts[2m > [22m[2mDeploy Lock/Unlock OFT
|
|
211
|
+
[22m[39m💰 Upload transaction fee: 31534065 stroops (3.1534065 XLM)
|
|
212
|
+
|
|
213
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mDeploy OFT Contracts[2m > [22m[2mDeploy Lock/Unlock OFT
|
|
214
|
+
[22m[39m⏰ WASM TTL: live until ledger 121039 (120959 ledgers remaining, ~7.00 days)
|
|
215
|
+
|
|
216
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mDeploy OFT Contracts[2m > [22m[2mDeploy Lock/Unlock OFT
|
|
217
|
+
[22m[39m✅ WASM uploaded, hash: 1755d6982c64bd05dab4882627748c1d0808dd4ea177bc53ef6cbbed3f4aa08b
|
|
218
|
+
🚀 Deploying contract...
|
|
219
|
+
|
|
220
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mDeploy OFT Contracts[2m > [22m[2mDeploy Lock/Unlock OFT
|
|
221
|
+
[22m[39m✅ Contract deployed at: CBV575AAO7ORPSPOJSTYHINRD4MQVGQMFB6LNSP3K5QZPW6EYYDJTLNU
|
|
222
|
+
|
|
223
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mDeploy OFT Contracts[2m > [22m[2mDeploy Lock/Unlock OFT
|
|
224
|
+
[22m[39m✅ Lock/Unlock OFT deployed: CBV575AAO7ORPSPOJSTYHINRD4MQVGQMFB6LNSP3K5QZPW6EYYDJTLNU
|
|
225
|
+
|
|
226
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mDeploy OFT Contracts[2m > [22m[2mDeploy Mint/Burn OFT
|
|
227
|
+
[22m[39m📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/oft_std.wasm
|
|
228
|
+
📤 Uploading WASM...
|
|
229
|
+
📦 WASM buffer size: 56449 bytes (55.13 KB)
|
|
230
|
+
|
|
231
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mDeploy OFT Contracts[2m > [22m[2mDeploy Mint/Burn OFT
|
|
232
|
+
[22m[39m💰 Upload transaction fee: 1252163 stroops (0.1252163 XLM)
|
|
233
|
+
|
|
234
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mDeploy OFT Contracts[2m > [22m[2mDeploy Mint/Burn OFT
|
|
235
|
+
[22m[39m⏰ WASM TTL: live until ledger 121039 (120957 ledgers remaining, ~7.00 days)
|
|
236
|
+
|
|
237
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mDeploy OFT Contracts[2m > [22m[2mDeploy Mint/Burn OFT
|
|
238
|
+
[22m[39m✅ WASM uploaded, hash: 1755d6982c64bd05dab4882627748c1d0808dd4ea177bc53ef6cbbed3f4aa08b
|
|
239
|
+
🚀 Deploying contract...
|
|
240
|
+
|
|
241
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mDeploy OFT Contracts[2m > [22m[2mDeploy Mint/Burn OFT
|
|
242
|
+
[22m[39m✅ Contract deployed at: CCWB6W55SIWNY76LNC2ZPX74OORMQPMIBGWMMVC34KRKMUBU7C3HNO7X
|
|
243
|
+
|
|
244
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mDeploy OFT Contracts[2m > [22m[2mDeploy Mint/Burn OFT
|
|
245
|
+
[22m[39m✅ Mint/Burn OFT deployed: CCWB6W55SIWNY76LNC2ZPX74OORMQPMIBGWMMVC34KRKMUBU7C3HNO7X
|
|
246
|
+
|
|
247
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mWire OFT Contracts to use SML[2m > [22m[2mSet Lock/Unlock OFT Send Library to SML
|
|
248
|
+
[22m[39m✅ Lock/Unlock OFT send library set to SML
|
|
249
|
+
|
|
250
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mWire OFT Contracts to use SML[2m > [22m[2mSet Lock/Unlock OFT Receive Library to SML
|
|
251
|
+
[22m[39m✅ Lock/Unlock OFT receive library set to SML
|
|
252
|
+
|
|
253
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mWire OFT Contracts to use SML[2m > [22m[2mSet Mint/Burn OFT Send Library to SML
|
|
254
|
+
[22m[39m✅ Mint/Burn OFT send library set to SML
|
|
255
|
+
|
|
256
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mWire OFT Contracts to use SML[2m > [22m[2mSet Mint/Burn OFT Receive Library to SML
|
|
257
|
+
[22m[39m✅ Mint/Burn OFT receive library set to SML
|
|
258
|
+
|
|
259
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mWire OFT Contracts to use SML[2m > [22m[2mSet Lock/Unlock OFT Peer (to Mint/Burn OFT)
|
|
260
|
+
[22m[39m✅ Lock/Unlock OFT peer set to Mint/Burn OFT
|
|
261
|
+
|
|
262
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mWire OFT Contracts to use SML[2m > [22m[2mSet Mint/Burn OFT Peer (to Lock/Unlock OFT)
|
|
263
|
+
[22m[39m✅ Mint/Burn OFT peer set to Lock/Unlock OFT
|
|
264
|
+
|
|
265
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mWire OFT Contracts to use SML[2m > [22m[2mSet SAC Admin to Mint/Burn OFT (for minting)
|
|
266
|
+
[22m[39m✅ SAC admin set to Mint/Burn OFT
|
|
267
|
+
|
|
268
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Lock/Unlock -> Mint/Burn[2m > [22m[2mVerify initial balances
|
|
269
|
+
[22m[39m📊 Initial Balances:
|
|
270
|
+
- Sender (DEFAULT_DEPLOYER): 10000000000 (expected: 10000000000)
|
|
271
|
+
|
|
272
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Lock/Unlock -> Mint/Burn[2m > [22m[2mVerify initial balances
|
|
273
|
+
[22m[39m - RECIPIENT_A: 0 (expected: 0)
|
|
274
|
+
|
|
275
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Lock/Unlock -> Mint/Burn[2m > [22m[2mQuote OFT send
|
|
276
|
+
[22m[39m📊 OFT Quote:
|
|
277
|
+
Limit: {
|
|
278
|
+
max_amount_ld: [33m170141183460469231731687303715884105727n[39m,
|
|
279
|
+
min_amount_ld: [33m0n[39m
|
|
280
|
+
}
|
|
281
|
+
Fee Details: []
|
|
282
|
+
Receipt: { amount_received_ld: [33m1000000000n[39m, amount_sent_ld: [33m1000000000n[39m }
|
|
283
|
+
|
|
284
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Lock/Unlock -> Mint/Burn[2m > [22m[2mSend tokens (Lock/Unlock -> Mint/Burn)
|
|
285
|
+
[22m[39m📊 Messaging Fee: { native_fee: [33m100n[39m, zro_fee: [33m99n[39m }
|
|
286
|
+
|
|
287
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Lock/Unlock -> Mint/Burn[2m > [22m[2mSend tokens (Lock/Unlock -> Mint/Burn)
|
|
288
|
+
[22m[39m✅ Tokens sent, ledger: [33m97[39m
|
|
289
|
+
|
|
290
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Lock/Unlock -> Mint/Burn[2m > [22m[2mScan PacketSent events
|
|
291
|
+
[22m[39m📦 Scanning for PacketSent events...
|
|
292
|
+
|
|
293
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Lock/Unlock -> Mint/Burn[2m > [22m[2mScan PacketSent events
|
|
294
|
+
[22m[39m🔍 Scanning events from ledger [33m97[39m
|
|
295
|
+
|
|
296
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Lock/Unlock -> Mint/Burn[2m > [22m[2mScan PacketSent events
|
|
297
|
+
[22m[39m✅ Found 1 events
|
|
298
|
+
|
|
299
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Lock/Unlock -> Mint/Burn[2m > [22m[2mScan PacketSent events
|
|
300
|
+
[22m[39m✅ Found 1 PacketSent events
|
|
301
|
+
|
|
302
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Lock/Unlock -> Mint/Burn[2m > [22m[2mScan PacketSent events
|
|
303
|
+
[22m[39m✅ PacketSent events scanned. Found 1 events
|
|
304
|
+
|
|
305
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Lock/Unlock -> Mint/Burn[2m > [22m[2mValidate packet via SML
|
|
306
|
+
[22m[39m✅ Packet validated via SML
|
|
307
|
+
|
|
308
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Lock/Unlock -> Mint/Burn[2m > [22m[2mReceive tokens (mint on Mint/Burn OFT)
|
|
309
|
+
[22m[39m
|
|
310
|
+
🔄 Building transaction for non-root auth...
|
|
311
|
+
🔄 Simulating with record_allow_nonroot...
|
|
312
|
+
|
|
313
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Lock/Unlock -> Mint/Burn[2m > [22m[2mReceive tokens (mint on Mint/Burn OFT)
|
|
314
|
+
[22m[39m✅ Simulation complete
|
|
315
|
+
Auth entries returned: [33m1[39m
|
|
316
|
+
Processing auth entry for address: CB5EEPA7LHQ6X2FK7Q2U7YCE2BSNOB7S65KXHBZJQ4RI32GQCD5O5R4D
|
|
317
|
+
Auth entry tree:
|
|
318
|
+
📞 CCWB6W55SIWNY76LNC2ZPX74OORMQPMIBGWMMVC34KRKMUBU7C3HNO7X...lz_receive()
|
|
319
|
+
✍️ Signing executor auth entry (Abstract Account)...
|
|
320
|
+
|
|
321
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Lock/Unlock -> Mint/Burn[2m > [22m[2mReceive tokens (mint on Mint/Burn OFT)
|
|
322
|
+
[22m[39m✅ Auth entries signed
|
|
323
|
+
✅ Transaction assembled with signed auth entries
|
|
324
|
+
|
|
325
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Lock/Unlock -> Mint/Burn[2m > [22m[2mReceive tokens (mint on Mint/Burn OFT)
|
|
326
|
+
[22m[39m✅ Final simulation completed
|
|
327
|
+
|
|
328
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Lock/Unlock -> Mint/Burn[2m > [22m[2mReceive tokens (mint on Mint/Burn OFT)
|
|
329
|
+
[22m[39m✅ Transaction envelope signed
|
|
330
|
+
|
|
331
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Lock/Unlock -> Mint/Burn[2m > [22m[2mReceive tokens (mint on Mint/Burn OFT)
|
|
332
|
+
[22m[39m✅ Transaction sent, hash: 043c56b2a74c0f83bdef509dd89bb3ba97e3cbd57542714c01520be744e21c1c
|
|
333
|
+
|
|
334
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Lock/Unlock -> Mint/Burn[2m > [22m[2mReceive tokens (mint on Mint/Burn OFT)
|
|
335
|
+
[22m[39m✅ Transaction completed successfully
|
|
336
|
+
|
|
337
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Lock/Unlock -> Mint/Burn[2m > [22m[2mReceive tokens (mint on Mint/Burn OFT)
|
|
338
|
+
[22m[39m✅ Tokens received and minted on Mint/Burn OFT
|
|
339
|
+
|
|
340
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Lock/Unlock -> Mint/Burn[2m > [22m[2mVerify balances after forward send
|
|
341
|
+
[22m[39m📊 Balances after forward send:
|
|
342
|
+
- Sender (DEFAULT_DEPLOYER): 9000000000 (expected: 9000000000)
|
|
343
|
+
- Lock/Unlock OFT (locked): 1000000000 (expected: 1000000000)
|
|
344
|
+
- RECIPIENT_A (minted): 1000000000 (expected: 1000000000)
|
|
345
|
+
|
|
346
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Mint/Burn -> Lock/Unlock (Reverse)[2m > [22m[2mQuote OFT send (reverse)
|
|
347
|
+
[22m[39m📊 Reverse OFT Quote:
|
|
348
|
+
Limit: {
|
|
349
|
+
max_amount_ld: [33m170141183460469231731687303715884105727n[39m,
|
|
350
|
+
min_amount_ld: [33m0n[39m
|
|
351
|
+
}
|
|
352
|
+
Fee Details: []
|
|
353
|
+
Receipt: { amount_received_ld: [33m500000000n[39m, amount_sent_ld: [33m500000000n[39m }
|
|
354
|
+
|
|
355
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Mint/Burn -> Lock/Unlock (Reverse)[2m > [22m[2mSend tokens (Mint/Burn -> Lock/Unlock)
|
|
356
|
+
[22m[39m📊 Reverse Messaging Fee: { native_fee: [33m100n[39m, zro_fee: [33m99n[39m }
|
|
357
|
+
|
|
358
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Mint/Burn -> Lock/Unlock (Reverse)[2m > [22m[2mSend tokens (Mint/Burn -> Lock/Unlock)
|
|
359
|
+
[22m[39m✅ Tokens sent (reverse), ledger: [33m104[39m
|
|
360
|
+
|
|
361
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Mint/Burn -> Lock/Unlock (Reverse)[2m > [22m[2mScan PacketSent events (reverse)
|
|
362
|
+
[22m[39m📦 Scanning for PacketSent events...
|
|
363
|
+
|
|
364
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Mint/Burn -> Lock/Unlock (Reverse)[2m > [22m[2mScan PacketSent events (reverse)
|
|
365
|
+
[22m[39m🔍 Scanning events from ledger [33m104[39m
|
|
366
|
+
|
|
367
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Mint/Burn -> Lock/Unlock (Reverse)[2m > [22m[2mScan PacketSent events (reverse)
|
|
368
|
+
[22m[39m✅ Found 1 events
|
|
369
|
+
|
|
370
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Mint/Burn -> Lock/Unlock (Reverse)[2m > [22m[2mScan PacketSent events (reverse)
|
|
371
|
+
[22m[39m✅ Found 1 PacketSent events
|
|
372
|
+
|
|
373
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Mint/Burn -> Lock/Unlock (Reverse)[2m > [22m[2mScan PacketSent events (reverse)
|
|
374
|
+
[22m[39m✅ PacketSent events scanned (reverse). Found 1 events
|
|
375
|
+
|
|
376
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Mint/Burn -> Lock/Unlock (Reverse)[2m > [22m[2mValidate packet via SML (reverse)
|
|
377
|
+
[22m[39m✅ Packet validated via SML (reverse)
|
|
378
|
+
|
|
379
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Mint/Burn -> Lock/Unlock (Reverse)[2m > [22m[2mReceive tokens (unlock on Lock/Unlock OFT)
|
|
380
|
+
[22m[39m
|
|
381
|
+
🔄 Building transaction for non-root auth...
|
|
382
|
+
🔄 Simulating with record_allow_nonroot...
|
|
383
|
+
|
|
384
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Mint/Burn -> Lock/Unlock (Reverse)[2m > [22m[2mReceive tokens (unlock on Lock/Unlock OFT)
|
|
385
|
+
[22m[39m✅ Simulation complete
|
|
386
|
+
Auth entries returned: [33m1[39m
|
|
387
|
+
Processing auth entry for address: CB5EEPA7LHQ6X2FK7Q2U7YCE2BSNOB7S65KXHBZJQ4RI32GQCD5O5R4D
|
|
388
|
+
Auth entry tree:
|
|
389
|
+
📞 CBV575AAO7ORPSPOJSTYHINRD4MQVGQMFB6LNSP3K5QZPW6EYYDJTLNU...lz_receive()
|
|
390
|
+
✍️ Signing executor auth entry (Abstract Account)...
|
|
391
|
+
|
|
392
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Mint/Burn -> Lock/Unlock (Reverse)[2m > [22m[2mReceive tokens (unlock on Lock/Unlock OFT)
|
|
393
|
+
[22m[39m✅ Auth entries signed
|
|
394
|
+
✅ Transaction assembled with signed auth entries
|
|
395
|
+
|
|
396
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Mint/Burn -> Lock/Unlock (Reverse)[2m > [22m[2mReceive tokens (unlock on Lock/Unlock OFT)
|
|
397
|
+
[22m[39m✅ Final simulation completed
|
|
398
|
+
|
|
399
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Mint/Burn -> Lock/Unlock (Reverse)[2m > [22m[2mReceive tokens (unlock on Lock/Unlock OFT)
|
|
400
|
+
[22m[39m✅ Transaction envelope signed
|
|
401
|
+
|
|
402
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Mint/Burn -> Lock/Unlock (Reverse)[2m > [22m[2mReceive tokens (unlock on Lock/Unlock OFT)
|
|
403
|
+
[22m[39m✅ Transaction sent, hash: e4fb474a350330651ccf757e6cbbf7f54a3ab53c45be08d22caae192fe95ee6f
|
|
404
|
+
|
|
405
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Mint/Burn -> Lock/Unlock (Reverse)[2m > [22m[2mReceive tokens (unlock on Lock/Unlock OFT)
|
|
406
|
+
[22m[39m✅ Transaction completed successfully
|
|
407
|
+
|
|
408
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Mint/Burn -> Lock/Unlock (Reverse)[2m > [22m[2mReceive tokens (unlock on Lock/Unlock OFT)
|
|
409
|
+
[22m[39m✅ Tokens received and unlocked on Lock/Unlock OFT
|
|
410
|
+
|
|
411
|
+
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Mint/Burn -> Lock/Unlock (Reverse)[2m > [22m[2mVerify final balances
|
|
412
|
+
[22m[39m
|
|
413
|
+
📊 Final Balance Summary:
|
|
414
|
+
- Sender (DEFAULT_DEPLOYER): 8500000000 (expected: 8500000000)
|
|
415
|
+
- Lock/Unlock OFT (locked): 500000000 (expected: 500000000)
|
|
416
|
+
- RECIPIENT_A (minted): 1000000000 (expected: 1000000000)
|
|
417
|
+
- RECIPIENT_B (unlocked): 500000000 (expected: 500000000)
|
|
418
|
+
✅ OFT E2E test completed successfully!
|
|
419
|
+
|
|
420
|
+
[32m✓[39m test/oft-sml.test.ts [2m([22m[2m23 tests[22m[2m)[22m[33m 37229[2mms[22m[39m
|
|
421
|
+
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [22mDeploy OFT Contracts[2m > [22mDeploy OFT Token SAC [33m 2099[2mms[22m[39m
|
|
422
|
+
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [22mDeploy OFT Contracts[2m > [22mDeploy Lock/Unlock OFT [33m 2344[2mms[22m[39m
|
|
423
|
+
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [22mDeploy OFT Contracts[2m > [22mDeploy Mint/Burn OFT [33m 3759[2mms[22m[39m
|
|
424
|
+
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [22mWire OFT Contracts to use SML[2m > [22mSet Lock/Unlock OFT Send Library to SML [33m 1151[2mms[22m[39m
|
|
425
|
+
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [22mWire OFT Contracts to use SML[2m > [22mSet Lock/Unlock OFT Receive Library to SML [33m 1152[2mms[22m[39m
|
|
426
|
+
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [22mWire OFT Contracts to use SML[2m > [22mSet Mint/Burn OFT Send Library to SML [33m 2675[2mms[22m[39m
|
|
427
|
+
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [22mWire OFT Contracts to use SML[2m > [22mSet Mint/Burn OFT Receive Library to SML [33m 1185[2mms[22m[39m
|
|
428
|
+
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [22mWire OFT Contracts to use SML[2m > [22mSet Lock/Unlock OFT Peer (to Mint/Burn OFT) [33m 1114[2mms[22m[39m
|
|
429
|
+
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [22mWire OFT Contracts to use SML[2m > [22mSet Mint/Burn OFT Peer (to Lock/Unlock OFT) [33m 1109[2mms[22m[39m
|
|
430
|
+
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [22mWire OFT Contracts to use SML[2m > [22mSet SAC Admin to Mint/Burn OFT (for minting) [33m 2043[2mms[22m[39m
|
|
431
|
+
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [22mSend: Lock/Unlock -> Mint/Burn[2m > [22mSend tokens (Lock/Unlock -> Mint/Burn) [33m 2752[2mms[22m[39m
|
|
432
|
+
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [22mSend: Lock/Unlock -> Mint/Burn[2m > [22mValidate packet via SML [33m 2612[2mms[22m[39m
|
|
433
|
+
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [22mSend: Lock/Unlock -> Mint/Burn[2m > [22mReceive tokens (mint on Mint/Burn OFT) [33m 1283[2mms[22m[39m
|
|
434
|
+
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [22mSend: Mint/Burn -> Lock/Unlock (Reverse)[2m > [22mSend tokens (Mint/Burn -> Lock/Unlock) [33m 2755[2mms[22m[39m
|
|
435
|
+
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [22mSend: Mint/Burn -> Lock/Unlock (Reverse)[2m > [22mValidate packet via SML (reverse) [33m 1101[2mms[22m[39m
|
|
436
|
+
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [22mSend: Mint/Burn -> Lock/Unlock (Reverse)[2m > [22mReceive tokens (unlock on Lock/Unlock OFT) [33m 2299[2mms[22m[39m
|
|
437
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing
|
|
438
|
+
[22m[39m
|
|
439
|
+
📋 Protocol addresses injected from globalSetup
|
|
440
|
+
Endpoint: CAAXJXFDDUYTAASU5K6HTINGPGOCX4RZQCHWE2EJR2OKGNVMVNHKS6R6
|
|
441
|
+
ULN302: CDAWZZ4Z5TUZ73MSZLMJ7CCW7XCYFRA4PT74MEJLWGGK3LZV7A4CCSXT
|
|
442
|
+
DVN: CC3ABUWLZYQP7C3TOLTB7KFLO5423LVHLHEDDD2MXZ3HFZFCDP6ERUKE
|
|
443
|
+
Executor: CB5EEPA7LHQ6X2FK7Q2U7YCE2BSNOB7S65KXHBZJQ4RI32GQCD5O5R4D
|
|
444
|
+
Executor Helper: CCBGQAHT55533N27BNRUQBQQMIABCH7O2RNSPO5ODNYWMSKFNM5SAIOS
|
|
445
|
+
|
|
446
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mDeploy Counter[2m > [22m[2mDeploy Counter
|
|
447
|
+
[22m[39m📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/counter.wasm
|
|
448
|
+
📤 Uploading WASM...
|
|
449
|
+
📦 WASM buffer size: 37218 bytes (36.35 KB)
|
|
450
|
+
|
|
451
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mDeploy Counter[2m > [22m[2mDeploy Counter
|
|
452
|
+
[22m[39m💰 Upload transaction fee: 19583055 stroops (1.9583055 XLM)
|
|
453
|
+
|
|
454
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mDeploy Counter[2m > [22m[2mDeploy Counter
|
|
455
|
+
[22m[39m⏰ WASM TTL: live until ledger 121069 (120959 ledgers remaining, ~7.00 days)
|
|
456
|
+
|
|
457
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mDeploy Counter[2m > [22m[2mDeploy Counter
|
|
458
|
+
[22m[39m✅ WASM uploaded, hash: 18404f479f5466a66b07e3a44c751b3cb012dd185874584c98603a7974d3d8af
|
|
459
|
+
🚀 Deploying contract...
|
|
460
|
+
|
|
461
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mDeploy Counter[2m > [22m[2mDeploy Counter
|
|
462
|
+
[22m[39m✅ Contract deployed at: CDFIXYSO5N26ML72UHHZATHEW5KEH45BZCXH3OMLXCKZTE5T35F2B6HM
|
|
463
|
+
|
|
464
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mDeploy Counter[2m > [22m[2mDeploy Counter
|
|
465
|
+
[22m[39m✅ Counter deployed: CDFIXYSO5N26ML72UHHZATHEW5KEH45BZCXH3OMLXCKZTE5T35F2B6HM
|
|
466
|
+
|
|
467
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mDeploy Counter[2m > [22m[2mSet Counter Peer
|
|
468
|
+
[22m[39m✅ Counter peer set for EID [33m30400[39m
|
|
469
|
+
|
|
470
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mCounter Increment (Composed ABA with Native Drop)
|
|
471
|
+
[22m[39m✅ Return fee for ComposedABA: { native_fee: [33m400681n[39m, zro_fee: [33m0n[39m }
|
|
472
|
+
|
|
473
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mCounter Increment (Composed ABA with Native Drop)
|
|
474
|
+
[22m[39m✅ ComposedABA Fee: { native_fee: [33m2055368n[39m, zro_fee: [33m0n[39m }
|
|
475
|
+
|
|
476
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mCounter Increment (Composed ABA with Native Drop)
|
|
477
|
+
[22m[39m✅ Counter incremented (Composed ABA), outbound count: [33m1n[39m
|
|
478
|
+
|
|
479
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mScan PacketSent Events (Composed ABA)
|
|
480
|
+
[22m[39m📦 Scanning for PacketSent events...
|
|
481
|
+
|
|
482
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mScan PacketSent Events (Composed ABA)
|
|
483
|
+
[22m[39m🔍 Scanning events from ledger [33m116[39m
|
|
484
|
+
Waiting for next ledger...
|
|
485
|
+
|
|
486
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mScan PacketSent Events (Composed ABA)
|
|
487
|
+
[22m[39m✅ Found 1 events
|
|
488
|
+
|
|
489
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mScan PacketSent Events (Composed ABA)
|
|
490
|
+
[22m[39m✅ Found 1 PacketSent events
|
|
491
|
+
|
|
492
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mScan PacketSent Events (Composed ABA)
|
|
493
|
+
[22m[39m✅ PacketSent events scanned successfully. Found 1 events
|
|
494
|
+
|
|
495
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mExtract Packet Header and Payload Hash (Composed ABA)
|
|
496
|
+
[22m[39m✅ Packet header extracted, length: [33m81[39m
|
|
497
|
+
✅ Payload hash extracted: e1378115a7813bf7...
|
|
498
|
+
|
|
499
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mDVN Verifies Message (Composed ABA)
|
|
500
|
+
[22m[39m
|
|
501
|
+
🔄 Simulating DVN transaction to get the auth entries
|
|
502
|
+
|
|
503
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mDVN Verifies Message (Composed ABA)
|
|
504
|
+
[22m[39m
|
|
505
|
+
📋 Addresses needing to sign: [ [32m'CC3ABUWLZYQP7C3TOLTB7KFLO5423LVHLHEDDD2MXZ3HFZFCDP6ERUKE'[39m ]
|
|
506
|
+
|
|
507
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mDVN Verifies Message (Composed ABA)
|
|
508
|
+
[22m[39m
|
|
509
|
+
🌳 DVN Auth Entry Tree:
|
|
510
|
+
📞 CDAWZZ4Z5TUZ73MSZLMJ7CCW7XCYFRA4PT74MEJLWGGK3LZV7A4CCSXT...verify()
|
|
511
|
+
|
|
512
|
+
📝 Signature payload (soroban auth hash): a77d8a0b90f034d98e7044aee3f921a67f935f488a686b6ef1fab92f75fdb140
|
|
513
|
+
✍️ Admin Ed25519 signature created: c2d66db755969b10a66950b6b7ce4f51...
|
|
514
|
+
📝 Call hash for multisig: a15242bac4b8eb2ab15fea339daf2347702e506480ae9d0a8ed308514900f2b6
|
|
515
|
+
|
|
516
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mDVN Verifies Message (Composed ABA)
|
|
517
|
+
[22m[39m✍️ Multisig signature created: 7a34de1f929b8cb7e18ee539f3def546...
|
|
518
|
+
|
|
519
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mDVN Verifies Message (Composed ABA)
|
|
520
|
+
[22m[39m
|
|
521
|
+
🔄 DVN auth signed
|
|
522
|
+
📋 Remaining signers after DVN: []
|
|
523
|
+
|
|
524
|
+
🔄 Final re-simulation with DVN auth entries signed
|
|
525
|
+
|
|
526
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mDVN Verifies Message (Composed ABA)
|
|
527
|
+
[22m[39m✅ Final simulation complete
|
|
528
|
+
|
|
529
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mDVN Verifies Message (Composed ABA)
|
|
530
|
+
[22m[39m✅ DVN verified message (Composed ABA)
|
|
531
|
+
|
|
532
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mCommit Verification (Composed ABA)
|
|
533
|
+
[22m[39m✅ Verification committed to endpoint (Composed ABA)
|
|
534
|
+
|
|
535
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mExecute native_drop_and_execute (Composed ABA)
|
|
536
|
+
[22m[39m💰 Balance before native drop: [33m99711945685n[39m
|
|
537
|
+
|
|
538
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mExecute native_drop_and_execute (Composed ABA)
|
|
539
|
+
[22m[39m
|
|
540
|
+
🔄 Building transaction for non-root auth...
|
|
541
|
+
🔄 Simulating with record_allow_nonroot...
|
|
542
|
+
|
|
543
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mExecute native_drop_and_execute (Composed ABA)
|
|
544
|
+
[22m[39m✅ Simulation complete
|
|
545
|
+
Auth entries returned: [33m2[39m
|
|
546
|
+
Processing auth entry for address: GC72DFYB5KMI4IHRX63L3PTJ73XCZD6NM5BLHQOHNNJKNZVIIVMK3RTH
|
|
547
|
+
Auth entry tree:
|
|
548
|
+
📞 CB5EEPA7LHQ6X2FK7Q2U7YCE2BSNOB7S65KXHBZJQ4RI32GQCD5O5R4D...native_drop()
|
|
549
|
+
📞 CDMLFMKMMD7MWZP3FKUBZPVHTUEDLSX4BYGYKH4GCESXYHS3IHQ4EIG4...transfer()
|
|
550
|
+
✍️ Signing admin auth entry (regular account)...
|
|
551
|
+
Processing auth entry for address: CB5EEPA7LHQ6X2FK7Q2U7YCE2BSNOB7S65KXHBZJQ4RI32GQCD5O5R4D
|
|
552
|
+
Auth entry tree:
|
|
553
|
+
📞 CDFIXYSO5N26ML72UHHZATHEW5KEH45BZCXH3OMLXCKZTE5T35F2B6HM...lz_receive()
|
|
554
|
+
✍️ Signing executor auth entry (Abstract Account)...
|
|
555
|
+
|
|
556
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mExecute native_drop_and_execute (Composed ABA)
|
|
557
|
+
[22m[39m✅ Auth entries signed
|
|
558
|
+
✅ Transaction assembled with signed auth entries
|
|
559
|
+
|
|
560
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mExecute native_drop_and_execute (Composed ABA)
|
|
561
|
+
[22m[39m✅ Final simulation completed
|
|
562
|
+
|
|
563
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mExecute native_drop_and_execute (Composed ABA)
|
|
564
|
+
[22m[39m✅ Transaction envelope signed
|
|
565
|
+
|
|
566
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mExecute native_drop_and_execute (Composed ABA)
|
|
567
|
+
[22m[39m✅ Transaction sent, hash: cec4c800b616c85292bdf1c0acd1446e8cb6ae136d43d6e0ae59e5c1e9185835
|
|
568
|
+
|
|
569
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mExecute native_drop_and_execute (Composed ABA)
|
|
570
|
+
[22m[39m✅ Transaction completed successfully
|
|
571
|
+
|
|
572
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mExecute native_drop_and_execute (Composed ABA)
|
|
573
|
+
[22m[39m💰 Balance after native drop: [33m99712945685n[39m
|
|
574
|
+
✅ Native drop received: [33m1000000n[39m stroops
|
|
575
|
+
|
|
576
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mExecute native_drop_and_execute (Composed ABA)
|
|
577
|
+
[22m[39m✅ Inbound count from EID [33m30400[39m : [33m1n[39m
|
|
578
|
+
|
|
579
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mExecute lz_compose (Composed ABA)
|
|
580
|
+
[22m[39m
|
|
581
|
+
🔄 Building transaction for non-root auth...
|
|
582
|
+
🔄 Simulating with record_allow_nonroot...
|
|
583
|
+
|
|
584
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mExecute lz_compose (Composed ABA)
|
|
585
|
+
[22m[39m✅ Simulation complete
|
|
586
|
+
Auth entries returned: [33m2[39m
|
|
587
|
+
Processing auth entry for address: GC72DFYB5KMI4IHRX63L3PTJ73XCZD6NM5BLHQOHNNJKNZVIIVMK3RTH
|
|
588
|
+
Auth entry tree:
|
|
589
|
+
📞 CDMLFMKMMD7MWZP3FKUBZPVHTUEDLSX4BYGYKH4GCESXYHS3IHQ4EIG4...transfer()
|
|
590
|
+
✍️ Signing admin auth entry (regular account)...
|
|
591
|
+
Processing auth entry for address: CB5EEPA7LHQ6X2FK7Q2U7YCE2BSNOB7S65KXHBZJQ4RI32GQCD5O5R4D
|
|
592
|
+
Auth entry tree:
|
|
593
|
+
📞 CDFIXYSO5N26ML72UHHZATHEW5KEH45BZCXH3OMLXCKZTE5T35F2B6HM...lz_compose()
|
|
594
|
+
📞 CDMLFMKMMD7MWZP3FKUBZPVHTUEDLSX4BYGYKH4GCESXYHS3IHQ4EIG4...transfer()
|
|
595
|
+
✍️ Signing executor auth entry (Abstract Account)...
|
|
596
|
+
|
|
597
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mExecute lz_compose (Composed ABA)
|
|
598
|
+
[22m[39m✅ Auth entries signed
|
|
599
|
+
✅ Transaction assembled with signed auth entries
|
|
600
|
+
|
|
601
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mExecute lz_compose (Composed ABA)
|
|
602
|
+
[22m[39m✅ Final simulation completed
|
|
603
|
+
|
|
604
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mExecute lz_compose (Composed ABA)
|
|
605
|
+
[22m[39m✅ Transaction envelope signed
|
|
606
|
+
|
|
607
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mExecute lz_compose (Composed ABA)
|
|
608
|
+
[22m[39m✅ Transaction sent, hash: cfd5b97974db8066fb1176396ec241258a06e334b56172a7ce3ea4b5767b77b2
|
|
609
|
+
|
|
610
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mExecute lz_compose (Composed ABA)
|
|
611
|
+
[22m[39m✅ Transaction completed successfully
|
|
612
|
+
|
|
613
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mExecute lz_compose (Composed ABA)
|
|
614
|
+
[22m[39m✅ Composed count: [33m1n[39m
|
|
615
|
+
|
|
616
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mExecute lz_compose (Composed ABA)
|
|
617
|
+
[22m[39m✅ Outbound count (including return message): [33m2n[39m
|
|
618
|
+
|
|
619
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mScan Return PacketSent Events
|
|
620
|
+
[22m[39m📦 Scanning for PacketSent events...
|
|
621
|
+
|
|
622
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mScan Return PacketSent Events
|
|
623
|
+
[22m[39m🔍 Scanning events from ledger [33m125[39m
|
|
624
|
+
Waiting for next ledger...
|
|
625
|
+
|
|
626
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mScan Return PacketSent Events
|
|
627
|
+
[22m[39m✅ Found 2 events
|
|
628
|
+
|
|
629
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mScan Return PacketSent Events
|
|
630
|
+
[22m[39m✅ Found 1 PacketSent events
|
|
631
|
+
|
|
632
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mScan Return PacketSent Events
|
|
633
|
+
[22m[39m✅ Return PacketSent events scanned. Found 1 events
|
|
634
|
+
|
|
635
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mExtract Return Packet Header and Payload Hash
|
|
636
|
+
[22m[39m✅ Return packet header extracted, length: [33m81[39m
|
|
637
|
+
✅ Return payload hash extracted: dbf8e5a9cb0e4d4e...
|
|
638
|
+
|
|
639
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mDVN Verifies Return Message
|
|
640
|
+
[22m[39m
|
|
641
|
+
🔄 Simulating DVN transaction to get the auth entries
|
|
642
|
+
|
|
643
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mDVN Verifies Return Message
|
|
644
|
+
[22m[39m
|
|
645
|
+
📋 Addresses needing to sign: [ [32m'CC3ABUWLZYQP7C3TOLTB7KFLO5423LVHLHEDDD2MXZ3HFZFCDP6ERUKE'[39m ]
|
|
646
|
+
|
|
647
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mDVN Verifies Return Message
|
|
648
|
+
[22m[39m
|
|
649
|
+
🌳 DVN Auth Entry Tree:
|
|
650
|
+
📞 CDAWZZ4Z5TUZ73MSZLMJ7CCW7XCYFRA4PT74MEJLWGGK3LZV7A4CCSXT...verify()
|
|
651
|
+
|
|
652
|
+
📝 Signature payload (soroban auth hash): e8ae9502e8a40797c69090814e434c76d11af0b4a984ab7e17e6fba75cd1459d
|
|
653
|
+
✍️ Admin Ed25519 signature created: c65f122dd856867a1a00cde95ae7038b...
|
|
654
|
+
📝 Call hash for multisig: 4a15cd817a9820e53a3bfdb77e263b9a70693140050de4f920f4f14afbe6ede5
|
|
655
|
+
|
|
656
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mDVN Verifies Return Message
|
|
657
|
+
[22m[39m✍️ Multisig signature created: 9c327f57480a6819cab72ec792e05a71...
|
|
658
|
+
|
|
659
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mDVN Verifies Return Message
|
|
660
|
+
[22m[39m
|
|
661
|
+
🔄 DVN auth signed
|
|
662
|
+
📋 Remaining signers after DVN: []
|
|
663
|
+
|
|
664
|
+
🔄 Final re-simulation with DVN auth entries signed
|
|
665
|
+
|
|
666
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mDVN Verifies Return Message
|
|
667
|
+
[22m[39m✅ Final simulation complete
|
|
668
|
+
|
|
669
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mDVN Verifies Return Message
|
|
670
|
+
[22m[39m✅ DVN verified return message
|
|
671
|
+
|
|
672
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mCommit Verification (Return Message)
|
|
673
|
+
[22m[39m✅ Verification committed for return message
|
|
674
|
+
|
|
675
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mReceive Return Message (lz_receive)
|
|
676
|
+
[22m[39m
|
|
677
|
+
🔄 Building transaction for non-root auth...
|
|
678
|
+
🔄 Simulating with record_allow_nonroot...
|
|
679
|
+
|
|
680
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mReceive Return Message (lz_receive)
|
|
681
|
+
[22m[39m✅ Simulation complete
|
|
682
|
+
Auth entries returned: [33m1[39m
|
|
683
|
+
Processing auth entry for address: CB5EEPA7LHQ6X2FK7Q2U7YCE2BSNOB7S65KXHBZJQ4RI32GQCD5O5R4D
|
|
684
|
+
Auth entry tree:
|
|
685
|
+
📞 CDFIXYSO5N26ML72UHHZATHEW5KEH45BZCXH3OMLXCKZTE5T35F2B6HM...lz_receive()
|
|
686
|
+
✍️ Signing executor auth entry (Abstract Account)...
|
|
687
|
+
|
|
688
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mReceive Return Message (lz_receive)
|
|
689
|
+
[22m[39m✅ Auth entries signed
|
|
690
|
+
✅ Transaction assembled with signed auth entries
|
|
691
|
+
|
|
692
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mReceive Return Message (lz_receive)
|
|
693
|
+
[22m[39m✅ Final simulation completed
|
|
694
|
+
|
|
695
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mReceive Return Message (lz_receive)
|
|
696
|
+
[22m[39m✅ Transaction envelope signed
|
|
697
|
+
|
|
698
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mReceive Return Message (lz_receive)
|
|
699
|
+
[22m[39m✅ Transaction sent, hash: 1b5ad1987cedc0a5fdb9f06d02aa706474bf37e27f366d73bcf028f7ca873b25
|
|
700
|
+
|
|
701
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mReceive Return Message (lz_receive)
|
|
702
|
+
[22m[39m✅ Transaction completed successfully
|
|
703
|
+
|
|
704
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mReceive Return Message (lz_receive)
|
|
705
|
+
[22m[39m✅ Final counter count: [33m2n[39m
|
|
706
|
+
|
|
707
|
+
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mReceive Return Message (lz_receive)
|
|
708
|
+
[22m[39m✅ Final inbound count from EID [33m30400[39m : [33m2n[39m
|
|
709
|
+
|
|
710
|
+
🎉 Counter Composed ABA with Native Drop - Full Round Trip completed!
|
|
711
|
+
Workflow: Send ComposedABA → DVN Verify → Commit → native_drop_and_execute
|
|
712
|
+
→ lz_compose (sends return) → DVN Verify → Commit → lz_receive
|
|
713
|
+
|
|
714
|
+
[32m✓[39m test/counter-uln.test.ts [2m([22m[2m14 tests[22m[2m)[22m[33m 23988[2mms[22m[39m
|
|
715
|
+
[33m[2m✓[22m[39m Counter with ULN302 testing[2m > [22mDeploy Counter[2m > [22mDeploy Counter [33m 4712[2mms[22m[39m
|
|
716
|
+
[33m[2m✓[22m[39m Counter with ULN302 testing[2m > [22mDeploy Counter[2m > [22mSet Counter Peer [33m 1097[2mms[22m[39m
|
|
717
|
+
[33m[2m✓[22m[39m Counter with ULN302 testing[2m > [22mCounter Increment with Composed ABA and Native Drop[2m > [22mCounter Increment (Composed ABA with Native Drop) [33m 1740[2mms[22m[39m
|
|
718
|
+
[33m[2m✓[22m[39m Counter with ULN302 testing[2m > [22mCounter Increment with Composed ABA and Native Drop[2m > [22mScan PacketSent Events (Composed ABA) [33m 1011[2mms[22m[39m
|
|
719
|
+
[33m[2m✓[22m[39m Counter with ULN302 testing[2m > [22mCounter Increment with Composed ABA and Native Drop[2m > [22mDVN Verifies Message (Composed ABA) [33m 1271[2mms[22m[39m
|
|
720
|
+
[33m[2m✓[22m[39m Counter with ULN302 testing[2m > [22mCounter Increment with Composed ABA and Native Drop[2m > [22mCommit Verification (Composed ABA) [33m 2619[2mms[22m[39m
|
|
721
|
+
[33m[2m✓[22m[39m Counter with ULN302 testing[2m > [22mCounter Increment with Composed ABA and Native Drop[2m > [22mExecute native_drop_and_execute (Composed ABA) [33m 2484[2mms[22m[39m
|
|
722
|
+
[33m[2m✓[22m[39m Counter with ULN302 testing[2m > [22mCounter Increment with Composed ABA and Native Drop[2m > [22mExecute lz_compose (Composed ABA) [33m 1751[2mms[22m[39m
|
|
723
|
+
[33m[2m✓[22m[39m Counter with ULN302 testing[2m > [22mCounter Increment with Composed ABA and Native Drop[2m > [22mScan Return PacketSent Events [33m 1011[2mms[22m[39m
|
|
724
|
+
[33m[2m✓[22m[39m Counter with ULN302 testing[2m > [22mCounter Increment with Composed ABA and Native Drop[2m > [22mDVN Verifies Return Message [33m 2810[2mms[22m[39m
|
|
725
|
+
[33m[2m✓[22m[39m Counter with ULN302 testing[2m > [22mCounter Increment with Composed ABA and Native Drop[2m > [22mCommit Verification (Return Message) [33m 1102[2mms[22m[39m
|
|
726
|
+
[33m[2m✓[22m[39m Counter with ULN302 testing[2m > [22mCounter Increment with Composed ABA and Native Drop[2m > [22mReceive Return Message (lz_receive) [33m 2372[2mms[22m[39m
|
|
727
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter with SML testing
|
|
728
|
+
[22m[39m
|
|
729
|
+
📋 Protocol addresses injected from globalSetup
|
|
730
|
+
Endpoint: CAAXJXFDDUYTAASU5K6HTINGPGOCX4RZQCHWE2EJR2OKGNVMVNHKS6R6
|
|
731
|
+
SML: CDFATRHI66X73D5BMRVAINMAYK4QZ3NOPFVYVIJ43T2FB2AKPDXWEVIJ
|
|
732
|
+
Executor: CB5EEPA7LHQ6X2FK7Q2U7YCE2BSNOB7S65KXHBZJQ4RI32GQCD5O5R4D
|
|
733
|
+
Executor Helper: CCBGQAHT55533N27BNRUQBQQMIABCH7O2RNSPO5ODNYWMSKFNM5SAIOS
|
|
734
|
+
|
|
735
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter with SML testing[2m > [22m[2mDeploy Counter[2m > [22m[2mDeploy Counter
|
|
736
|
+
[22m[39m📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/counter.wasm
|
|
737
|
+
📤 Uploading WASM...
|
|
738
|
+
📦 WASM buffer size: 37218 bytes (36.35 KB)
|
|
739
|
+
|
|
740
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter with SML testing[2m > [22m[2mDeploy Counter[2m > [22m[2mDeploy Counter
|
|
741
|
+
[22m[39m💰 Upload transaction fee: 841087 stroops (0.0841087 XLM)
|
|
742
|
+
|
|
743
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter with SML testing[2m > [22m[2mDeploy Counter[2m > [22m[2mDeploy Counter
|
|
744
|
+
[22m[39m⏰ WASM TTL: live until ledger 121069 (120935 ledgers remaining, ~7.00 days)
|
|
745
|
+
|
|
746
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter with SML testing[2m > [22m[2mDeploy Counter[2m > [22m[2mDeploy Counter
|
|
747
|
+
[22m[39m✅ WASM uploaded, hash: 18404f479f5466a66b07e3a44c751b3cb012dd185874584c98603a7974d3d8af
|
|
748
|
+
🚀 Deploying contract...
|
|
749
|
+
|
|
750
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter with SML testing[2m > [22m[2mDeploy Counter[2m > [22m[2mDeploy Counter
|
|
751
|
+
[22m[39m✅ Contract deployed at: CDRLQAXGT7CG7OVR4A54OS564WDO4XUV4Q5L2SM6GUNE5CX2PFJAHXNW
|
|
752
|
+
|
|
753
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter with SML testing[2m > [22m[2mDeploy Counter[2m > [22m[2mDeploy Counter
|
|
754
|
+
[22m[39m✅ Counter deployed: CDRLQAXGT7CG7OVR4A54OS564WDO4XUV4Q5L2SM6GUNE5CX2PFJAHXNW
|
|
755
|
+
|
|
756
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter with SML testing[2m > [22m[2mWire Counter to use SML[2m > [22m[2mSet Counter Send Library to SML
|
|
757
|
+
[22m[39m✅ Counter send library set to SML
|
|
758
|
+
|
|
759
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter with SML testing[2m > [22m[2mWire Counter to use SML[2m > [22m[2mSet Counter Receive Library to SML
|
|
760
|
+
[22m[39m✅ Counter receive library set to SML
|
|
761
|
+
|
|
762
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter with SML testing[2m > [22m[2mWire Counter to use SML[2m > [22m[2mSet Counter Peer
|
|
763
|
+
[22m[39m✅ Counter peer set for EID [33m30400[39m
|
|
764
|
+
|
|
765
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter with SML testing[2m > [22m[2mCounter ABA Messaging[2m > [22m[2mCounter Increment (ABA)
|
|
766
|
+
[22m[39m✅ Return fee for ABA: { native_fee: [33m100n[39m, zro_fee: [33m0n[39m }
|
|
767
|
+
|
|
768
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter with SML testing[2m > [22m[2mCounter ABA Messaging[2m > [22m[2mCounter Increment (ABA)
|
|
769
|
+
[22m[39m✅ ABA Fee: { native_fee: [33m100n[39m, zro_fee: [33m99n[39m }
|
|
770
|
+
|
|
771
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter with SML testing[2m > [22m[2mCounter ABA Messaging[2m > [22m[2mCounter Increment (ABA)
|
|
772
|
+
[22m[39m✅ Counter incremented (ABA), outbound count: [33m1n[39m
|
|
773
|
+
|
|
774
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter with SML testing[2m > [22m[2mCounter ABA Messaging[2m > [22m[2mScan PacketSent Events
|
|
775
|
+
[22m[39m📦 Scanning for PacketSent events...
|
|
776
|
+
|
|
777
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter with SML testing[2m > [22m[2mCounter ABA Messaging[2m > [22m[2mScan PacketSent Events
|
|
778
|
+
[22m[39m🔍 Scanning events from ledger [33m144[39m
|
|
779
|
+
|
|
780
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter with SML testing[2m > [22m[2mCounter ABA Messaging[2m > [22m[2mScan PacketSent Events
|
|
781
|
+
[22m[39m✅ Found 1 events
|
|
782
|
+
|
|
783
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter with SML testing[2m > [22m[2mCounter ABA Messaging[2m > [22m[2mScan PacketSent Events
|
|
784
|
+
[22m[39m✅ Found 1 PacketSent events
|
|
785
|
+
|
|
786
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter with SML testing[2m > [22m[2mCounter ABA Messaging[2m > [22m[2mScan PacketSent Events
|
|
787
|
+
[22m[39m✅ PacketSent events scanned successfully. Found 1 events
|
|
788
|
+
|
|
789
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter with SML testing[2m > [22m[2mCounter ABA Messaging[2m > [22m[2mVerify Counter Message
|
|
790
|
+
[22m[39m✅ ABA request packet validated
|
|
791
|
+
|
|
792
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter with SML testing[2m > [22m[2mCounter ABA Messaging[2m > [22m[2mReceive Counter Message (ABA - triggers response)
|
|
793
|
+
[22m[39m
|
|
794
|
+
🔄 Building transaction for non-root auth...
|
|
795
|
+
🔄 Simulating with record_allow_nonroot...
|
|
796
|
+
|
|
797
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter with SML testing[2m > [22m[2mCounter ABA Messaging[2m > [22m[2mReceive Counter Message (ABA - triggers response)
|
|
798
|
+
[22m[39m✅ Simulation complete
|
|
799
|
+
Auth entries returned: [33m3[39m
|
|
800
|
+
Processing auth entry for address: GC72DFYB5KMI4IHRX63L3PTJ73XCZD6NM5BLHQOHNNJKNZVIIVMK3RTH
|
|
801
|
+
Auth entry tree:
|
|
802
|
+
📞 CB5EEPA7LHQ6X2FK7Q2U7YCE2BSNOB7S65KXHBZJQ4RI32GQCD5O5R4D...native_drop()
|
|
803
|
+
📞 CDMLFMKMMD7MWZP3FKUBZPVHTUEDLSX4BYGYKH4GCESXYHS3IHQ4EIG4...transfer()
|
|
804
|
+
✍️ Signing admin auth entry (regular account)...
|
|
805
|
+
Processing auth entry for address: GC72DFYB5KMI4IHRX63L3PTJ73XCZD6NM5BLHQOHNNJKNZVIIVMK3RTH
|
|
806
|
+
Auth entry tree:
|
|
807
|
+
📞 CDMLFMKMMD7MWZP3FKUBZPVHTUEDLSX4BYGYKH4GCESXYHS3IHQ4EIG4...transfer()
|
|
808
|
+
✍️ Signing admin auth entry (regular account)...
|
|
809
|
+
Processing auth entry for address: CB5EEPA7LHQ6X2FK7Q2U7YCE2BSNOB7S65KXHBZJQ4RI32GQCD5O5R4D
|
|
810
|
+
Auth entry tree:
|
|
811
|
+
📞 CDRLQAXGT7CG7OVR4A54OS564WDO4XUV4Q5L2SM6GUNE5CX2PFJAHXNW...lz_receive()
|
|
812
|
+
📞 CDMLFMKMMD7MWZP3FKUBZPVHTUEDLSX4BYGYKH4GCESXYHS3IHQ4EIG4...transfer()
|
|
813
|
+
✍️ Signing executor auth entry (Abstract Account)...
|
|
814
|
+
|
|
815
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter with SML testing[2m > [22m[2mCounter ABA Messaging[2m > [22m[2mReceive Counter Message (ABA - triggers response)
|
|
816
|
+
[22m[39m✅ Auth entries signed
|
|
817
|
+
✅ Transaction assembled with signed auth entries
|
|
818
|
+
|
|
819
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter with SML testing[2m > [22m[2mCounter ABA Messaging[2m > [22m[2mReceive Counter Message (ABA - triggers response)
|
|
820
|
+
[22m[39m✅ Final simulation completed
|
|
821
|
+
|
|
822
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter with SML testing[2m > [22m[2mCounter ABA Messaging[2m > [22m[2mReceive Counter Message (ABA - triggers response)
|
|
823
|
+
[22m[39m✅ Transaction envelope signed
|
|
824
|
+
|
|
825
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter with SML testing[2m > [22m[2mCounter ABA Messaging[2m > [22m[2mReceive Counter Message (ABA - triggers response)
|
|
826
|
+
[22m[39m✅ Transaction sent, hash: 7f2f53591d19b001a000899e6c1841c07e615c6ed4b286dd0115c8b4a42cbf25
|
|
827
|
+
|
|
828
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter with SML testing[2m > [22m[2mCounter ABA Messaging[2m > [22m[2mReceive Counter Message (ABA - triggers response)
|
|
829
|
+
[22m[39m✅ Transaction completed successfully
|
|
830
|
+
|
|
831
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter with SML testing[2m > [22m[2mCounter ABA Messaging[2m > [22m[2mReceive Counter Message (ABA - triggers response)
|
|
832
|
+
[22m[39m✅ ABA message received and response sent, outbound count: [33m2n[39m
|
|
833
|
+
|
|
834
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter with SML testing[2m > [22m[2mCounter ABA Messaging[2m > [22m[2mScan ABA Response PacketSent Events
|
|
835
|
+
[22m[39m📦 Scanning for PacketSent events...
|
|
836
|
+
|
|
837
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter with SML testing[2m > [22m[2mCounter ABA Messaging[2m > [22m[2mScan ABA Response PacketSent Events
|
|
838
|
+
[22m[39m🔍 Scanning events from ledger [33m148[39m
|
|
839
|
+
Waiting for next ledger...
|
|
840
|
+
|
|
841
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter with SML testing[2m > [22m[2mCounter ABA Messaging[2m > [22m[2mScan ABA Response PacketSent Events
|
|
842
|
+
[22m[39m✅ Found 2 events
|
|
843
|
+
|
|
844
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter with SML testing[2m > [22m[2mCounter ABA Messaging[2m > [22m[2mScan ABA Response PacketSent Events
|
|
845
|
+
[22m[39m✅ Found 1 PacketSent events
|
|
846
|
+
|
|
847
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter with SML testing[2m > [22m[2mCounter ABA Messaging[2m > [22m[2mScan ABA Response PacketSent Events
|
|
848
|
+
[22m[39m✅ ABA response PacketSent events scanned. Found 1 events
|
|
849
|
+
|
|
850
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter with SML testing[2m > [22m[2mCounter ABA Messaging[2m > [22m[2mVerify ABA Response Message
|
|
851
|
+
[22m[39m✅ ABA response packet validated
|
|
852
|
+
|
|
853
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter with SML testing[2m > [22m[2mCounter ABA Messaging[2m > [22m[2mReceive ABA Response Message
|
|
854
|
+
[22m[39m
|
|
855
|
+
🔄 Building transaction for non-root auth...
|
|
856
|
+
🔄 Simulating with record_allow_nonroot...
|
|
857
|
+
|
|
858
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter with SML testing[2m > [22m[2mCounter ABA Messaging[2m > [22m[2mReceive ABA Response Message
|
|
859
|
+
[22m[39m✅ Simulation complete
|
|
860
|
+
Auth entries returned: [33m2[39m
|
|
861
|
+
Processing auth entry for address: GC72DFYB5KMI4IHRX63L3PTJ73XCZD6NM5BLHQOHNNJKNZVIIVMK3RTH
|
|
862
|
+
Auth entry tree:
|
|
863
|
+
📞 CDMLFMKMMD7MWZP3FKUBZPVHTUEDLSX4BYGYKH4GCESXYHS3IHQ4EIG4...transfer()
|
|
864
|
+
✍️ Signing admin auth entry (regular account)...
|
|
865
|
+
Processing auth entry for address: CB5EEPA7LHQ6X2FK7Q2U7YCE2BSNOB7S65KXHBZJQ4RI32GQCD5O5R4D
|
|
866
|
+
Auth entry tree:
|
|
867
|
+
📞 CDRLQAXGT7CG7OVR4A54OS564WDO4XUV4Q5L2SM6GUNE5CX2PFJAHXNW...lz_receive()
|
|
868
|
+
📞 CDMLFMKMMD7MWZP3FKUBZPVHTUEDLSX4BYGYKH4GCESXYHS3IHQ4EIG4...transfer()
|
|
869
|
+
✍️ Signing executor auth entry (Abstract Account)...
|
|
870
|
+
|
|
871
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter with SML testing[2m > [22m[2mCounter ABA Messaging[2m > [22m[2mReceive ABA Response Message
|
|
872
|
+
[22m[39m✅ Auth entries signed
|
|
873
|
+
✅ Transaction assembled with signed auth entries
|
|
874
|
+
|
|
875
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter with SML testing[2m > [22m[2mCounter ABA Messaging[2m > [22m[2mReceive ABA Response Message
|
|
876
|
+
[22m[39m✅ Final simulation completed
|
|
877
|
+
|
|
878
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter with SML testing[2m > [22m[2mCounter ABA Messaging[2m > [22m[2mReceive ABA Response Message
|
|
879
|
+
[22m[39m✅ Transaction envelope signed
|
|
880
|
+
|
|
881
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter with SML testing[2m > [22m[2mCounter ABA Messaging[2m > [22m[2mReceive ABA Response Message
|
|
882
|
+
[22m[39m✅ Transaction sent, hash: 82d54cf33a3972245182046e18e92196cf6796ca91f1aa7953a79438fea0910d
|
|
883
|
+
|
|
884
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter with SML testing[2m > [22m[2mCounter ABA Messaging[2m > [22m[2mReceive ABA Response Message
|
|
885
|
+
[22m[39m✅ Transaction completed successfully
|
|
886
|
+
|
|
887
|
+
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter with SML testing[2m > [22m[2mCounter ABA Messaging[2m > [22m[2mReceive ABA Response Message
|
|
888
|
+
[22m[39m✅ ABA response received, total inbound count: [33m2n[39m
|
|
889
|
+
|
|
890
|
+
🎉 ABA round-trip completed successfully!
|
|
891
|
+
Request: Counter → Counter (ABA)
|
|
892
|
+
Response: Counter → Counter (Vanilla)
|
|
893
|
+
|
|
894
|
+
[32m✓[39m test/counter-sml.test.ts [2m([22m[2m11 tests[22m[2m)[22m[33m 22014[2mms[22m[39m
|
|
895
|
+
[33m[2m✓[22m[39m Counter with SML testing[2m > [22mDeploy Counter[2m > [22mDeploy Counter [33m 4679[2mms[22m[39m
|
|
896
|
+
[33m[2m✓[22m[39m Counter with SML testing[2m > [22mWire Counter to use SML[2m > [22mSet Counter Send Library to SML [33m 1143[2mms[22m[39m
|
|
897
|
+
[33m[2m✓[22m[39m Counter with SML testing[2m > [22mWire Counter to use SML[2m > [22mSet Counter Receive Library to SML [33m 2628[2mms[22m[39m
|
|
898
|
+
[33m[2m✓[22m[39m Counter with SML testing[2m > [22mWire Counter to use SML[2m > [22mSet Counter Peer [33m 1095[2mms[22m[39m
|
|
899
|
+
[33m[2m✓[22m[39m Counter with SML testing[2m > [22mCounter ABA Messaging[2m > [22mCounter Increment (ABA) [33m 2815[2mms[22m[39m
|
|
900
|
+
[33m[2m✓[22m[39m Counter with SML testing[2m > [22mCounter ABA Messaging[2m > [22mVerify Counter Message [33m 1092[2mms[22m[39m
|
|
901
|
+
[33m[2m✓[22m[39m Counter with SML testing[2m > [22mCounter ABA Messaging[2m > [22mReceive Counter Message (ABA - triggers response) [33m 2554[2mms[22m[39m
|
|
902
|
+
[33m[2m✓[22m[39m Counter with SML testing[2m > [22mCounter ABA Messaging[2m > [22mScan ABA Response PacketSent Events [33m 1020[2mms[22m[39m
|
|
903
|
+
[33m[2m✓[22m[39m Counter with SML testing[2m > [22mCounter ABA Messaging[2m > [22mVerify ABA Response Message [33m 2607[2mms[22m[39m
|
|
904
|
+
[33m[2m✓[22m[39m Counter with SML testing[2m > [22mCounter ABA Messaging[2m > [22mReceive ABA Response Message [33m 2364[2mms[22m[39m
|
|
905
|
+
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mContract Deployments[2m > [22m[2mDeploy Upgrader Contract
|
|
906
|
+
[22m[39m📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/upgrader.wasm
|
|
907
|
+
📤 Uploading WASM...
|
|
908
|
+
📦 WASM buffer size: 1597 bytes (1.56 KB)
|
|
909
|
+
|
|
910
|
+
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mContract Deployments[2m > [22m[2mDeploy Upgrader Contract
|
|
911
|
+
[22m[39m💰 Upload transaction fee: 1332096 stroops (0.1332096 XLM)
|
|
912
|
+
|
|
913
|
+
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mContract Deployments[2m > [22m[2mDeploy Upgrader Contract
|
|
914
|
+
[22m[39m⏰ WASM TTL: live until ledger 121115 (120959 ledgers remaining, ~7.00 days)
|
|
915
|
+
|
|
916
|
+
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mContract Deployments[2m > [22m[2mDeploy Upgrader Contract
|
|
917
|
+
[22m[39m✅ WASM uploaded, hash: 250cba854264d9d437c960e9f8ed838dbf39876947b4fb84c5a209a39b794da6
|
|
918
|
+
🚀 Deploying contract...
|
|
919
|
+
|
|
920
|
+
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mContract Deployments[2m > [22m[2mDeploy Upgrader Contract
|
|
921
|
+
[22m[39m✅ Contract deployed at: CCMGRTPLVRZGUH6UVVVGPXLXWZL4AMI3G54IIDO4NT6ZQRFMDT2IYEML
|
|
922
|
+
|
|
923
|
+
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mContract Deployments[2m > [22m[2mDeploy Upgrader Contract
|
|
924
|
+
[22m[39m✅ Upgrader deployed at: CCMGRTPLVRZGUH6UVVVGPXLXWZL4AMI3G54IIDO4NT6ZQRFMDT2IYEML
|
|
925
|
+
|
|
926
|
+
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mContract Deployments[2m > [22m[2mDeploy Test Upgradeable Contract V1
|
|
927
|
+
[22m[39m📖 Reading Test Contract V1 WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/contracts/upgrader/src/tests/test_data/test_upgradeable_contract1.wasm
|
|
928
|
+
📦 WASM buffer size: 5305 bytes (5.18 KB)
|
|
929
|
+
|
|
930
|
+
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mContract Deployments[2m > [22m[2mDeploy Test Upgradeable Contract V1
|
|
931
|
+
[22m[39m💰 Upload transaction fee: 4120294 stroops (0.4120294 XLM)
|
|
932
|
+
|
|
933
|
+
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mContract Deployments[2m > [22m[2mDeploy Test Upgradeable Contract V1
|
|
934
|
+
[22m[39m⏰ WASM TTL: live until ledger 121119 (120959 ledgers remaining, ~7.00 days)
|
|
935
|
+
|
|
936
|
+
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mContract Deployments[2m > [22m[2mDeploy Test Upgradeable Contract V1
|
|
937
|
+
[22m[39m✅ Test Contract V1 WASM uploaded, hash: 9fb48823f5df25ebe4f0a89d8c73d1ced2665d5e63c4db558717ae4394ccc3d3
|
|
938
|
+
🚀 Deploying Test Contract V1...
|
|
939
|
+
|
|
940
|
+
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mContract Deployments[2m > [22m[2mDeploy Test Upgradeable Contract V1
|
|
941
|
+
[22m[39m✅ Test Contract V1 deployed at: CBWDC25QRRQ2DAXLPPKDODDMUCP3QD4W7HC4Z6XXHWJU3SDNHCD5XCHA
|
|
942
|
+
|
|
943
|
+
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mContract Deployments[2m > [22m[2mVerify Test Contract V1 Counter
|
|
944
|
+
[22m[39m✅ Test Contract V1 counter value: [33m1[39m
|
|
945
|
+
|
|
946
|
+
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mUpgrade Workflow[2m > [22m[2mUpload Test Contract V2 WASM
|
|
947
|
+
[22m[39m📖 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)
|
|
949
|
+
|
|
950
|
+
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mUpgrade Workflow[2m > [22m[2mUpload Test Contract V2 WASM
|
|
951
|
+
[22m[39m💰 Upload transaction fee: 4164122 stroops (0.4164122 XLM)
|
|
952
|
+
|
|
953
|
+
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mUpgrade Workflow[2m > [22m[2mUpload Test Contract V2 WASM
|
|
954
|
+
[22m[39m⏰ WASM TTL: live until ledger 121121 (120959 ledgers remaining, ~7.00 days)
|
|
955
|
+
|
|
956
|
+
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mUpgrade Workflow[2m > [22m[2mUpload Test Contract V2 WASM
|
|
957
|
+
[22m[39m✅ Test Contract V2 WASM uploaded, hash: aaa6e6710fc91d2d72055ed744b9f359a49b4b16fa6cfd069ea747a387e9f5a2
|
|
958
|
+
|
|
959
|
+
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mUpgrade Workflow[2m > [22m[2mTest Upgrader Contract Can Be Called
|
|
960
|
+
[22m[39m🔄 Testing upgrader contract call...
|
|
961
|
+
Contract address: CBWDC25QRRQ2DAXLPPKDODDMUCP3QD4W7HC4Z6XXHWJU3SDNHCD5XCHA
|
|
962
|
+
New WASM hash: aaa6e6710fc91d2d72055ed744b9f359a49b4b16fa6cfd069ea747a387e9f5a2
|
|
963
|
+
|
|
964
|
+
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mUpgrade Workflow[2m > [22m[2mTest Upgrader Contract Can Be Called
|
|
965
|
+
[22m[39m✅ Transaction built with generated client
|
|
966
|
+
✅ Raw transaction built
|
|
967
|
+
|
|
968
|
+
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mUpgrade Workflow[2m > [22m[2mTest Upgrader Contract Can Be Called
|
|
969
|
+
[22m[39m✅ Transaction simulated with record_allow_nonroot
|
|
970
|
+
Auth entries returned: [33m2[39m
|
|
971
|
+
Skipping source account auth entry
|
|
972
|
+
Skipping source account auth entry
|
|
973
|
+
|
|
974
|
+
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mUpgrade Workflow[2m > [22m[2mTest Upgrader Contract Can Be Called
|
|
975
|
+
[22m[39m✅ Auth entries signed
|
|
976
|
+
✅ Final transaction assembled
|
|
977
|
+
✅ Transaction envelope signed
|
|
978
|
+
|
|
979
|
+
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mUpgrade Workflow[2m > [22m[2mTest Upgrader Contract Can Be Called
|
|
980
|
+
[22m[39m✅ Transaction sent, hash: 52028eb4a35499a0193f006934de65988021cb7b4728c66ecaa5261706a9b5d8
|
|
981
|
+
|
|
982
|
+
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mUpgrade Workflow[2m > [22m[2mTest Upgrader Contract Can Be Called
|
|
983
|
+
[22m[39m✅ Upgrade transaction completed
|
|
984
|
+
Transaction status: SUCCESS
|
|
985
|
+
|
|
986
|
+
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mUpgrade Workflow[2m > [22m[2mVerify Test Contract V2 Counter2 After Upgrade
|
|
987
|
+
[22m[39m✅ Test Contract V2 counter2 value: [33m2[39m
|
|
988
|
+
|
|
989
|
+
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mUpgrade Workflow[2m > [22m[2mVerify Test Contract V1 Counter Still Works After Upgrade
|
|
990
|
+
[22m[39m✅ Test Contract V2 counter value (from V1): [33m1[39m
|
|
991
|
+
|
|
992
|
+
[32m✓[39m test/upgrader.test.ts [2m([22m[2m7 tests[22m[2m)[22m[33m 9899[2mms[22m[39m
|
|
993
|
+
[33m[2m✓[22m[39m Upgrader Contract Testing[2m > [22mContract Deployments[2m > [22mDeploy Upgrader Contract [33m 4603[2mms[22m[39m
|
|
994
|
+
[33m[2m✓[22m[39m Upgrader Contract Testing[2m > [22mContract Deployments[2m > [22mDeploy Test Upgradeable Contract V1 [33m 2087[2mms[22m[39m
|
|
995
|
+
[33m[2m✓[22m[39m Upgrader Contract Testing[2m > [22mUpgrade Workflow[2m > [22mUpload Test Contract V2 WASM [33m 1058[2mms[22m[39m
|
|
996
|
+
[33m[2m✓[22m[39m Upgrader Contract Testing[2m > [22mUpgrade Workflow[2m > [22mTest Upgrader Contract Can Be Called [33m 2070[2mms[22m[39m
|
|
997
|
+
|
|
998
|
+
[2m Test Files [22m [1m[32m4 passed[39m[22m[90m (4)[39m
|
|
999
|
+
[2m Tests [22m [1m[32m55 passed[39m[22m[90m (55)[39m
|
|
1000
|
+
[2mType Errors [22m [2mno errors[22m
|
|
1001
|
+
[2m Start at [22m 16:14:00
|
|
1002
|
+
[2m Duration [22m 191.10s[2m (transform 499ms, setup 0ms, collect 938ms, tests 93.13s, environment 0ms, prepare 175ms)[22m
|
|
1003
|
+
|
|
1004
|
+
|
|
1005
|
+
========================================
|
|
1006
|
+
🛑 GLOBAL TEARDOWN: Stopping Stellar Localnet
|
|
1007
|
+
========================================
|
|
1008
|
+
|
|
1009
|
+
✅ Stellar localnet stopped
|