@layerzerolabs/protocol-stellar-v2 0.2.35 → 0.2.37

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 (105) hide show
  1. package/.turbo/turbo-build.log +274 -268
  2. package/.turbo/turbo-lint.log +216 -213
  3. package/.turbo/turbo-test.log +1735 -1994
  4. package/contracts/common-macros/src/auth.rs +5 -5
  5. package/contracts/common-macros/src/lib.rs +69 -0
  6. package/contracts/common-macros/src/rbac.rs +90 -0
  7. package/contracts/common-macros/src/tests/lz_contract.rs +5 -7
  8. package/contracts/common-macros/src/tests/mod.rs +1 -0
  9. package/contracts/common-macros/src/tests/rbac.rs +420 -0
  10. package/contracts/common-macros/src/tests/snapshots/common_macros__tests__auth__snapshot_generated_multisig_code.snap +4 -4
  11. package/contracts/common-macros/src/tests/snapshots/common_macros__tests__auth__snapshot_generated_ownable_code.snap +5 -12
  12. package/contracts/common-macros/src/tests/snapshots/common_macros__tests__rbac__snapshot_preserve_function_signature.snap +17 -0
  13. package/contracts/common-macros/src/tests/storage/parse_name.rs +0 -1
  14. package/contracts/macro-integration-tests/tests/runtime/lz_contract/wrapper_default.rs +1 -1
  15. package/contracts/macro-integration-tests/tests/runtime/lz_contract/wrapper_multisig.rs +1 -1
  16. package/contracts/macro-integration-tests/tests/runtime/lz_contract/wrapper_multisig_upgradeable.rs +1 -1
  17. package/contracts/macro-integration-tests/tests/runtime/multisig/self_auth.rs +1 -1
  18. package/contracts/macro-integration-tests/tests/runtime/ownable/initialization.rs +8 -5
  19. package/contracts/macro-integration-tests/tests/runtime/ownable/ownership_transfer.rs +2 -2
  20. package/contracts/macro-integration-tests/tests/runtime/rbac/guard_behavior.rs +91 -0
  21. package/contracts/macro-integration-tests/tests/runtime/rbac/mod.rs +30 -0
  22. package/contracts/macro-integration-tests/tests/runtime/ttl_configurable/configuration.rs +2 -2
  23. package/contracts/macro-integration-tests/tests/runtime/upgradeable/migrate_guard_and_state.rs +4 -4
  24. package/contracts/macro-integration-tests/tests/ui/lz_contract/pass/basic.rs +1 -1
  25. package/contracts/macro-integration-tests/tests/ui/ownable/pass/basic.rs +1 -1
  26. package/contracts/macro-integration-tests/tests/ui/rbac/fail/missing_env.rs +18 -0
  27. package/contracts/macro-integration-tests/tests/ui/rbac/fail/missing_env.stderr +16 -0
  28. package/contracts/macro-integration-tests/tests/ui/rbac/fail/param_not_address.rs +18 -0
  29. package/contracts/macro-integration-tests/tests/ui/rbac/fail/param_not_address.stderr +24 -0
  30. package/contracts/macro-integration-tests/tests/ui/rbac/fail/param_not_found.rs +18 -0
  31. package/contracts/macro-integration-tests/tests/ui/rbac/fail/param_not_found.stderr +24 -0
  32. package/contracts/macro-integration-tests/tests/ui/rbac/pass/basic.rs +71 -0
  33. package/contracts/macro-integration-tests/tests/ui_rbac.rs +12 -0
  34. package/contracts/oapps/oft/src/interfaces/mintable.rs +2 -2
  35. package/contracts/oapps/oft/src/tests/extensions/oft_fee.rs +2 -2
  36. package/contracts/oapps/oft/src/tests/extensions/pausable.rs +2 -2
  37. package/contracts/oapps/oft/src/tests/extensions/rate_limiter.rs +2 -2
  38. package/contracts/oapps/sac-manager/Cargo.toml +0 -1
  39. package/contracts/oapps/sac-manager/src/interfaces/mod.rs +3 -0
  40. package/contracts/oapps/sac-manager/src/interfaces/sac_admin_wrapper.rs +49 -0
  41. package/contracts/oapps/sac-manager/src/lib.rs +3 -3
  42. package/contracts/oapps/sac-manager/src/sac_manager.rs +45 -73
  43. package/contracts/oapps/sac-manager/src/storage.rs +2 -9
  44. package/contracts/oapps/sac-manager/src/tests/sac_manager/clawback.rs +8 -10
  45. package/contracts/oapps/sac-manager/src/tests/sac_manager/mint.rs +13 -18
  46. package/contracts/oapps/sac-manager/src/tests/sac_manager/mod.rs +0 -1
  47. package/contracts/oapps/sac-manager/src/tests/sac_manager/set_admin.rs +22 -12
  48. package/contracts/oapps/sac-manager/src/tests/sac_manager/set_authorized.rs +19 -9
  49. package/contracts/oapps/sac-manager/src/tests/sac_manager/test_helper.rs +27 -10
  50. package/contracts/oapps/sac-manager/src/tests/sac_manager/view_functions.rs +0 -15
  51. package/contracts/oapps/sac-manager/src/tests/test_helper.rs +19 -28
  52. package/contracts/upgrader/src/lib.rs +5 -2
  53. package/contracts/utils/src/auth.rs +6 -2
  54. package/contracts/utils/src/errors.rs +18 -0
  55. package/contracts/utils/src/lib.rs +1 -0
  56. package/contracts/utils/src/multisig.rs +5 -1
  57. package/contracts/utils/src/ownable.rs +1 -1
  58. package/contracts/utils/src/rbac.rs +428 -0
  59. package/contracts/utils/src/tests/auth.rs +2 -2
  60. package/contracts/utils/src/tests/mod.rs +1 -0
  61. package/contracts/utils/src/tests/multisig.rs +2 -2
  62. package/contracts/utils/src/tests/ownable.rs +4 -5
  63. package/contracts/utils/src/tests/rbac.rs +559 -0
  64. package/contracts/utils/src/tests/ttl_configurable.rs +5 -6
  65. package/contracts/utils/src/tests/upgradeable.rs +4 -5
  66. package/contracts/workers/worker/src/worker.rs +1 -1
  67. package/package.json +3 -3
  68. package/sdk/.turbo/turbo-test.log +368 -366
  69. package/sdk/dist/generated/bml.d.ts +53 -3
  70. package/sdk/dist/generated/bml.js +27 -3
  71. package/sdk/dist/generated/counter.d.ts +55 -5
  72. package/sdk/dist/generated/counter.js +28 -4
  73. package/sdk/dist/generated/dvn.d.ts +55 -5
  74. package/sdk/dist/generated/dvn.js +28 -4
  75. package/sdk/dist/generated/dvn_fee_lib.d.ts +55 -5
  76. package/sdk/dist/generated/dvn_fee_lib.js +28 -4
  77. package/sdk/dist/generated/endpoint.d.ts +55 -5
  78. package/sdk/dist/generated/endpoint.js +28 -4
  79. package/sdk/dist/generated/executor.d.ts +55 -5
  80. package/sdk/dist/generated/executor.js +28 -4
  81. package/sdk/dist/generated/executor_fee_lib.d.ts +55 -5
  82. package/sdk/dist/generated/executor_fee_lib.js +28 -4
  83. package/sdk/dist/generated/executor_helper.d.ts +53 -3
  84. package/sdk/dist/generated/executor_helper.js +27 -3
  85. package/sdk/dist/generated/layerzero_view.d.ts +55 -5
  86. package/sdk/dist/generated/layerzero_view.js +28 -4
  87. package/sdk/dist/generated/oft.d.ts +55 -5
  88. package/sdk/dist/generated/oft.js +28 -4
  89. package/sdk/dist/generated/price_feed.d.ts +55 -5
  90. package/sdk/dist/generated/price_feed.js +28 -4
  91. package/sdk/dist/generated/sac_manager.d.ts +213 -687
  92. package/sdk/dist/generated/sac_manager.js +57 -239
  93. package/sdk/dist/generated/sml.d.ts +55 -5
  94. package/sdk/dist/generated/sml.js +28 -4
  95. package/sdk/dist/generated/treasury.d.ts +55 -5
  96. package/sdk/dist/generated/treasury.js +28 -4
  97. package/sdk/dist/generated/uln302.d.ts +55 -5
  98. package/sdk/dist/generated/uln302.js +28 -4
  99. package/sdk/dist/generated/upgrader.d.ts +53 -3
  100. package/sdk/dist/generated/upgrader.js +27 -3
  101. package/sdk/package.json +1 -1
  102. package/sdk/test/oft-sml.test.ts +10 -9
  103. package/sdk/test/{sac-manager-redistribution.test.ts → sac-manager.test.ts} +49 -25
  104. package/contracts/oapps/sac-manager/src/errors.rs +0 -14
  105. package/contracts/oapps/sac-manager/src/tests/sac_manager/set_minter.rs +0 -69
