@layerzerolabs/protocol-stellar-v2 0.2.35 → 0.2.36

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
@@ -12,7 +12,7 @@
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:34161) [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:16262) [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)
@@ -30,46 +30,49 @@ 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
36
+ 4617420e017b: Waiting
35
37
  73ca50fa4809: Pulling fs layer
36
- f5a85bd7a844: Pulling fs layer
37
- c132a28172a5: Pulling fs layer
38
+ 4e430a9db1a3: Waiting
38
39
  67ce8fb56745: Waiting
39
- 43dc8d96fd20: Waiting
40
+ f5a85bd7a844: Pulling fs layer
40
41
  2c1ce468d9f3: Waiting
41
- 1b2c4c00c303: Waiting
42
- 1d4a870e3b66: Waiting
43
- 73ca50fa4809: Waiting
42
+ c132a28172a5: Pulling fs layer
44
43
  6ba0ba49c87d: Waiting
45
44
  1cfd9ed002d2: Waiting
46
- f5a85bd7a844: Waiting
45
+ 1d4a870e3b66: Waiting
46
+ 73ca50fa4809: Waiting
47
47
  c132a28172a5: Waiting
48
+ 1b2c4c00c303: Waiting
49
+ f5a85bd7a844: Waiting
50
+ f6bd9104d248: Verifying Checksum
48
51
  f6bd9104d248: Download complete
52
+ f6bd9104d248: Pull complete
49
53
  67ce8fb56745: Verifying Checksum
50
54
  67ce8fb56745: Download complete
51
- f6bd9104d248: Pull complete
52
55
  6ba0ba49c87d: Verifying Checksum
53
56
  6ba0ba49c87d: Download complete
57
+ 4e430a9db1a3: Verifying Checksum
58
+ 4e430a9db1a3: Download complete
54
59
  1cfd9ed002d2: Verifying Checksum
55
60
  1cfd9ed002d2: Download complete
56
61
  4617420e017b: Verifying Checksum
57
62
  4617420e017b: Download complete
58
63
  2c1ce468d9f3: Verifying Checksum
59
64
  2c1ce468d9f3: Download complete
60
- 43dc8d96fd20: Verifying Checksum
61
- 43dc8d96fd20: Download complete
62
65
  1b2c4c00c303: Verifying Checksum
63
66
  1b2c4c00c303: Download complete
64
- 1d4a870e3b66: Verifying Checksum
65
- 1d4a870e3b66: Download complete
66
- f5a85bd7a844: Download complete
67
- 73ca50fa4809: Verifying Checksum
68
67
  73ca50fa4809: Download complete
68
+ 43dc8d96fd20: Verifying Checksum
69
+ 43dc8d96fd20: Download complete
70
+ f5a85bd7a844: Verifying Checksum
71
+ f5a85bd7a844: Download complete
69
72
  c132a28172a5: Download complete
73
+ 1d4a870e3b66: Verifying Checksum
74
+ 1d4a870e3b66: Download complete
70
75
  4617420e017b: Pull complete
71
- 4e430a9db1a3: Verifying Checksum
72
- 4e430a9db1a3: Download complete
73
76
  4e430a9db1a3: Pull complete
74
77
  67ce8fb56745: Pull complete
75
78
  6ba0ba49c87d: Pull complete
@@ -94,165 +97,165 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
94
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
95
98
  Updating crates.io index
96
99
  Downloading crates ...
97
- Downloaded ahash v0.8.12
98
100
  Downloaded ark-bn254 v0.4.0
99
- Downloaded ark-ff-macros v0.4.2
100
- Downloaded ark-ff-asm v0.4.2
101
- Downloaded arbitrary v1.3.2
102
- Downloaded ctor-proc-macro v0.0.6
103
- Downloaded cfg-if v1.0.4
104
- Downloaded keccak v0.1.5
101
+ Downloaded bytes-lit v0.0.5
102
+ Downloaded spki v0.7.3
105
103
  Downloaded rustc_version v0.4.1
106
- Downloaded crate-git-revision v0.0.6
107
- Downloaded curve25519-dalek-derive v0.1.1
108
- Downloaded deranged v0.5.5
109
- Downloaded ident_case v1.0.1
110
- Downloaded hex v0.4.3
111
- Downloaded fnv v1.0.7
112
- Downloaded semver v1.0.27
113
104
  Downloaded rand_core v0.6.4
114
- Downloaded heck v0.5.0
115
- Downloaded ryu v1.0.20
116
- Downloaded stellar-strkey v0.0.13
117
- Downloaded zeroize_derive v1.4.2
118
- Downloaded version_check v0.9.5
119
- Downloaded rand v0.8.5
120
- Downloaded time-core v0.1.6
121
- Downloaded wasmi_arena v0.4.1
122
- Downloaded time-macros v0.2.24
123
- Downloaded wasmi_core v0.13.0
124
- Downloaded itertools v0.14.0
105
+ Downloaded rfc6979 v0.4.0
106
+ Downloaded schemars v0.8.22
125
107
  Downloaded zeroize v1.8.2
126
- Downloaded spin v0.9.8
127
- Downloaded typenum v1.19.0
108
+ Downloaded zeroize_derive v1.4.2
109
+ Downloaded visibility v0.1.1
110
+ Downloaded thiserror-impl v1.0.69
111
+ Downloaded soroban-ledger-snapshot v25.1.1
112
+ Downloaded soroban-sdk-macros v25.1.1
113
+ Downloaded num-derive v0.4.2
114
+ Downloaded paste v1.0.15
128
115
  Downloaded serde_core v1.0.228
116
+ Downloaded soroban-wasmi v0.31.1-soroban.20.0.1
117
+ Downloaded soroban-sdk v25.1.1
129
118
  Downloaded wasmparser-nostd v0.100.2
130
- Downloaded curve25519-dalek v4.1.3
131
- Downloaded time v0.3.44
132
- Downloaded serde_json v1.0.145
119
+ Downloaded num-bigint v0.4.6
133
120
  Downloaded wasmparser v0.116.1
134
- Downloaded zerocopy v0.8.27
135
121
  Downloaded serde_with v3.15.1
136
- Downloaded soroban-wasmi v0.31.1-soroban.20.0.1
137
- Downloaded syn v2.0.108
122
+ Downloaded zerocopy v0.8.27
123
+ Downloaded itertools v0.14.0
138
124
  Downloaded syn v1.0.109
139
- Downloaded soroban-sdk v25.1.1
140
- Downloaded ark-bls12-381 v0.4.0
141
- Downloaded schemars v1.0.5
142
- Downloaded soroban-env-common v25.0.1
143
- Downloaded serde_derive v1.0.228
144
- Downloaded serde v1.0.228
145
- Downloaded chrono v0.4.42
146
- Downloaded soroban-sdk-macros v25.1.1
147
- Downloaded soroban-env-macros v25.0.1
148
- Downloaded smallvec v1.15.1
149
- Downloaded serde_with_macros v3.15.1
150
- Downloaded schemars v0.9.0
151
- Downloaded schemars v0.8.22
152
- Downloaded unicode-ident v1.0.22
153
- Downloaded thiserror-impl v1.0.69
154
- Downloaded stellar-strkey v0.0.16
155
125
  Downloaded libm v0.2.15
156
- Downloaded soroban-env-host v25.0.1
126
+ Downloaded syn v2.0.108
157
127
  Downloaded hashbrown v0.16.0
158
- Downloaded thiserror v1.0.69
159
- Downloaded spki v0.7.3
160
- Downloaded static_assertions v1.1.0
161
- Downloaded libc v0.2.177
162
- Downloaded signature v2.2.0
163
- Downloaded sha2 v0.10.9
164
- Downloaded num-bigint v0.4.6
128
+ Downloaded chrono v0.4.42
129
+ Downloaded memchr v2.7.6
165
130
  Downloaded itertools v0.10.5
166
131
  Downloaded indexmap v2.12.0
132
+ Downloaded curve25519-dalek v4.1.3
167
133
  Downloaded hashbrown v0.13.2
168
134
  Downloaded hashbrown v0.12.3
169
- Downloaded der v0.7.10
170
- Downloaded sha3 v0.10.8
171
- Downloaded soroban-spec-rust v25.1.1
172
- Downloaded soroban-spec v25.1.1
173
- Downloaded memchr v2.7.6
174
- Downloaded k256 v0.13.4
175
- Downloaded darling_core v0.20.11
176
135
  Downloaded crypto-bigint v0.5.5
177
- Downloaded p256 v0.13.2
136
+ Downloaded k256 v0.13.4
137
+ Downloaded ark-bls12-381 v0.4.0
138
+ Downloaded base64 v0.22.1
139
+ Downloaded rand v0.8.5
140
+ Downloaded proc-macro2 v1.0.103
141
+ Downloaded prettyplease v0.2.37
142
+ Downloaded soroban-env-host v25.0.1
143
+ Downloaded hmac v0.12.1
178
144
  Downloaded heapless v0.8.0
179
145
  Downloaded ethnum v1.5.2
146
+ Downloaded ed25519-dalek v2.2.0
147
+ Downloaded der v0.7.10
180
148
  Downloaded darling_core v0.21.3
181
- Downloaded soroban-env-guest v25.0.1
182
- Downloaded soroban-builtin-sdk-macros v25.0.1
183
- Downloaded quote v1.0.41
184
- Downloaded proc-macro2 v1.0.103
185
- Downloaded prettyplease v0.2.37
149
+ Downloaded ark-ff v0.4.2
186
150
  Downloaded num-traits v0.2.19
187
151
  Downloaded indexmap v1.9.3
188
- Downloaded getrandom v0.2.16
189
- Downloaded elliptic-curve v0.13.8
190
- Downloaded ed25519-dalek v2.2.0
152
+ Downloaded data-encoding v2.9.0
153
+ Downloaded darling_core v0.20.11
191
154
  Downloaded darling v0.21.3
192
- Downloaded darling v0.20.11
193
- Downloaded base64 v0.22.1
194
- Downloaded ark-ff v0.4.2
195
- Downloaded visibility v0.1.1
196
- Downloaded subtle v2.6.1
197
- Downloaded strsim v0.11.1
198
- Downloaded stable_deref_trait v1.2.1
199
- Downloaded sec1 v0.7.3
155
+ Downloaded base64ct v1.8.0
156
+ Downloaded sha3 v0.10.8
157
+ Downloaded libc v0.2.177
158
+ Downloaded autocfg v1.5.0
159
+ Downloaded ark-poly v0.4.2
160
+ Downloaded ark-ec v0.4.2
161
+ Downloaded serde_json v1.0.145
162
+ Downloaded primeorder v0.13.6
163
+ Downloaded p256 v0.13.2
200
164
  Downloaded once_cell v1.21.3
201
- Downloaded num-integer v0.1.46
202
165
  Downloaded iana-time-zone v0.1.64
203
- Downloaded hmac v0.12.1
204
- Downloaded group v0.13.0
205
- Downloaded generic-array v0.14.9
166
+ Downloaded heck v0.5.0
167
+ Downloaded getrandom v0.2.16
206
168
  Downloaded ff v0.13.1
207
- Downloaded escape-bytes v0.1.1
169
+ Downloaded elliptic-curve v0.13.8
208
170
  Downloaded either v1.15.0
209
- Downloaded ecdsa v0.16.9
210
- Downloaded dyn-clone v1.0.20
211
- Downloaded digest v0.10.7
212
- Downloaded derivative v2.2.0
213
- Downloaded data-encoding v2.9.0
171
+ Downloaded deranged v0.5.5
172
+ Downloaded darling v0.20.11
173
+ Downloaded crypto-common v0.1.6
214
174
  Downloaded const-oid v0.9.6
215
- Downloaded bytes-lit v0.0.5
216
- Downloaded byteorder v1.5.0
217
- Downloaded block-buffer v0.10.4
218
- Downloaded base64ct v1.8.0
219
- Downloaded autocfg v1.5.0
220
175
  Downloaded ark-std v0.4.0
221
- Downloaded ark-ec v0.4.2
222
- Downloaded soroban-ledger-snapshot v25.1.1
223
- Downloaded rfc6979 v0.4.0
224
- Downloaded ref-cast-impl v1.0.25
225
- Downloaded ref-cast v1.0.25
226
- Downloaded rand_chacha v0.3.1
227
- Downloaded primeorder v0.13.6
176
+ Downloaded ark-ff-macros v0.4.2
177
+ Downloaded arbitrary v1.3.2
178
+ Downloaded quote v1.0.41
228
179
  Downloaded ppv-lite86 v0.2.21
229
- Downloaded powerfmt v0.2.0
230
180
  Downloaded pkcs8 v0.10.2
231
- Downloaded paste v1.0.15
232
- Downloaded num-derive v0.4.2
181
+ Downloaded num-integer v0.1.46
233
182
  Downloaded num-conv v0.1.0
234
183
  Downloaded macro-string v0.1.4
235
184
  Downloaded itoa v1.0.15
236
- Downloaded indexmap-nostd v0.4.0
237
- Downloaded ed25519 v2.2.3
238
- Downloaded base16ct v0.2.0
185
+ Downloaded ident_case v1.0.1
186
+ Downloaded hex-literal v0.4.1
239
187
  Downloaded hash32 v0.3.1
240
- Downloaded dtor v0.1.1
188
+ Downloaded group v0.13.0
189
+ Downloaded generic-array v0.14.9
190
+ Downloaded ed25519 v2.2.3
191
+ Downloaded digest v0.10.7
192
+ Downloaded derivative v2.2.0
193
+ Downloaded ctor v0.5.0
194
+ Downloaded ecdsa v0.16.9
195
+ Downloaded cpufeatures v0.2.17
196
+ Downloaded hex v0.4.3
241
197
  Downloaded darling_macro v0.20.11
242
- Downloaded crypto-common v0.1.6
243
- Downloaded cfg_eval v0.1.2
244
- Downloaded ark-serialize-derive v0.4.2
245
- Downloaded ark-serialize v0.4.2
246
- Downloaded hex-literal v0.4.1
198
+ Downloaded ctor-proc-macro v0.0.6
199
+ Downloaded crate-git-revision v0.0.6
200
+ Downloaded cfg-if v1.0.4
201
+ Downloaded serde_derive v1.0.228
202
+ Downloaded serde v1.0.228
203
+ Downloaded soroban-env-macros v25.0.1
204
+ Downloaded serde_with_macros v3.15.1
205
+ Downloaded keccak v0.1.5
206
+ Downloaded escape-bytes v0.1.1
247
207
  Downloaded equivalent v1.0.2
208
+ Downloaded dtor v0.1.1
209
+ Downloaded derive_arbitrary v1.3.2
210
+ Downloaded ark-ff-asm v0.4.2
211
+ Downloaded version_check v0.9.5
212
+ Downloaded unicode-ident v1.0.22
213
+ Downloaded strsim v0.11.1
214
+ Downloaded soroban-spec-rust v25.1.1
215
+ Downloaded soroban-env-guest v25.0.1
216
+ Downloaded signature v2.2.0
217
+ Downloaded semver v1.0.27
218
+ Downloaded sec1 v0.7.3
219
+ Downloaded wasmi_core v0.13.0
220
+ Downloaded wasmi_arena v0.4.1
221
+ Downloaded thiserror v1.0.69
222
+ Downloaded subtle v2.6.1
223
+ Downloaded stellar-strkey v0.0.13
224
+ Downloaded static_assertions v1.1.0
225
+ Downloaded stable_deref_trait v1.2.1
226
+ Downloaded soroban-spec v25.1.1
227
+ Downloaded soroban-env-common v25.0.1
228
+ Downloaded smallvec v1.15.1
229
+ Downloaded sha2 v0.10.9
230
+ Downloaded schemars v1.0.5
231
+ Downloaded schemars v0.9.0
232
+ Downloaded ryu v1.0.20
233
+ Downloaded ref-cast-impl v1.0.25
234
+ Downloaded ref-cast v1.0.25
235
+ Downloaded indexmap-nostd v0.4.0
236
+ Downloaded dyn-clone v1.0.20
237
+ Downloaded stellar-xdr v25.0.0
248
238
  Downloaded dtor-proc-macro v0.0.6
239
+ Downloaded byteorder v1.5.0
240
+ Downloaded base16ct v0.2.0
241
+ Downloaded ark-serialize v0.4.2
242
+ Downloaded ahash v0.8.12
243
+ Downloaded typenum v1.19.0
244
+ Downloaded time-macros v0.2.24
245
+ Downloaded time-core v0.1.6
246
+ Downloaded time v0.3.44
247
+ Downloaded stellar-strkey v0.0.16
248
+ Downloaded soroban-builtin-sdk-macros v25.0.1
249
+ Downloaded powerfmt v0.2.0
249
250
  Downloaded downcast-rs v1.2.1
250
251
  Downloaded darling_macro v0.21.3
251
- Downloaded ark-poly v0.4.2
252
- Downloaded derive_arbitrary v1.3.2
253
- Downloaded ctor v0.5.0
254
- Downloaded stellar-xdr v25.0.0
255
- Downloaded cpufeatures v0.2.17
252
+ Downloaded curve25519-dalek-derive v0.1.1
253
+ Downloaded cfg_eval v0.1.2
254
+ Downloaded block-buffer v0.10.4
255
+ Downloaded rand_chacha v0.3.1
256
+ Downloaded fnv v1.0.7
257
+ Downloaded ark-serialize-derive v0.4.2
258
+ Downloaded spin v0.9.8
256
259
  Compiling proc-macro2 v1.0.103
257
260
  Compiling unicode-ident v1.0.22
258
261
  Compiling quote v1.0.41
@@ -260,21 +263,21 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
260
263
  Compiling serde v1.0.228
261
264
  Compiling serde_json v1.0.145
262
265
  Compiling memchr v2.7.6
263
- Compiling itoa v1.0.15
264
266
  Compiling ryu v1.0.20
265
- Compiling strsim v0.11.1
267
+ Compiling itoa v1.0.15
266
268
  Compiling ident_case v1.0.1
267
269
  Compiling fnv v1.0.7
270
+ Compiling strsim v0.11.1
268
271
  Compiling typenum v1.19.0
269
272
  Compiling version_check v0.9.5
270
273
  Compiling autocfg v1.5.0
271
274
  Compiling schemars v0.8.22
272
275
  Compiling dyn-clone v1.0.20
273
276
  Compiling cfg-if v1.0.4
274
- Compiling cpufeatures v0.2.17
275
277
  Compiling data-encoding v2.9.0
276
- Compiling escape-bytes v0.1.1
278
+ Compiling cpufeatures v0.2.17
277
279
  Compiling ethnum v1.5.2
280
+ Compiling escape-bytes v0.1.1
278
281
  Compiling either v1.15.0
279
282
  Compiling semver v1.0.27
280
283
  Compiling hashbrown v0.16.0
@@ -282,25 +285,25 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
282
285
  Compiling equivalent v1.0.2
283
286
  Compiling prettyplease v0.2.37
284
287
  Compiling generic-array v0.14.9
285
- Compiling byteorder v1.5.0
286
- Compiling heapless v0.8.0
287
288
  Compiling num-traits v0.2.19
289
+ Compiling heapless v0.8.0
288
290
  Compiling itertools v0.10.5
291
+ Compiling byteorder v1.5.0
289
292
  Compiling base64 v0.22.1
290
293
  Compiling rustc_version v0.4.1
291
- Compiling static_assertions v1.1.0
292
294
  Compiling stable_deref_trait v1.2.1
293
- Compiling hash32 v0.3.1
294
295
  Compiling heck v0.5.0
296
+ Compiling static_assertions v1.1.0
297
+ Compiling hash32 v0.3.1
295
298
  Compiling itertools v0.14.0
296
299
  Compiling indexmap v2.12.0
297
- Compiling num-integer v0.1.46
298
300
  Compiling syn v2.0.108
299
- Compiling num-bigint v0.4.6
300
- Compiling wasmparser v0.116.1
301
+ Compiling num-integer v0.1.46
301
302
  Compiling block-buffer v0.10.4
302
303
  Compiling crypto-common v0.1.6
304
+ Compiling wasmparser v0.116.1
303
305
  Compiling digest v0.10.7
306
+ Compiling num-bigint v0.4.6
304
307
  Compiling sha2 v0.10.9
305
308
  Compiling darling_core v0.21.3
306
309
  Compiling darling_core v0.20.11
@@ -312,11 +315,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
312
315
  Compiling visibility v0.1.1
313
316
  Compiling bytes-lit v0.0.5
314
317
  Compiling common-macros v0.0.1 (/workspace/contracts/protocol/stellar/contracts/common-macros)
315
- Compiling darling_macro v0.21.3
316
318
  Compiling darling_macro v0.20.11
319
+ Compiling darling_macro v0.21.3
320
+ Compiling darling v0.20.11
317
321
  Compiling darling v0.21.3
318
322
  Compiling serde_with_macros v3.15.1
319
- Compiling darling v0.20.11
320
323
  Compiling crate-git-revision v0.0.6
321
324
  Compiling hex v0.4.3
322
325
  Compiling stellar-strkey v0.0.13
@@ -328,15 +331,15 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
328
331
  Compiling soroban-spec v25.1.1
329
332
  Compiling soroban-env-macros v25.0.1
330
333
  Compiling soroban-spec-rust v25.1.1
331
- Compiling soroban-env-guest v25.0.1
332
334
  Compiling soroban-sdk-macros v25.1.1
335
+ Compiling soroban-env-guest v25.0.1
333
336
  Compiling utils v0.0.1 (/workspace/contracts/protocol/stellar/contracts/utils)
334
337
  Compiling endpoint-v2 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/endpoint-v2)
335
- Finished `release` profile [optimized] target(s) in 1m 16s
338
+ Finished `release` profile [optimized] target(s) in 37.31s
336
339
  ℹ️ Build Summary:
337
- Wasm File: target/wasm32v1-none/release/endpoint_v2.wasm (58196 bytes)
338
- Wasm Hash: 54ecf00b5d62ed3843bde59713df1e5ff816e380b53b647ea1d43307b1957a78
339
- Wasm Size: 58196 bytes
340
+ Wasm File: target/wasm32v1-none/release/endpoint_v2.wasm (59413 bytes)
341
+ Wasm Hash: 3ade5ac0893539448c4feba947394f4c6e47fd2986ecd30edb210f6d7c2d0969
342
+ Wasm Size: 59413 bytes
340
343
  Exported Functions: 60 found
341
344
  • __constructor
342
345
  • accept_ownership
@@ -405,8 +408,8 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
405
408
  Compiling byteorder v1.5.0
406
409
  Compiling static_assertions v1.1.0
407
410
  Compiling ethnum v1.5.2
408
- Compiling stable_deref_trait v1.2.1
409
411
  Compiling num-traits v0.2.19
412
+ Compiling stable_deref_trait v1.2.1
410
413
  Compiling data-encoding v2.9.0
411
414
  Compiling cfg-if v1.0.4
412
415
  Compiling stellar-xdr v25.0.0
@@ -421,11 +424,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
421
424
  Compiling message-lib-common v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/message-lib-common)
422
425
  Compiling uln302 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/uln-302)
423
426
  Compiling layerzero-views v0.0.1 (/workspace/contracts/protocol/stellar/contracts/layerzero-views)
424
- Finished `release` profile [optimized] target(s) in 18.89s
427
+ Finished `release` profile [optimized] target(s) in 9.17s
425
428
  ℹ️ Build Summary:
426
- Wasm File: target/wasm32v1-none/release/layerzero_views.wasm (35539 bytes)
427
- Wasm Hash: 0479b1caa25d4ba07e43fe204329bf1eaa0e95c0e2f698b264879ff63822cca3
428
- Wasm Size: 35539 bytes
429
+ Wasm File: target/wasm32v1-none/release/layerzero_views.wasm (36701 bytes)
430
+ Wasm Hash: 8262961b302afe1a991e743ef70a8d4404263adc8350d54b9b6d123561323d8f
431
+ Wasm Size: 36701 bytes
429
432
  Exported Functions: 22 found
430
433
  • __constructor
431
434
  • accept_ownership
@@ -454,11 +457,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
454
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
455
458
  Compiling message-lib-common v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/message-lib-common)
456
459
  Compiling uln302 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/uln-302)
457
- Finished `release` profile [optimized] target(s) in 2.28s
460
+ Finished `release` profile [optimized] target(s) in 1.13s
458
461
  ℹ️ Build Summary:
459
- Wasm File: target/wasm32v1-none/release/uln302.wasm (59419 bytes)
460
- Wasm Hash: 5ca539bdcf1f01c0a010265bb4ef0d06731362e4cb2b2b9ccc110fa878f2dbeb
461
- Wasm Size: 59419 bytes
462
+ Wasm File: target/wasm32v1-none/release/uln302.wasm (60581 bytes)
463
+ Wasm Hash: 0d7520b1c15ec0e74d77a83b411062e9fd192d764122849fa7f8d1133fa30dd1
464
+ Wasm Size: 60581 bytes
462
465
  Exported Functions: 38 found
463
466
  • __constructor
464
467
  • accept_ownership
@@ -502,11 +505,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
502
505
 
503
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
504
507
  Compiling upgrader v0.0.1 (/workspace/contracts/protocol/stellar/contracts/upgrader)
505
- Finished `release` profile [optimized] target(s) in 0.62s
508
+ Finished `release` profile [optimized] target(s) in 0.26s
506
509
  ℹ️ Build Summary:
507
- Wasm File: target/wasm32v1-none/release/upgrader.wasm (5385 bytes)
508
- Wasm Hash: eb96b8636dac9d2e5e36c7f859251076f83b311bd1d791ba1dca1911d229b89e
509
- Wasm Size: 5385 bytes
510
+ Wasm File: target/wasm32v1-none/release/upgrader.wasm (6502 bytes)
511
+ Wasm Hash: d97a7d611b07c5c0767dd1d785faea2ba1f3b20086ff6f7ea21afa837d48345b
512
+ Wasm Size: 6502 bytes
510
513
  Exported Functions: 2 found
511
514
  • upgrade
512
515
  • upgrade_and_migrate
@@ -514,11 +517,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
514
517
 
515
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
516
519
  Compiling blocked-message-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/blocked-message-lib)
517
- Finished `release` profile [optimized] target(s) in 0.71s
520
+ Finished `release` profile [optimized] target(s) in 0.30s
518
521
  ℹ️ Build Summary:
519
- Wasm File: target/wasm32v1-none/release/blocked_message_lib.wasm (14326 bytes)
520
- Wasm Hash: fd0662698a8df398204d26d81a6fdcefa23fd46232b4d26d31886b4a60bc0474
521
- Wasm Size: 14326 bytes
522
+ Wasm File: target/wasm32v1-none/release/blocked_message_lib.wasm (15402 bytes)
523
+ Wasm Hash: 7ca4d00f21db6c06a9597f723f4d9c997d05ba1e88c6ce3d79c4eaf303379e6e
524
+ Wasm Size: 15402 bytes
522
525
  Exported Functions: 7 found
523
526
  • get_config
524
527
  • is_supported_eid
@@ -531,11 +534,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
531
534
 
532
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
533
536
  Compiling simple-message-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/simple-message-lib)
534
- Finished `release` profile [optimized] target(s) in 0.97s
537
+ Finished `release` profile [optimized] target(s) in 0.49s
535
538
  ℹ️ Build Summary:
536
- Wasm File: target/wasm32v1-none/release/simple_message_lib.wasm (29777 bytes)
537
- Wasm Hash: a8010cb0a73dbac95aadd9de6d8479db14fd204db77c549560e309abd75867cd
538
- Wasm Size: 29777 bytes
539
+ Wasm File: target/wasm32v1-none/release/simple_message_lib.wasm (30939 bytes)
540
+ Wasm Hash: 25e25deccfacae018fbf9bb8c41146d304e1acedf3df665caac9f8857b08abec
541
+ Wasm Size: 30939 bytes
539
542
  Exported Functions: 31 found
540
543
  • __constructor
541
544
  • accept_ownership
@@ -572,11 +575,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
572
575
 
573
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
574
577
  Compiling treasury v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/treasury)
575
- Finished `release` profile [optimized] target(s) in 0.89s
578
+ Finished `release` profile [optimized] target(s) in 0.44s
576
579
  ℹ️ Build Summary:
577
- Wasm File: target/wasm32v1-none/release/treasury.wasm (28356 bytes)
578
- Wasm Hash: 6cfbe4d80402ec4148006b26e4b05eee2e0222f443abd09e1af80628e089373a
579
- Wasm Size: 28356 bytes
580
+ Wasm File: target/wasm32v1-none/release/treasury.wasm (29518 bytes)
581
+ Wasm Hash: 7c09582303c1dbdf5e036df7583b48894a62dcdad5f2d948efc63ad73f576745
582
+ Wasm Size: 29518 bytes
580
583
  Exported Functions: 21 found
581
584
  • __constructor
582
585
  • accept_ownership
@@ -605,11 +608,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
605
608
  Compiling oapp-macros v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp-macros)
606
609
  Compiling oapp v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp)
607
610
  Compiling counter v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/counter)
608
- Finished `release` profile [optimized] target(s) in 2.25s
611
+ Finished `release` profile [optimized] target(s) in 1.21s
609
612
  ℹ️ Build Summary:
610
- Wasm File: target/wasm32v1-none/release/counter.wasm (42287 bytes)
611
- Wasm Hash: b70653d4f4288fcb54f6a2bf073b6ba58edc547e92261781d4b3f348cabe82a5
612
- Wasm Size: 42287 bytes
613
+ Wasm File: target/wasm32v1-none/release/counter.wasm (43449 bytes)
614
+ Wasm Hash: 6a57a83fb7a87bcb64e5330521856b5d2533c29f9861fdc63beb00e9cec6dfb6
615
+ Wasm Size: 43449 bytes
613
616
  Exported Functions: 36 found
614
617
  • __constructor
615
618
  • accept_ownership
@@ -653,11 +656,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
653
656
  Compiling fee-lib-interfaces v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/fee-lib-interfaces)
654
657
  Compiling worker v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/worker)
655
658
  Compiling dvn v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/dvn)
656
- Finished `release` profile [optimized] target(s) in 2.49s
659
+ Finished `release` profile [optimized] target(s) in 1.18s
657
660
  ℹ️ Build Summary:
658
- Wasm File: target/wasm32v1-none/release/dvn.wasm (55837 bytes)
659
- Wasm Hash: 980a04d5d991b3c2c95f97d337bf4800b7914abd272316ea779853c3df2436db
660
- Wasm Size: 55837 bytes
661
+ Wasm File: target/wasm32v1-none/release/dvn.wasm (57132 bytes)
662
+ Wasm Hash: ca7834c6ed6ade6a9539276aedca225020330595d6bc731896c2658d4961c22e
663
+ Wasm Size: 57132 bytes
661
664
  Exported Functions: 49 found
662
665
  • __check_auth
663
666
  • __constructor
@@ -713,11 +716,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
713
716
  ℹ️ 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
714
717
  Compiling fee-lib-interfaces v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/fee-lib-interfaces)
715
718
  Compiling dvn-fee-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/dvn-fee-lib)
716
- Finished `release` profile [optimized] target(s) in 1.31s
719
+ Finished `release` profile [optimized] target(s) in 0.61s
717
720
  ℹ️ Build Summary:
718
- Wasm File: target/wasm32v1-none/release/dvn_fee_lib.wasm (21527 bytes)
719
- Wasm Hash: cf768fdefada9ac2723357901a271d64d1dcc105c288a179d9ebfb4f753a743c
720
- Wasm Size: 21527 bytes
721
+ Wasm File: target/wasm32v1-none/release/dvn_fee_lib.wasm (22689 bytes)
722
+ Wasm Hash: 1a551485d6498e0705d2fcc677884aaed3e8bfc9ed38da6b81b5b8e2bd5facf8
723
+ Wasm Size: 22689 bytes
721
724
  Exported Functions: 16 found
722
725
  • __constructor
723
726
  • accept_ownership
@@ -739,11 +742,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
739
742
 
740
743
  ℹ️ 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
741
744
  Compiling executor v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor)
742
- Finished `release` profile [optimized] target(s) in 1.57s
745
+ Finished `release` profile [optimized] target(s) in 0.78s
743
746
  ℹ️ Build Summary:
744
- Wasm File: target/wasm32v1-none/release/executor.wasm (58270 bytes)
745
- Wasm Hash: 4bb812a8f36a4d808b731006d7f1aa3fd8cc3dcae20931f438ae1c07db7de4b8
746
- Wasm Size: 58270 bytes
747
+ Wasm File: target/wasm32v1-none/release/executor.wasm (59462 bytes)
748
+ Wasm Hash: e77e3d2ac1deacdd1e2c430eaad45569b2ef2c5778107399f6825aca90181e88
749
+ Wasm Size: 59462 bytes
747
750
  Exported Functions: 49 found
748
751
  • __check_auth
749
752
  • __constructor
@@ -798,11 +801,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
798
801
 
799
802
  ℹ️ 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
800
803
  Compiling executor-fee-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor-fee-lib)
801
- Finished `release` profile [optimized] target(s) in 0.79s
804
+ Finished `release` profile [optimized] target(s) in 0.43s
802
805
  ℹ️ Build Summary:
803
- Wasm File: target/wasm32v1-none/release/executor_fee_lib.wasm (34412 bytes)
804
- Wasm Hash: fe721769490aa000061503e272d2f982af3f8c81265dda408a0b4cb86a89c4cb
805
- Wasm Size: 34412 bytes
806
+ Wasm File: target/wasm32v1-none/release/executor_fee_lib.wasm (35574 bytes)
807
+ Wasm Hash: 99f1d3d7912bbf457c50675cd9cc627f8332e919dfac90b35ddd3bbb0a09a667
808
+ Wasm Size: 35574 bytes
806
809
  Exported Functions: 17 found
807
810
  • __constructor
808
811
  • accept_ownership
@@ -828,11 +831,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
828
831
  Compiling worker v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/worker)
829
832
  Compiling executor v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor)
830
833
  Compiling executor-helper v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor-helper)
831
- Finished `release` profile [optimized] target(s) in 2.22s
834
+ Finished `release` profile [optimized] target(s) in 0.99s
832
835
  ℹ️ Build Summary:
833
- Wasm File: target/wasm32v1-none/release/executor_helper.wasm (24789 bytes)
834
- Wasm Hash: ccafeb36a3e216e688f70f62ee20e267d9902dc55b6d714dbe777eca41a1f383
835
- Wasm Size: 24789 bytes
836
+ Wasm File: target/wasm32v1-none/release/executor_helper.wasm (25865 bytes)
837
+ Wasm Hash: 0ebe8f083ccddc2f5731758d8d0804f42408fdbd2b7e43df1f34ec95a4af4d8b
838
+ Wasm Size: 25865 bytes
836
839
  Exported Functions: 6 found
837
840
  • compose
838
841
  • execute
@@ -844,11 +847,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
844
847
 
845
848
  ℹ️ 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
846
849
  Compiling price-feed v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/price-feed)
847
- Finished `release` profile [optimized] target(s) in 0.96s
850
+ Finished `release` profile [optimized] target(s) in 0.60s
848
851
  ℹ️ Build Summary:
849
- Wasm File: target/wasm32v1-none/release/price_feed.wasm (32616 bytes)
850
- Wasm Hash: 4781533b1b62657f50b6b7849563e11663d3d7c33f93385cbf1b54443f289a75
851
- Wasm Size: 32616 bytes
852
+ Wasm File: target/wasm32v1-none/release/price_feed.wasm (33778 bytes)
853
+ Wasm Hash: 0e91b68a7a3eed460a399efdc89372781ec98f238d10fc47944562dde0026d11
854
+ Wasm Size: 33778 bytes
852
855
  Exported Functions: 30 found
853
856
  • __constructor
854
857
  • accept_ownership
@@ -885,11 +888,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
885
888
  ℹ️ 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
886
889
  Compiling oft-core v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft-core)
887
890
  Compiling oft v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft)
888
- Finished `release` profile [optimized] target(s) in 2.02s
891
+ Finished `release` profile [optimized] target(s) in 1.21s
889
892
  ℹ️ Build Summary:
890
- Wasm File: target/wasm32v1-none/release/oft.wasm (67175 bytes)
891
- Wasm Hash: aeb5888655f105384232d53012d6cb4983d2678dbee974e7485b0e7bc2105722
892
- Wasm Size: 67175 bytes
893
+ Wasm File: target/wasm32v1-none/release/oft.wasm (68337 bytes)
894
+ Wasm Hash: 84890f3103cd4dd74a2be893972918493ec07da658e2ba8bc5716ab0a0322719
895
+ Wasm Size: 68337 bytes
893
896
  Exported Functions: 50 found
894
897
  • __constructor
895
898
  • accept_ownership
@@ -944,41 +947,44 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
944
947
  ✅ Build Complete
945
948
 
946
949
  ℹ️ 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
947
- Compiling oapp v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp)
948
- Compiling oft-core v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft-core)
949
- Compiling oft v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft)
950
950
  Compiling sac-manager v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/sac-manager)
951
- Finished `release` profile [optimized] target(s) in 2.09s
951
+ Finished `release` profile [optimized] target(s) in 0.45s
952
952
  ℹ️ Build Summary:
953
- Wasm File: target/wasm32v1-none/release/sac_manager.wasm (31206 bytes)
954
- Wasm Hash: 58e728063a91a34a0a9ec7ef6acb934f01b87c349e4e481a05d9cc710a07a75f
955
- Wasm Size: 31206 bytes
956
- Exported Functions: 22 found
953
+ Wasm File: target/wasm32v1-none/release/sac_manager.wasm (23526 bytes)
954
+ Wasm Hash: 5d91c1f0a5adf949d96bc6e53a72c38928ec7397a3b5d0ad6c6bf97b188af2dd
955
+ Wasm Size: 23526 bytes
956
+ Exported Functions: 28 found
957
957
  • __constructor
958
958
  • accept_ownership
959
959
  • authorizer
960
960
  • clawback
961
961
  • extend_instance_ttl
962
962
  • freeze_ttl_configs
963
+ • get_existing_roles
964
+ • get_role_admin
965
+ • get_role_member
966
+ • get_role_member_count
967
+ • grant_role
968
+ • has_role
963
969
  • is_ttl_configs_frozen
964
- • migrate
965
970
  • mint
966
- • minters
967
971
  • owner
968
972
  • pending_owner
969
973
  • propose_ownership_transfer
970
- release_sac_admin
974
+ remove_role_admin
971
975
  • renounce_ownership
976
+ • renounce_role
977
+ • revoke_role
978
+ • set_admin
972
979
  • set_authorized
973
- set_minter
980
+ set_role_admin
974
981
  • set_ttl_configs
975
982
  • transfer_ownership
976
983
  • ttl_configs
977
984
  • underlying_sac
978
- • upgrade
979
985
  ✅ Build Complete
980
986
 
981
- ⏱️ stellar contract build: 2:23.231 (m:ss.mmm)
987
+ ⏱️ stellar contract build: 1:12.071 (m:ss.mmm)
982
988
  🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
983
989
  🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-config
984
990
  🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup
@@ -991,7 +997,7 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
991
997
  📦 Using 4 default cache volume(s) for stellar
992
998
  ✅ stellar-25.0.0 (Latest stable release)
993
999
  🔧 stellar version: 25.0.0
994
- (node:96838) [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.
1000
+ (node:30660) [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
1001
  Reparsing as ES module because module syntax was detected. This incurs a performance overhead.
996
1002
  To eliminate this warning, add "type": "module" to /home/runner/work/monorepo-internal/monorepo-internal/package.json.
997
1003
  (Use `node --trace-warnings ...` to show where the warning was created)
@@ -1006,72 +1012,72 @@ sha256:57520026e52d8bfec50ae6363977a40712bfa2549bac8ceed62a150f1d58a8d2
1006
1012
  🔒 Acquired lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
1007
1013
  $ 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'
1008
1014
  Downloading crates ...
1015
+ Downloaded include_dir v0.7.4
1009
1016
  Downloaded opaque-debug v0.3.1
1010
1017
  Downloaded include_dir_macros v0.7.4
1018
+ Downloaded sha2 v0.9.9
1011
1019
  Downloaded digest v0.9.0
1012
- Downloaded glob v0.3.3
1013
1020
  Downloaded anyhow v1.0.100
1014
1021
  Downloaded heck v0.4.1
1015
- Downloaded include_dir v0.7.4
1016
- Downloaded block-buffer v0.9.0
1017
- Downloaded sha2 v0.9.9
1018
- Downloaded base64 v0.21.7
1019
1022
  Downloaded soroban-spec-typescript v25.1.0
1023
+ Downloaded glob v0.3.3
1024
+ Downloaded base64 v0.21.7
1025
+ Downloaded block-buffer v0.9.0
1020
1026
  Compiling proc-macro2 v1.0.103
1021
- Compiling quote v1.0.41
1022
1027
  Compiling unicode-ident v1.0.22
1028
+ Compiling quote v1.0.41
1023
1029
  Compiling serde_json v1.0.145
1024
- Compiling serde_core v1.0.228
1025
- Compiling typenum v1.19.0
1026
1030
  Compiling version_check v0.9.5
1031
+ Compiling typenum v1.19.0
1032
+ Compiling serde_core v1.0.228
1027
1033
  Compiling serde v1.0.228
1028
1034
  Compiling memchr v2.7.6
1029
1035
  Compiling itoa v1.0.15
1030
1036
  Compiling ryu v1.0.20
1031
- Compiling strsim v0.11.1
1032
1037
  Compiling fnv v1.0.7
1033
1038
  Compiling ident_case v1.0.1
1039
+ Compiling strsim v0.11.1
1034
1040
  Compiling schemars v0.8.22
1035
- Compiling cfg-if v1.0.4
1036
1041
  Compiling cpufeatures v0.2.17
1037
1042
  Compiling dyn-clone v1.0.20
1038
- Compiling data-encoding v2.9.0
1043
+ Compiling cfg-if v1.0.4
1039
1044
  Compiling thiserror v1.0.69
1045
+ Compiling data-encoding v2.9.0
1040
1046
  Compiling hashbrown v0.16.0
1041
1047
  Compiling equivalent v1.0.2
1048
+ Compiling base64 v0.22.1
1042
1049
  Compiling prettyplease v0.2.37
1050
+ Compiling generic-array v0.14.9
1043
1051
  Compiling escape-bytes v0.1.1
1044
- Compiling base64 v0.22.1
1045
- Compiling semver v1.0.27
1046
1052
  Compiling ethnum v1.5.2
1047
- Compiling generic-array v0.14.9
1053
+ Compiling semver v1.0.27
1048
1054
  Compiling glob v0.3.3
1049
- Compiling either v1.15.0
1050
1055
  Compiling anyhow v1.0.100
1051
1056
  Compiling opaque-debug v0.3.1
1057
+ Compiling either v1.15.0
1052
1058
  Compiling heck v0.4.1
1053
- Compiling itertools v0.10.5
1054
1059
  Compiling base64 v0.21.7
1055
1060
  Compiling indexmap v2.12.0
1061
+ Compiling itertools v0.10.5
1056
1062
  Compiling syn v2.0.108
1057
- Compiling include_dir_macros v0.7.4
1058
- Compiling crypto-common v0.1.6
1063
+ Compiling wasmparser v0.116.1
1059
1064
  Compiling block-buffer v0.10.4
1060
- Compiling digest v0.9.0
1065
+ Compiling crypto-common v0.1.6
1061
1066
  Compiling block-buffer v0.9.0
1062
- Compiling digest v0.10.7
1067
+ Compiling digest v0.9.0
1063
1068
  Compiling sha2 v0.9.9
1064
- Compiling wasmparser v0.116.1
1065
- Compiling include_dir v0.7.4
1069
+ Compiling digest v0.10.7
1070
+ Compiling include_dir_macros v0.7.4
1066
1071
  Compiling sha2 v0.10.9
1072
+ Compiling include_dir v0.7.4
1067
1073
  Compiling darling_core v0.21.3
1068
1074
  Compiling serde_derive v1.0.228
1069
1075
  Compiling thiserror-impl v1.0.69
1070
1076
  Compiling cfg_eval v0.1.2
1071
1077
  Compiling crate-git-revision v0.0.6
1072
1078
  Compiling stellar-strkey v0.0.13
1073
- Compiling darling_macro v0.21.3
1074
1079
  Compiling stellar-xdr v25.0.0
1080
+ Compiling darling_macro v0.21.3
1075
1081
  Compiling hex v0.4.3
1076
1082
  Compiling darling v0.21.3
1077
1083
  Compiling serde_with_macros v3.15.1
@@ -1079,104 +1085,104 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
1079
1085
  Compiling soroban-spec v25.1.1
1080
1086
  Compiling soroban-spec-typescript v25.1.0
1081
1087
  Compiling ts-bindings-gen v0.0.1 (/workspace/contracts/protocol/stellar/tools/ts-bindings-gen)
1082
- Finished `dev` profile [unoptimized + debuginfo] target(s) in 1m 49s
1088
+ Finished `dev` profile [unoptimized + debuginfo] target(s) in 43.49s
1083
1089
  Running `target/debug/ts-bindings-gen`
1084
1090
  🚀 Generating TypeScript bindings for Stellar contracts...
1085
1091
 
1086
1092
  📦 Processing contract: endpoint_v2
1087
1093
  WASM: target/wasm32v1-none/release/endpoint_v2.wasm
1088
1094
  Output: sdk/src/generated/endpoint.ts
1089
- WASM size: 58196 bytes (56.83 KB)
1095
+ WASM size: 59413 bytes (58.02 KB)
1090
1096
  Generating bindings...
1091
1097
  ✓ Generated: sdk/src/generated/endpoint.ts
1092
1098
  📦 Processing contract: simple_message_lib
1093
1099
  WASM: target/wasm32v1-none/release/simple_message_lib.wasm
1094
1100
  Output: sdk/src/generated/sml.ts
1095
- WASM size: 29777 bytes (29.08 KB)
1101
+ WASM size: 30939 bytes (30.21 KB)
1096
1102
  Generating bindings...
1097
1103
  ✓ Generated: sdk/src/generated/sml.ts
1098
1104
  📦 Processing contract: blocked_message_lib
1099
1105
  WASM: target/wasm32v1-none/release/blocked_message_lib.wasm
1100
1106
  Output: sdk/src/generated/bml.ts
1101
- WASM size: 14326 bytes (13.99 KB)
1107
+ WASM size: 15402 bytes (15.04 KB)
1102
1108
  Generating bindings...
1103
1109
  ✓ Generated: sdk/src/generated/bml.ts
1104
1110
  📦 Processing contract: uln302
1105
1111
  WASM: target/wasm32v1-none/release/uln302.wasm
1106
1112
  Output: sdk/src/generated/uln302.ts
1107
- WASM size: 59419 bytes (58.03 KB)
1113
+ WASM size: 60581 bytes (59.16 KB)
1108
1114
  Generating bindings...
1109
1115
  ✓ Generated: sdk/src/generated/uln302.ts
1110
1116
  📦 Processing contract: treasury
1111
1117
  WASM: target/wasm32v1-none/release/treasury.wasm
1112
1118
  Output: sdk/src/generated/treasury.ts
1113
- WASM size: 28356 bytes (27.69 KB)
1119
+ WASM size: 29518 bytes (28.83 KB)
1114
1120
  Generating bindings...
1115
1121
  ✓ Generated: sdk/src/generated/treasury.ts
1116
1122
  📦 Processing contract: upgrader
1117
1123
  WASM: target/wasm32v1-none/release/upgrader.wasm
1118
1124
  Output: sdk/src/generated/upgrader.ts
1119
- WASM size: 5385 bytes (5.26 KB)
1125
+ WASM size: 6502 bytes (6.35 KB)
1120
1126
  Generating bindings...
1121
1127
  ✓ Generated: sdk/src/generated/upgrader.ts
1122
1128
  📦 Processing contract: dvn
1123
1129
  WASM: target/wasm32v1-none/release/dvn.wasm
1124
1130
  Output: sdk/src/generated/dvn.ts
1125
- WASM size: 55837 bytes (54.53 KB)
1131
+ WASM size: 57132 bytes (55.79 KB)
1126
1132
  Generating bindings...
1127
1133
  ✓ Generated: sdk/src/generated/dvn.ts
1128
1134
  📦 Processing contract: dvn_fee_lib
1129
1135
  WASM: target/wasm32v1-none/release/dvn_fee_lib.wasm
1130
1136
  Output: sdk/src/generated/dvn_fee_lib.ts
1131
- WASM size: 21527 bytes (21.02 KB)
1137
+ WASM size: 22689 bytes (22.16 KB)
1132
1138
  Generating bindings...
1133
1139
  ✓ Generated: sdk/src/generated/dvn_fee_lib.ts
1134
1140
  📦 Processing contract: executor
1135
1141
  WASM: target/wasm32v1-none/release/executor.wasm
1136
1142
  Output: sdk/src/generated/executor.ts
1137
- WASM size: 58270 bytes (56.90 KB)
1143
+ WASM size: 59462 bytes (58.07 KB)
1138
1144
  Generating bindings...
1139
1145
  ✓ Generated: sdk/src/generated/executor.ts
1140
1146
  📦 Processing contract: executor_fee_lib
1141
1147
  WASM: target/wasm32v1-none/release/executor_fee_lib.wasm
1142
1148
  Output: sdk/src/generated/executor_fee_lib.ts
1143
- WASM size: 34412 bytes (33.61 KB)
1149
+ WASM size: 35574 bytes (34.74 KB)
1144
1150
  Generating bindings...
1145
1151
  ✓ Generated: sdk/src/generated/executor_fee_lib.ts
1146
1152
  📦 Processing contract: executor_helper
1147
1153
  WASM: target/wasm32v1-none/release/executor_helper.wasm
1148
1154
  Output: sdk/src/generated/executor_helper.ts
1149
- WASM size: 24789 bytes (24.21 KB)
1155
+ WASM size: 25865 bytes (25.26 KB)
1150
1156
  Generating bindings...
1151
1157
  ✓ Generated: sdk/src/generated/executor_helper.ts
1152
1158
  📦 Processing contract: price_feed
1153
1159
  WASM: target/wasm32v1-none/release/price_feed.wasm
1154
1160
  Output: sdk/src/generated/price_feed.ts
1155
- WASM size: 32616 bytes (31.85 KB)
1161
+ WASM size: 33778 bytes (32.99 KB)
1156
1162
  Generating bindings...
1157
1163
  ✓ Generated: sdk/src/generated/price_feed.ts
1158
1164
  📦 Processing contract: counter
1159
1165
  WASM: target/wasm32v1-none/release/counter.wasm
1160
1166
  Output: sdk/src/generated/counter.ts
1161
- WASM size: 42287 bytes (41.30 KB)
1167
+ WASM size: 43449 bytes (42.43 KB)
1162
1168
  Generating bindings...
1163
1169
  ✓ Generated: sdk/src/generated/counter.ts
1164
1170
  📦 Processing contract: oft
1165
1171
  WASM: target/wasm32v1-none/release/oft.wasm
1166
1172
  Output: sdk/src/generated/oft.ts
1167
- WASM size: 67175 bytes (65.60 KB)
1173
+ WASM size: 68337 bytes (66.74 KB)
1168
1174
  Generating bindings...
1169
1175
  ✓ Generated: sdk/src/generated/oft.ts
1170
1176
  📦 Processing contract: sac_manager
1171
1177
  WASM: target/wasm32v1-none/release/sac_manager.wasm
1172
1178
  Output: sdk/src/generated/sac_manager.ts
1173
- WASM size: 31206 bytes (30.47 KB)
1179
+ WASM size: 23526 bytes (22.97 KB)
1174
1180
  Generating bindings...
1175
1181
  ✓ Generated: sdk/src/generated/sac_manager.ts
1176
1182
  📦 Processing contract: layerzero_views
1177
1183
  WASM: target/wasm32v1-none/release/layerzero_views.wasm
1178
1184
  Output: sdk/src/generated/layerzero_view.ts
1179
- WASM size: 35539 bytes (34.71 KB)
1185
+ WASM size: 36701 bytes (35.84 KB)
1180
1186
  Generating bindings...
1181
1187
  ✓ Generated: sdk/src/generated/layerzero_view.ts
1182
1188
 
@@ -1200,7 +1206,7 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
1200
1206
  - oft.ts
1201
1207
  - sac_manager.ts
1202
1208
  - layerzero_view.ts
1203
- ⏱️ bash -c cargo run -p ts-bindings-gen: 1:50.145 (m:ss.mmm)
1209
+ ⏱️ bash -c cargo run -p ts-bindings-gen: 44.257s
1204
1210
  🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
1205
1211
  🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-config
1206
1212
  🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup