@layerzerolabs/protocol-stellar-v2 0.2.9 → 0.2.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +245 -199
- package/.turbo/turbo-lint.log +79 -107
- package/.turbo/turbo-test.log +1017 -841
- package/Cargo.lock +13 -5
- package/contracts/common-macros/src/contract_impl.rs +6 -3
- package/contracts/common-macros/src/error.rs +9 -17
- package/contracts/common-macros/src/event.rs +4 -4
- package/contracts/common-macros/src/lib.rs +2 -2
- package/contracts/common-macros/src/ownable.rs +9 -5
- package/contracts/common-macros/src/tests/contract_impl.rs +178 -86
- package/contracts/common-macros/src/tests/error.rs +168 -0
- package/contracts/common-macros/src/tests/mod.rs +2 -4
- package/contracts/common-macros/src/tests/ownable.rs +37 -60
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__contract_impl__snapshot_generated_contract_impl_code.snap +16 -6
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__error__snapshot_generated_contract_error_code.snap +20 -0
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__ownable__snapshot_generated_ownable_code.snap +3 -1
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__ownable__snapshot_only_owner_preserves_function_signature.snap +12 -2
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__ttl_configurable__snapshot_generated_ttl_configurable_code.snap +5 -1
- package/contracts/common-macros/src/tests/utils.rs +267 -0
- package/contracts/common-macros/src/ttl_configurable.rs +15 -12
- package/contracts/common-macros/src/utils.rs +35 -6
- package/contracts/message-libs/uln-302/src/receive_uln.rs +1 -1
- package/contracts/message-libs/uln-302/src/send_uln.rs +2 -2
- package/contracts/message-libs/uln-302/src/uln302.rs +2 -2
- package/contracts/oapp-macros/src/oapp_core.rs +1 -1
- package/contracts/oapps/oft/integration-tests/setup.rs +4 -3
- package/contracts/oapps/oft/src/default_oft_impl.rs +146 -0
- package/contracts/oapps/oft/src/extensions/mod.rs +3 -0
- package/contracts/oapps/oft/src/extensions/oft_fee.rs +164 -0
- package/contracts/oapps/oft/src/extensions/pausable.rs +50 -0
- package/contracts/oapps/oft/src/extensions/rate_limiter.rs +198 -0
- package/contracts/oapps/oft/src/lib.rs +2 -3
- package/contracts/oapps/oft/src/oft.rs +16 -85
- package/contracts/oapps/oft/src/oft_types/mint_burn.rs +1 -1
- package/contracts/oapps/oft/src/tests/extensions/mod.rs +11 -0
- package/contracts/oapps/oft/src/tests/extensions/setup.rs +888 -0
- package/contracts/oapps/oft/src/tests/extensions/test_oft_fee.rs +749 -0
- package/contracts/oapps/oft/src/tests/extensions/test_pausable.rs +432 -0
- package/contracts/oapps/oft/src/tests/extensions/test_rate_limiter.rs +1078 -0
- package/contracts/oapps/oft/src/tests/mod.rs +2 -0
- package/contracts/oapps/oft/src/tests/test_utils.rs +24 -6
- package/contracts/oapps/{oft-mint-burn → oft-std}/Cargo.toml +1 -8
- package/contracts/oapps/oft-std/src/lib.rs +5 -0
- package/contracts/oapps/oft-std/src/oft.rs +59 -0
- package/contracts/utils/src/ownable.rs +2 -2
- package/contracts/utils/src/tests/ownable.rs +0 -63
- package/contracts/utils/src/ttl.rs +19 -1
- package/contracts/workers/dvn/src/auth.rs +91 -27
- package/contracts/workers/dvn/src/dvn.rs +22 -20
- package/contracts/workers/dvn/src/interfaces/dvn.rs +48 -3
- package/contracts/workers/dvn/src/interfaces/multisig.rs +41 -0
- package/contracts/workers/dvn/src/lib.rs +6 -8
- package/contracts/workers/dvn/src/multisig.rs +6 -3
- package/contracts/workers/dvn/src/tests/auth.rs +1 -1
- package/contracts/workers/dvn/src/tests/dvn.rs +3 -4
- package/contracts/workers/dvn-fee-lib/Cargo.toml +2 -1
- package/contracts/workers/dvn-fee-lib/src/dvn_fee_lib.rs +4 -3
- package/contracts/workers/dvn-fee-lib/src/tests/dvn_fee_lib.rs +8 -6
- package/contracts/workers/executor/src/interfaces/executor.rs +5 -2
- package/contracts/workers/executor/src/lz_executor.rs +6 -6
- package/contracts/workers/price-feed/Cargo.toml +21 -0
- package/contracts/workers/price-feed/src/errors.rs +9 -0
- package/contracts/workers/price-feed/src/events.rs +30 -0
- package/contracts/workers/price-feed/src/lib.rs +11 -0
- package/contracts/workers/price-feed/src/price_feed.rs +265 -0
- package/contracts/workers/price-feed/src/storage.rs +42 -0
- package/contracts/workers/price-feed/src/types.rs +59 -0
- package/contracts/workers/worker/src/interfaces/dvn_fee_lib.rs +2 -1
- package/package.json +3 -3
- package/sdk/dist/generated/bml.js +3 -1
- package/sdk/dist/generated/counter.d.ts +102 -0
- package/sdk/dist/generated/counter.js +13 -1
- package/sdk/dist/generated/endpoint.js +3 -1
- package/sdk/dist/generated/sml.js +3 -1
- package/sdk/dist/generated/uln302.js +3 -1
- package/sdk/package.json +1 -1
- package/contracts/oapps/oft/src/macro_tests/mod.rs +0 -2
- package/contracts/oapps/oft/src/macro_tests/test_all_default.rs +0 -41
- package/contracts/oapps/oft/src/macro_tests/test_override.rs +0 -83
- package/contracts/oapps/oft-mint-burn/src/lib.rs +0 -3
- package/contracts/oapps/oft-mint-burn/src/oft.rs +0 -28
- package/contracts/oapps/oft-mint-burn/src/tests/mod.rs +0 -1
- package/contracts/workers/dvn/src/types.rs +0 -26
package/.turbo/turbo-build.log
CHANGED
|
@@ -28,16 +28,15 @@ f83e34e44849: Pulling fs layer
|
|
|
28
28
|
8bc2eeec2bb3: Pulling fs layer
|
|
29
29
|
2965c99ac5df: Pulling fs layer
|
|
30
30
|
66f4137c2c7c: Pulling fs layer
|
|
31
|
-
f83e34e44849: Waiting
|
|
32
|
-
a7d3f750d5ec: Waiting
|
|
33
|
-
8bc2eeec2bb3: Waiting
|
|
34
|
-
8a4f031cd7ce: Waiting
|
|
35
31
|
1b86cc28e881: Waiting
|
|
32
|
+
8a4f031cd7ce: Waiting
|
|
36
33
|
2c1ce468d9f3: Waiting
|
|
34
|
+
f83e34e44849: Waiting
|
|
35
|
+
889cdda75b95: Waiting
|
|
36
|
+
8bc2eeec2bb3: Waiting
|
|
37
37
|
2965c99ac5df: Waiting
|
|
38
|
+
a7d3f750d5ec: Waiting
|
|
38
39
|
2ff845d4f468: Waiting
|
|
39
|
-
66f4137c2c7c: Waiting
|
|
40
|
-
889cdda75b95: Waiting
|
|
41
40
|
f6bd9104d248: Verifying Checksum
|
|
42
41
|
f6bd9104d248: Download complete
|
|
43
42
|
889cdda75b95: Verifying Checksum
|
|
@@ -45,22 +44,26 @@ f6bd9104d248: Download complete
|
|
|
45
44
|
f6bd9104d248: Pull complete
|
|
46
45
|
a7d3f750d5ec: Verifying Checksum
|
|
47
46
|
a7d3f750d5ec: Download complete
|
|
48
|
-
8a4f031cd7ce: Verifying Checksum
|
|
49
|
-
8a4f031cd7ce: Download complete
|
|
50
47
|
e9886d99af76: Verifying Checksum
|
|
51
48
|
e9886d99af76: Download complete
|
|
49
|
+
8a4f031cd7ce: Verifying Checksum
|
|
50
|
+
8a4f031cd7ce: Download complete
|
|
51
|
+
2c1ce468d9f3: Verifying Checksum
|
|
52
52
|
2c1ce468d9f3: Download complete
|
|
53
|
-
4617420e017b: Verifying Checksum
|
|
54
|
-
4617420e017b: Download complete
|
|
55
|
-
f83e34e44849: Verifying Checksum
|
|
56
|
-
f83e34e44849: Download complete
|
|
57
53
|
2ff845d4f468: Verifying Checksum
|
|
58
54
|
2ff845d4f468: Download complete
|
|
55
|
+
1b86cc28e881: Verifying Checksum
|
|
56
|
+
1b86cc28e881: Download complete
|
|
57
|
+
f83e34e44849: Verifying Checksum
|
|
58
|
+
f83e34e44849: Download complete
|
|
59
|
+
8bc2eeec2bb3: Verifying Checksum
|
|
60
|
+
8bc2eeec2bb3: Download complete
|
|
61
|
+
4617420e017b: Verifying Checksum
|
|
62
|
+
4617420e017b: Download complete
|
|
59
63
|
2965c99ac5df: Verifying Checksum
|
|
60
64
|
2965c99ac5df: Download complete
|
|
65
|
+
66f4137c2c7c: Verifying Checksum
|
|
61
66
|
66f4137c2c7c: Download complete
|
|
62
|
-
1b86cc28e881: Verifying Checksum
|
|
63
|
-
1b86cc28e881: Download complete
|
|
64
67
|
4617420e017b: Pull complete
|
|
65
68
|
e9886d99af76: Pull complete
|
|
66
69
|
889cdda75b95: Pull complete
|
|
@@ -87,203 +90,203 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
87
90
|
Updating crates.io index
|
|
88
91
|
Updating git repository `https://github.com/OpenZeppelin/stellar-contracts.git`
|
|
89
92
|
Downloading crates ...
|
|
90
|
-
Downloaded ark-serialize v0.4.2
|
|
91
93
|
Downloaded ark-ff-asm v0.4.2
|
|
94
|
+
Downloaded ark-serialize v0.4.2
|
|
95
|
+
Downloaded ark-ff-macros v0.4.2
|
|
92
96
|
Downloaded arbitrary v1.3.2
|
|
93
97
|
Downloaded ark-poly v0.4.2
|
|
94
|
-
Downloaded
|
|
95
|
-
Downloaded
|
|
96
|
-
Downloaded
|
|
97
|
-
Downloaded
|
|
98
|
-
Downloaded
|
|
99
|
-
Downloaded
|
|
98
|
+
Downloaded rustc_version v0.4.1
|
|
99
|
+
Downloaded ark-ff v0.4.2
|
|
100
|
+
Downloaded ark-ec v0.4.2
|
|
101
|
+
Downloaded semver v1.0.27
|
|
102
|
+
Downloaded dyn-clone v1.0.20
|
|
103
|
+
Downloaded bytes-lit v0.0.5
|
|
104
|
+
Downloaded equivalent v1.0.2
|
|
105
|
+
Downloaded fnv v1.0.7
|
|
106
|
+
Downloaded elliptic-curve v0.13.8
|
|
107
|
+
Downloaded darling_core v0.21.3
|
|
100
108
|
Downloaded serde_derive v1.0.228
|
|
101
|
-
Downloaded
|
|
102
|
-
Downloaded
|
|
109
|
+
Downloaded zeroize_derive v1.4.2
|
|
110
|
+
Downloaded rfc6979 v0.4.0
|
|
111
|
+
Downloaded soroban-spec v23.4.0
|
|
103
112
|
Downloaded visibility v0.1.1
|
|
104
|
-
Downloaded
|
|
113
|
+
Downloaded version_check v0.9.5
|
|
114
|
+
Downloaded hashbrown v0.16.0
|
|
105
115
|
Downloaded wasmi_arena v0.4.1
|
|
106
|
-
Downloaded
|
|
107
|
-
Downloaded
|
|
116
|
+
Downloaded time-macros v0.2.24
|
|
117
|
+
Downloaded schemars v0.9.0
|
|
108
118
|
Downloaded zeroize v1.8.2
|
|
109
119
|
Downloaded soroban-sdk-macros v23.4.0
|
|
110
120
|
Downloaded typenum v1.19.0
|
|
111
|
-
Downloaded
|
|
112
|
-
Downloaded
|
|
121
|
+
Downloaded libm v0.2.15
|
|
122
|
+
Downloaded base64 v0.22.1
|
|
113
123
|
Downloaded wasmparser-nostd v0.100.2
|
|
114
124
|
Downloaded time v0.3.44
|
|
115
|
-
Downloaded wasmparser v0.116.1
|
|
116
|
-
Downloaded serde_with v3.15.1
|
|
117
125
|
Downloaded soroban-wasmi v0.31.1-soroban.20.0.1
|
|
118
|
-
Downloaded
|
|
119
|
-
Downloaded
|
|
120
|
-
Downloaded syn v2.0.108
|
|
121
|
-
Downloaded ed25519-dalek v2.2.0
|
|
126
|
+
Downloaded serde_json v1.0.145
|
|
127
|
+
Downloaded wasmparser v0.116.1
|
|
122
128
|
Downloaded zerocopy v0.8.27
|
|
123
|
-
Downloaded
|
|
124
|
-
Downloaded
|
|
125
|
-
Downloaded der v0.7.10
|
|
129
|
+
Downloaded syn v1.0.109
|
|
130
|
+
Downloaded serde_with v3.15.1
|
|
126
131
|
Downloaded soroban-sdk v23.4.0
|
|
127
|
-
Downloaded
|
|
132
|
+
Downloaded num-bigint v0.4.6
|
|
133
|
+
Downloaded syn v2.0.108
|
|
134
|
+
Downloaded memchr v2.7.6
|
|
135
|
+
Downloaded itertools v0.10.5
|
|
128
136
|
Downloaded soroban-env-common v23.0.1
|
|
129
|
-
Downloaded
|
|
130
|
-
Downloaded
|
|
137
|
+
Downloaded serde_core v1.0.228
|
|
138
|
+
Downloaded serde v1.0.228
|
|
139
|
+
Downloaded schemars v1.0.5
|
|
131
140
|
Downloaded soroban-env-host v23.0.1
|
|
141
|
+
Downloaded rand v0.8.5
|
|
142
|
+
Downloaded crypto-bigint v0.5.5
|
|
143
|
+
Downloaded smallvec v1.15.1
|
|
144
|
+
Downloaded sha2 v0.10.9
|
|
145
|
+
Downloaded serde_with_macros v3.15.1
|
|
146
|
+
Downloaded schemars v0.8.22
|
|
147
|
+
Downloaded prettyplease v0.2.37
|
|
148
|
+
Downloaded libc v0.2.177
|
|
149
|
+
Downloaded wasmi_core v0.13.0
|
|
132
150
|
Downloaded unicode-ident v1.0.22
|
|
133
|
-
Downloaded
|
|
134
|
-
Downloaded
|
|
151
|
+
Downloaded thiserror-impl v1.0.69
|
|
152
|
+
Downloaded spin v0.9.8
|
|
153
|
+
Downloaded static_assertions v1.1.0
|
|
154
|
+
Downloaded soroban-builtin-sdk-macros v23.0.1
|
|
155
|
+
Downloaded signature v2.2.0
|
|
156
|
+
Downloaded k256 v0.13.4
|
|
135
157
|
Downloaded thiserror v1.0.69
|
|
136
158
|
Downloaded stellar-strkey v0.0.13
|
|
137
159
|
Downloaded spki v0.7.3
|
|
138
|
-
Downloaded spin v0.9.8
|
|
139
|
-
Downloaded soroban-env-macros v23.0.1
|
|
140
|
-
Downloaded sha2 v0.10.9
|
|
141
|
-
Downloaded data-encoding v2.9.0
|
|
142
|
-
Downloaded darling_core v0.20.11
|
|
143
|
-
Downloaded wasmi_core v0.13.0
|
|
144
|
-
Downloaded version_check v0.9.5
|
|
145
|
-
Downloaded time-macros v0.2.24
|
|
146
|
-
Downloaded static_assertions v1.1.0
|
|
147
160
|
Downloaded soroban-ledger-snapshot v23.4.0
|
|
148
|
-
Downloaded proc-macro2 v1.0.103
|
|
149
|
-
Downloaded memchr v2.7.6
|
|
150
161
|
Downloaded sha3 v0.10.8
|
|
151
|
-
Downloaded
|
|
152
|
-
Downloaded
|
|
153
|
-
Downloaded
|
|
154
|
-
Downloaded
|
|
155
|
-
Downloaded
|
|
156
|
-
Downloaded
|
|
157
|
-
Downloaded soroban-builtin-sdk-macros v23.0.1
|
|
158
|
-
Downloaded rand_core v0.6.4
|
|
162
|
+
Downloaded soroban-env-macros v23.0.1
|
|
163
|
+
Downloaded itertools v0.14.0
|
|
164
|
+
Downloaded indexmap v2.12.0
|
|
165
|
+
Downloaded hashbrown v0.13.2
|
|
166
|
+
Downloaded hashbrown v0.12.3
|
|
167
|
+
Downloaded strsim v0.11.1
|
|
159
168
|
Downloaded p256 v0.13.2
|
|
169
|
+
Downloaded num-traits v0.2.19
|
|
170
|
+
Downloaded indexmap v1.9.3
|
|
171
|
+
Downloaded const-oid v0.9.6
|
|
172
|
+
Downloaded autocfg v1.5.0
|
|
173
|
+
Downloaded ark-std v0.4.0
|
|
174
|
+
Downloaded soroban-spec-rust v23.4.0
|
|
175
|
+
Downloaded ryu v1.0.20
|
|
176
|
+
Downloaded proc-macro2 v1.0.103
|
|
177
|
+
Downloaded primeorder v0.13.6
|
|
178
|
+
Downloaded paste v1.0.15
|
|
160
179
|
Downloaded once_cell v1.21.3
|
|
161
180
|
Downloaded iana-time-zone v0.1.64
|
|
162
181
|
Downloaded hmac v0.12.1
|
|
163
|
-
Downloaded
|
|
164
|
-
Downloaded
|
|
165
|
-
Downloaded
|
|
166
|
-
Downloaded
|
|
167
|
-
Downloaded
|
|
168
|
-
Downloaded
|
|
169
|
-
Downloaded
|
|
170
|
-
Downloaded num-integer v0.1.46
|
|
171
|
-
Downloaded num-derive v0.4.2
|
|
172
|
-
Downloaded keccak v0.1.5
|
|
173
|
-
Downloaded itertools v0.10.5
|
|
174
|
-
Downloaded indexmap-nostd v0.4.0
|
|
175
|
-
Downloaded indexmap v2.12.0
|
|
176
|
-
Downloaded fnv v1.0.7
|
|
177
|
-
Downloaded bytes-lit v0.0.5
|
|
178
|
-
Downloaded strsim v0.11.1
|
|
179
|
-
Downloaded schemars v1.0.5
|
|
180
|
-
Downloaded schemars v0.9.0
|
|
182
|
+
Downloaded heck v0.5.0
|
|
183
|
+
Downloaded crate-git-revision v0.0.6
|
|
184
|
+
Downloaded cpufeatures v0.2.17
|
|
185
|
+
Downloaded block-buffer v0.10.4
|
|
186
|
+
Downloaded base64ct v1.8.0
|
|
187
|
+
Downloaded base16ct v0.2.0
|
|
188
|
+
Downloaded sec1 v0.7.3
|
|
181
189
|
Downloaded ref-cast-impl v1.0.25
|
|
182
190
|
Downloaded ref-cast v1.0.25
|
|
191
|
+
Downloaded rand_core v0.6.4
|
|
192
|
+
Downloaded rand_chacha v0.3.1
|
|
193
|
+
Downloaded quote v1.0.41
|
|
194
|
+
Downloaded ppv-lite86 v0.2.21
|
|
195
|
+
Downloaded powerfmt v0.2.0
|
|
196
|
+
Downloaded pkcs8 v0.10.2
|
|
197
|
+
Downloaded keccak v0.1.5
|
|
198
|
+
Downloaded num-derive v0.4.2
|
|
183
199
|
Downloaded macro-string v0.1.4
|
|
184
|
-
Downloaded
|
|
200
|
+
Downloaded ctor-proc-macro v0.0.6
|
|
201
|
+
Downloaded ctor v0.5.0
|
|
202
|
+
Downloaded time-core v0.1.6
|
|
203
|
+
Downloaded subtle v2.6.1
|
|
204
|
+
Downloaded soroban-env-guest v23.0.1
|
|
185
205
|
Downloaded itoa v1.0.15
|
|
206
|
+
Downloaded getrandom v0.2.16
|
|
207
|
+
Downloaded generic-array v0.14.9
|
|
208
|
+
Downloaded num-integer v0.1.46
|
|
209
|
+
Downloaded num-conv v0.1.0
|
|
210
|
+
Downloaded indexmap-nostd v0.4.0
|
|
211
|
+
Downloaded ident_case v1.0.1
|
|
186
212
|
Downloaded hex-literal v0.4.1
|
|
187
|
-
Downloaded
|
|
188
|
-
Downloaded
|
|
213
|
+
Downloaded hex v0.4.3
|
|
214
|
+
Downloaded group v0.13.0
|
|
215
|
+
Downloaded ed25519-dalek v2.2.0
|
|
216
|
+
Downloaded der v0.7.10
|
|
217
|
+
Downloaded darling_core v0.20.11
|
|
218
|
+
Downloaded curve25519-dalek v4.1.3
|
|
219
|
+
Downloaded chrono v0.4.42
|
|
220
|
+
Downloaded darling v0.20.11
|
|
221
|
+
Downloaded ff v0.13.1
|
|
222
|
+
Downloaded ethnum v1.5.2
|
|
189
223
|
Downloaded escape-bytes v0.1.1
|
|
190
|
-
Downloaded
|
|
191
|
-
Downloaded either v1.15.0
|
|
224
|
+
Downloaded ed25519 v2.2.3
|
|
192
225
|
Downloaded ecdsa v0.16.9
|
|
226
|
+
Downloaded downcast-rs v1.2.1
|
|
193
227
|
Downloaded digest v0.10.7
|
|
228
|
+
Downloaded deranged v0.5.5
|
|
229
|
+
Downloaded data-encoding v2.9.0
|
|
230
|
+
Downloaded cfg_eval v0.1.2
|
|
231
|
+
Downloaded either v1.15.0
|
|
232
|
+
Downloaded dtor-proc-macro v0.0.6
|
|
233
|
+
Downloaded dtor v0.1.1
|
|
194
234
|
Downloaded derive_arbitrary v1.3.2
|
|
195
235
|
Downloaded derivative v2.2.0
|
|
196
|
-
Downloaded darling v0.21.3
|
|
197
|
-
Downloaded base64 v0.22.1
|
|
198
|
-
Downloaded base16ct v0.2.0
|
|
199
|
-
Downloaded quote v1.0.41
|
|
200
|
-
Downloaded primeorder v0.13.6
|
|
201
|
-
Downloaded num-traits v0.2.19
|
|
202
|
-
Downloaded hex v0.4.3
|
|
203
|
-
Downloaded dtor v0.1.1
|
|
204
|
-
Downloaded serde_core v1.0.228
|
|
205
|
-
Downloaded serde v1.0.228
|
|
206
|
-
Downloaded semver v1.0.27
|
|
207
|
-
Downloaded sec1 v0.7.3
|
|
208
|
-
Downloaded ryu v1.0.20
|
|
209
|
-
Downloaded rustc_version v0.4.1
|
|
210
|
-
Downloaded generic-array v0.14.9
|
|
211
|
-
Downloaded equivalent v1.0.2
|
|
212
|
-
Downloaded dyn-clone v1.0.20
|
|
213
236
|
Downloaded darling_macro v0.21.3
|
|
214
|
-
Downloaded
|
|
215
|
-
Downloaded ctor v0.5.0
|
|
237
|
+
Downloaded darling_macro v0.20.11
|
|
216
238
|
Downloaded crypto-common v0.1.6
|
|
217
|
-
Downloaded
|
|
218
|
-
Downloaded
|
|
219
|
-
Downloaded
|
|
220
|
-
Downloaded
|
|
221
|
-
Downloaded ark-std v0.4.0
|
|
239
|
+
Downloaded darling v0.21.3
|
|
240
|
+
Downloaded curve25519-dalek-derive v0.1.1
|
|
241
|
+
Downloaded cfg-if v1.0.4
|
|
242
|
+
Downloaded ark-serialize-derive v0.4.2
|
|
222
243
|
Downloaded ark-bls12-381 v0.4.0
|
|
223
|
-
Downloaded prettyplease v0.2.37
|
|
224
|
-
Downloaded powerfmt v0.2.0
|
|
225
|
-
Downloaded pkcs8 v0.10.2
|
|
226
|
-
Downloaded paste v1.0.15
|
|
227
|
-
Downloaded num-conv v0.1.0
|
|
228
|
-
Downloaded ident_case v1.0.1
|
|
229
|
-
Downloaded getrandom v0.2.16
|
|
230
|
-
Downloaded ed25519 v2.2.3
|
|
231
|
-
Downloaded downcast-rs v1.2.1
|
|
232
|
-
Downloaded deranged v0.5.5
|
|
233
|
-
Downloaded darling_core v0.21.3
|
|
234
|
-
Downloaded ff v0.13.1
|
|
235
|
-
Downloaded autocfg v1.5.0
|
|
236
|
-
Downloaded ark-ff-macros v0.4.2
|
|
237
244
|
Downloaded ahash v0.8.12
|
|
238
|
-
Downloaded base64ct v1.8.0
|
|
239
|
-
Downloaded ark-serialize-derive v0.4.2
|
|
240
245
|
Downloaded stellar-xdr v23.0.0
|
|
241
|
-
Downloaded ark-ec v0.4.2
|
|
242
|
-
Downloaded ark-ff v0.4.2
|
|
243
246
|
Compiling proc-macro2 v1.0.103
|
|
244
|
-
Compiling unicode-ident v1.0.22
|
|
245
247
|
Compiling quote v1.0.41
|
|
248
|
+
Compiling unicode-ident v1.0.22
|
|
246
249
|
Compiling serde_core v1.0.228
|
|
247
250
|
Compiling serde v1.0.228
|
|
248
251
|
Compiling serde_json v1.0.145
|
|
252
|
+
Compiling memchr v2.7.6
|
|
249
253
|
Compiling itoa v1.0.15
|
|
250
254
|
Compiling ryu v1.0.20
|
|
251
|
-
Compiling memchr v2.7.6
|
|
252
|
-
Compiling fnv v1.0.7
|
|
253
255
|
Compiling ident_case v1.0.1
|
|
254
256
|
Compiling strsim v0.11.1
|
|
255
|
-
Compiling
|
|
257
|
+
Compiling fnv v1.0.7
|
|
256
258
|
Compiling version_check v0.9.5
|
|
259
|
+
Compiling typenum v1.19.0
|
|
257
260
|
Compiling autocfg v1.5.0
|
|
258
261
|
Compiling schemars v0.8.22
|
|
259
262
|
Compiling dyn-clone v1.0.20
|
|
260
263
|
Compiling cfg-if v1.0.4
|
|
261
|
-
Compiling data-encoding v2.9.0
|
|
262
264
|
Compiling cpufeatures v0.2.17
|
|
265
|
+
Compiling generic-array v0.14.9
|
|
266
|
+
Compiling data-encoding v2.9.0
|
|
263
267
|
Compiling escape-bytes v0.1.1
|
|
264
|
-
Compiling ethnum v1.5.2
|
|
265
268
|
Compiling either v1.15.0
|
|
269
|
+
Compiling ethnum v1.5.2
|
|
270
|
+
Compiling num-traits v0.2.19
|
|
266
271
|
Compiling semver v1.0.27
|
|
267
|
-
Compiling equivalent v1.0.2
|
|
268
272
|
Compiling thiserror v1.0.69
|
|
269
273
|
Compiling prettyplease v0.2.37
|
|
270
|
-
Compiling
|
|
274
|
+
Compiling equivalent v1.0.2
|
|
275
|
+
Compiling itertools v0.10.5
|
|
271
276
|
Compiling hashbrown v0.16.0
|
|
272
277
|
Compiling base64 v0.22.1
|
|
273
|
-
Compiling
|
|
278
|
+
Compiling rustc_version v0.4.1
|
|
274
279
|
Compiling static_assertions v1.1.0
|
|
275
|
-
Compiling itertools v0.10.5
|
|
276
280
|
Compiling heck v0.5.0
|
|
277
|
-
Compiling rustc_version v0.4.1
|
|
278
281
|
Compiling itertools v0.14.0
|
|
279
282
|
Compiling indexmap v2.12.0
|
|
280
|
-
Compiling
|
|
283
|
+
Compiling wasmparser v0.116.1
|
|
281
284
|
Compiling num-integer v0.1.46
|
|
282
285
|
Compiling crypto-common v0.1.6
|
|
283
286
|
Compiling block-buffer v0.10.4
|
|
284
|
-
Compiling wasmparser v0.116.1
|
|
285
|
-
Compiling digest v0.10.7
|
|
286
287
|
Compiling num-bigint v0.4.6
|
|
288
|
+
Compiling syn v2.0.108
|
|
289
|
+
Compiling digest v0.10.7
|
|
287
290
|
Compiling sha2 v0.10.9
|
|
288
291
|
Compiling darling_core v0.21.3
|
|
289
292
|
Compiling darling_core v0.20.11
|
|
@@ -310,14 +313,14 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
310
313
|
Compiling soroban-spec v23.4.0
|
|
311
314
|
Compiling soroban-env-macros v23.0.1
|
|
312
315
|
Compiling soroban-spec-rust v23.4.0
|
|
313
|
-
Compiling soroban-sdk-macros v23.4.0
|
|
314
316
|
Compiling soroban-env-guest v23.0.1
|
|
317
|
+
Compiling soroban-sdk-macros v23.4.0
|
|
315
318
|
Compiling utils v0.0.1 (/workspace/contracts/protocol/stellar/contracts/utils)
|
|
316
319
|
Compiling endpoint-v2 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/endpoint-v2)
|
|
317
|
-
Finished `release` profile [optimized] target(s) in
|
|
320
|
+
Finished `release` profile [optimized] target(s) in 12.21s
|
|
318
321
|
ℹ️ Build Summary:
|
|
319
322
|
Wasm File: target/wasm32v1-none/release/endpoint_v2.wasm
|
|
320
|
-
Wasm Hash:
|
|
323
|
+
Wasm Hash: d8479de0d00fa044fc1fc5e0a2d01a10831db9f1ff6416249d955767f15fe661
|
|
321
324
|
Exported Functions: 56 found
|
|
322
325
|
• __constructor
|
|
323
326
|
• burn
|
|
@@ -378,10 +381,10 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
378
381
|
✅ Build Complete
|
|
379
382
|
ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/message-libs/block-message-lib/Cargo.toml --crate-type=cdylib --target=wasm32v1-none --release
|
|
380
383
|
Compiling escape-bytes v0.1.1
|
|
381
|
-
Compiling static_assertions v1.1.0
|
|
382
384
|
Compiling ethnum v1.5.2
|
|
383
|
-
Compiling
|
|
385
|
+
Compiling static_assertions v1.1.0
|
|
384
386
|
Compiling num-traits v0.2.19
|
|
387
|
+
Compiling cfg-if v1.0.4
|
|
385
388
|
Compiling stellar-xdr v23.0.0
|
|
386
389
|
Compiling soroban-env-common v23.0.1
|
|
387
390
|
Compiling soroban-env-guest v23.0.1
|
|
@@ -389,10 +392,10 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
389
392
|
Compiling utils v0.0.1 (/workspace/contracts/protocol/stellar/contracts/utils)
|
|
390
393
|
Compiling endpoint-v2 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/endpoint-v2)
|
|
391
394
|
Compiling block-message-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/block-message-lib)
|
|
392
|
-
Finished `release` profile [optimized] target(s) in
|
|
395
|
+
Finished `release` profile [optimized] target(s) in 2.20s
|
|
393
396
|
ℹ️ Build Summary:
|
|
394
397
|
Wasm File: target/wasm32v1-none/release/block_message_lib.wasm
|
|
395
|
-
Wasm Hash:
|
|
398
|
+
Wasm Hash: 2654cb09d0abf3427103b15ea345e638f5189fbafe1baa203b45633970d31cce
|
|
396
399
|
Exported Functions: 7 found
|
|
397
400
|
• get_config
|
|
398
401
|
• is_supported_eid
|
|
@@ -405,10 +408,10 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
405
408
|
ℹ️ 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
|
|
406
409
|
Compiling message-lib-common v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/message-lib-common)
|
|
407
410
|
Compiling simple-message-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/simple-message-lib)
|
|
408
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
411
|
+
Finished `release` profile [optimized] target(s) in 0.63s
|
|
409
412
|
ℹ️ Build Summary:
|
|
410
413
|
Wasm File: target/wasm32v1-none/release/simple_message_lib.wasm
|
|
411
|
-
Wasm Hash:
|
|
414
|
+
Wasm Hash: 88a1a16cda152f6867300a4a0a2d12ac30780d7c217531dcba6df44daf89617a
|
|
412
415
|
Exported Functions: 27 found
|
|
413
416
|
• __constructor
|
|
414
417
|
• endpoint
|
|
@@ -440,10 +443,10 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
440
443
|
✅ Build Complete
|
|
441
444
|
ℹ️ 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
|
|
442
445
|
Compiling treasury v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/treasury)
|
|
443
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
446
|
+
Finished `release` profile [optimized] target(s) in 0.41s
|
|
444
447
|
ℹ️ Build Summary:
|
|
445
448
|
Wasm File: target/wasm32v1-none/release/treasury.wasm
|
|
446
|
-
Wasm Hash:
|
|
449
|
+
Wasm Hash: bbb0c41d59f23f9501e7419b6b830e5cfc30c11a746766f3113fbf1ab8fe7582
|
|
447
450
|
Exported Functions: 17 found
|
|
448
451
|
• __constructor
|
|
449
452
|
• extend_instance_ttl
|
|
@@ -465,10 +468,10 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
465
468
|
✅ Build Complete
|
|
466
469
|
ℹ️ 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
|
|
467
470
|
Compiling uln302 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/uln-302)
|
|
468
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
471
|
+
Finished `release` profile [optimized] target(s) in 0.92s
|
|
469
472
|
ℹ️ Build Summary:
|
|
470
473
|
Wasm File: target/wasm32v1-none/release/uln302.wasm
|
|
471
|
-
Wasm Hash:
|
|
474
|
+
Wasm Hash: 8e4d3d027368fe25b0383b08d812ec69992c20e3af6ce72cf55ee70fc489da70
|
|
472
475
|
Exported Functions: 34 found
|
|
473
476
|
• __constructor
|
|
474
477
|
• commit_verification
|
|
@@ -509,11 +512,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
509
512
|
Compiling oapp-macros v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapp-macros)
|
|
510
513
|
Compiling oapp v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp)
|
|
511
514
|
Compiling counter v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/counter)
|
|
512
|
-
Finished `release` profile [optimized] target(s) in 1.
|
|
515
|
+
Finished `release` profile [optimized] target(s) in 1.16s
|
|
513
516
|
ℹ️ Build Summary:
|
|
514
517
|
Wasm File: target/wasm32v1-none/release/counter.wasm
|
|
515
|
-
Wasm Hash:
|
|
516
|
-
Exported Functions:
|
|
518
|
+
Wasm Hash: 3755b9f5bd0d84c44158142f0e2bb1e638dfc086c74f706fe16211454c7b95a0
|
|
519
|
+
Exported Functions: 31 found
|
|
517
520
|
• __constructor
|
|
518
521
|
• allow_initialize_path
|
|
519
522
|
• combine_options
|
|
@@ -522,9 +525,12 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
522
525
|
• eid
|
|
523
526
|
• endpoint
|
|
524
527
|
• enforced_options
|
|
528
|
+
• extend_instance_ttl
|
|
529
|
+
• freeze_ttl_configs
|
|
525
530
|
• inbound_count
|
|
526
531
|
• increment
|
|
527
532
|
• is_compose_msg_sender
|
|
533
|
+
• is_ttl_configs_frozen
|
|
528
534
|
• lz_compose
|
|
529
535
|
• lz_receive
|
|
530
536
|
• next_nonce
|
|
@@ -538,16 +544,18 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
538
544
|
• set_enforced_options
|
|
539
545
|
• set_ordered_nonce
|
|
540
546
|
• set_peer
|
|
547
|
+
• set_ttl_configs
|
|
541
548
|
• skip_inbound_nonce
|
|
542
549
|
• transfer_ownership
|
|
550
|
+
• ttl_configs
|
|
543
551
|
✅ Build Complete
|
|
544
552
|
ℹ️ 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
|
|
545
553
|
Compiling worker v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/worker)
|
|
546
554
|
Compiling executor v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor)
|
|
547
|
-
Finished `release` profile [optimized] target(s) in 1.
|
|
555
|
+
Finished `release` profile [optimized] target(s) in 1.17s
|
|
548
556
|
ℹ️ Build Summary:
|
|
549
557
|
Wasm File: target/wasm32v1-none/release/executor.wasm
|
|
550
|
-
Wasm Hash:
|
|
558
|
+
Wasm Hash: 32c04a81afc2f18528290cc44aee971f76443ffa2dd429f26bf9672a06d80ded
|
|
551
559
|
Exported Functions: 43 found
|
|
552
560
|
• __check_auth
|
|
553
561
|
• __constructor
|
|
@@ -593,14 +601,14 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
593
601
|
• withdraw_token
|
|
594
602
|
• worker_fee_lib
|
|
595
603
|
✅ Build Complete
|
|
596
|
-
ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/oapps/oft-
|
|
604
|
+
ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/oapps/oft-std/Cargo.toml --crate-type=cdylib --target=wasm32v1-none --release
|
|
597
605
|
Compiling oft v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft)
|
|
598
|
-
Compiling oft-
|
|
599
|
-
Finished `release` profile [optimized] target(s) in
|
|
606
|
+
Compiling oft-std v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft-std)
|
|
607
|
+
Finished `release` profile [optimized] target(s) in 1.03s
|
|
600
608
|
ℹ️ Build Summary:
|
|
601
|
-
Wasm File: target/wasm32v1-none/release/
|
|
602
|
-
Wasm Hash:
|
|
603
|
-
Exported Functions:
|
|
609
|
+
Wasm File: target/wasm32v1-none/release/oft_std.wasm
|
|
610
|
+
Wasm Hash: cdd868aa0b1f73846ea17e6c18fa97afbcfb5b04bc048739466c3344a94a9c9c
|
|
611
|
+
Exported Functions: 30 found
|
|
604
612
|
• __constructor
|
|
605
613
|
• allow_initialize_path
|
|
606
614
|
• approval_required
|
|
@@ -608,7 +616,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
608
616
|
• decimal_conversion_rate
|
|
609
617
|
• endpoint
|
|
610
618
|
• enforced_options
|
|
619
|
+
• extend_instance_ttl
|
|
620
|
+
• freeze_ttl_configs
|
|
611
621
|
• is_compose_msg_sender
|
|
622
|
+
• is_lock_unlock
|
|
623
|
+
• is_ttl_configs_frozen
|
|
612
624
|
• lz_receive
|
|
613
625
|
• next_nonce
|
|
614
626
|
• oapp_version
|
|
@@ -622,16 +634,18 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
622
634
|
• set_delegate
|
|
623
635
|
• set_enforced_options
|
|
624
636
|
• set_peer
|
|
637
|
+
• set_ttl_configs
|
|
625
638
|
• shared_decimals
|
|
626
639
|
• token
|
|
627
640
|
• transfer_ownership
|
|
641
|
+
• ttl_configs
|
|
628
642
|
✅ Build Complete
|
|
629
643
|
ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/workers/dvn/Cargo.toml --crate-type=cdylib --target=wasm32v1-none --release
|
|
630
644
|
Compiling dvn v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/dvn)
|
|
631
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
645
|
+
Finished `release` profile [optimized] target(s) in 0.77s
|
|
632
646
|
ℹ️ Build Summary:
|
|
633
647
|
Wasm File: target/wasm32v1-none/release/dvn.wasm
|
|
634
|
-
Wasm Hash:
|
|
648
|
+
Wasm Hash: 48fcc97296179b4bdd90570a406b4601cb4f6bff0543b9d67b20615386baad74
|
|
635
649
|
Exported Functions: 48 found
|
|
636
650
|
• __check_auth
|
|
637
651
|
• __constructor
|
|
@@ -687,16 +701,16 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
687
701
|
Finished `release` profile [optimized] target(s) in 0.28s
|
|
688
702
|
ℹ️ Build Summary:
|
|
689
703
|
Wasm File: target/wasm32v1-none/release/dvn_fee_lib.wasm
|
|
690
|
-
Wasm Hash:
|
|
704
|
+
Wasm Hash: 45442b6e2a768d84e4e730608a771f8f283de2713856db563134271141e3a359
|
|
691
705
|
Exported Functions: 1 found
|
|
692
706
|
• get_fee
|
|
693
707
|
✅ Build Complete
|
|
694
708
|
ℹ️ 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
|
|
695
709
|
Compiling executor-fee-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor-fee-lib)
|
|
696
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
710
|
+
Finished `release` profile [optimized] target(s) in 0.33s
|
|
697
711
|
ℹ️ Build Summary:
|
|
698
712
|
Wasm File: target/wasm32v1-none/release/executor_fee_lib.wasm
|
|
699
|
-
Wasm Hash:
|
|
713
|
+
Wasm Hash: 92ba3c81caf390d4c371b3c7375299869c0f4888a2494b720dd4906bb6683052
|
|
700
714
|
Exported Functions: 2 found
|
|
701
715
|
• get_fee
|
|
702
716
|
• version
|
|
@@ -706,17 +720,49 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
706
720
|
Compiling message-lib-common v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/message-lib-common)
|
|
707
721
|
Compiling executor v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor)
|
|
708
722
|
Compiling executor-helper v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor-helper)
|
|
709
|
-
Finished `release` profile [optimized] target(s) in 1.
|
|
723
|
+
Finished `release` profile [optimized] target(s) in 1.04s
|
|
710
724
|
ℹ️ Build Summary:
|
|
711
725
|
Wasm File: target/wasm32v1-none/release/executor_helper.wasm
|
|
712
|
-
Wasm Hash:
|
|
726
|
+
Wasm Hash: 8b32c5ee01e8227593b19aed1195177ff27a7e89cd605442476699afa425127b
|
|
713
727
|
Exported Functions: 4 found
|
|
714
728
|
• compose
|
|
715
729
|
• execute
|
|
716
730
|
• native_drop
|
|
717
731
|
• native_drop_and_execute
|
|
718
732
|
✅ Build Complete
|
|
719
|
-
|
|
733
|
+
ℹ️ 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
|
|
734
|
+
Compiling price-feed v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/price-feed)
|
|
735
|
+
Finished `release` profile [optimized] target(s) in 0.53s
|
|
736
|
+
ℹ️ Build Summary:
|
|
737
|
+
Wasm File: target/wasm32v1-none/release/price_feed.wasm
|
|
738
|
+
Wasm Hash: 9f1877783111406185d310af9d6b53456ac5fa780f2226ebd1fdff00088e5da3
|
|
739
|
+
Exported Functions: 24 found
|
|
740
|
+
• __constructor
|
|
741
|
+
• arbitrum_compression_percent
|
|
742
|
+
• arbitrum_price_ext
|
|
743
|
+
• eid_to_model_type
|
|
744
|
+
• estimate_fee_by_eid
|
|
745
|
+
• extend_instance_ttl
|
|
746
|
+
• freeze_ttl_configs
|
|
747
|
+
• get_price
|
|
748
|
+
• get_price_ratio_denominator
|
|
749
|
+
• is_ttl_configs_frozen
|
|
750
|
+
• native_token_price_usd
|
|
751
|
+
• owner
|
|
752
|
+
• price_updater
|
|
753
|
+
• renounce_ownership
|
|
754
|
+
• set_arbitrum_compression_percent
|
|
755
|
+
• set_eid_to_model_type
|
|
756
|
+
• set_native_token_price_usd
|
|
757
|
+
• set_price
|
|
758
|
+
• set_price_for_arbitrum
|
|
759
|
+
• set_price_ratio_denominator
|
|
760
|
+
• set_price_updater
|
|
761
|
+
• set_ttl_configs
|
|
762
|
+
• transfer_ownership
|
|
763
|
+
• ttl_configs
|
|
764
|
+
✅ Build Complete
|
|
765
|
+
⏱️ stellar contract build: 37.227s
|
|
720
766
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
|
|
721
767
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-config
|
|
722
768
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup
|
|
@@ -738,80 +784,80 @@ sha256:2477334a514bfb7b9dd6b51d49e5c2ef2ca47d8f4fca31ca4209be570fec6423
|
|
|
738
784
|
🔒 Acquired lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
|
|
739
785
|
$ 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_23.1.4_patch_6 bash -c $'cargo run -p ts-bindings-gen'
|
|
740
786
|
Downloading crates ...
|
|
787
|
+
Downloaded anyhow v1.0.100
|
|
741
788
|
Downloaded block-buffer v0.9.0
|
|
789
|
+
Downloaded include_dir_macros v0.7.4
|
|
742
790
|
Downloaded include_dir v0.7.4
|
|
743
|
-
Downloaded anyhow v1.0.100
|
|
744
791
|
Downloaded opaque-debug v0.3.1
|
|
792
|
+
Downloaded digest v0.9.0
|
|
793
|
+
Downloaded heck v0.4.1
|
|
745
794
|
Downloaded glob v0.3.3
|
|
746
795
|
Downloaded sha2 v0.9.9
|
|
747
|
-
Downloaded digest v0.9.0
|
|
748
|
-
Downloaded include_dir_macros v0.7.4
|
|
749
|
-
Downloaded soroban-spec-typescript v23.1.4
|
|
750
796
|
Downloaded base64 v0.21.7
|
|
751
|
-
Downloaded
|
|
797
|
+
Downloaded soroban-spec-typescript v23.1.4
|
|
752
798
|
Compiling proc-macro2 v1.0.103
|
|
753
799
|
Compiling quote v1.0.41
|
|
754
800
|
Compiling unicode-ident v1.0.22
|
|
755
801
|
Compiling serde_json v1.0.145
|
|
756
802
|
Compiling typenum v1.19.0
|
|
757
|
-
Compiling version_check v0.9.5
|
|
758
803
|
Compiling serde_core v1.0.228
|
|
804
|
+
Compiling version_check v0.9.5
|
|
759
805
|
Compiling serde v1.0.228
|
|
760
|
-
Compiling itoa v1.0.15
|
|
761
806
|
Compiling ryu v1.0.20
|
|
807
|
+
Compiling itoa v1.0.15
|
|
762
808
|
Compiling memchr v2.7.6
|
|
763
|
-
Compiling fnv v1.0.7
|
|
764
809
|
Compiling ident_case v1.0.1
|
|
810
|
+
Compiling fnv v1.0.7
|
|
765
811
|
Compiling strsim v0.11.1
|
|
812
|
+
Compiling generic-array v0.14.9
|
|
766
813
|
Compiling schemars v0.8.22
|
|
767
814
|
Compiling cfg-if v1.0.4
|
|
768
|
-
Compiling cpufeatures v0.2.17
|
|
769
815
|
Compiling dyn-clone v1.0.20
|
|
770
|
-
Compiling
|
|
771
|
-
Compiling data-encoding v2.9.0
|
|
816
|
+
Compiling cpufeatures v0.2.17
|
|
772
817
|
Compiling equivalent v1.0.2
|
|
773
818
|
Compiling thiserror v1.0.69
|
|
774
|
-
Compiling
|
|
775
|
-
Compiling
|
|
819
|
+
Compiling hashbrown v0.16.0
|
|
820
|
+
Compiling data-encoding v2.9.0
|
|
776
821
|
Compiling ethnum v1.5.2
|
|
777
|
-
Compiling semver v1.0.27
|
|
778
822
|
Compiling escape-bytes v0.1.1
|
|
823
|
+
Compiling semver v1.0.27
|
|
779
824
|
Compiling base64 v0.22.1
|
|
780
|
-
Compiling
|
|
781
|
-
Compiling glob v0.3.3
|
|
825
|
+
Compiling prettyplease v0.2.37
|
|
782
826
|
Compiling either v1.15.0
|
|
783
|
-
Compiling
|
|
784
|
-
Compiling itertools v0.10.5
|
|
785
|
-
Compiling heck v0.4.1
|
|
827
|
+
Compiling glob v0.3.3
|
|
786
828
|
Compiling indexmap v2.12.0
|
|
829
|
+
Compiling anyhow v1.0.100
|
|
830
|
+
Compiling opaque-debug v0.3.1
|
|
787
831
|
Compiling base64 v0.21.7
|
|
832
|
+
Compiling heck v0.4.1
|
|
833
|
+
Compiling itertools v0.10.5
|
|
834
|
+
Compiling wasmparser v0.116.1
|
|
788
835
|
Compiling syn v2.0.108
|
|
836
|
+
Compiling include_dir_macros v0.7.4
|
|
789
837
|
Compiling block-buffer v0.10.4
|
|
790
838
|
Compiling crypto-common v0.1.6
|
|
791
839
|
Compiling digest v0.9.0
|
|
792
840
|
Compiling block-buffer v0.9.0
|
|
793
841
|
Compiling digest v0.10.7
|
|
794
842
|
Compiling sha2 v0.9.9
|
|
795
|
-
Compiling wasmparser v0.116.1
|
|
796
|
-
Compiling include_dir_macros v0.7.4
|
|
797
843
|
Compiling sha2 v0.10.9
|
|
798
|
-
Compiling include_dir v0.7.4
|
|
799
844
|
Compiling darling_core v0.21.3
|
|
800
845
|
Compiling serde_derive v1.0.228
|
|
801
846
|
Compiling cfg_eval v0.1.2
|
|
802
847
|
Compiling thiserror-impl v1.0.69
|
|
848
|
+
Compiling include_dir v0.7.4
|
|
849
|
+
Compiling darling_macro v0.21.3
|
|
850
|
+
Compiling darling v0.21.3
|
|
851
|
+
Compiling serde_with_macros v3.15.1
|
|
803
852
|
Compiling crate-git-revision v0.0.6
|
|
804
853
|
Compiling stellar-strkey v0.0.13
|
|
805
854
|
Compiling stellar-xdr v23.0.0
|
|
806
855
|
Compiling hex v0.4.3
|
|
807
|
-
Compiling darling_macro v0.21.3
|
|
808
|
-
Compiling darling v0.21.3
|
|
809
|
-
Compiling serde_with_macros v3.15.1
|
|
810
856
|
Compiling serde_with v3.15.1
|
|
811
857
|
Compiling soroban-spec v23.4.0
|
|
812
858
|
Compiling soroban-spec-typescript v23.1.4
|
|
813
859
|
Compiling ts-bindings-gen v0.0.1 (/workspace/contracts/protocol/stellar/tools/ts-bindings-gen)
|
|
814
|
-
Finished `dev` profile [unoptimized + debuginfo] target(s) in
|
|
860
|
+
Finished `dev` profile [unoptimized + debuginfo] target(s) in 7.33s
|
|
815
861
|
Running `target/debug/ts-bindings-gen`
|
|
816
862
|
🚀 Generating TypeScript bindings for Stellar contracts...
|
|
817
863
|
|
|
@@ -862,7 +908,7 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
862
908
|
- counter.ts
|
|
863
909
|
- executor.ts
|
|
864
910
|
- executor_helper.ts
|
|
865
|
-
⏱️ bash -c cargo run -p ts-bindings-gen:
|
|
911
|
+
⏱️ bash -c cargo run -p ts-bindings-gen: 7.699s
|
|
866
912
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
|
|
867
913
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-config
|
|
868
914
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup
|