@@ -5,7 +5,7 @@
5
5
  📦 Using 4 default cache volume(s) for stellar
6
6
  ✅ stellar-25.0.0 (Latest stable release)
7
7
  🔧 stellar version: 25.0.0
8
- (node:87833) [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.
8
+ (node:63755) [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.
9
9
  Reparsing as ES module because module syntax was detected. This incurs a performance overhead.
10
10
  To eliminate this warning, add "type": "module" to /home/runner/work/monorepo-internal/monorepo-internal/package.json.
11
11
  (Use `node --trace-warnings ...` to show where the warning was created)
@@ -15,55 +15,58 @@ Error response from daemon: No such image: 438003944538.dkr.ecr.us-east-1.amazon
15
15
  📥 Pulling Docker image from: 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.0.0
16
16
  $ docker pull 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.0.0
17
17
  stellar_25.0.0: Pulling from layerzerolabs/stellar-tooling
18
- f6bd9104d248: Already exists
18
+ f6bd9104d248: Pulling fs layer
19
19
  4617420e017b: Pulling fs layer
20
20
  4e430a9db1a3: Pulling fs layer
21
21
  67ce8fb56745: Pulling fs layer
22
22
  6ba0ba49c87d: Pulling fs layer
23
- 4e430a9db1a3: Waiting
24
23
  1cfd9ed002d2: Pulling fs layer
25
- 67ce8fb56745: Waiting
26
- 6ba0ba49c87d: Waiting
27
24
  43dc8d96fd20: Pulling fs layer
28
25
  2c1ce468d9f3: Pulling fs layer
29
- 1cfd9ed002d2: Waiting
30
- 43dc8d96fd20: Waiting
31
26
  1d4a870e3b66: Pulling fs layer
32
- 2c1ce468d9f3: Waiting
33
27
  1b2c4c00c303: Pulling fs layer
34
- 1d4a870e3b66: Waiting
35
- 1b2c4c00c303: Waiting
36
28
  73ca50fa4809: Pulling fs layer
37
29
  f5a85bd7a844: Pulling fs layer
38
30
  c132a28172a5: Pulling fs layer
31
+ 43dc8d96fd20: Waiting
32
+ 2c1ce468d9f3: Waiting
33
+ 1d4a870e3b66: Waiting
34
+ 1b2c4c00c303: Waiting
39
35
  73ca50fa4809: Waiting
40
36
  f5a85bd7a844: Waiting
41
37
  c132a28172a5: Waiting
42
- 4617420e017b: Verifying Checksum
43
- 4617420e017b: Download complete
44
- 4617420e017b: Pull complete
45
- 4e430a9db1a3: Verifying Checksum
46
- 4e430a9db1a3: Download complete
38
+ 6ba0ba49c87d: Waiting
39
+ 67ce8fb56745: Waiting
40
+ 1cfd9ed002d2: Waiting
41
+ f6bd9104d248: Verifying Checksum
42
+ f6bd9104d248: Download complete
47
43
  67ce8fb56745: Verifying Checksum
48
44
  67ce8fb56745: Download complete
49
- 4e430a9db1a3: Pull complete
50
- 67ce8fb56745: Pull complete
45
+ f6bd9104d248: Pull complete
51
46
  6ba0ba49c87d: Verifying Checksum
52
47
  6ba0ba49c87d: Download complete
53
- 43dc8d96fd20: Download complete
48
+ 1cfd9ed002d2: Verifying Checksum
49
+ 1cfd9ed002d2: Download complete
50
+ 4e430a9db1a3: Verifying Checksum
51
+ 4e430a9db1a3: Download complete
54
52
  2c1ce468d9f3: Verifying Checksum
55
53
  2c1ce468d9f3: Download complete
56
- 1d4a870e3b66: Verifying Checksum
57
- 1d4a870e3b66: Download complete
54
+ 4617420e017b: Verifying Checksum
55
+ 4617420e017b: Download complete
58
56
  1b2c4c00c303: Verifying Checksum
59
57
  1b2c4c00c303: Download complete
60
58
  73ca50fa4809: Verifying Checksum
61
59
  73ca50fa4809: Download complete
60
+ 43dc8d96fd20: Verifying Checksum
61
+ 43dc8d96fd20: Download complete
62
62
  f5a85bd7a844: Download complete
63
- 6ba0ba49c87d: Pull complete
64
63
  c132a28172a5: Download complete
65
- 1cfd9ed002d2: Verifying Checksum
66
- 1cfd9ed002d2: Download complete
64
+ 1d4a870e3b66: Verifying Checksum
65
+ 1d4a870e3b66: Download complete
66
+ 4617420e017b: Pull complete
67
+ 4e430a9db1a3: Pull complete
68
+ 67ce8fb56745: Pull complete
69
+ 6ba0ba49c87d: Pull complete
67
70
  1cfd9ed002d2: Pull complete
68
71
  43dc8d96fd20: Pull complete
69
72
  2c1ce468d9f3: Pull complete
@@ -101,175 +104,175 @@ info: installing component 'rustc'
101
104
  info: installing component 'rustfmt'
102
105
  Updating crates.io index
103
106
  Downloading crates ...
104
- Downloaded ark-serialize v0.4.2
107
+ Downloaded ctor-proc-macro v0.0.6
105
108
  Downloaded ark-bn254 v0.4.0
106
- Downloaded dyn-clone v1.0.20
107
- Downloaded num-conv v0.1.0
109
+ Downloaded ark-serialize-derive v0.4.2
110
+ Downloaded itoa v1.0.15
111
+ Downloaded p256 v0.13.2
112
+ Downloaded rand_chacha v0.3.1
113
+ Downloaded zeroize v1.8.2
108
114
  Downloaded digest v0.9.0
109
- Downloaded hashbrown v0.16.0
110
- Downloaded unicode-ident v1.0.22
111
- Downloaded thiserror-impl v1.0.69
115
+ Downloaded soroban-sdk-macros v25.1.1
116
+ Downloaded quote v1.0.41
117
+ Downloaded stellar-strkey v0.0.16
118
+ Downloaded wasmi_core v0.13.0
119
+ Downloaded keccak v0.1.5
112
120
  Downloaded zeroize_derive v1.4.2
113
- Downloaded version_check v0.9.5
114
- Downloaded time-macros v0.2.24
115
- Downloaded schemars v0.8.22
116
- Downloaded soroban-sdk v25.1.1
117
- Downloaded zerocopy v0.8.27
118
- Downloaded time v0.3.44
119
- Downloaded typenum v1.19.0
120
- Downloaded soroban-spec-typescript v25.1.0
121
- Downloaded schemars v1.0.5
121
+ Downloaded subtle v2.6.1
122
+ Downloaded static_assertions v1.1.0
123
+ Downloaded unicode-ident v1.0.22
122
124
  Downloaded wasmparser-nostd v0.100.2
123
- Downloaded soroban-wasmi v0.31.1-soroban.20.0.1
124
- Downloaded serde v1.0.228
125
+ Downloaded zerocopy v0.8.27
125
126
  Downloaded wasmparser v0.116.1
126
- Downloaded serde_with v3.15.1
127
- Downloaded schemars v0.9.0
128
- Downloaded syn v1.0.109
129
- Downloaded serde_json v1.0.145
130
- Downloaded keccak v0.1.5
131
127
  Downloaded syn v2.0.108
132
- Downloaded libm v0.2.15
133
- Downloaded itertools v0.10.5
134
- Downloaded indexmap v2.12.0
135
128
  Downloaded soroban-env-host v25.0.1
136
- Downloaded ryu v1.0.20
137
- Downloaded num-traits v0.2.19
129
+ Downloaded version_check v0.9.5
130
+ Downloaded visibility v0.1.1
131
+ Downloaded sha2 v0.10.9
132
+ Downloaded soroban-spec v25.1.1
133
+ Downloaded smallvec v1.15.1
134
+ Downloaded libm v0.2.15
135
+ Downloaded serde_core v1.0.228
136
+ Downloaded autocfg v1.5.0
138
137
  Downloaded memchr v2.7.6
138
+ Downloaded indexmap v2.12.0
139
+ Downloaded typenum v1.19.0
140
+ Downloaded heapless v0.8.0
141
+ Downloaded soroban-wasmi v0.31.1-soroban.20.0.1
142
+ Downloaded schemars v0.8.22
139
143
  Downloaded libc v0.2.177
140
- Downloaded num-bigint v0.4.6
141
- Downloaded base64 v0.22.1
142
- Downloaded stellar-strkey v0.0.16
143
- Downloaded soroban-sdk-macros v25.1.1
144
+ Downloaded time v0.3.44
145
+ Downloaded hash32 v0.3.1
146
+ Downloaded crypto-common v0.1.6
147
+ Downloaded ark-std v0.4.0
148
+ Downloaded pkcs8 v0.10.2
144
149
  Downloaded soroban-env-common v25.0.1
145
- Downloaded semver v1.0.27
146
- Downloaded hex v0.4.3
147
- Downloaded heck v0.4.1
148
- Downloaded heapless v0.8.0
149
- Downloaded fnv v1.0.7
150
- Downloaded darling_core v0.21.3
151
- Downloaded ctor-proc-macro v0.0.6
152
- Downloaded chrono v0.4.42
153
- Downloaded time-core v0.1.6
154
- Downloaded stable_deref_trait v1.2.1
155
- Downloaded soroban-spec-rust v25.1.1
156
150
  Downloaded signature v2.2.0
151
+ Downloaded sha2 v0.9.9
152
+ Downloaded serde_derive v1.0.228
153
+ Downloaded ryu v1.0.20
154
+ Downloaded ref-cast-impl v1.0.25
155
+ Downloaded primeorder v0.13.6
156
+ Downloaded indexmap-nostd v0.4.0
157
+ Downloaded spki v0.7.3
157
158
  Downloaded sha3 v0.10.8
159
+ Downloaded chrono v0.4.42
160
+ Downloaded k256 v0.13.4
161
+ Downloaded itertools v0.14.0
162
+ Downloaded syn v1.0.109
163
+ Downloaded serde_with v3.15.1
164
+ Downloaded macro-string v0.1.4
165
+ Downloaded iana-time-zone v0.1.64
166
+ Downloaded heck v0.5.0
167
+ Downloaded ff v0.13.1
168
+ Downloaded block-buffer v0.9.0
169
+ Downloaded base64ct v1.8.0
170
+ Downloaded ark-serialize v0.4.2
171
+ Downloaded soroban-sdk v25.1.1
172
+ Downloaded serde v1.0.228
173
+ Downloaded paste v1.0.15
174
+ Downloaded once_cell v1.21.3
175
+ Downloaded num-integer v0.1.46
176
+ Downloaded hex-literal v0.4.1
177
+ Downloaded crate-git-revision v0.0.6
178
+ Downloaded block-buffer v0.10.4
179
+ Downloaded base64 v0.22.1
180
+ Downloaded base16ct v0.2.0
181
+ Downloaded stellar-strkey v0.0.13
182
+ Downloaded soroban-spec-typescript v25.1.0
158
183
  Downloaded serde_with_macros v3.15.1
159
- Downloaded rfc6979 v0.4.0
160
- Downloaded ref-cast-impl v1.0.25
161
- Downloaded ref-cast v1.0.25
162
- Downloaded rand_core v0.6.4
163
- Downloaded prettyplease v0.2.37
164
- Downloaded p256 v0.13.2
184
+ Downloaded sec1 v0.7.3
185
+ Downloaded schemars v1.0.5
186
+ Downloaded schemars v0.9.0
165
187
  Downloaded opaque-debug v0.3.1
166
- Downloaded indexmap v1.9.3
188
+ Downloaded num-derive v0.4.2
189
+ Downloaded num-conv v0.1.0
167
190
  Downloaded include_dir v0.7.4
168
- Downloaded ident_case v1.0.1
169
- Downloaded iana-time-zone v0.1.64
170
- Downloaded hmac v0.12.1
171
- Downloaded hash32 v0.3.1
191
+ Downloaded hex v0.4.3
192
+ Downloaded heck v0.4.1
193
+ Downloaded hashbrown v0.13.2
194
+ Downloaded group v0.13.0
195
+ Downloaded getrandom v0.2.16
172
196
  Downloaded ethnum v1.5.2
173
- Downloaded escape-bytes v0.1.1
174
- Downloaded ed25519-dalek v2.2.0
175
- Downloaded darling v0.20.11
176
- Downloaded zeroize v1.8.2
177
- Downloaded wasmi_core v0.13.0
178
- Downloaded wasmi_arena v0.4.1
179
- Downloaded visibility v0.1.1
180
- Downloaded strsim v0.11.1
197
+ Downloaded const-oid v0.9.6
198
+ Downloaded bytes-lit v0.0.5
199
+ Downloaded time-macros v0.2.24
200
+ Downloaded thiserror v1.0.69
201
+ Downloaded spin v0.9.8
181
202
  Downloaded soroban-env-macros v25.0.1
203
+ Downloaded semver v1.0.27
204
+ Downloaded num-bigint v0.4.6
205
+ Downloaded itertools v0.10.5
206
+ Downloaded glob v0.3.3
207
+ Downloaded fnv v1.0.7
208
+ Downloaded soroban-spec-rust v25.1.1
182
209
  Downloaded soroban-builtin-sdk-macros v25.0.1
183
- Downloaded smallvec v1.15.1
184
- Downloaded sha2 v0.10.9
185
- Downloaded sha2 v0.9.9
186
- Downloaded serde_derive v1.0.228
210
+ Downloaded ident_case v1.0.1
211
+ Downloaded escape-bytes v0.1.1
212
+ Downloaded cpufeatures v0.2.17
213
+ Downloaded stable_deref_trait v1.2.1
187
214
  Downloaded rustc_version v0.4.1
188
- Downloaded paste v1.0.15
189
- Downloaded num-derive v0.4.2
190
- Downloaded itertools v0.14.0
191
- Downloaded hashbrown v0.13.2
192
215
  Downloaded hashbrown v0.12.3
193
- Downloaded glob v0.3.3
216
+ Downloaded base64 v0.21.7
217
+ Downloaded wasmi_arena v0.4.1
218
+ Downloaded time-core v0.1.6
219
+ Downloaded strsim v0.11.1
220
+ Downloaded hmac v0.12.1
194
221
  Downloaded generic-array v0.14.9
222
+ Downloaded equivalent v1.0.2
223
+ Downloaded downcast-rs v1.2.1
224
+ Downloaded include_dir_macros v0.7.4
225
+ Downloaded cfg_eval v0.1.2
226
+ Downloaded ark-poly v0.4.2
227
+ Downloaded thiserror-impl v1.0.69
228
+ Downloaded soroban-ledger-snapshot v25.1.1
229
+ Downloaded rfc6979 v0.4.0
230
+ Downloaded ref-cast v1.0.25
231
+ Downloaded rand_core v0.6.4
232
+ Downloaded rand v0.8.5
233
+ Downloaded proc-macro2 v1.0.103
234
+ Downloaded prettyplease v0.2.37
235
+ Downloaded hashbrown v0.16.0
236
+ Downloaded ed25519-dalek v2.2.0
195
237
  Downloaded digest v0.10.7
196
- Downloaded deranged v0.5.5
197
- Downloaded der v0.7.10
238
+ Downloaded data-encoding v2.9.0
198
239
  Downloaded darling_macro v0.20.11
199
- Downloaded darling_core v0.20.11
240
+ Downloaded curve25519-dalek v4.1.3
200
241
  Downloaded crypto-bigint v0.5.5
201
- Downloaded cpufeatures v0.2.17
202
- Downloaded bytes-lit v0.0.5
203
- Downloaded thiserror v1.0.69
204
- Downloaded subtle v2.6.1
205
- Downloaded stellar-strkey v0.0.13
206
- Downloaded static_assertions v1.1.0
207
- Downloaded spki v0.7.3
208
- Downloaded spin v0.9.8
209
- Downloaded soroban-spec v25.1.1
210
- Downloaded soroban-ledger-snapshot v25.1.1
211
- Downloaded serde_core v1.0.228
212
- Downloaded sec1 v0.7.3
213
- Downloaded quote v1.0.41
214
- Downloaded proc-macro2 v1.0.103
215
- Downloaded primeorder v0.13.6
216
- Downloaded ppv-lite86 v0.2.21
242
+ Downloaded serde_json v1.0.145
217
243
  Downloaded powerfmt v0.2.0
218
- Downloaded num-integer v0.1.46
219
- Downloaded macro-string v0.1.4
220
- Downloaded k256 v0.13.4
221
- Downloaded indexmap-nostd v0.4.0
222
- Downloaded heck v0.5.0
223
- Downloaded ff v0.13.1
224
- Downloaded either v1.15.0
225
- Downloaded ecdsa v0.16.9
226
- Downloaded downcast-rs v1.2.1
244
+ Downloaded num-traits v0.2.19
227
245
  Downloaded derive_arbitrary v1.3.2
228
- Downloaded derivative v2.2.0
229
- Downloaded darling_macro v0.21.3
230
- Downloaded curve25519-dalek v4.1.3
231
- Downloaded cfg-if v1.0.4
232
- Downloaded autocfg v1.5.0
233
- Downloaded ark-serialize-derive v0.4.2
234
- Downloaded ark-poly v0.4.2
235
- Downloaded rand_chacha v0.3.1
236
- Downloaded rand v0.8.5
246
+ Downloaded der v0.7.10
247
+ Downloaded darling v0.20.11
248
+ Downloaded ppv-lite86 v0.2.21
237
249
  Downloaded stellar-xdr v25.0.0
238
- Downloaded pkcs8 v0.10.2
239
- Downloaded once_cell v1.21.3
240
- Downloaded itoa v1.0.15
241
- Downloaded getrandom v0.2.16
242
- Downloaded equivalent v1.0.2
243
- Downloaded elliptic-curve v0.13.8
244
- Downloaded ed25519 v2.2.3
250
+ Downloaded either v1.15.0
245
251
  Downloaded dtor-proc-macro v0.0.6
252
+ Downloaded deranged v0.5.5
253
+ Downloaded darling_core v0.21.3
246
254
  Downloaded curve25519-dalek-derive v0.1.1
247
- Downloaded crate-git-revision v0.0.6
248
- Downloaded cfg_eval v0.1.2
249
- Downloaded block-buffer v0.9.0
250
- Downloaded base64ct v1.8.0
251
- Downloaded ark-ff v0.4.2
252
- Downloaded ark-bls12-381 v0.4.0
253
- Downloaded ahash v0.8.12
254
- Downloaded group v0.13.0
255
+ Downloaded ctor v0.5.0
256
+ Downloaded cfg-if v1.0.4
257
+ Downloaded ecdsa v0.16.9
255
258
  Downloaded dtor v0.1.1
259
+ Downloaded darling_macro v0.21.3
260
+ Downloaded derivative v2.2.0
261
+ Downloaded darling_core v0.20.11
262
+ Downloaded dyn-clone v1.0.20
256
263
  Downloaded darling v0.21.3
257
- Downloaded const-oid v0.9.6
258
- Downloaded block-buffer v0.10.4
259
- Downloaded base64 v0.21.7
260
- Downloaded base16ct v0.2.0
261
- Downloaded ark-std v0.4.0
264
+ Downloaded byteorder v1.5.0
265
+ Downloaded ark-ff-asm v0.4.2
266
+ Downloaded ark-ff v0.4.2
262
267
  Downloaded ark-ec v0.4.2
268
+ Downloaded ark-bls12-381 v0.4.0
269
+ Downloaded indexmap v1.9.3
270
+ Downloaded ed25519 v2.2.3
271
+ Downloaded elliptic-curve v0.13.8
263
272
  Downloaded anyhow v1.0.100
264
- Downloaded data-encoding v2.9.0
265
- Downloaded crypto-common v0.1.6
266
- Downloaded byteorder v1.5.0
267
273
  Downloaded arbitrary v1.3.2
268
- Downloaded include_dir_macros v0.7.4
269
- Downloaded hex-literal v0.4.1
270
- Downloaded ark-ff-asm v0.4.2
271
- Downloaded ctor v0.5.0
272
274
  Downloaded ark-ff-macros v0.4.2
275
+ Downloaded ahash v0.8.12
273
276
  Compiling proc-macro2 v1.0.103
274
277
  Compiling quote v1.0.41
275
278
  Compiling unicode-ident v1.0.22
@@ -278,17 +281,17 @@ info: installing component 'rustfmt'
278
281
  Compiling serde_core v1.0.228
279
282
  Compiling serde v1.0.228
280
283
  Compiling serde_json v1.0.145
281
- Checking cfg-if v1.0.4
282
- Compiling itoa v1.0.15
283
284
  Compiling memchr v2.7.6
285
+ Compiling itoa v1.0.15
284
286
  Compiling ryu v1.0.20
287
+ Checking cfg-if v1.0.4
285
288
  Checking subtle v2.6.1
286
289
  Checking const-oid v0.9.6
287
- Compiling libc v0.2.177
288
290
  Compiling autocfg v1.5.0
291
+ Compiling libc v0.2.177
292
+ Compiling ident_case v1.0.1
289
293
  Compiling strsim v0.11.1
290
294
  Compiling fnv v1.0.7
291
- Compiling ident_case v1.0.1
292
295
  Compiling schemars v0.8.22
293
296
  Compiling zerocopy v0.8.27
294
297
  Compiling syn v1.0.109
@@ -296,77 +299,77 @@ info: installing component 'rustfmt'
296
299
  Compiling semver v1.0.27
297
300
  Compiling paste v1.0.15
298
301
  Compiling dyn-clone v1.0.20
299
- Compiling either v1.15.0
300
302
  Compiling data-encoding v2.9.0
301
- Compiling thiserror v1.0.69
303
+ Checking either v1.15.0
302
304
  Compiling generic-array v0.14.9
305
+ Compiling thiserror v1.0.69
303
306
  Compiling num-traits v0.2.19
307
+ Checking itertools v0.10.5
304
308
  Compiling ahash v0.8.12
305
- Compiling escape-bytes v0.1.1
306
309
  Compiling ethnum v1.5.2
307
- Checking itertools v0.10.5
310
+ Compiling escape-bytes v0.1.1
308
311
  Compiling rustc_version v0.4.1
309
- Checking once_cell v1.21.3
310
- Checking equivalent v1.0.2
311
- Checking getrandom v0.2.16
312
312
  Compiling prettyplease v0.2.37
313
- Checking base16ct v0.2.0
313
+ Checking equivalent v1.0.2
314
+ Checking once_cell v1.21.3
314
315
  Checking hashbrown v0.16.0
315
- Checking rand_core v0.6.4
316
+ Checking base16ct v0.2.0
317
+ Checking getrandom v0.2.16
316
318
  Checking num-integer v0.1.46
317
319
  Compiling libm v0.2.15
318
- Compiling crypto-common v0.1.6
319
- Compiling block-buffer v0.10.4
320
+ Checking rand_core v0.6.4
320
321
  Checking num-bigint v0.4.6
321
322
  Checking ff v0.13.1
323
+ Checking base64 v0.22.1
322
324
  Checking indexmap v2.12.0
323
- Compiling digest v0.10.7
324
325
  Checking group v0.13.0
325
- Checking base64 v0.22.1
326
326
  Compiling curve25519-dalek v4.1.3
327
+ Compiling crypto-common v0.1.6
328
+ Compiling block-buffer v0.10.4
327
329
  Checking downcast-rs v1.2.1
328
330
  Checking indexmap-nostd v0.4.0
329
- Checking byteorder v1.5.0
330
- Compiling sha2 v0.10.9
331
- Compiling heapless v0.8.0
332
- Checking wasmparser-nostd v0.100.2
333
- Checking spin v0.9.8
334
- Checking smallvec v1.15.1
335
- Checking ppv-lite86 v0.2.21
336
331
  Compiling syn v2.0.108
337
- Checking wasmi_arena v0.4.1
332
+ Compiling digest v0.10.7
333
+ Checking ppv-lite86 v0.2.21
334
+ Checking wasmparser v0.116.1
335
+ Checking smallvec v1.15.1
336
+ Checking wasmparser-nostd v0.100.2
337
+ Compiling sha2 v0.10.9
338
338
  Checking hashbrown v0.13.2
339
339
  Checking rand_chacha v0.3.1
340
- Checking hash32 v0.3.1
341
- Checking wasmparser v0.116.1
342
- Checking static_assertions v1.1.0
340
+ Checking wasmi_arena v0.4.1
341
+ Checking spin v0.9.8
342
+ Checking wasmi_core v0.13.0
343
+ Checking byteorder v1.5.0
344
+ Compiling heapless v0.8.0
345
+ Compiling static_assertions v1.1.0
346
+ Compiling soroban-env-host v25.0.1
343
347
  Checking rand v0.8.5
344
- Checking stable_deref_trait v1.2.1
345
348
  Checking keccak v0.1.5
346
- Compiling soroban-env-host v25.0.1
349
+ Checking hash32 v0.3.1
347
350
  Compiling heck v0.5.0
351
+ Checking stable_deref_trait v1.2.1
348
352
  Checking hex-literal v0.4.1
349
353
  Compiling itertools v0.14.0
350
354
  Compiling include_dir_macros v0.7.4
351
- Checking wasmi_core v0.13.0
352
355
  Checking glob v0.3.3
353
- Checking ark-std v0.4.0
354
- Checking opaque-debug v0.3.1
355
356
  Compiling anyhow v1.0.100
357
+ Checking opaque-debug v0.3.1
358
+ Checking ark-std v0.4.0
359
+ Checking base64 v0.21.7
356
360
  Checking heck v0.4.1
357
361
  Checking include_dir v0.7.4
358
- Checking base64 v0.21.7
359
- Checking workers v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers)
360
- Checking oapps v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps)
361
362
  Checking macro-integration-tests v0.0.1 (/workspace/contracts/protocol/stellar/contracts/macro-integration-tests)
363
+ Checking workers v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers)
362
364
  Checking message-libs v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs)
365
+ Checking oapps v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps)
363
366
  Checking soroban-wasmi v0.31.1-soroban.20.0.1
364
367
  Checking common-macros v0.0.1 (/workspace/contracts/protocol/stellar/contracts/common-macros)
365
368
  Checking oapp-macros v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp-macros)
366
369
  Compiling ark-serialize-derive v0.4.2
367
370
  Compiling ark-ff-macros v0.4.2
368
- Compiling derivative v2.2.0
369
371
  Compiling ark-ff-asm v0.4.2
372
+ Compiling derivative v2.2.0
370
373
  Compiling darling_core v0.21.3
371
374
  Compiling darling_core v0.20.11
372
375
  Compiling macro-string v0.1.4
@@ -377,38 +380,38 @@ info: installing component 'rustfmt'
377
380
  Compiling num-derive v0.4.2
378
381
  Compiling curve25519-dalek-derive v0.1.1
379
382
  Compiling soroban-builtin-sdk-macros v25.0.1
380
- Compiling bytes-lit v0.0.5
381
383
  Compiling visibility v0.1.1
384
+ Compiling bytes-lit v0.0.5
382
385
  Checking zeroize v1.8.2
383
386
  Checking der v0.7.10
384
- Checking sec1 v0.7.3
385
387
  Checking crypto-bigint v0.5.5
386
388
  Checking digest v0.9.0
387
389
  Checking block-buffer v0.9.0
390
+ Checking sec1 v0.7.3
388
391
  Checking sha2 v0.9.9
389
- Checking hex v0.4.3
390
- Compiling crate-git-revision v0.0.6
391
- Checking ark-serialize v0.4.2
392
392
  Checking signature v2.2.0
393
+ Checking ark-serialize v0.4.2
393
394
  Checking hmac v0.12.1
394
395
  Checking sha3 v0.10.8
395
396
  Compiling darling_macro v0.20.11
396
- Checking elliptic-curve v0.13.8
397
397
  Checking ed25519 v2.2.3
398
398
  Checking rfc6979 v0.4.0
399
399
  Checking ark-ff v0.4.2
400
+ Compiling darling_macro v0.21.3
401
+ Checking elliptic-curve v0.13.8
402
+ Checking hex v0.4.3
403
+ Checking ed25519-dalek v2.2.0
404
+ Compiling crate-git-revision v0.0.6
405
+ Checking ecdsa v0.16.9
406
+ Checking primeorder v0.13.6
407
+ Compiling darling v0.20.11
408
+ Checking p256 v0.13.2
409
+ Checking k256 v0.13.4
400
410
  Compiling stellar-strkey v0.0.13
401
411
  Compiling stellar-xdr v25.0.0
402
412
  Compiling soroban-env-common v25.0.1
403
413
  Compiling stellar-strkey v0.0.16
404
414
  Compiling soroban-sdk v25.1.1
405
- Checking ecdsa v0.16.9
406
- Checking primeorder v0.13.6
407
- Compiling darling_macro v0.21.3
408
- Checking k256 v0.13.4
409
- Checking p256 v0.13.2
410
- Checking ed25519-dalek v2.2.0
411
- Compiling darling v0.20.11
412
415
  Compiling darling v0.21.3
413
416
  Compiling serde_with_macros v3.15.1
414
417
  Compiling serde_with v3.15.1
@@ -427,25 +430,25 @@ info: installing component 'rustfmt'
427
430
  Checking endpoint-v2 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/endpoint-v2)
428
431
  Checking worker v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/worker)
429
432
  Checking upgrader v0.0.1 (/workspace/contracts/protocol/stellar/contracts/upgrader)
430
- Checking price-feed v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/price-feed)
431
433
  Checking dvn-fee-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/dvn-fee-lib)
434
+ Checking price-feed v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/price-feed)
435
+ Checking sac-manager v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/sac-manager)
432
436
  Checking message-lib-common v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/message-lib-common)
433
437
  Checking oapp v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp)
434
438
  Checking blocked-message-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/blocked-message-lib)
435
- Checking executor v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor)
436
439
  Checking uln302 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/uln-302)
437
- Checking treasury v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/treasury)
440
+ Checking executor v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor)
438
441
  Checking executor-fee-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor-fee-lib)
439
442
  Checking simple-message-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/simple-message-lib)
443
+ Checking treasury v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/treasury)
440
444
  Checking dvn v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/dvn)
441
445
  Checking oft-core v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft-core)
442
446
  Checking counter v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/counter)
443
447
  Checking executor-helper v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor-helper)
444
448
  Checking layerzero-views v0.0.1 (/workspace/contracts/protocol/stellar/contracts/layerzero-views)
445
449
  Checking oft v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft)
446
- Checking sac-manager v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/sac-manager)
447
- Finished `dev` profile [unoptimized + debuginfo] target(s) in 2m 26s
448
- ⏱️ bash -c cargo clippy -- -D warnings: 2:46.217 (m:ss.mmm)
450
+ Finished `dev` profile [unoptimized + debuginfo] target(s) in 1m 43s
451
+ ⏱️ bash -c cargo clippy -- -D warnings: 2:03.097 (m:ss.mmm)
449
452
  🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
450
453
  🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-config
451
454
  🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup