@layerzerolabs/protocol-stellar-v2 0.2.33 → 0.2.34

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 (66) hide show
  1. package/.turbo/turbo-build.log +377 -392
  2. package/.turbo/turbo-lint.log +209 -207
  3. package/.turbo/turbo-test.log +1687 -1753
  4. package/contracts/oapps/oft/integration-tests/extensions/test_oft_fee.rs +5 -11
  5. package/contracts/oapps/oft/integration-tests/extensions/test_pausable.rs +7 -14
  6. package/contracts/oapps/oft/integration-tests/extensions/test_rate_limiter.rs +11 -22
  7. package/contracts/oapps/oft/integration-tests/setup.rs +59 -7
  8. package/contracts/oapps/oft/integration-tests/utils.rs +28 -2
  9. package/contracts/oapps/oft/src/interfaces/mintable.rs +14 -0
  10. package/contracts/oapps/oft/src/interfaces/mod.rs +2 -2
  11. package/contracts/oapps/oft/src/oft.rs +3 -3
  12. package/contracts/oapps/oft/src/oft_types/mint_burn.rs +8 -8
  13. package/contracts/oapps/oft/src/oft_types/mod.rs +3 -4
  14. package/contracts/oapps/oft/src/tests/extensions/rate_limiter.rs +7 -5
  15. package/contracts/oapps/sac-manager/src/errors.rs +14 -0
  16. package/contracts/{sac-manager → oapps/sac-manager}/src/lib.rs +0 -4
  17. package/contracts/oapps/sac-manager/src/sac_manager.rs +115 -0
  18. package/contracts/oapps/sac-manager/src/storage.rs +20 -0
  19. package/contracts/{sac-manager → oapps/sac-manager}/src/tests/mod.rs +0 -4
  20. package/contracts/oapps/sac-manager/src/tests/sac_manager/clawback.rs +86 -0
  21. package/contracts/oapps/sac-manager/src/tests/sac_manager/mint.rs +58 -0
  22. package/contracts/{sac-manager → oapps/sac-manager}/src/tests/sac_manager/mod.rs +1 -3
  23. package/contracts/oapps/sac-manager/src/tests/sac_manager/set_minter.rs +69 -0
  24. package/contracts/oapps/sac-manager/src/tests/sac_manager/test_helper.rs +18 -0
  25. package/contracts/oapps/sac-manager/src/tests/sac_manager/view_functions.rs +28 -0
  26. package/contracts/{sac-manager → oapps/sac-manager}/src/tests/test_helper.rs +16 -59
  27. package/package.json +8 -3
  28. package/sdk/.turbo/turbo-test.log +373 -374
  29. package/sdk/dist/generated/oft.d.ts +3 -3
  30. package/sdk/dist/generated/oft.js +4 -4
  31. package/sdk/dist/generated/sac_manager.d.ts +26 -318
  32. package/sdk/dist/generated/sac_manager.js +23 -129
  33. package/sdk/package.json +6 -1
  34. package/sdk/test/oft-sml.test.ts +72 -36
  35. package/sdk/test/sac-manager-redistribution.test.ts +38 -182
  36. package/contracts/oapps/oft/src/interfaces/mint_burnable.rs +0 -18
  37. package/contracts/sac-manager/src/errors.rs +0 -18
  38. package/contracts/sac-manager/src/extensions/mod.rs +0 -6
  39. package/contracts/sac-manager/src/extensions/redistribution.rs +0 -109
  40. package/contracts/sac-manager/src/extensions/supply_control/mod.rs +0 -488
  41. package/contracts/sac-manager/src/extensions/supply_control/rate_limit.rs +0 -126
  42. package/contracts/sac-manager/src/interfaces/mod.rs +0 -3
  43. package/contracts/sac-manager/src/interfaces/sac_manager.rs +0 -52
  44. package/contracts/sac-manager/src/sac_manager.rs +0 -193
  45. package/contracts/sac-manager/src/storage.rs +0 -20
  46. package/contracts/sac-manager/src/tests/redistribution/mod.rs +0 -1
  47. package/contracts/sac-manager/src/tests/redistribution/redistribute_funds.rs +0 -82
  48. package/contracts/sac-manager/src/tests/sac_manager/admin_mint.rs +0 -206
  49. package/contracts/sac-manager/src/tests/sac_manager/burn.rs +0 -215
  50. package/contracts/sac-manager/src/tests/sac_manager/clawback.rs +0 -209
  51. package/contracts/sac-manager/src/tests/sac_manager/mint.rs +0 -252
  52. package/contracts/sac-manager/src/tests/sac_manager/set_oft_address.rs +0 -47
  53. package/contracts/sac-manager/src/tests/sac_manager/test_helper.rs +0 -75
  54. package/contracts/sac-manager/src/tests/sac_manager/view_functions.rs +0 -60
  55. package/contracts/sac-manager/src/tests/supply_control/enumerable_set.rs +0 -256
  56. package/contracts/sac-manager/src/tests/supply_control/mod.rs +0 -8
  57. package/contracts/sac-manager/src/tests/supply_control/refill.rs +0 -90
  58. package/contracts/sac-manager/src/tests/supply_control/set_mint_whitelist.rs +0 -245
  59. package/contracts/sac-manager/src/tests/supply_control/set_supply_controller.rs +0 -267
  60. package/contracts/sac-manager/src/tests/supply_control/set_supply_controller_manager.rs +0 -122
  61. package/contracts/sac-manager/src/tests/supply_control/test_helper.rs +0 -38
  62. package/contracts/sac-manager/src/tests/supply_control/update_allow_any_mint_burn.rs +0 -114
  63. package/contracts/sac-manager/src/tests/supply_control/update_limit_config.rs +0 -257
  64. /package/contracts/{sac-manager → oapps/sac-manager}/Cargo.toml +0 -0
  65. /package/contracts/{sac-manager → oapps/sac-manager}/src/tests/sac_manager/set_admin.rs +0 -0
  66. /package/contracts/{sac-manager → oapps/sac-manager}/src/tests/sac_manager/set_authorized.rs +0 -0
@@ -12,13 +12,13 @@
12
12
  📦 Using 4 default cache volume(s) for stellar
13
13
  ✅ stellar-25.0.0 (Latest stable release)
14
14
  🔧 stellar version: 25.0.0
15
- (node:15627) [MODULE_TYPELESS_PACKAGE_JSON] Warning: Module type of file:///home/runner/work/monorepo-internal/monorepo-internal/configs/vm-tooling/values/docker-image-repo.ts is not specified and it doesn't parse as CommonJS.
15
+ (node:26892) [MODULE_TYPELESS_PACKAGE_JSON] Warning: Module type of file:///home/runner/work/monorepo-internal/monorepo-internal/configs/vm-tooling/values/docker-image-repo.ts is not specified and it doesn't parse as CommonJS.
16
16
  Reparsing as ES module because module syntax was detected. This incurs a performance overhead.
17
17
  To eliminate this warning, add "type": "module" to /home/runner/work/monorepo-internal/monorepo-internal/package.json.
18
18
  (Use `node --trace-warnings ...` to show where the warning was created)
19
19
  $ docker image inspect --format {{.Id}} 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.0.0
20
- Error response from daemon: No such image: 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.0.0
21
20
 
21
+ Error response from daemon: No such image: 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.0.0
22
22
  📥 Pulling Docker image from: 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.0.0
23
23
  $ docker pull 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.0.0
24
24
  stellar_25.0.0: Pulling from layerzerolabs/stellar-tooling
@@ -30,46 +30,48 @@ f6bd9104d248: Pulling fs layer
30
30
  1cfd9ed002d2: Pulling fs layer
31
31
  43dc8d96fd20: Pulling fs layer
32
32
  2c1ce468d9f3: Pulling fs layer
33
+ f6bd9104d248: Waiting
33
34
  1d4a870e3b66: Pulling fs layer
34
35
  1b2c4c00c303: Pulling fs layer
35
36
  73ca50fa4809: Pulling fs layer
36
37
  f5a85bd7a844: Pulling fs layer
37
38
  c132a28172a5: Pulling fs layer
39
+ 67ce8fb56745: Waiting
38
40
  6ba0ba49c87d: Waiting
39
- 43dc8d96fd20: Waiting
40
41
  1cfd9ed002d2: Waiting
42
+ 43dc8d96fd20: Waiting
41
43
  2c1ce468d9f3: Waiting
42
- 67ce8fb56745: Waiting
43
- f5a85bd7a844: Waiting
44
- c132a28172a5: Waiting
45
44
  1d4a870e3b66: Waiting
45
+ 1b2c4c00c303: Waiting
46
46
  73ca50fa4809: Waiting
47
+ f5a85bd7a844: Waiting
48
+ c132a28172a5: Waiting
49
+ 4617420e017b: Waiting
50
+ 4e430a9db1a3: Waiting
47
51
  f6bd9104d248: Verifying Checksum
48
52
  f6bd9104d248: Download complete
53
+ f6bd9104d248: Pull complete
49
54
  67ce8fb56745: Verifying Checksum
50
55
  67ce8fb56745: Download complete
51
- f6bd9104d248: Pull complete
52
56
  6ba0ba49c87d: Verifying Checksum
53
57
  6ba0ba49c87d: Download complete
54
58
  1cfd9ed002d2: Verifying Checksum
55
59
  1cfd9ed002d2: Download complete
56
- 4e430a9db1a3: Verifying Checksum
57
- 4e430a9db1a3: Download complete
58
- 2c1ce468d9f3: Verifying Checksum
59
- 2c1ce468d9f3: Download complete
60
60
  4617420e017b: Verifying Checksum
61
61
  4617420e017b: Download complete
62
- 43dc8d96fd20: Verifying Checksum
63
- 43dc8d96fd20: Download complete
64
- 1b2c4c00c303: Verifying Checksum
62
+ 2c1ce468d9f3: Download complete
63
+ 4e430a9db1a3: Verifying Checksum
64
+ 4e430a9db1a3: Download complete
65
65
  1b2c4c00c303: Download complete
66
- 73ca50fa4809: Verifying Checksum
67
66
  73ca50fa4809: Download complete
68
- 1d4a870e3b66: Verifying Checksum
69
- 1d4a870e3b66: Download complete
70
67
  f5a85bd7a844: Verifying Checksum
71
68
  f5a85bd7a844: Download complete
69
+ c132a28172a5: Verifying Checksum
72
70
  c132a28172a5: Download complete
71
+ 43dc8d96fd20: Verifying Checksum
72
+ 43dc8d96fd20: Download complete
73
+ 1d4a870e3b66: Verifying Checksum
74
+ 1d4a870e3b66: Download complete
73
75
  4617420e017b: Pull complete
74
76
  4e430a9db1a3: Pull complete
75
77
  67ce8fb56745: Pull complete
@@ -95,213 +97,213 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
95
97
  ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/endpoint-v2/Cargo.toml --crate-type=cdylib --target=wasm32v1-none --release
96
98
  Updating crates.io index
97
99
  Downloading crates ...
98
- Downloaded ark-ff-macros v0.4.2
99
100
  Downloaded ark-bn254 v0.4.0
100
- Downloaded ark-ff-asm v0.4.2
101
- Downloaded ark-poly v0.4.2
101
+ Downloaded ark-ff-macros v0.4.2
102
+ Downloaded ahash v0.8.12
103
+ Downloaded ref-cast v1.0.25
102
104
  Downloaded ref-cast-impl v1.0.25
103
- Downloaded dyn-clone v1.0.20
104
- Downloaded keccak v0.1.5
105
+ Downloaded visibility v0.1.1
106
+ Downloaded soroban-env-guest v25.0.1
107
+ Downloaded time-core v0.1.6
105
108
  Downloaded rustc_version v0.4.1
106
- Downloaded rfc6979 v0.4.0
107
- Downloaded ref-cast v1.0.25
108
- Downloaded rand_chacha v0.3.1
109
- Downloaded version_check v0.9.5
109
+ Downloaded crypto-common v0.1.6
110
+ Downloaded ark-ff-asm v0.4.2
111
+ Downloaded stellar-strkey v0.0.13
112
+ Downloaded sec1 v0.7.3
113
+ Downloaded schemars v0.9.0
110
114
  Downloaded zeroize_derive v1.4.2
111
- Downloaded strsim v0.11.1
112
- Downloaded visibility v0.1.1
113
- Downloaded wasmi_core v0.13.0
114
- Downloaded thiserror v1.0.69
115
115
  Downloaded zeroize v1.8.2
116
- Downloaded typenum v1.19.0
117
- Downloaded soroban-env-common v25.0.1
118
- Downloaded wasmparser-nostd v0.100.2
119
- Downloaded serde_derive v1.0.228
120
- Downloaded wasmparser v0.116.1
121
- Downloaded time v0.3.44
116
+ Downloaded stellar-strkey v0.0.16
117
+ Downloaded unicode-ident v1.0.22
118
+ Downloaded soroban-sdk v25.1.0
119
+ Downloaded serde v1.0.228
122
120
  Downloaded serde_with v3.15.1
121
+ Downloaded wasmparser-nostd v0.100.2
123
122
  Downloaded zerocopy v0.8.27
124
- Downloaded num-bigint v0.4.6
125
- Downloaded ed25519-dalek v2.2.0
126
- Downloaded memchr v2.7.6
123
+ Downloaded wasmparser v0.116.1
127
124
  Downloaded syn v1.0.109
128
- Downloaded libc v0.2.177
129
- Downloaded soroban-wasmi v0.31.1-soroban.20.0.1
130
- Downloaded syn v2.0.108
131
- Downloaded soroban-sdk v25.1.0
125
+ Downloaded itertools v0.14.0
132
126
  Downloaded serde_json v1.0.145
133
- Downloaded serde_core v1.0.228
134
- Downloaded serde v1.0.228
135
- Downloaded schemars v0.9.0
136
- Downloaded unicode-ident v1.0.22
137
- Downloaded soroban-sdk-macros v25.1.0
138
- Downloaded semver v1.0.27
139
127
  Downloaded libm v0.2.15
140
- Downloaded soroban-env-host v25.0.1
141
- Downloaded curve25519-dalek v4.1.3
128
+ Downloaded syn v2.0.108
142
129
  Downloaded chrono v0.4.42
143
- Downloaded base64 v0.22.1
144
- Downloaded stellar-strkey v0.0.16
145
- Downloaded spin v0.9.8
146
- Downloaded soroban-env-macros v25.0.1
147
- Downloaded smallvec v1.15.1
148
- Downloaded signature v2.2.0
149
- Downloaded sha2 v0.10.9
150
- Downloaded serde_with_macros v3.15.1
151
- Downloaded sec1 v0.7.3
152
- Downloaded schemars v1.0.5
153
- Downloaded hashbrown v0.12.3
154
- Downloaded ark-bls12-381 v0.4.0
155
- Downloaded time-macros v0.2.24
156
- Downloaded thiserror-impl v1.0.69
157
- Downloaded stellar-strkey v0.0.13
158
- Downloaded sha3 v0.10.8
159
- Downloaded static_assertions v1.1.0
160
- Downloaded soroban-ledger-snapshot v25.1.0
161
- Downloaded itertools v0.14.0
130
+ Downloaded curve25519-dalek v4.1.3
131
+ Downloaded hashbrown v0.16.0
132
+ Downloaded time v0.3.44
133
+ Downloaded soroban-wasmi v0.31.1-soroban.20.0.1
162
134
  Downloaded itertools v0.10.5
163
- Downloaded heapless v0.8.0
135
+ Downloaded hashbrown v0.12.3
136
+ Downloaded num-bigint v0.4.6
137
+ Downloaded memchr v2.7.6
164
138
  Downloaded indexmap v2.12.0
165
- Downloaded hashbrown v0.16.0
166
139
  Downloaded hashbrown v0.13.2
167
- Downloaded stable_deref_trait v1.2.1
168
- Downloaded soroban-spec v25.1.0
169
- Downloaded soroban-builtin-sdk-macros v25.0.1
170
- Downloaded schemars v0.8.22
140
+ Downloaded der v0.7.10
141
+ Downloaded darling_core v0.20.11
142
+ Downloaded ark-bls12-381 v0.4.0
143
+ Downloaded crypto-bigint v0.5.5
144
+ Downloaded rand v0.8.5
145
+ Downloaded prettyplease v0.2.37
146
+ Downloaded k256 v0.13.4
147
+ Downloaded soroban-env-host v25.0.1
148
+ Downloaded ed25519-dalek v2.2.0
149
+ Downloaded ecdsa v0.16.9
150
+ Downloaded darling_core v0.21.3
151
+ Downloaded base64 v0.22.1
152
+ Downloaded ark-ff v0.4.2
153
+ Downloaded soroban-env-common v25.0.1
154
+ Downloaded sha3 v0.10.8
155
+ Downloaded serde_core v1.0.228
156
+ Downloaded libc v0.2.177
171
157
  Downloaded proc-macro2 v1.0.103
172
- Downloaded getrandom v0.2.16
173
- Downloaded derivative v2.2.0
174
- Downloaded wasmi_arena v0.4.1
175
- Downloaded subtle v2.6.1
176
- Downloaded spki v0.7.3
177
- Downloaded soroban-spec-rust v25.1.0
178
158
  Downloaded p256 v0.13.2
179
- Downloaded once_cell v1.21.3
159
+ Downloaded indexmap v1.9.3
180
160
  Downloaded iana-time-zone v0.1.64
161
+ Downloaded heapless v0.8.0
162
+ Downloaded ethnum v1.5.2
181
163
  Downloaded elliptic-curve v0.13.8
164
+ Downloaded darling v0.20.11
165
+ Downloaded typenum v1.19.0
166
+ Downloaded serde_derive v1.0.228
167
+ Downloaded num-traits v0.2.19
168
+ Downloaded hmac v0.12.1
169
+ Downloaded getrandom v0.2.16
170
+ Downloaded ff v0.13.1
171
+ Downloaded derivative v2.2.0
172
+ Downloaded data-encoding v2.9.0
182
173
  Downloaded darling v0.21.3
183
- Downloaded crypto-bigint v0.5.5
184
174
  Downloaded const-oid v0.9.6
185
- Downloaded autocfg v1.5.0
186
- Downloaded time-core v0.1.6
187
- Downloaded soroban-env-guest v25.0.1
188
- Downloaded ryu v1.0.20
189
- Downloaded rand_core v0.6.4
190
- Downloaded prettyplease v0.2.37
175
+ Downloaded ark-ec v0.4.2
176
+ Downloaded arbitrary v1.3.2
177
+ Downloaded static_assertions v1.1.0
178
+ Downloaded spki v0.7.3
179
+ Downloaded soroban-sdk-macros v25.1.0
180
+ Downloaded soroban-ledger-snapshot v25.1.0
181
+ Downloaded soroban-env-macros v25.0.1
182
+ Downloaded soroban-builtin-sdk-macros v25.0.1
183
+ Downloaded smallvec v1.15.1
184
+ Downloaded sha2 v0.10.9
185
+ Downloaded serde_with_macros v3.15.1
186
+ Downloaded schemars v1.0.5
187
+ Downloaded ppv-lite86 v0.2.21
188
+ Downloaded pkcs8 v0.10.2
191
189
  Downloaded paste v1.0.15
192
- Downloaded macro-string v0.1.4
193
- Downloaded indexmap v1.9.3
194
- Downloaded hmac v0.12.1
195
- Downloaded generic-array v0.14.9
196
- Downloaded ethnum v1.5.2
197
- Downloaded darling_core v0.21.3
190
+ Downloaded once_cell v1.21.3
191
+ Downloaded num-integer v0.1.46
192
+ Downloaded itoa v1.0.15
193
+ Downloaded either v1.15.0
194
+ Downloaded ed25519 v2.2.3
195
+ Downloaded digest v0.10.7
196
+ Downloaded deranged v0.5.5
197
+ Downloaded byteorder v1.5.0
198
198
  Downloaded block-buffer v0.10.4
199
199
  Downloaded base64ct v1.8.0
200
- Downloaded base16ct v0.2.0
200
+ Downloaded autocfg v1.5.0
201
201
  Downloaded ark-std v0.4.0
202
- Downloaded rand v0.8.5
203
- Downloaded num-derive v0.4.2
204
- Downloaded k256 v0.13.4
205
- Downloaded hex-literal v0.4.1
206
- Downloaded der v0.7.10
207
- Downloaded darling_core v0.20.11
208
- Downloaded curve25519-dalek-derive v0.1.1
209
- Downloaded bytes-lit v0.0.5
210
- Downloaded ark-serialize-derive v0.4.2
211
- Downloaded ark-serialize v0.4.2
202
+ Downloaded ark-poly v0.4.2
203
+ Downloaded wasmi_core v0.13.0
204
+ Downloaded version_check v0.9.5
205
+ Downloaded time-macros v0.2.24
206
+ Downloaded thiserror-impl v1.0.69
207
+ Downloaded thiserror v1.0.69
208
+ Downloaded strsim v0.11.1
209
+ Downloaded soroban-spec v25.1.0
212
210
  Downloaded quote v1.0.41
213
- Downloaded ppv-lite86 v0.2.21
214
- Downloaded powerfmt v0.2.0
215
- Downloaded num-integer v0.1.46
211
+ Downloaded primeorder v0.13.6
212
+ Downloaded num-derive v0.4.2
213
+ Downloaded macro-string v0.1.4
214
+ Downloaded keccak v0.1.5
216
215
  Downloaded indexmap-nostd v0.4.0
217
- Downloaded ident_case v1.0.1
218
216
  Downloaded hex v0.4.3
219
217
  Downloaded heck v0.5.0
220
218
  Downloaded hash32 v0.3.1
219
+ Downloaded generic-array v0.14.9
220
+ Downloaded curve25519-dalek-derive v0.1.1
221
+ Downloaded ctor-proc-macro v0.0.6
222
+ Downloaded ark-serialize v0.4.2
223
+ Downloaded wasmi_arena v0.4.1
224
+ Downloaded subtle v2.6.1
225
+ Downloaded stable_deref_trait v1.2.1
226
+ Downloaded soroban-spec-rust v25.1.0
227
+ Downloaded signature v2.2.0
228
+ Downloaded powerfmt v0.2.0
229
+ Downloaded ident_case v1.0.1
230
+ Downloaded group v0.13.0
231
+ Downloaded fnv v1.0.7
221
232
  Downloaded escape-bytes v0.1.1
222
- Downloaded either v1.15.0
223
- Downloaded downcast-rs v1.2.1
233
+ Downloaded equivalent v1.0.2
234
+ Downloaded dyn-clone v1.0.20
235
+ Downloaded dtor v0.1.1
224
236
  Downloaded derive_arbitrary v1.3.2
225
- Downloaded darling_macro v0.21.3
237
+ Downloaded darling_macro v0.20.11
238
+ Downloaded cfg_eval v0.1.2
226
239
  Downloaded cfg-if v1.0.4
227
- Downloaded primeorder v0.13.6
228
- Downloaded pkcs8 v0.10.2
229
- Downloaded num-traits v0.2.19
240
+ Downloaded base16ct v0.2.0
241
+ Downloaded ark-serialize-derive v0.4.2
242
+ Downloaded rand_core v0.6.4
243
+ Downloaded rand_chacha v0.3.1
230
244
  Downloaded num-conv v0.1.0
231
- Downloaded itoa v1.0.15
232
- Downloaded ed25519 v2.2.3
233
- Downloaded digest v0.10.7
234
- Downloaded deranged v0.5.5
235
- Downloaded darling_macro v0.20.11
245
+ Downloaded stellar-xdr v25.0.0
246
+ Downloaded downcast-rs v1.2.1
247
+ Downloaded bytes-lit v0.0.5
248
+ Downloaded ryu v1.0.20
249
+ Downloaded rfc6979 v0.4.0
250
+ Downloaded hex-literal v0.4.1
251
+ Downloaded darling_macro v0.21.3
236
252
  Downloaded ctor v0.5.0
237
- Downloaded group v0.13.0
238
- Downloaded fnv v1.0.7
239
- Downloaded ff v0.13.1
240
- Downloaded ecdsa v0.16.9
241
- Downloaded cpufeatures v0.2.17
242
- Downloaded cfg_eval v0.1.2
243
- Downloaded byteorder v1.5.0
244
- Downloaded equivalent v1.0.2
245
- Downloaded crypto-common v0.1.6
246
253
  Downloaded crate-git-revision v0.0.6
254
+ Downloaded cpufeatures v0.2.17
255
+ Downloaded semver v1.0.27
247
256
  Downloaded dtor-proc-macro v0.0.6
248
- Downloaded dtor v0.1.1
249
- Downloaded darling v0.20.11
250
- Downloaded ctor-proc-macro v0.0.6
251
- Downloaded ark-ff v0.4.2
252
- Downloaded data-encoding v2.9.0
253
- Downloaded ark-ec v0.4.2
254
- Downloaded stellar-xdr v25.0.0
255
- Downloaded arbitrary v1.3.2
256
- Downloaded ahash v0.8.12
257
+ Downloaded spin v0.9.8
258
+ Downloaded schemars v0.8.22
257
259
  Compiling proc-macro2 v1.0.103
258
- Compiling quote v1.0.41
259
260
  Compiling unicode-ident v1.0.22
261
+ Compiling quote v1.0.41
260
262
  Compiling serde_core v1.0.228
261
263
  Compiling serde v1.0.228
262
264
  Compiling serde_json v1.0.145
263
- Compiling ryu v1.0.20
264
265
  Compiling itoa v1.0.15
265
266
  Compiling memchr v2.7.6
266
- Compiling ident_case v1.0.1
267
+ Compiling ryu v1.0.20
267
268
  Compiling strsim v0.11.1
268
269
  Compiling fnv v1.0.7
269
- Compiling typenum v1.19.0
270
+ Compiling ident_case v1.0.1
270
271
  Compiling version_check v0.9.5
272
+ Compiling typenum v1.19.0
271
273
  Compiling autocfg v1.5.0
272
274
  Compiling schemars v0.8.22
273
275
  Compiling dyn-clone v1.0.20
274
- Compiling cfg-if v1.0.4
275
276
  Compiling data-encoding v2.9.0
277
+ Compiling cfg-if v1.0.4
276
278
  Compiling cpufeatures v0.2.17
277
279
  Compiling ethnum v1.5.2
278
- Compiling either v1.15.0
279
280
  Compiling escape-bytes v0.1.1
281
+ Compiling generic-array v0.14.9
282
+ Compiling either v1.15.0
280
283
  Compiling semver v1.0.27
281
- Compiling equivalent v1.0.2
282
284
  Compiling thiserror v1.0.69
285
+ Compiling equivalent v1.0.2
283
286
  Compiling hashbrown v0.16.0
284
287
  Compiling prettyplease v0.2.37
285
- Compiling heapless v0.8.0
286
- Compiling generic-array v0.14.9
287
288
  Compiling base64 v0.22.1
288
- Compiling num-traits v0.2.19
289
289
  Compiling itertools v0.10.5
290
+ Compiling heapless v0.8.0
290
291
  Compiling byteorder v1.5.0
291
- Compiling static_assertions v1.1.0
292
+ Compiling num-traits v0.2.19
292
293
  Compiling rustc_version v0.4.1
293
- Compiling heck v0.5.0
294
- Compiling stable_deref_trait v1.2.1
295
294
  Compiling hash32 v0.3.1
295
+ Compiling static_assertions v1.1.0
296
+ Compiling stable_deref_trait v1.2.1
297
+ Compiling heck v0.5.0
296
298
  Compiling itertools v0.14.0
297
299
  Compiling indexmap v2.12.0
298
- Compiling syn v2.0.108
299
300
  Compiling block-buffer v0.10.4
300
301
  Compiling crypto-common v0.1.6
301
- Compiling num-integer v0.1.46
302
- Compiling wasmparser v0.116.1
302
+ Compiling syn v2.0.108
303
303
  Compiling digest v0.10.7
304
304
  Compiling sha2 v0.10.9
305
+ Compiling wasmparser v0.116.1
306
+ Compiling num-integer v0.1.46
305
307
  Compiling num-bigint v0.4.6
306
308
  Compiling darling_core v0.21.3
307
309
  Compiling darling_core v0.20.11
@@ -333,7 +335,7 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
333
335
  Compiling soroban-env-guest v25.0.1
334
336
  Compiling utils v0.0.1 (/workspace/contracts/protocol/stellar/contracts/utils)
335
337
  Compiling endpoint-v2 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/endpoint-v2)
336
- Finished `release` profile [optimized] target(s) in 33.15s
338
+ Finished `release` profile [optimized] target(s) in 1m 07s
337
339
  ℹ️ Build Summary:
338
340
  Wasm File: target/wasm32v1-none/release/endpoint_v2.wasm (57964 bytes)
339
341
  Wasm Hash: c824544e1262d9b1b8fbe1454782087d4ab39884e5e332145477a46600ba3b45
@@ -404,11 +406,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
404
406
  ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/layerzero-views/Cargo.toml --crate-type=cdylib --target=wasm32v1-none --release
405
407
  Compiling byteorder v1.5.0
406
408
  Compiling escape-bytes v0.1.1
407
- Compiling ethnum v1.5.2
408
- Compiling stable_deref_trait v1.2.1
409
+ Compiling num-traits v0.2.19
409
410
  Compiling static_assertions v1.1.0
411
+ Compiling stable_deref_trait v1.2.1
412
+ Compiling ethnum v1.5.2
410
413
  Compiling data-encoding v2.9.0
411
- Compiling num-traits v0.2.19
412
414
  Compiling cfg-if v1.0.4
413
415
  Compiling stellar-xdr v25.0.0
414
416
  Compiling hash32 v0.3.1
@@ -422,220 +424,66 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
422
424
  Compiling message-lib-common v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/message-lib-common)
423
425
  Compiling uln302 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/uln-302)
424
426
  Compiling layerzero-views v0.0.1 (/workspace/contracts/protocol/stellar/contracts/layerzero-views)
425
- Finished `release` profile [optimized] target(s) in 8.66s
427
+ Finished `release` profile [optimized] target(s) in 17.37s
426
428
  ℹ️ Build Summary:
427
429
  Wasm File: target/wasm32v1-none/release/layerzero_views.wasm (35715 bytes)
428
430
  Wasm Hash: 06acbdd68500eed2d515633af50c53a29f7b492811c930c61b618ce22a3772bd
429
431
  Wasm Size: 35715 bytes
430
432
  Exported Functions: 22 found
431
433
  • __constructor
432
- • accept_ownership
433
- • authorizer
434
- • endpoint
435
- • executable
436
- • extend_instance_ttl
437
- • freeze_ttl_configs
438
- • initializable
439
- • is_ttl_configs_frozen
440
- • local_eid
441
- • migrate
442
- • owner
443
- • pending_owner
444
- • propose_ownership_transfer
445
- • renounce_ownership
446
- • set_ttl_configs
447
- • transfer_ownership
448
- • ttl_configs
449
- • uln302
450
- • uln_verifiable
451
- • upgrade
452
- • verifiable
453
- ✅ Build Complete
454
-
455
- ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/message-libs/uln-302/Cargo.toml --crate-type=cdylib --target=wasm32v1-none --release
456
- Compiling message-lib-common v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/message-lib-common)
457
- Compiling uln302 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/uln-302)
458
- Finished `release` profile [optimized] target(s) in 1.11s
459
- ℹ️ Build Summary:
460
- Wasm File: target/wasm32v1-none/release/uln302.wasm (59413 bytes)
461
- Wasm Hash: 30c73aa82b858c5193bba531e61e85f6a45e1bceebfe392a33ddf066c3c73d10
462
- Wasm Size: 59413 bytes
463
- Exported Functions: 38 found
464
- • __constructor
465
- • accept_ownership
466
- • authorizer
467
- • commit_verification
468
- • confirmations
469
- • default_executor_config
470
- • default_receive_uln_config
471
- • default_send_uln_config
472
- • effective_executor_config
473
- • effective_receive_uln_config
474
- • effective_send_uln_config
475
- • endpoint
476
- • extend_instance_ttl
477
- • freeze_ttl_configs
478
- • get_config
479
- • is_supported_eid
480
- • is_ttl_configs_frozen
481
- • message_lib_type
482
- • oapp_executor_config
483
- • oapp_receive_uln_config
484
- • oapp_send_uln_config
485
- • owner
486
- • pending_owner
487
- • propose_ownership_transfer
488
- • quote
489
- • renounce_ownership
490
- • send
491
- • set_config
492
- • set_default_executor_configs
493
- • set_default_receive_uln_configs
494
- • set_default_send_uln_configs
495
- • set_ttl_configs
496
- • transfer_ownership
497
- • treasury
498
- • ttl_configs
499
- • verifiable
500
- • verify
501
- • version
502
- ✅ Build Complete
503
-
504
- ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/sac-manager/Cargo.toml --crate-type=cdylib --target=wasm32v1-none --release
505
- Compiling oapp-macros v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp-macros)
506
- Compiling oapp v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp)
507
- Compiling oft-core v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft-core)
508
- Compiling oft v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft)
509
- Compiling sac-manager v0.0.1 (/workspace/contracts/protocol/stellar/contracts/sac-manager)
510
- Finished `release` profile [optimized] target(s) in 2.09s
511
- ℹ️ Build Summary:
512
- Wasm File: target/wasm32v1-none/release/sac_manager.wasm (47427 bytes)
513
- Wasm Hash: ce6445fdd02b7265220c941427d212a57b696bd4c044f5ec41463ec1f1f2fea6
514
- Wasm Size: 47427 bytes
515
- Exported Functions: 39 found
516
- • __constructor
517
- • accept_ownership
518
- • allow_any_mint_burn
519
- • authorized_mint
520
- • authorizer
521
- • burn
522
- • clawback
523
- • extend_instance_ttl
524
- • freeze_ttl_configs
525
- • get_remaining_mint_amount
526
- • get_supply_controller_config
527
- • get_supply_controller_managers
528
- • get_supply_controllers
529
- • is_address_whitelisted
530
- • is_supply_controller_manager
531
- • is_ttl_configs_frozen
532
- • migrate
533
- • mint
534
- • oft_address
535
- • owner
536
- • pending_owner
537
- • propose_ownership_transfer
538
- • redistribute_blacklisted_funds
539
- • redistribution_enabled
540
- • release_sac_admin
541
- • renounce_ownership
542
- • set_authorized
543
- • set_mint_whitelist
544
- • set_oft_address
545
- • set_supply_controller
546
- • set_supply_controller_manager
547
- • set_ttl_configs
548
- • supply_control_enabled
549
- • transfer_ownership
550
- • ttl_configs
551
- • underlying_sac
552
- • update_allow_any_mint_burn
553
- • update_limit_config
554
- • upgrade
555
- ✅ Build Complete
556
-
557
- ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/oapps/oft/Cargo.toml --crate-type=cdylib --target=wasm32v1-none --release
558
- Compiling oapp v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp)
559
- Compiling oft-core v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft-core)
560
- Compiling oft v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft)
561
- Finished `release` profile [optimized] target(s) in 1.56s
562
- ℹ️ Build Summary:
563
- Wasm File: target/wasm32v1-none/release/oft.wasm (65694 bytes)
564
- Wasm Hash: cbad91160b3b4214d9ea371c2f4b961835fe45dfe8c1e9779c3a63e6c2ce38af
565
- Wasm Size: 65694 bytes
566
- Exported Functions: 49 found
567
- • __constructor
568
- • accept_ownership
569
- • allow_initialize_path
570
- • approval_required
571
- • authorizer
572
- • combine_options
573
- • decimal_conversion_rate
574
- • default_fee_bps
575
- • effective_fee_bps
434
+ • accept_ownership
435
+ • authorizer
576
436
  • endpoint
577
- enforced_options
437
+ executable
578
438
  • extend_instance_ttl
579
- • fee_bps
580
- • fee_deposit_address
581
439
  • freeze_ttl_configs
582
- is_compose_msg_sender
583
- • is_paused
440
+ initializable
584
441
  • is_ttl_configs_frozen
585
- lz_receive
586
- msg_inspector
587
- • next_nonce
588
- • oapp_version
589
- • oft_type
590
- • oft_version
442
+ local_eid
443
+ migrate
591
444
  • owner
592
- • peer
593
445
  • pending_owner
594
446
  • propose_ownership_transfer
595
- • quote_oft
596
- • quote_send
597
- • rate_limit_capacity
598
- • rate_limit_config
599
- • rate_limit_in_flight
600
447
  • renounce_ownership
601
- • send
602
- • set_default_fee_bps
603
- • set_delegate
604
- • set_enforced_options
605
- • set_fee_bps
606
- • set_fee_deposit_address
607
- • set_msg_inspector
608
- • set_paused
609
- • set_peer
610
- • set_rate_limit
611
448
  • set_ttl_configs
612
- • shared_decimals
613
- • token
614
449
  • transfer_ownership
615
450
  • ttl_configs
451
+ • uln302
452
+ • uln_verifiable
453
+ • upgrade
454
+ • verifiable
616
455
  ✅ Build Complete
617
456
 
618
- ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/message-libs/simple-message-lib/Cargo.toml --crate-type=cdylib --target=wasm32v1-none --release
619
- Compiling simple-message-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/simple-message-lib)
620
- Finished `release` profile [optimized] target(s) in 0.49s
457
+ ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/message-libs/uln-302/Cargo.toml --crate-type=cdylib --target=wasm32v1-none --release
458
+ Compiling message-lib-common v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/message-lib-common)
459
+ Compiling uln302 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/uln-302)
460
+ Finished `release` profile [optimized] target(s) in 2.05s
621
461
  ℹ️ Build Summary:
622
- Wasm File: target/wasm32v1-none/release/simple_message_lib.wasm (29777 bytes)
623
- Wasm Hash: 642d224fb11c748d1ee77d8806b37179d1ecb0d015c287846cbe67d06fc7a234
624
- Wasm Size: 29777 bytes
625
- Exported Functions: 31 found
462
+ Wasm File: target/wasm32v1-none/release/uln302.wasm (59413 bytes)
463
+ Wasm Hash: 30c73aa82b858c5193bba531e61e85f6a45e1bceebfe392a33ddf066c3c73d10
464
+ Wasm Size: 59413 bytes
465
+ Exported Functions: 38 found
626
466
  • __constructor
627
467
  • accept_ownership
628
468
  • authorizer
469
+ • commit_verification
470
+ • confirmations
471
+ • default_executor_config
472
+ • default_receive_uln_config
473
+ • default_send_uln_config
474
+ • effective_executor_config
475
+ • effective_receive_uln_config
476
+ • effective_send_uln_config
629
477
  • endpoint
630
478
  • extend_instance_ttl
631
- • fee_recipient
632
479
  • freeze_ttl_configs
633
480
  • get_config
634
481
  • is_supported_eid
635
482
  • is_ttl_configs_frozen
636
- • local_eid
637
483
  • message_lib_type
638
- native_fee
484
+ oapp_executor_config
485
+ • oapp_receive_uln_config
486
+ • oapp_send_uln_config
639
487
  • owner
640
488
  • pending_owner
641
489
  • propose_ownership_transfer
@@ -643,22 +491,21 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
643
491
  • renounce_ownership
644
492
  • send
645
493
  • set_config
646
- set_fee_recipient
647
- set_native_fee
494
+ set_default_executor_configs
495
+ set_default_receive_uln_configs
496
+ • set_default_send_uln_configs
648
497
  • set_ttl_configs
649
- • set_whitelisted_caller
650
- • set_zro_fee
651
498
  • transfer_ownership
499
+ • treasury
652
500
  • ttl_configs
653
- validate_packet
501
+ verifiable
502
+ • verify
654
503
  • version
655
- • whitelisted_caller
656
- • zro_fee
657
504
  ✅ Build Complete
658
505
 
659
506
  ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/upgrader/Cargo.toml --crate-type=cdylib --target=wasm32v1-none --release
660
507
  Compiling upgrader v0.0.1 (/workspace/contracts/protocol/stellar/contracts/upgrader)
661
- Finished `release` profile [optimized] target(s) in 0.26s
508
+ Finished `release` profile [optimized] target(s) in 0.54s
662
509
  ℹ️ Build Summary:
663
510
  Wasm File: target/wasm32v1-none/release/upgrader.wasm (5385 bytes)
664
511
  Wasm Hash: b1a7ef0631e7b4bf9569dcdc0525ba6a8669f7450a363c7052b16d14dd881771
@@ -670,7 +517,7 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
670
517
 
671
518
  ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/message-libs/blocked-message-lib/Cargo.toml --crate-type=cdylib --target=wasm32v1-none --release
672
519
  Compiling blocked-message-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/blocked-message-lib)
673
- Finished `release` profile [optimized] target(s) in 0.31s
520
+ Finished `release` profile [optimized] target(s) in 0.65s
674
521
  ℹ️ Build Summary:
675
522
  Wasm File: target/wasm32v1-none/release/blocked_message_lib.wasm (15029 bytes)
676
523
  Wasm Hash: bc7bee1f03e82d7cf2f2208f3084e8eb997b45a5ceecf10d2b832cf8c6f9611d
@@ -685,9 +532,50 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
685
532
  • version
686
533
  ✅ Build Complete
687
534
 
535
+ ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/message-libs/simple-message-lib/Cargo.toml --crate-type=cdylib --target=wasm32v1-none --release
536
+ Compiling simple-message-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/simple-message-lib)
537
+ Finished `release` profile [optimized] target(s) in 0.93s
538
+ ℹ️ Build Summary:
539
+ Wasm File: target/wasm32v1-none/release/simple_message_lib.wasm (29777 bytes)
540
+ Wasm Hash: 642d224fb11c748d1ee77d8806b37179d1ecb0d015c287846cbe67d06fc7a234
541
+ Wasm Size: 29777 bytes
542
+ Exported Functions: 31 found
543
+ • __constructor
544
+ • accept_ownership
545
+ • authorizer
546
+ • endpoint
547
+ • extend_instance_ttl
548
+ • fee_recipient
549
+ • freeze_ttl_configs
550
+ • get_config
551
+ • is_supported_eid
552
+ • is_ttl_configs_frozen
553
+ • local_eid
554
+ • message_lib_type
555
+ • native_fee
556
+ • owner
557
+ • pending_owner
558
+ • propose_ownership_transfer
559
+ • quote
560
+ • renounce_ownership
561
+ • send
562
+ • set_config
563
+ • set_fee_recipient
564
+ • set_native_fee
565
+ • set_ttl_configs
566
+ • set_whitelisted_caller
567
+ • set_zro_fee
568
+ • transfer_ownership
569
+ • ttl_configs
570
+ • validate_packet
571
+ • version
572
+ • whitelisted_caller
573
+ • zro_fee
574
+ ✅ Build Complete
575
+
688
576
  ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/message-libs/treasury/Cargo.toml --crate-type=cdylib --target=wasm32v1-none --release
689
577
  Compiling treasury v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/treasury)
690
- Finished `release` profile [optimized] target(s) in 0.44s
578
+ Finished `release` profile [optimized] target(s) in 0.81s
691
579
  ℹ️ Build Summary:
692
580
  Wasm File: target/wasm32v1-none/release/treasury.wasm (28356 bytes)
693
581
  Wasm Hash: 66d8646f66f024da9a44979f73a2100ccca2b52e25ed69b0241b8d96d95e32a2
@@ -717,8 +605,10 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
717
605
  ✅ Build Complete
718
606
 
719
607
  ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/oapps/counter/Cargo.toml --crate-type=cdylib --target=wasm32v1-none --release
608
+ Compiling oapp-macros v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp-macros)
609
+ Compiling oapp v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp)
720
610
  Compiling counter v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/counter)
721
- Finished `release` profile [optimized] target(s) in 0.63s
611
+ Finished `release` profile [optimized] target(s) in 2.09s
722
612
  ℹ️ Build Summary:
723
613
  Wasm File: target/wasm32v1-none/release/counter.wasm (40767 bytes)
724
614
  Wasm Hash: ad0c1fad9f1a1d41626541cb1bd500587f143838f7a0a8fa47d8d162f6f1eaf7
@@ -765,7 +655,7 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
765
655
  Compiling fee-lib-interfaces v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/fee-lib-interfaces)
766
656
  Compiling worker v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/worker)
767
657
  Compiling dvn v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/dvn)
768
- Finished `release` profile [optimized] target(s) in 1.17s
658
+ Finished `release` profile [optimized] target(s) in 2.08s
769
659
  ℹ️ Build Summary:
770
660
  Wasm File: target/wasm32v1-none/release/dvn.wasm (55851 bytes)
771
661
  Wasm Hash: 26bd42a59769e8449b65fe65b5ca636489be375c923f19a5943211834c592008
@@ -825,7 +715,7 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
825
715
  ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/workers/dvn-fee-lib/Cargo.toml --crate-type=cdylib --target=wasm32v1-none --release
826
716
  Compiling fee-lib-interfaces v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/fee-lib-interfaces)
827
717
  Compiling dvn-fee-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/dvn-fee-lib)
828
- Finished `release` profile [optimized] target(s) in 0.61s
718
+ Finished `release` profile [optimized] target(s) in 1.11s
829
719
  ℹ️ Build Summary:
830
720
  Wasm File: target/wasm32v1-none/release/dvn_fee_lib.wasm (21527 bytes)
831
721
  Wasm Hash: 98e9e88c442664414fc8e5500220befe2f1abad3748a713dc5aec83c8b21eb57
@@ -851,7 +741,7 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
851
741
 
852
742
  ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/workers/executor/Cargo.toml --crate-type=cdylib --target=wasm32v1-none --release
853
743
  Compiling executor v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor)
854
- Finished `release` profile [optimized] target(s) in 0.78s
744
+ Finished `release` profile [optimized] target(s) in 1.30s
855
745
  ℹ️ Build Summary:
856
746
  Wasm File: target/wasm32v1-none/release/executor.wasm (58254 bytes)
857
747
  Wasm Hash: 8f51ceea5413e203b1d4052ce015c1783d70035cd3f8896505e349a84e3095dd
@@ -910,7 +800,7 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
910
800
 
911
801
  ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/workers/executor-fee-lib/Cargo.toml --crate-type=cdylib --target=wasm32v1-none --release
912
802
  Compiling executor-fee-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor-fee-lib)
913
- Finished `release` profile [optimized] target(s) in 0.43s
803
+ Finished `release` profile [optimized] target(s) in 0.72s
914
804
  ℹ️ Build Summary:
915
805
  Wasm File: target/wasm32v1-none/release/executor_fee_lib.wasm (34412 bytes)
916
806
  Wasm Hash: b137cb577e25ef63f94b0aa305d094a6f190cbc27ba47e1fe7d4deb7589d141e
@@ -940,7 +830,7 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
940
830
  Compiling worker v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/worker)
941
831
  Compiling executor v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor)
942
832
  Compiling executor-helper v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor-helper)
943
- Finished `release` profile [optimized] target(s) in 1.00s
833
+ Finished `release` profile [optimized] target(s) in 1.77s
944
834
  ℹ️ Build Summary:
945
835
  Wasm File: target/wasm32v1-none/release/executor_helper.wasm (24789 bytes)
946
836
  Wasm Hash: db672becfdc1aeebcd4da6058632500adfea059e053ce2d332d0bdba87d200ea
@@ -956,7 +846,7 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
956
846
 
957
847
  ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/workers/price-feed/Cargo.toml --crate-type=cdylib --target=wasm32v1-none --release
958
848
  Compiling price-feed v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/price-feed)
959
- Finished `release` profile [optimized] target(s) in 0.61s
849
+ Finished `release` profile [optimized] target(s) in 0.93s
960
850
  ℹ️ Build Summary:
961
851
  Wasm File: target/wasm32v1-none/release/price_feed.wasm (32620 bytes)
962
852
  Wasm Hash: ab9176962cf62cbebe2c90fe34119474956b6766cd817b415ccd39bb0c905d4c
@@ -994,7 +884,102 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
994
884
  • upgrade
995
885
  ✅ Build Complete
996
886
 
997
- ⏱️ stellar contract build: 1:07.458 (m:ss.mmm)
887
+ ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/oapps/oft/Cargo.toml --crate-type=cdylib --target=wasm32v1-none --release
888
+ Compiling oft-core v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft-core)
889
+ Compiling oft v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft)
890
+ Finished `release` profile [optimized] target(s) in 2.32s
891
+ ℹ️ Build Summary:
892
+ Wasm File: target/wasm32v1-none/release/oft.wasm (65667 bytes)
893
+ Wasm Hash: 8b84abea73df1b3dc80cc038bb9f76893217089066795d296d412e3750ac0caa
894
+ Wasm Size: 65667 bytes
895
+ Exported Functions: 49 found
896
+ • __constructor
897
+ • accept_ownership
898
+ • allow_initialize_path
899
+ • approval_required
900
+ • authorizer
901
+ • combine_options
902
+ • decimal_conversion_rate
903
+ • default_fee_bps
904
+ • effective_fee_bps
905
+ • endpoint
906
+ • enforced_options
907
+ • extend_instance_ttl
908
+ • fee_bps
909
+ • fee_deposit_address
910
+ • freeze_ttl_configs
911
+ • is_compose_msg_sender
912
+ • is_paused
913
+ • is_ttl_configs_frozen
914
+ • lz_receive
915
+ • msg_inspector
916
+ • next_nonce
917
+ • oapp_version
918
+ • oft_type
919
+ • oft_version
920
+ • owner
921
+ • peer
922
+ • pending_owner
923
+ • propose_ownership_transfer
924
+ • quote_oft
925
+ • quote_send
926
+ • rate_limit_capacity
927
+ • rate_limit_config
928
+ • rate_limit_in_flight
929
+ • renounce_ownership
930
+ • send
931
+ • set_default_fee_bps
932
+ • set_delegate
933
+ • set_enforced_options
934
+ • set_fee_bps
935
+ • set_fee_deposit_address
936
+ • set_msg_inspector
937
+ • set_paused
938
+ • set_peer
939
+ • set_rate_limit
940
+ • set_ttl_configs
941
+ • shared_decimals
942
+ • token
943
+ • transfer_ownership
944
+ • ttl_configs
945
+ ✅ Build Complete
946
+
947
+ ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/oapps/sac-manager/Cargo.toml --crate-type=cdylib --target=wasm32v1-none --release
948
+ Compiling oapp v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp)
949
+ Compiling oft-core v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft-core)
950
+ Compiling oft v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft)
951
+ Compiling sac-manager v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/sac-manager)
952
+ Finished `release` profile [optimized] target(s) in 2.52s
953
+ ℹ️ Build Summary:
954
+ Wasm File: target/wasm32v1-none/release/sac_manager.wasm (29902 bytes)
955
+ Wasm Hash: eda52724ced2fc8c21b55f0ac1de5b887b167e3cad5626e3f3ce021efddce585
956
+ Wasm Size: 29902 bytes
957
+ Exported Functions: 22 found
958
+ • __constructor
959
+ • accept_ownership
960
+ • authorizer
961
+ • clawback
962
+ • extend_instance_ttl
963
+ • freeze_ttl_configs
964
+ • is_ttl_configs_frozen
965
+ • migrate
966
+ • mint
967
+ • minters
968
+ • owner
969
+ • pending_owner
970
+ • propose_ownership_transfer
971
+ • release_sac_admin
972
+ • renounce_ownership
973
+ • set_authorized
974
+ • set_minter
975
+ • set_ttl_configs
976
+ • transfer_ownership
977
+ • ttl_configs
978
+ • underlying_sac
979
+ • upgrade
980
+ ✅ Build Complete
981
+
982
+ ⏱️ stellar contract build: 2:09.232 (m:ss.mmm)
998
983
  🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
999
984
  🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-config
1000
985
  🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup
@@ -1007,7 +992,7 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
1007
992
  📦 Using 4 default cache volume(s) for stellar
1008
993
  ✅ stellar-25.0.0 (Latest stable release)
1009
994
  🔧 stellar version: 25.0.0
1010
- (node:23004) [MODULE_TYPELESS_PACKAGE_JSON] Warning: Module type of file:///home/runner/work/monorepo-internal/monorepo-internal/configs/vm-tooling/values/docker-image-repo.ts is not specified and it doesn't parse as CommonJS.
995
+ (node:71248) [MODULE_TYPELESS_PACKAGE_JSON] Warning: Module type of file:///home/runner/work/monorepo-internal/monorepo-internal/configs/vm-tooling/values/docker-image-repo.ts is not specified and it doesn't parse as CommonJS.
1011
996
  Reparsing as ES module because module syntax was detected. This incurs a performance overhead.
1012
997
  To eliminate this warning, add "type": "module" to /home/runner/work/monorepo-internal/monorepo-internal/package.json.
1013
998
  (Use `node --trace-warnings ...` to show where the warning was created)
@@ -1023,71 +1008,71 @@ sha256:57520026e52d8bfec50ae6363977a40712bfa2549bac8ceed62a150f1d58a8d2
1023
1008
  $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_LINKER=clang -e CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER=clang -e $'CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUSTFLAGS=-C link-arg=-fuse-ld=mold' -e $'CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_RUSTFLAGS=-C link-arg=-fuse-ld=mold' -e LOCAL_UID=1001 -e LOCAL_GID=1001 -v /home/runner/work/monorepo-internal/monorepo-internal:/workspace -w /workspace/contracts/protocol/stellar -v lz-tooling-cache-stellar-config:/cache/stellar -v lz-tooling-cache-stellar-cargo:/cache/cargo -v lz-tooling-cache-stellar-rustup:/cache/rustup -v /home/runner/.sccache:/cache/sccache 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.0.0 bash -c $'cargo run -p ts-bindings-gen'
1024
1009
  Downloading crates ...
1025
1010
  Downloaded digest v0.9.0
1026
- Downloaded block-buffer v0.9.0
1027
1011
  Downloaded opaque-debug v0.3.1
1012
+ Downloaded block-buffer v0.9.0
1028
1013
  Downloaded include_dir_macros v0.7.4
1029
1014
  Downloaded include_dir v0.7.4
1015
+ Downloaded anyhow v1.0.100
1030
1016
  Downloaded heck v0.4.1
1031
- Downloaded glob v0.3.3
1032
1017
  Downloaded sha2 v0.9.9
1033
- Downloaded anyhow v1.0.100
1034
- Downloaded soroban-spec-typescript v25.1.0
1018
+ Downloaded glob v0.3.3
1035
1019
  Downloaded base64 v0.21.7
1020
+ Downloaded soroban-spec-typescript v25.1.0
1036
1021
  Compiling proc-macro2 v1.0.103
1037
1022
  Compiling unicode-ident v1.0.22
1038
1023
  Compiling quote v1.0.41
1039
1024
  Compiling serde_json v1.0.145
1025
+ Compiling version_check v0.9.5
1040
1026
  Compiling typenum v1.19.0
1041
1027
  Compiling serde_core v1.0.228
1042
- Compiling version_check v0.9.5
1043
1028
  Compiling serde v1.0.228
1044
- Compiling memchr v2.7.6
1045
1029
  Compiling ryu v1.0.20
1046
1030
  Compiling itoa v1.0.15
1047
- Compiling fnv v1.0.7
1048
- Compiling strsim v0.11.1
1031
+ Compiling memchr v2.7.6
1049
1032
  Compiling ident_case v1.0.1
1033
+ Compiling strsim v0.11.1
1034
+ Compiling fnv v1.0.7
1050
1035
  Compiling schemars v0.8.22
1051
- Compiling cfg-if v1.0.4
1052
- Compiling cpufeatures v0.2.17
1053
1036
  Compiling dyn-clone v1.0.20
1054
- Compiling thiserror v1.0.69
1037
+ Compiling cpufeatures v0.2.17
1038
+ Compiling cfg-if v1.0.4
1055
1039
  Compiling equivalent v1.0.2
1056
- Compiling data-encoding v2.9.0
1057
1040
  Compiling hashbrown v0.16.0
1041
+ Compiling data-encoding v2.9.0
1042
+ Compiling thiserror v1.0.69
1058
1043
  Compiling escape-bytes v0.1.1
1059
- Compiling ethnum v1.5.2
1060
1044
  Compiling base64 v0.22.1
1061
1045
  Compiling semver v1.0.27
1062
- Compiling generic-array v0.14.9
1063
1046
  Compiling prettyplease v0.2.37
1064
- Compiling glob v0.3.3
1047
+ Compiling ethnum v1.5.2
1048
+ Compiling anyhow v1.0.100
1049
+ Compiling generic-array v0.14.9
1065
1050
  Compiling either v1.15.0
1051
+ Compiling glob v0.3.3
1066
1052
  Compiling opaque-debug v0.3.1
1067
- Compiling anyhow v1.0.100
1068
- Compiling heck v0.4.1
1069
1053
  Compiling itertools v0.10.5
1070
- Compiling base64 v0.21.7
1071
1054
  Compiling indexmap v2.12.0
1055
+ Compiling base64 v0.21.7
1056
+ Compiling heck v0.4.1
1057
+ Compiling wasmparser v0.116.1
1072
1058
  Compiling syn v2.0.108
1073
- Compiling crypto-common v0.1.6
1059
+ Compiling include_dir_macros v0.7.4
1074
1060
  Compiling block-buffer v0.10.4
1075
- Compiling block-buffer v0.9.0
1061
+ Compiling crypto-common v0.1.6
1076
1062
  Compiling digest v0.9.0
1077
- Compiling wasmparser v0.116.1
1078
- Compiling sha2 v0.9.9
1063
+ Compiling block-buffer v0.9.0
1079
1064
  Compiling digest v0.10.7
1065
+ Compiling sha2 v0.9.9
1080
1066
  Compiling sha2 v0.10.9
1081
- Compiling include_dir_macros v0.7.4
1082
1067
  Compiling include_dir v0.7.4
1083
1068
  Compiling darling_core v0.21.3
1084
1069
  Compiling serde_derive v1.0.228
1085
- Compiling cfg_eval v0.1.2
1086
1070
  Compiling thiserror-impl v1.0.69
1071
+ Compiling cfg_eval v0.1.2
1087
1072
  Compiling crate-git-revision v0.0.6
1088
- Compiling darling_macro v0.21.3
1089
1073
  Compiling stellar-strkey v0.0.13
1090
1074
  Compiling stellar-xdr v25.0.0
1075
+ Compiling darling_macro v0.21.3
1091
1076
  Compiling hex v0.4.3
1092
1077
  Compiling darling v0.21.3
1093
1078
  Compiling serde_with_macros v3.15.1
@@ -1095,7 +1080,7 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
1095
1080
  Compiling soroban-spec v25.1.0
1096
1081
  Compiling soroban-spec-typescript v25.1.0
1097
1082
  Compiling ts-bindings-gen v0.0.1 (/workspace/contracts/protocol/stellar/tools/ts-bindings-gen)
1098
- Finished `dev` profile [unoptimized + debuginfo] target(s) in 44.01s
1083
+ Finished `dev` profile [unoptimized + debuginfo] target(s) in 1m 27s
1099
1084
  Running `target/debug/ts-bindings-gen`
1100
1085
  🚀 Generating TypeScript bindings for Stellar contracts...
1101
1086
 
@@ -1180,13 +1165,13 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
1180
1165
  📦 Processing contract: oft
1181
1166
  WASM: target/wasm32v1-none/release/oft.wasm
1182
1167
  Output: sdk/src/generated/oft.ts
1183
- WASM size: 65694 bytes (64.15 KB)
1168
+ WASM size: 65667 bytes (64.13 KB)
1184
1169
  Generating bindings...
1185
1170
  ✓ Generated: sdk/src/generated/oft.ts
1186
1171
  📦 Processing contract: sac_manager
1187
1172
  WASM: target/wasm32v1-none/release/sac_manager.wasm
1188
1173
  Output: sdk/src/generated/sac_manager.ts
1189
- WASM size: 47427 bytes (46.32 KB)
1174
+ WASM size: 29902 bytes (29.20 KB)
1190
1175
  Generating bindings...
1191
1176
  ✓ Generated: sdk/src/generated/sac_manager.ts
1192
1177
  📦 Processing contract: layerzero_views
@@ -1216,7 +1201,7 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
1216
1201
  - oft.ts
1217
1202
  - sac_manager.ts
1218
1203
  - layerzero_view.ts
1219
- ⏱️ bash -c cargo run -p ts-bindings-gen: 44.388s
1204
+ ⏱️ bash -c cargo run -p ts-bindings-gen: 1:28.027 (m:ss.mmm)
1220
1205
  🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
1221
1206
  🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-config
1222
1207
  🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup