@layerzerolabs/protocol-stellar-v2 0.2.19 → 0.2.20
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 -222
- package/.turbo/turbo-lint.log +77 -70
- package/.turbo/turbo-test.log +1385 -1221
- package/Cargo.lock +13 -3
- package/Cargo.toml +2 -0
- package/contracts/ERROR_SPEC.md +8 -1
- package/contracts/common-macros/src/contract_ttl.rs +18 -7
- package/contracts/common-macros/src/lib.rs +4 -4
- package/contracts/common-macros/src/tests/contract_ttl.rs +1 -1
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__contract_ttl__snapshot_generated_contractimpl_code.snap +2 -1
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__upgradeable__snapshot_generated_upgradeable_code.snap +7 -12
- package/contracts/common-macros/src/upgradeable.rs +15 -21
- package/contracts/message-libs/uln-302/src/events.rs +4 -0
- package/contracts/message-libs/uln-302/src/send_uln.rs +22 -6
- package/contracts/message-libs/uln-302/src/tests/send_uln302/send.rs +38 -64
- package/contracts/oapps/counter/Cargo.toml +1 -0
- package/contracts/oapps/counter/integration_tests/setup_uln.rs +1 -1
- package/contracts/oapps/oapp/src/tests/test_oapp_core.rs +113 -65
- package/contracts/oapps/oapp/src/tests/test_oapp_options_type3.rs +111 -82
- package/contracts/oapps/oapp/src/tests/test_oapp_receiver.rs +293 -65
- package/contracts/oapps/oapp/src/tests/test_oapp_sender.rs +331 -56
- package/contracts/oapps/oft/src/extensions/oft_fee.rs +18 -2
- package/contracts/oapps/oft/src/extensions/pausable.rs +19 -4
- package/contracts/oapps/oft/src/extensions/rate_limiter.rs +52 -28
- package/contracts/oapps/oft/src/oft.rs +29 -41
- package/contracts/oapps/oft/src/oft_types/mint_burn.rs +3 -25
- package/contracts/oapps/oft-core/integration-tests/setup.rs +2 -2
- package/contracts/oapps/oft-core/src/oft_core.rs +247 -207
- package/contracts/oapps/oft-core/src/tests/test_utils.rs +4 -4
- package/contracts/upgrader/src/lib.rs +30 -57
- package/contracts/upgrader/src/tests/test_data/test_upgradeable_contract1.wasm +0 -0
- package/contracts/upgrader/src/tests/test_data/test_upgradeable_contract2.wasm +0 -0
- package/contracts/upgrader/src/tests/test_upgrader.rs +44 -35
- package/contracts/utils/src/buffer_reader.rs +1 -0
- package/contracts/utils/src/errors.rs +3 -1
- package/contracts/utils/src/tests/upgradeable.rs +372 -175
- package/contracts/utils/src/ttl_configurable.rs +3 -3
- package/contracts/utils/src/upgradeable.rs +48 -23
- package/contracts/workers/dvn/Cargo.toml +1 -0
- package/contracts/workers/dvn/src/auth.rs +12 -42
- package/contracts/workers/dvn/src/dvn.rs +16 -31
- package/contracts/workers/dvn/src/errors.rs +0 -1
- package/contracts/workers/dvn/src/interfaces/dvn.rs +35 -0
- package/contracts/workers/dvn/src/lib.rs +4 -3
- package/contracts/workers/dvn/src/tests/auth.rs +1 -1
- package/contracts/workers/dvn/src/tests/dvn.rs +19 -15
- package/contracts/workers/dvn/src/tests/multisig/set_threshold.rs +2 -4
- package/contracts/workers/dvn/src/tests/multisig/verify_signatures.rs +1 -3
- package/contracts/workers/dvn/src/tests/setup.rs +5 -9
- package/contracts/workers/dvn-fee-lib/Cargo.toml +1 -1
- package/contracts/workers/dvn-fee-lib/src/dvn_fee_lib.rs +3 -5
- package/contracts/workers/dvn-fee-lib/src/tests/dvn_fee_lib.rs +2 -3
- package/contracts/workers/executor/Cargo.toml +1 -0
- package/contracts/workers/executor/src/executor.rs +15 -26
- package/contracts/workers/executor-fee-lib/Cargo.toml +2 -1
- package/contracts/workers/executor-fee-lib/src/executor_fee_lib.rs +63 -5
- package/contracts/workers/executor-fee-lib/src/executor_option.rs +28 -1
- package/contracts/workers/executor-fee-lib/src/lib.rs +3 -0
- package/contracts/workers/executor-fee-lib/src/tests/executor_fee_lib.rs +701 -0
- package/contracts/workers/executor-fee-lib/src/tests/executor_option.rs +370 -0
- package/contracts/workers/executor-fee-lib/src/tests/mod.rs +4 -0
- package/contracts/workers/executor-fee-lib/src/tests/setup.rs +60 -0
- package/contracts/workers/executor-helper/src/lib.rs +3 -0
- package/contracts/workers/executor-helper/src/tests/executor_helper.rs +184 -0
- package/contracts/workers/executor-helper/src/tests/mod.rs +2 -0
- package/contracts/workers/executor-helper/src/tests/setup.rs +366 -0
- package/contracts/workers/fee-lib-interfaces/Cargo.toml +14 -0
- package/contracts/workers/{worker/src/interfaces/mod.rs → fee-lib-interfaces/src/lib.rs} +4 -3
- package/contracts/workers/price-feed/Cargo.toml +2 -1
- package/contracts/workers/price-feed/src/events.rs +1 -1
- package/contracts/workers/price-feed/src/lib.rs +3 -0
- package/contracts/workers/price-feed/src/price_feed.rs +6 -12
- package/contracts/workers/price-feed/src/storage.rs +1 -1
- package/contracts/workers/price-feed/src/tests/mod.rs +2 -0
- package/contracts/workers/price-feed/src/tests/price_feed.rs +869 -0
- package/contracts/workers/price-feed/src/tests/setup.rs +70 -0
- package/contracts/workers/price-feed/src/types.rs +1 -1
- package/contracts/workers/worker/src/errors.rs +0 -3
- package/contracts/workers/worker/src/lib.rs +0 -2
- package/contracts/workers/worker/src/storage.rs +32 -29
- package/contracts/workers/worker/src/tests/setup.rs +1 -7
- package/contracts/workers/worker/src/tests/worker.rs +50 -42
- package/contracts/workers/worker/src/worker.rs +49 -58
- package/package.json +3 -3
- package/sdk/.turbo/turbo-test.log +220 -218
- package/sdk/dist/generated/bml.d.ts +12 -4
- package/sdk/dist/generated/bml.js +8 -6
- package/sdk/dist/generated/counter.d.ts +12 -4
- package/sdk/dist/generated/counter.js +8 -6
- package/sdk/dist/generated/dvn.d.ts +404 -365
- package/sdk/dist/generated/dvn.js +55 -53
- package/sdk/dist/generated/dvn_fee_lib.d.ts +224 -268
- package/sdk/dist/generated/dvn_fee_lib.js +22 -53
- package/sdk/dist/generated/endpoint.d.ts +12 -4
- package/sdk/dist/generated/endpoint.js +8 -6
- package/sdk/dist/generated/executor.d.ts +370 -326
- package/sdk/dist/generated/executor.js +47 -44
- package/sdk/dist/generated/executor_fee_lib.d.ts +258 -302
- package/sdk/dist/generated/executor_fee_lib.js +21 -52
- package/sdk/dist/generated/executor_helper.d.ts +26 -190
- package/sdk/dist/generated/executor_helper.js +22 -27
- package/sdk/dist/generated/layerzero_view.d.ts +1271 -0
- package/sdk/dist/generated/layerzero_view.js +294 -0
- package/sdk/dist/generated/oft.d.ts +49 -40
- package/sdk/dist/generated/oft.js +25 -23
- package/sdk/dist/generated/price_feed.d.ts +225 -269
- package/sdk/dist/generated/price_feed.js +22 -53
- package/sdk/dist/generated/sml.d.ts +12 -4
- package/sdk/dist/generated/sml.js +8 -6
- package/sdk/dist/generated/treasury.d.ts +12 -4
- package/sdk/dist/generated/treasury.js +8 -6
- package/sdk/dist/generated/uln302.d.ts +12 -4
- package/sdk/dist/generated/uln302.js +10 -8
- package/sdk/dist/generated/upgrader.d.ts +189 -18
- package/sdk/dist/generated/upgrader.js +84 -4
- package/sdk/dist/index.d.ts +1 -0
- package/sdk/dist/index.js +2 -0
- package/sdk/package.json +1 -1
- package/sdk/src/index.ts +3 -0
- package/sdk/test/oft-sml.test.ts +4 -4
- package/sdk/test/upgrader.test.ts +2 -3
- package/tools/ts-bindings-gen/src/main.rs +2 -1
- /package/contracts/workers/{worker/src/interfaces → fee-lib-interfaces/src}/dvn_fee_lib.rs +0 -0
- /package/contracts/workers/{worker/src/interfaces → fee-lib-interfaces/src}/executor_fee_lib.rs +0 -0
- /package/contracts/workers/{worker/src/interfaces → fee-lib-interfaces/src}/price_feed.rs +0 -0
package/.turbo/turbo-build.log
CHANGED
|
@@ -34,36 +34,37 @@ f83e34e44849: Pulling fs layer
|
|
|
34
34
|
a7d3f750d5ec: Waiting
|
|
35
35
|
8a4f031cd7ce: Waiting
|
|
36
36
|
2ff845d4f468: Waiting
|
|
37
|
-
2c1ce468d9f3: Waiting
|
|
38
|
-
1b86cc28e881: Waiting
|
|
39
37
|
f83e34e44849: Waiting
|
|
40
|
-
8bc2eeec2bb3: Waiting
|
|
41
38
|
2965c99ac5df: Waiting
|
|
42
|
-
66f4137c2c7c: Waiting
|
|
43
39
|
889cdda75b95: Waiting
|
|
40
|
+
8bc2eeec2bb3: Waiting
|
|
41
|
+
66f4137c2c7c: Waiting
|
|
42
|
+
2c1ce468d9f3: Waiting
|
|
44
43
|
f6bd9104d248: Verifying Checksum
|
|
45
44
|
f6bd9104d248: Download complete
|
|
45
|
+
f6bd9104d248: Pull complete
|
|
46
46
|
889cdda75b95: Verifying Checksum
|
|
47
47
|
889cdda75b95: Download complete
|
|
48
|
-
f6bd9104d248: Pull complete
|
|
49
48
|
a7d3f750d5ec: Verifying Checksum
|
|
50
49
|
a7d3f750d5ec: Download complete
|
|
51
50
|
e9886d99af76: Verifying Checksum
|
|
52
51
|
e9886d99af76: Download complete
|
|
52
|
+
8a4f031cd7ce: Verifying Checksum
|
|
53
53
|
8a4f031cd7ce: Download complete
|
|
54
|
-
4617420e017b: Download complete
|
|
55
54
|
2c1ce468d9f3: Download complete
|
|
56
|
-
|
|
55
|
+
1b86cc28e881: Verifying Checksum
|
|
56
|
+
1b86cc28e881: Download complete
|
|
57
|
+
2ff845d4f468: Verifying Checksum
|
|
58
|
+
2ff845d4f468: Download complete
|
|
57
59
|
f83e34e44849: Download complete
|
|
58
60
|
8bc2eeec2bb3: Verifying Checksum
|
|
59
61
|
8bc2eeec2bb3: Download complete
|
|
60
|
-
|
|
61
|
-
1b86cc28e881: Download complete
|
|
62
|
+
2965c99ac5df: Verifying Checksum
|
|
62
63
|
2965c99ac5df: Download complete
|
|
63
64
|
66f4137c2c7c: Verifying Checksum
|
|
64
65
|
66f4137c2c7c: Download complete
|
|
65
|
-
|
|
66
|
-
|
|
66
|
+
4617420e017b: Verifying Checksum
|
|
67
|
+
4617420e017b: Download complete
|
|
67
68
|
4617420e017b: Pull complete
|
|
68
69
|
e9886d99af76: Pull complete
|
|
69
70
|
889cdda75b95: Pull complete
|
|
@@ -91,212 +92,212 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
91
92
|
Updating git repository `https://github.com/OpenZeppelin/stellar-contracts.git`
|
|
92
93
|
Downloading crates ...
|
|
93
94
|
Downloaded ark-serialize v0.4.2
|
|
94
|
-
Downloaded ark-ec v0.4.2
|
|
95
|
-
Downloaded ark-ff-asm v0.4.2
|
|
96
95
|
Downloaded ark-ff-macros v0.4.2
|
|
97
|
-
Downloaded
|
|
98
|
-
Downloaded
|
|
99
|
-
Downloaded
|
|
100
|
-
Downloaded
|
|
101
|
-
Downloaded
|
|
102
|
-
Downloaded
|
|
96
|
+
Downloaded ark-ff-asm v0.4.2
|
|
97
|
+
Downloaded dtor v0.1.1
|
|
98
|
+
Downloaded num-derive v0.4.2
|
|
99
|
+
Downloaded ident_case v1.0.1
|
|
100
|
+
Downloaded arbitrary v1.3.2
|
|
101
|
+
Downloaded ecdsa v0.16.9
|
|
103
102
|
Downloaded ark-poly v0.4.2
|
|
104
|
-
Downloaded derivative v2.2.0
|
|
105
|
-
Downloaded ref-cast-impl v1.0.25
|
|
106
|
-
Downloaded rfc6979 v0.4.0
|
|
107
103
|
Downloaded rand_core v0.6.4
|
|
108
|
-
Downloaded
|
|
109
|
-
Downloaded
|
|
104
|
+
Downloaded either v1.15.0
|
|
105
|
+
Downloaded ethnum v1.5.2
|
|
106
|
+
Downloaded sec1 v0.7.3
|
|
107
|
+
Downloaded rustc_version v0.4.1
|
|
108
|
+
Downloaded signature v2.2.0
|
|
109
|
+
Downloaded ryu v1.0.20
|
|
110
|
+
Downloaded visibility v0.1.1
|
|
110
111
|
Downloaded zeroize_derive v1.4.2
|
|
111
|
-
Downloaded
|
|
112
|
-
Downloaded soroban-ledger-snapshot v23.4.0
|
|
112
|
+
Downloaded schemars v0.8.22
|
|
113
113
|
Downloaded zeroize v1.8.2
|
|
114
|
-
Downloaded wasmi_arena v0.4.1
|
|
115
|
-
Downloaded thiserror v1.0.69
|
|
116
114
|
Downloaded wasmi_core v0.13.0
|
|
117
115
|
Downloaded unicode-ident v1.0.22
|
|
118
|
-
Downloaded spin v0.9.8
|
|
119
116
|
Downloaded typenum v1.19.0
|
|
120
|
-
Downloaded
|
|
121
|
-
Downloaded serde_json v1.0.145
|
|
117
|
+
Downloaded serde v1.0.228
|
|
122
118
|
Downloaded wasmparser-nostd v0.100.2
|
|
123
119
|
Downloaded time v0.3.44
|
|
120
|
+
Downloaded soroban-sdk v23.4.0
|
|
124
121
|
Downloaded wasmparser v0.116.1
|
|
125
|
-
Downloaded
|
|
122
|
+
Downloaded memchr v2.7.6
|
|
126
123
|
Downloaded serde_with v3.15.1
|
|
127
|
-
Downloaded
|
|
124
|
+
Downloaded hashbrown v0.13.2
|
|
128
125
|
Downloaded zerocopy v0.8.27
|
|
126
|
+
Downloaded chrono v0.4.42
|
|
129
127
|
Downloaded syn v1.0.109
|
|
128
|
+
Downloaded hashbrown v0.16.0
|
|
130
129
|
Downloaded syn v2.0.108
|
|
131
|
-
Downloaded soroban-
|
|
130
|
+
Downloaded soroban-wasmi v0.31.1-soroban.20.0.1
|
|
131
|
+
Downloaded itertools v0.10.5
|
|
132
|
+
Downloaded serde_json v1.0.145
|
|
133
|
+
Downloaded rand v0.8.5
|
|
134
|
+
Downloaded der v0.7.10
|
|
135
|
+
Downloaded soroban-env-host v23.0.1
|
|
136
|
+
Downloaded keccak v0.1.5
|
|
137
|
+
Downloaded proc-macro2 v1.0.103
|
|
138
|
+
Downloaded num-conv v0.1.0
|
|
139
|
+
Downloaded soroban-env-common v23.0.1
|
|
132
140
|
Downloaded schemars v1.0.5
|
|
141
|
+
Downloaded serde_with_macros v3.15.1
|
|
133
142
|
Downloaded serde_derive v1.0.228
|
|
134
|
-
Downloaded
|
|
135
|
-
Downloaded
|
|
136
|
-
Downloaded
|
|
137
|
-
Downloaded
|
|
138
|
-
Downloaded
|
|
139
|
-
Downloaded soroban-env-host v23.0.1
|
|
143
|
+
Downloaded ark-std v0.4.0
|
|
144
|
+
Downloaded stellar-strkey v0.0.13
|
|
145
|
+
Downloaded spki v0.7.3
|
|
146
|
+
Downloaded spin v0.9.8
|
|
147
|
+
Downloaded soroban-spec v23.4.0
|
|
140
148
|
Downloaded soroban-sdk-macros v23.4.0
|
|
149
|
+
Downloaded soroban-env-macros v23.0.1
|
|
141
150
|
Downloaded smallvec v1.15.1
|
|
142
|
-
Downloaded
|
|
143
|
-
Downloaded
|
|
144
|
-
Downloaded
|
|
151
|
+
Downloaded sha2 v0.10.9
|
|
152
|
+
Downloaded serde_core v1.0.228
|
|
153
|
+
Downloaded schemars v0.9.0
|
|
154
|
+
Downloaded indexmap v2.12.0
|
|
155
|
+
Downloaded hashbrown v0.12.3
|
|
156
|
+
Downloaded ark-serialize-derive v0.4.2
|
|
157
|
+
Downloaded version_check v0.9.5
|
|
145
158
|
Downloaded time-macros v0.2.24
|
|
146
159
|
Downloaded time-core v0.1.6
|
|
147
|
-
Downloaded stellar-strkey v0.0.13
|
|
148
|
-
Downloaded static_assertions v1.1.0
|
|
149
|
-
Downloaded spki v0.7.3
|
|
150
|
-
Downloaded sha2 v0.10.9
|
|
151
|
-
Downloaded der v0.7.10
|
|
152
|
-
Downloaded strsim v0.11.1
|
|
153
160
|
Downloaded thiserror-impl v1.0.69
|
|
154
|
-
Downloaded soroban-env-macros v23.0.1
|
|
155
|
-
Downloaded soroban-env-guest v23.0.1
|
|
156
|
-
Downloaded libc v0.2.177
|
|
157
|
-
Downloaded soroban-builtin-sdk-macros v23.0.1
|
|
158
|
-
Downloaded rand v0.8.5
|
|
159
|
-
Downloaded num-bigint v0.4.6
|
|
160
|
-
Downloaded chrono v0.4.42
|
|
161
|
-
Downloaded soroban-spec-rust v23.4.0
|
|
162
|
-
Downloaded semver v1.0.27
|
|
163
161
|
Downloaded sha3 v0.10.8
|
|
164
|
-
Downloaded
|
|
165
|
-
Downloaded
|
|
166
|
-
Downloaded
|
|
167
|
-
Downloaded
|
|
168
|
-
Downloaded prettyplease v0.2.37
|
|
169
|
-
Downloaded hashbrown v0.12.3
|
|
170
|
-
Downloaded ed25519-dalek v2.2.0
|
|
171
|
-
Downloaded darling v0.20.11
|
|
172
|
-
Downloaded visibility v0.1.1
|
|
173
|
-
Downloaded version_check v0.9.5
|
|
174
|
-
Downloaded subtle v2.6.1
|
|
175
|
-
Downloaded soroban-spec v23.4.0
|
|
176
|
-
Downloaded schemars v0.8.22
|
|
177
|
-
Downloaded ryu v1.0.20
|
|
162
|
+
Downloaded thiserror v1.0.69
|
|
163
|
+
Downloaded static_assertions v1.1.0
|
|
164
|
+
Downloaded soroban-spec-rust v23.4.0
|
|
165
|
+
Downloaded soroban-ledger-snapshot v23.4.0
|
|
178
166
|
Downloaded p256 v0.13.2
|
|
179
|
-
Downloaded
|
|
180
|
-
Downloaded
|
|
181
|
-
Downloaded ethnum v1.5.2
|
|
182
|
-
Downloaded elliptic-curve v0.13.8
|
|
183
|
-
Downloaded darling_core v0.20.11
|
|
184
|
-
Downloaded darling v0.21.3
|
|
185
|
-
Downloaded ark-std v0.4.0
|
|
186
|
-
Downloaded once_cell v1.21.3
|
|
187
|
-
Downloaded memchr v2.7.6
|
|
188
|
-
Downloaded k256 v0.13.4
|
|
189
|
-
Downloaded indexmap v2.12.0
|
|
190
|
-
Downloaded iana-time-zone v0.1.64
|
|
191
|
-
Downloaded group v0.13.0
|
|
167
|
+
Downloaded libm v0.2.15
|
|
168
|
+
Downloaded hex-literal v0.4.1
|
|
192
169
|
Downloaded generic-array v0.14.9
|
|
193
170
|
Downloaded ff v0.13.1
|
|
194
|
-
Downloaded
|
|
195
|
-
Downloaded
|
|
196
|
-
Downloaded
|
|
197
|
-
Downloaded
|
|
198
|
-
Downloaded digest v0.10.7
|
|
199
|
-
Downloaded ctor-proc-macro v0.0.6
|
|
200
|
-
Downloaded crypto-common v0.1.6
|
|
201
|
-
Downloaded crypto-bigint v0.5.5
|
|
202
|
-
Downloaded const-oid v0.9.6
|
|
203
|
-
Downloaded base64ct v1.8.0
|
|
204
|
-
Downloaded rand_chacha v0.3.1
|
|
205
|
-
Downloaded primeorder v0.13.6
|
|
206
|
-
Downloaded ppv-lite86 v0.2.21
|
|
207
|
-
Downloaded pkcs8 v0.10.2
|
|
171
|
+
Downloaded escape-bytes v0.1.1
|
|
172
|
+
Downloaded darling_core v0.20.11
|
|
173
|
+
Downloaded quote v1.0.41
|
|
174
|
+
Downloaded powerfmt v0.2.0
|
|
208
175
|
Downloaded paste v1.0.15
|
|
209
176
|
Downloaded num-integer v0.1.46
|
|
210
|
-
Downloaded
|
|
211
|
-
Downloaded
|
|
212
|
-
Downloaded
|
|
213
|
-
Downloaded
|
|
177
|
+
Downloaded num-bigint v0.4.6
|
|
178
|
+
Downloaded libc v0.2.177
|
|
179
|
+
Downloaded k256 v0.13.4
|
|
180
|
+
Downloaded darling_macro v0.21.3
|
|
181
|
+
Downloaded block-buffer v0.10.4
|
|
182
|
+
Downloaded base16ct v0.2.0
|
|
183
|
+
Downloaded wasmi_arena v0.4.1
|
|
184
|
+
Downloaded subtle v2.6.1
|
|
185
|
+
Downloaded strsim v0.11.1
|
|
186
|
+
Downloaded soroban-env-guest v23.0.1
|
|
187
|
+
Downloaded pkcs8 v0.10.2
|
|
188
|
+
Downloaded indexmap v1.9.3
|
|
189
|
+
Downloaded cfg_eval v0.1.2
|
|
214
190
|
Downloaded base64 v0.22.1
|
|
215
|
-
Downloaded
|
|
216
|
-
Downloaded
|
|
191
|
+
Downloaded soroban-builtin-sdk-macros v23.0.1
|
|
192
|
+
Downloaded indexmap-nostd v0.4.0
|
|
193
|
+
Downloaded iana-time-zone v0.1.64
|
|
194
|
+
Downloaded hmac v0.12.1
|
|
217
195
|
Downloaded hex v0.4.3
|
|
218
|
-
Downloaded
|
|
219
|
-
Downloaded
|
|
220
|
-
Downloaded
|
|
221
|
-
Downloaded ctor v0.5.0
|
|
222
|
-
Downloaded crate-git-revision v0.0.6
|
|
223
|
-
Downloaded block-buffer v0.10.4
|
|
196
|
+
Downloaded getrandom v0.2.16
|
|
197
|
+
Downloaded derive_arbitrary v1.3.2
|
|
198
|
+
Downloaded const-oid v0.9.6
|
|
224
199
|
Downloaded autocfg v1.5.0
|
|
225
|
-
Downloaded
|
|
226
|
-
Downloaded ark-ff v0.4.2
|
|
227
|
-
Downloaded proc-macro2 v1.0.103
|
|
200
|
+
Downloaded rfc6979 v0.4.0
|
|
228
201
|
Downloaded num-traits v0.2.19
|
|
229
|
-
Downloaded num-derive v0.4.2
|
|
230
202
|
Downloaded macro-string v0.1.4
|
|
231
|
-
Downloaded keccak v0.1.5
|
|
232
203
|
Downloaded itoa v1.0.15
|
|
233
|
-
Downloaded escape-bytes v0.1.1
|
|
234
|
-
Downloaded derive_arbitrary v1.3.2
|
|
235
|
-
Downloaded data-encoding v2.9.0
|
|
236
|
-
Downloaded darling_macro v0.21.3
|
|
237
|
-
Downloaded cfg-if v1.0.4
|
|
238
204
|
Downloaded bytes-lit v0.0.5
|
|
239
|
-
Downloaded
|
|
240
|
-
Downloaded
|
|
241
|
-
Downloaded darling_macro v0.20.11
|
|
242
|
-
Downloaded dtor-proc-macro v0.0.6
|
|
205
|
+
Downloaded semver v1.0.27
|
|
206
|
+
Downloaded ark-bls12-381 v0.4.0
|
|
243
207
|
Downloaded ref-cast v1.0.25
|
|
208
|
+
Downloaded rand_chacha v0.3.1
|
|
209
|
+
Downloaded prettyplease v0.2.37
|
|
210
|
+
Downloaded ppv-lite86 v0.2.21
|
|
211
|
+
Downloaded once_cell v1.21.3
|
|
212
|
+
Downloaded heck v0.5.0
|
|
213
|
+
Downloaded group v0.13.0
|
|
214
|
+
Downloaded fnv v1.0.7
|
|
215
|
+
Downloaded ed25519-dalek v2.2.0
|
|
216
|
+
Downloaded dyn-clone v1.0.20
|
|
217
|
+
Downloaded dtor-proc-macro v0.0.6
|
|
218
|
+
Downloaded digest v0.10.7
|
|
219
|
+
Downloaded darling v0.20.11
|
|
220
|
+
Downloaded curve25519-dalek v4.1.3
|
|
221
|
+
Downloaded crypto-bigint v0.5.5
|
|
222
|
+
Downloaded cpufeatures v0.2.17
|
|
223
|
+
Downloaded base64ct v1.8.0
|
|
224
|
+
Downloaded ref-cast-impl v1.0.25
|
|
225
|
+
Downloaded primeorder v0.13.6
|
|
226
|
+
Downloaded itertools v0.14.0
|
|
227
|
+
Downloaded equivalent v1.0.2
|
|
228
|
+
Downloaded derivative v2.2.0
|
|
229
|
+
Downloaded data-encoding v2.9.0
|
|
230
|
+
Downloaded ctor-proc-macro v0.0.6
|
|
231
|
+
Downloaded elliptic-curve v0.13.8
|
|
232
|
+
Downloaded darling v0.21.3
|
|
233
|
+
Downloaded ed25519 v2.2.3
|
|
234
|
+
Downloaded darling_macro v0.20.11
|
|
235
|
+
Downloaded darling_core v0.21.3
|
|
236
|
+
Downloaded ctor v0.5.0
|
|
237
|
+
Downloaded ark-ff v0.4.2
|
|
238
|
+
Downloaded ark-ec v0.4.2
|
|
239
|
+
Downloaded downcast-rs v1.2.1
|
|
244
240
|
Downloaded stellar-xdr v23.0.0
|
|
245
|
-
Downloaded
|
|
241
|
+
Downloaded curve25519-dalek-derive v0.1.1
|
|
242
|
+
Downloaded crypto-common v0.1.6
|
|
243
|
+
Downloaded crate-git-revision v0.0.6
|
|
244
|
+
Downloaded ahash v0.8.12
|
|
245
|
+
Downloaded deranged v0.5.5
|
|
246
|
+
Downloaded cfg-if v1.0.4
|
|
246
247
|
Compiling proc-macro2 v1.0.103
|
|
247
248
|
Compiling quote v1.0.41
|
|
248
249
|
Compiling unicode-ident v1.0.22
|
|
249
250
|
Compiling serde_core v1.0.228
|
|
250
251
|
Compiling serde v1.0.228
|
|
251
252
|
Compiling serde_json v1.0.145
|
|
252
|
-
Compiling ryu v1.0.20
|
|
253
253
|
Compiling itoa v1.0.15
|
|
254
254
|
Compiling memchr v2.7.6
|
|
255
|
+
Compiling ryu v1.0.20
|
|
255
256
|
Compiling strsim v0.11.1
|
|
256
257
|
Compiling ident_case v1.0.1
|
|
257
258
|
Compiling fnv v1.0.7
|
|
258
|
-
Compiling version_check v0.9.5
|
|
259
259
|
Compiling typenum v1.19.0
|
|
260
|
+
Compiling version_check v0.9.5
|
|
260
261
|
Compiling autocfg v1.5.0
|
|
261
262
|
Compiling schemars v0.8.22
|
|
262
263
|
Compiling dyn-clone v1.0.20
|
|
263
264
|
Compiling cfg-if v1.0.4
|
|
264
|
-
Compiling data-encoding v2.9.0
|
|
265
265
|
Compiling cpufeatures v0.2.17
|
|
266
|
-
Compiling
|
|
267
|
-
Compiling ethnum v1.5.2
|
|
266
|
+
Compiling data-encoding v2.9.0
|
|
268
267
|
Compiling either v1.15.0
|
|
268
|
+
Compiling ethnum v1.5.2
|
|
269
|
+
Compiling escape-bytes v0.1.1
|
|
269
270
|
Compiling semver v1.0.27
|
|
270
|
-
Compiling prettyplease v0.2.37
|
|
271
|
-
Compiling hashbrown v0.16.0
|
|
272
271
|
Compiling equivalent v1.0.2
|
|
272
|
+
Compiling hashbrown v0.16.0
|
|
273
|
+
Compiling prettyplease v0.2.37
|
|
273
274
|
Compiling thiserror v1.0.69
|
|
275
|
+
Compiling generic-array v0.14.9
|
|
274
276
|
Compiling base64 v0.22.1
|
|
275
277
|
Compiling num-traits v0.2.19
|
|
276
|
-
Compiling generic-array v0.14.9
|
|
277
278
|
Compiling static_assertions v1.1.0
|
|
278
279
|
Compiling itertools v0.10.5
|
|
279
|
-
Compiling rustc_version v0.4.1
|
|
280
280
|
Compiling heck v0.5.0
|
|
281
|
+
Compiling rustc_version v0.4.1
|
|
281
282
|
Compiling itertools v0.14.0
|
|
282
283
|
Compiling indexmap v2.12.0
|
|
283
284
|
Compiling syn v2.0.108
|
|
285
|
+
Compiling num-integer v0.1.46
|
|
286
|
+
Compiling wasmparser v0.116.1
|
|
287
|
+
Compiling num-bigint v0.4.6
|
|
284
288
|
Compiling block-buffer v0.10.4
|
|
285
289
|
Compiling crypto-common v0.1.6
|
|
286
|
-
Compiling wasmparser v0.116.1
|
|
287
|
-
Compiling num-integer v0.1.46
|
|
288
290
|
Compiling digest v0.10.7
|
|
289
291
|
Compiling sha2 v0.10.9
|
|
290
|
-
Compiling num-bigint v0.4.6
|
|
291
292
|
Compiling darling_core v0.21.3
|
|
292
293
|
Compiling darling_core v0.20.11
|
|
293
294
|
Compiling macro-string v0.1.4
|
|
294
295
|
Compiling serde_derive v1.0.228
|
|
295
296
|
Compiling cfg_eval v0.1.2
|
|
296
|
-
Compiling thiserror-impl v1.0.69
|
|
297
297
|
Compiling num-derive v0.4.2
|
|
298
|
-
Compiling
|
|
298
|
+
Compiling thiserror-impl v1.0.69
|
|
299
299
|
Compiling visibility v0.1.1
|
|
300
|
+
Compiling bytes-lit v0.0.5
|
|
300
301
|
Compiling common-macros v0.0.1 (/workspace/contracts/protocol/stellar/contracts/common-macros)
|
|
301
302
|
Compiling darling_macro v0.20.11
|
|
302
303
|
Compiling darling_macro v0.21.3
|
|
@@ -313,14 +314,14 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
313
314
|
Compiling soroban-spec v23.4.0
|
|
314
315
|
Compiling soroban-env-macros v23.0.1
|
|
315
316
|
Compiling soroban-spec-rust v23.4.0
|
|
316
|
-
Compiling soroban-env-guest v23.0.1
|
|
317
317
|
Compiling soroban-sdk-macros v23.4.0
|
|
318
|
+
Compiling soroban-env-guest v23.0.1
|
|
318
319
|
Compiling utils v0.0.1 (/workspace/contracts/protocol/stellar/contracts/utils)
|
|
319
320
|
Compiling endpoint-v2 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/endpoint-v2)
|
|
320
|
-
Finished `release` profile [optimized] target(s) in
|
|
321
|
+
Finished `release` profile [optimized] target(s) in 32.46s
|
|
321
322
|
ℹ️ Build Summary:
|
|
322
323
|
Wasm File: target/wasm32v1-none/release/endpoint_v2.wasm
|
|
323
|
-
Wasm Hash:
|
|
324
|
+
Wasm Hash: 3c42a2e71fd12e74110068c18613ad48ea3d0134d9d64b69a7e4054542f238b4
|
|
324
325
|
Exported Functions: 60 found
|
|
325
326
|
• __constructor
|
|
326
327
|
• accept_ownership
|
|
@@ -385,10 +386,10 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
385
386
|
✅ Build Complete
|
|
386
387
|
ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/layerzero-views/Cargo.toml --crate-type=cdylib --target=wasm32v1-none --release --features=sandbox
|
|
387
388
|
Compiling escape-bytes v0.1.1
|
|
388
|
-
Compiling ethnum v1.5.2
|
|
389
389
|
Compiling static_assertions v1.1.0
|
|
390
|
-
Compiling
|
|
390
|
+
Compiling ethnum v1.5.2
|
|
391
391
|
Compiling num-traits v0.2.19
|
|
392
|
+
Compiling cfg-if v1.0.4
|
|
392
393
|
Compiling stellar-xdr v23.0.0
|
|
393
394
|
Compiling soroban-env-common v23.0.1
|
|
394
395
|
Compiling soroban-env-guest v23.0.1
|
|
@@ -398,19 +399,21 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
398
399
|
Compiling message-lib-common v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/message-lib-common)
|
|
399
400
|
Compiling uln302 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/uln-302)
|
|
400
401
|
Compiling layerzero-views v0.0.1 (/workspace/contracts/protocol/stellar/contracts/layerzero-views)
|
|
401
|
-
Finished `release` profile [optimized] target(s) in
|
|
402
|
+
Finished `release` profile [optimized] target(s) in 8.27s
|
|
402
403
|
ℹ️ Build Summary:
|
|
403
404
|
Wasm File: target/wasm32v1-none/release/layerzero_views.wasm
|
|
404
|
-
Wasm Hash:
|
|
405
|
-
Exported Functions:
|
|
405
|
+
Wasm Hash: 246b8137f2eeccf75191b9fc9862067103af6569599e9bf3df5aa8b8612498dc
|
|
406
|
+
Exported Functions: 24 found
|
|
406
407
|
• __constructor
|
|
407
408
|
• accept_ownership
|
|
408
409
|
• authorizer
|
|
409
410
|
• endpoint
|
|
410
411
|
• executable
|
|
411
412
|
• extend_instance_ttl
|
|
413
|
+
• freeze
|
|
412
414
|
• freeze_ttl_configs
|
|
413
415
|
• initializable
|
|
416
|
+
• is_frozen
|
|
414
417
|
• is_ttl_configs_frozen
|
|
415
418
|
• local_eid
|
|
416
419
|
• migrate
|
|
@@ -429,10 +432,10 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
429
432
|
ℹ️ 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
|
|
430
433
|
Compiling message-lib-common v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/message-lib-common)
|
|
431
434
|
Compiling uln302 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/uln-302)
|
|
432
|
-
Finished `release` profile [optimized] target(s) in 1.
|
|
435
|
+
Finished `release` profile [optimized] target(s) in 1.11s
|
|
433
436
|
ℹ️ Build Summary:
|
|
434
437
|
Wasm File: target/wasm32v1-none/release/uln302.wasm
|
|
435
|
-
Wasm Hash:
|
|
438
|
+
Wasm Hash: 34b659da7e2eb6fdca5e34979e277a0993271a71063d8608153c9e3d4b8d281c
|
|
436
439
|
Exported Functions: 38 found
|
|
437
440
|
• __constructor
|
|
438
441
|
• accept_ownership
|
|
@@ -475,19 +478,20 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
475
478
|
✅ Build Complete
|
|
476
479
|
ℹ️ 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
|
|
477
480
|
Compiling upgrader v0.0.1 (/workspace/contracts/protocol/stellar/contracts/upgrader)
|
|
478
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
481
|
+
Finished `release` profile [optimized] target(s) in 0.23s
|
|
479
482
|
ℹ️ Build Summary:
|
|
480
483
|
Wasm File: target/wasm32v1-none/release/upgrader.wasm
|
|
481
|
-
Wasm Hash:
|
|
482
|
-
Exported Functions:
|
|
484
|
+
Wasm Hash: 6c749cc6678cc29a835dff31a3198b9cee989f2077b55b662bc1e7df1f9cad26
|
|
485
|
+
Exported Functions: 2 found
|
|
486
|
+
• upgrade
|
|
483
487
|
• upgrade_and_migrate
|
|
484
488
|
✅ Build Complete
|
|
485
489
|
ℹ️ 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
|
|
486
490
|
Compiling blocked-message-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/blocked-message-lib)
|
|
487
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
491
|
+
Finished `release` profile [optimized] target(s) in 0.29s
|
|
488
492
|
ℹ️ Build Summary:
|
|
489
493
|
Wasm File: target/wasm32v1-none/release/blocked_message_lib.wasm
|
|
490
|
-
Wasm Hash:
|
|
494
|
+
Wasm Hash: e70d55ab544100e9bff3ee387703a0d2abf0b916048ebd23295114bb50d7b602
|
|
491
495
|
Exported Functions: 7 found
|
|
492
496
|
• get_config
|
|
493
497
|
• is_supported_eid
|
|
@@ -499,10 +503,10 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
499
503
|
✅ Build Complete
|
|
500
504
|
ℹ️ 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
|
|
501
505
|
Compiling simple-message-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/simple-message-lib)
|
|
502
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
506
|
+
Finished `release` profile [optimized] target(s) in 0.49s
|
|
503
507
|
ℹ️ Build Summary:
|
|
504
508
|
Wasm File: target/wasm32v1-none/release/simple_message_lib.wasm
|
|
505
|
-
Wasm Hash:
|
|
509
|
+
Wasm Hash: a8120456f0ed6f500b5b32c1b1957468833d8a9bb26f25a89b28ae31c8732454
|
|
506
510
|
Exported Functions: 31 found
|
|
507
511
|
• __constructor
|
|
508
512
|
• accept_ownership
|
|
@@ -538,10 +542,10 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
538
542
|
✅ Build Complete
|
|
539
543
|
ℹ️ 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
|
|
540
544
|
Compiling treasury v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/treasury)
|
|
541
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
545
|
+
Finished `release` profile [optimized] target(s) in 0.44s
|
|
542
546
|
ℹ️ Build Summary:
|
|
543
547
|
Wasm File: target/wasm32v1-none/release/treasury.wasm
|
|
544
|
-
Wasm Hash:
|
|
548
|
+
Wasm Hash: 4a095275d9b66e8866541540ae197b1a26aa87cb91c6c8aa4c2a5c30eac9f0ab
|
|
545
549
|
Exported Functions: 21 found
|
|
546
550
|
• __constructor
|
|
547
551
|
• accept_ownership
|
|
@@ -569,10 +573,10 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
569
573
|
Compiling oapp-macros v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp-macros)
|
|
570
574
|
Compiling oapp v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp)
|
|
571
575
|
Compiling counter v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/counter)
|
|
572
|
-
Finished `release` profile [optimized] target(s) in 1.
|
|
576
|
+
Finished `release` profile [optimized] target(s) in 1.20s
|
|
573
577
|
ℹ️ Build Summary:
|
|
574
578
|
Wasm File: target/wasm32v1-none/release/counter.wasm
|
|
575
|
-
Wasm Hash:
|
|
579
|
+
Wasm Hash: 4b2f912a1752b17f4f44def177a2ee391423e3462c1bdb97d6364e71ebe5f66c
|
|
576
580
|
Exported Functions: 35 found
|
|
577
581
|
• __constructor
|
|
578
582
|
• accept_ownership
|
|
@@ -611,13 +615,14 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
611
615
|
• ttl_configs
|
|
612
616
|
✅ Build Complete
|
|
613
617
|
ℹ️ 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
|
|
618
|
+
Compiling fee-lib-interfaces v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/fee-lib-interfaces)
|
|
614
619
|
Compiling worker v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/worker)
|
|
615
620
|
Compiling dvn v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/dvn)
|
|
616
|
-
Finished `release` profile [optimized] target(s) in
|
|
621
|
+
Finished `release` profile [optimized] target(s) in 1.19s
|
|
617
622
|
ℹ️ Build Summary:
|
|
618
623
|
Wasm File: target/wasm32v1-none/release/dvn.wasm
|
|
619
|
-
Wasm Hash:
|
|
620
|
-
Exported Functions:
|
|
624
|
+
Wasm Hash: 5486564b27e8880db98760b9451c9e180986c8c6b53b45b0e4400e43a1a61139
|
|
625
|
+
Exported Functions: 51 found
|
|
621
626
|
• __check_auth
|
|
622
627
|
• __constructor
|
|
623
628
|
• admins
|
|
@@ -628,6 +633,7 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
628
633
|
• deposit_address
|
|
629
634
|
• dst_config
|
|
630
635
|
• extend_instance_ttl
|
|
636
|
+
• freeze
|
|
631
637
|
• freeze_ttl_configs
|
|
632
638
|
• get_fee
|
|
633
639
|
• get_signers
|
|
@@ -635,6 +641,7 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
635
641
|
• has_acl
|
|
636
642
|
• hash_call_data
|
|
637
643
|
• is_admin
|
|
644
|
+
• is_frozen
|
|
638
645
|
• is_on_allowlist
|
|
639
646
|
• is_on_denylist
|
|
640
647
|
• is_signer
|
|
@@ -644,8 +651,8 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
644
651
|
• migrate
|
|
645
652
|
• paused
|
|
646
653
|
• price_feed
|
|
647
|
-
• quorum_change_admin
|
|
648
654
|
• set_admin
|
|
655
|
+
• set_admin_by_admin
|
|
649
656
|
• set_allowlist
|
|
650
657
|
• set_default_multiplier_bps
|
|
651
658
|
• set_denylist
|
|
@@ -670,17 +677,19 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
670
677
|
✅ Build Complete
|
|
671
678
|
ℹ️ 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
|
|
672
679
|
Compiling dvn-fee-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/dvn-fee-lib)
|
|
673
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
680
|
+
Finished `release` profile [optimized] target(s) in 0.37s
|
|
674
681
|
ℹ️ Build Summary:
|
|
675
682
|
Wasm File: target/wasm32v1-none/release/dvn_fee_lib.wasm
|
|
676
|
-
Wasm Hash:
|
|
677
|
-
Exported Functions:
|
|
683
|
+
Wasm Hash: c0fc2b3021df87431d9ec8748c0ef774e0e831ec7da10948ebcad3022aaa7e3a
|
|
684
|
+
Exported Functions: 18 found
|
|
678
685
|
• __constructor
|
|
679
686
|
• accept_ownership
|
|
680
687
|
• authorizer
|
|
681
688
|
• extend_instance_ttl
|
|
689
|
+
• freeze
|
|
682
690
|
• freeze_ttl_configs
|
|
683
691
|
• get_fee
|
|
692
|
+
• is_frozen
|
|
684
693
|
• is_ttl_configs_frozen
|
|
685
694
|
• migrate
|
|
686
695
|
• owner
|
|
@@ -694,11 +703,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
694
703
|
✅ Build Complete
|
|
695
704
|
ℹ️ 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
|
|
696
705
|
Compiling executor v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor)
|
|
697
|
-
Finished `release` profile [optimized] target(s) in
|
|
706
|
+
Finished `release` profile [optimized] target(s) in 0.76s
|
|
698
707
|
ℹ️ Build Summary:
|
|
699
708
|
Wasm File: target/wasm32v1-none/release/executor.wasm
|
|
700
|
-
Wasm Hash:
|
|
701
|
-
Exported Functions:
|
|
709
|
+
Wasm Hash: ec6441f915add093cc083aec8a44de354224ca57b5ffc5c9bbc39b6a79dabf4d
|
|
710
|
+
Exported Functions: 49 found
|
|
702
711
|
• __check_auth
|
|
703
712
|
• __constructor
|
|
704
713
|
• accept_ownership
|
|
@@ -711,11 +720,13 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
711
720
|
• dst_config
|
|
712
721
|
• endpoint
|
|
713
722
|
• extend_instance_ttl
|
|
723
|
+
• freeze
|
|
714
724
|
• freeze_ttl_configs
|
|
715
725
|
• get_fee
|
|
716
726
|
• get_supported_option_types
|
|
717
727
|
• has_acl
|
|
718
728
|
• is_admin
|
|
729
|
+
• is_frozen
|
|
719
730
|
• is_on_allowlist
|
|
720
731
|
• is_on_denylist
|
|
721
732
|
• is_supported_message_lib
|
|
@@ -749,17 +760,19 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
749
760
|
✅ Build Complete
|
|
750
761
|
ℹ️ 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
|
|
751
762
|
Compiling executor-fee-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor-fee-lib)
|
|
752
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
763
|
+
Finished `release` profile [optimized] target(s) in 0.43s
|
|
753
764
|
ℹ️ Build Summary:
|
|
754
765
|
Wasm File: target/wasm32v1-none/release/executor_fee_lib.wasm
|
|
755
|
-
Wasm Hash:
|
|
756
|
-
Exported Functions:
|
|
766
|
+
Wasm Hash: cd7e67ffb0c0df7c74799d98f380733f77370f7f989df944d2ba0937982f4b4c
|
|
767
|
+
Exported Functions: 19 found
|
|
757
768
|
• __constructor
|
|
758
769
|
• accept_ownership
|
|
759
770
|
• authorizer
|
|
760
771
|
• extend_instance_ttl
|
|
772
|
+
• freeze
|
|
761
773
|
• freeze_ttl_configs
|
|
762
774
|
• get_fee
|
|
775
|
+
• is_frozen
|
|
763
776
|
• is_ttl_configs_frozen
|
|
764
777
|
• migrate
|
|
765
778
|
• owner
|
|
@@ -773,13 +786,14 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
773
786
|
• version
|
|
774
787
|
✅ Build Complete
|
|
775
788
|
ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/workers/executor-helper/Cargo.toml --crate-type=cdylib --target=wasm32v1-none --release
|
|
789
|
+
Compiling fee-lib-interfaces v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/fee-lib-interfaces)
|
|
776
790
|
Compiling worker v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/worker)
|
|
777
791
|
Compiling executor v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor)
|
|
778
792
|
Compiling executor-helper v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor-helper)
|
|
779
|
-
Finished `release` profile [optimized] target(s) in
|
|
793
|
+
Finished `release` profile [optimized] target(s) in 0.99s
|
|
780
794
|
ℹ️ Build Summary:
|
|
781
795
|
Wasm File: target/wasm32v1-none/release/executor_helper.wasm
|
|
782
|
-
Wasm Hash:
|
|
796
|
+
Wasm Hash: fac720170d400a770bd3a859a9fe557494fafac9b61e2af24cfca0900ef38054
|
|
783
797
|
Exported Functions: 6 found
|
|
784
798
|
• compose
|
|
785
799
|
• execute
|
|
@@ -789,13 +803,13 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
789
803
|
• native_drop_and_execute
|
|
790
804
|
✅ Build Complete
|
|
791
805
|
ℹ️ 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
|
|
792
|
-
Compiling
|
|
806
|
+
Compiling fee-lib-interfaces v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/fee-lib-interfaces)
|
|
793
807
|
Compiling price-feed v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/price-feed)
|
|
794
|
-
Finished `release` profile [optimized] target(s) in
|
|
808
|
+
Finished `release` profile [optimized] target(s) in 0.83s
|
|
795
809
|
ℹ️ Build Summary:
|
|
796
810
|
Wasm File: target/wasm32v1-none/release/price_feed.wasm
|
|
797
|
-
Wasm Hash:
|
|
798
|
-
Exported Functions:
|
|
811
|
+
Wasm Hash: c745d00ca5ca4d2a880fb240dd5bba420626671986b02889d06070506b127fc0
|
|
812
|
+
Exported Functions: 32 found
|
|
799
813
|
• __constructor
|
|
800
814
|
• accept_ownership
|
|
801
815
|
• arbitrum_compression_percent
|
|
@@ -804,9 +818,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
804
818
|
• eid_to_model_type
|
|
805
819
|
• estimate_fee_by_eid
|
|
806
820
|
• extend_instance_ttl
|
|
821
|
+
• freeze
|
|
807
822
|
• freeze_ttl_configs
|
|
808
823
|
• get_price
|
|
809
824
|
• get_price_ratio_denominator
|
|
825
|
+
• is_frozen
|
|
810
826
|
• is_price_updater
|
|
811
827
|
• is_ttl_configs_frozen
|
|
812
828
|
• migrate
|
|
@@ -830,10 +846,10 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
830
846
|
ℹ️ 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
|
|
831
847
|
Compiling oft-core v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft-core)
|
|
832
848
|
Compiling oft v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft)
|
|
833
|
-
Finished `release` profile [optimized] target(s) in
|
|
849
|
+
Finished `release` profile [optimized] target(s) in 1.15s
|
|
834
850
|
ℹ️ Build Summary:
|
|
835
851
|
Wasm File: target/wasm32v1-none/release/oft.wasm
|
|
836
|
-
Wasm Hash:
|
|
852
|
+
Wasm Hash: eaee4dc138ccd2dd79d0eae000e0c22cd7dee1c3d67ac66313aafda6dab59894
|
|
837
853
|
Exported Functions: 50 found
|
|
838
854
|
• __constructor
|
|
839
855
|
• accept_ownership
|
|
@@ -886,7 +902,7 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
886
902
|
• unset_fee_bps
|
|
887
903
|
• unset_rate_limit
|
|
888
904
|
✅ Build Complete
|
|
889
|
-
⏱️ stellar contract build --features sandbox: 1:
|
|
905
|
+
⏱️ stellar contract build --features sandbox: 1:04.863 (m:ss.mmm)
|
|
890
906
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
|
|
891
907
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-config
|
|
892
908
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup
|
|
@@ -910,70 +926,70 @@ sha256:2477334a514bfb7b9dd6b51d49e5c2ef2ca47d8f4fca31ca4209be570fec6423
|
|
|
910
926
|
🔒 Acquired lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
|
|
911
927
|
$ 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'
|
|
912
928
|
Downloading crates ...
|
|
913
|
-
Downloaded
|
|
914
|
-
Downloaded digest v0.9.0
|
|
915
|
-
Downloaded opaque-debug v0.3.1
|
|
929
|
+
Downloaded glob v0.3.3
|
|
916
930
|
Downloaded include_dir_macros v0.7.4
|
|
931
|
+
Downloaded block-buffer v0.9.0
|
|
917
932
|
Downloaded include_dir v0.7.4
|
|
918
933
|
Downloaded anyhow v1.0.100
|
|
919
|
-
Downloaded
|
|
934
|
+
Downloaded opaque-debug v0.3.1
|
|
935
|
+
Downloaded heck v0.4.1
|
|
936
|
+
Downloaded digest v0.9.0
|
|
920
937
|
Downloaded sha2 v0.9.9
|
|
921
|
-
Downloaded glob v0.3.3
|
|
922
|
-
Downloaded base64 v0.21.7
|
|
923
938
|
Downloaded soroban-spec-typescript v23.1.4
|
|
939
|
+
Downloaded base64 v0.21.7
|
|
924
940
|
Compiling proc-macro2 v1.0.103
|
|
925
|
-
Compiling quote v1.0.41
|
|
926
941
|
Compiling unicode-ident v1.0.22
|
|
942
|
+
Compiling quote v1.0.41
|
|
927
943
|
Compiling serde_json v1.0.145
|
|
928
944
|
Compiling typenum v1.19.0
|
|
929
945
|
Compiling version_check v0.9.5
|
|
930
946
|
Compiling serde_core v1.0.228
|
|
931
947
|
Compiling serde v1.0.228
|
|
932
|
-
Compiling ryu v1.0.20
|
|
933
|
-
Compiling itoa v1.0.15
|
|
934
948
|
Compiling memchr v2.7.6
|
|
935
|
-
Compiling
|
|
949
|
+
Compiling itoa v1.0.15
|
|
950
|
+
Compiling ryu v1.0.20
|
|
936
951
|
Compiling strsim v0.11.1
|
|
937
952
|
Compiling ident_case v1.0.1
|
|
953
|
+
Compiling fnv v1.0.7
|
|
938
954
|
Compiling schemars v0.8.22
|
|
939
|
-
Compiling cpufeatures v0.2.17
|
|
940
|
-
Compiling cfg-if v1.0.4
|
|
941
955
|
Compiling dyn-clone v1.0.20
|
|
956
|
+
Compiling cfg-if v1.0.4
|
|
957
|
+
Compiling cpufeatures v0.2.17
|
|
942
958
|
Compiling equivalent v1.0.2
|
|
943
959
|
Compiling thiserror v1.0.69
|
|
944
|
-
Compiling hashbrown v0.16.0
|
|
945
960
|
Compiling data-encoding v2.9.0
|
|
946
|
-
Compiling
|
|
947
|
-
Compiling prettyplease v0.2.37
|
|
961
|
+
Compiling hashbrown v0.16.0
|
|
948
962
|
Compiling escape-bytes v0.1.1
|
|
949
963
|
Compiling ethnum v1.5.2
|
|
950
964
|
Compiling base64 v0.22.1
|
|
951
|
-
Compiling glob v0.3.3
|
|
952
|
-
Compiling anyhow v1.0.100
|
|
953
965
|
Compiling generic-array v0.14.9
|
|
966
|
+
Compiling prettyplease v0.2.37
|
|
967
|
+
Compiling semver v1.0.27
|
|
968
|
+
Compiling anyhow v1.0.100
|
|
969
|
+
Compiling glob v0.3.3
|
|
954
970
|
Compiling opaque-debug v0.3.1
|
|
955
971
|
Compiling either v1.15.0
|
|
956
|
-
Compiling base64 v0.21.7
|
|
957
972
|
Compiling heck v0.4.1
|
|
973
|
+
Compiling base64 v0.21.7
|
|
958
974
|
Compiling indexmap v2.12.0
|
|
959
975
|
Compiling itertools v0.10.5
|
|
960
976
|
Compiling syn v2.0.108
|
|
961
|
-
Compiling wasmparser v0.116.1
|
|
962
|
-
Compiling crypto-common v0.1.6
|
|
963
977
|
Compiling block-buffer v0.10.4
|
|
978
|
+
Compiling crypto-common v0.1.6
|
|
964
979
|
Compiling block-buffer v0.9.0
|
|
965
980
|
Compiling digest v0.9.0
|
|
966
981
|
Compiling sha2 v0.9.9
|
|
982
|
+
Compiling wasmparser v0.116.1
|
|
967
983
|
Compiling digest v0.10.7
|
|
968
984
|
Compiling sha2 v0.10.9
|
|
969
985
|
Compiling include_dir_macros v0.7.4
|
|
970
986
|
Compiling include_dir v0.7.4
|
|
971
987
|
Compiling darling_core v0.21.3
|
|
972
988
|
Compiling serde_derive v1.0.228
|
|
973
|
-
Compiling cfg_eval v0.1.2
|
|
974
989
|
Compiling thiserror-impl v1.0.69
|
|
975
|
-
Compiling
|
|
990
|
+
Compiling cfg_eval v0.1.2
|
|
976
991
|
Compiling crate-git-revision v0.0.6
|
|
992
|
+
Compiling darling_macro v0.21.3
|
|
977
993
|
Compiling stellar-strkey v0.0.13
|
|
978
994
|
Compiling stellar-xdr v23.0.0
|
|
979
995
|
Compiling hex v0.4.3
|
|
@@ -983,97 +999,103 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
983
999
|
Compiling soroban-spec v23.4.0
|
|
984
1000
|
Compiling soroban-spec-typescript v23.1.4
|
|
985
1001
|
Compiling ts-bindings-gen v0.0.1 (/workspace/contracts/protocol/stellar/tools/ts-bindings-gen)
|
|
986
|
-
Finished `dev` profile [unoptimized + debuginfo] target(s) in
|
|
1002
|
+
Finished `dev` profile [unoptimized + debuginfo] target(s) in 43.34s
|
|
987
1003
|
Running `target/debug/ts-bindings-gen`
|
|
988
1004
|
🚀 Generating TypeScript bindings for Stellar contracts...
|
|
989
1005
|
|
|
990
1006
|
📦 Processing contract: endpoint_v2
|
|
991
1007
|
WASM: target/wasm32v1-none/release/endpoint_v2.wasm
|
|
992
1008
|
Output: sdk/src/generated/endpoint.ts
|
|
993
|
-
WASM size:
|
|
1009
|
+
WASM size: 58985 bytes (57.60 KB)
|
|
994
1010
|
Generating bindings...
|
|
995
1011
|
✓ Generated: sdk/src/generated/endpoint.ts
|
|
996
1012
|
📦 Processing contract: simple_message_lib
|
|
997
1013
|
WASM: target/wasm32v1-none/release/simple_message_lib.wasm
|
|
998
1014
|
Output: sdk/src/generated/sml.ts
|
|
999
|
-
WASM size:
|
|
1015
|
+
WASM size: 29199 bytes (28.51 KB)
|
|
1000
1016
|
Generating bindings...
|
|
1001
1017
|
✓ Generated: sdk/src/generated/sml.ts
|
|
1002
1018
|
📦 Processing contract: blocked_message_lib
|
|
1003
1019
|
WASM: target/wasm32v1-none/release/blocked_message_lib.wasm
|
|
1004
1020
|
Output: sdk/src/generated/bml.ts
|
|
1005
|
-
WASM size:
|
|
1021
|
+
WASM size: 13725 bytes (13.40 KB)
|
|
1006
1022
|
Generating bindings...
|
|
1007
1023
|
✓ Generated: sdk/src/generated/bml.ts
|
|
1008
1024
|
📦 Processing contract: uln302
|
|
1009
1025
|
WASM: target/wasm32v1-none/release/uln302.wasm
|
|
1010
1026
|
Output: sdk/src/generated/uln302.ts
|
|
1011
|
-
WASM size:
|
|
1027
|
+
WASM size: 57360 bytes (56.02 KB)
|
|
1012
1028
|
Generating bindings...
|
|
1013
1029
|
✓ Generated: sdk/src/generated/uln302.ts
|
|
1014
1030
|
📦 Processing contract: treasury
|
|
1015
1031
|
WASM: target/wasm32v1-none/release/treasury.wasm
|
|
1016
1032
|
Output: sdk/src/generated/treasury.ts
|
|
1017
|
-
WASM size:
|
|
1033
|
+
WASM size: 27376 bytes (26.73 KB)
|
|
1018
1034
|
Generating bindings...
|
|
1019
1035
|
✓ Generated: sdk/src/generated/treasury.ts
|
|
1020
1036
|
📦 Processing contract: upgrader
|
|
1021
1037
|
WASM: target/wasm32v1-none/release/upgrader.wasm
|
|
1022
1038
|
Output: sdk/src/generated/upgrader.ts
|
|
1023
|
-
WASM size:
|
|
1039
|
+
WASM size: 4968 bytes (4.85 KB)
|
|
1024
1040
|
Generating bindings...
|
|
1025
1041
|
✓ Generated: sdk/src/generated/upgrader.ts
|
|
1026
1042
|
📦 Processing contract: dvn
|
|
1027
1043
|
WASM: target/wasm32v1-none/release/dvn.wasm
|
|
1028
1044
|
Output: sdk/src/generated/dvn.ts
|
|
1029
|
-
WASM size:
|
|
1045
|
+
WASM size: 57424 bytes (56.08 KB)
|
|
1030
1046
|
Generating bindings...
|
|
1031
1047
|
✓ Generated: sdk/src/generated/dvn.ts
|
|
1032
1048
|
📦 Processing contract: dvn_fee_lib
|
|
1033
1049
|
WASM: target/wasm32v1-none/release/dvn_fee_lib.wasm
|
|
1034
1050
|
Output: sdk/src/generated/dvn_fee_lib.ts
|
|
1035
|
-
WASM size:
|
|
1051
|
+
WASM size: 22203 bytes (21.68 KB)
|
|
1036
1052
|
Generating bindings...
|
|
1037
1053
|
✓ Generated: sdk/src/generated/dvn_fee_lib.ts
|
|
1038
1054
|
📦 Processing contract: executor
|
|
1039
1055
|
WASM: target/wasm32v1-none/release/executor.wasm
|
|
1040
1056
|
Output: sdk/src/generated/executor.ts
|
|
1041
|
-
WASM size:
|
|
1057
|
+
WASM size: 57016 bytes (55.68 KB)
|
|
1042
1058
|
Generating bindings...
|
|
1043
1059
|
✓ Generated: sdk/src/generated/executor.ts
|
|
1044
1060
|
📦 Processing contract: executor_fee_lib
|
|
1045
1061
|
WASM: target/wasm32v1-none/release/executor_fee_lib.wasm
|
|
1046
1062
|
Output: sdk/src/generated/executor_fee_lib.ts
|
|
1047
|
-
WASM size:
|
|
1063
|
+
WASM size: 33881 bytes (33.09 KB)
|
|
1048
1064
|
Generating bindings...
|
|
1049
1065
|
✓ Generated: sdk/src/generated/executor_fee_lib.ts
|
|
1050
1066
|
📦 Processing contract: executor_helper
|
|
1051
1067
|
WASM: target/wasm32v1-none/release/executor_helper.wasm
|
|
1052
1068
|
Output: sdk/src/generated/executor_helper.ts
|
|
1053
|
-
WASM size:
|
|
1069
|
+
WASM size: 23408 bytes (22.86 KB)
|
|
1054
1070
|
Generating bindings...
|
|
1055
1071
|
✓ Generated: sdk/src/generated/executor_helper.ts
|
|
1056
1072
|
📦 Processing contract: price_feed
|
|
1057
1073
|
WASM: target/wasm32v1-none/release/price_feed.wasm
|
|
1058
1074
|
Output: sdk/src/generated/price_feed.ts
|
|
1059
|
-
WASM size:
|
|
1075
|
+
WASM size: 33910 bytes (33.12 KB)
|
|
1060
1076
|
Generating bindings...
|
|
1061
1077
|
✓ Generated: sdk/src/generated/price_feed.ts
|
|
1062
1078
|
📦 Processing contract: counter
|
|
1063
1079
|
WASM: target/wasm32v1-none/release/counter.wasm
|
|
1064
1080
|
Output: sdk/src/generated/counter.ts
|
|
1065
|
-
WASM size:
|
|
1081
|
+
WASM size: 40248 bytes (39.30 KB)
|
|
1066
1082
|
Generating bindings...
|
|
1067
1083
|
✓ Generated: sdk/src/generated/counter.ts
|
|
1068
1084
|
📦 Processing contract: oft
|
|
1069
1085
|
WASM: target/wasm32v1-none/release/oft.wasm
|
|
1070
1086
|
Output: sdk/src/generated/oft.ts
|
|
1071
|
-
WASM size:
|
|
1087
|
+
WASM size: 59665 bytes (58.27 KB)
|
|
1072
1088
|
Generating bindings...
|
|
1073
1089
|
✓ Generated: sdk/src/generated/oft.ts
|
|
1090
|
+
📦 Processing contract: layerzero_views
|
|
1091
|
+
WASM: target/wasm32v1-none/release/layerzero_views.wasm
|
|
1092
|
+
Output: sdk/src/generated/layerzero_view.ts
|
|
1093
|
+
WASM size: 34031 bytes (33.23 KB)
|
|
1094
|
+
Generating bindings...
|
|
1095
|
+
✓ Generated: sdk/src/generated/layerzero_view.ts
|
|
1074
1096
|
|
|
1075
1097
|
✅ TypeScript binding generation complete!
|
|
1076
|
-
Generated
|
|
1098
|
+
Generated 15 contract(s) with embedded WASM
|
|
1077
1099
|
|
|
1078
1100
|
📦 Generated files in sdk/src/generated/:
|
|
1079
1101
|
- endpoint.ts
|
|
@@ -1090,7 +1112,8 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
1090
1112
|
- price_feed.ts
|
|
1091
1113
|
- counter.ts
|
|
1092
1114
|
- oft.ts
|
|
1093
|
-
|
|
1115
|
+
- layerzero_view.ts
|
|
1116
|
+
⏱️ bash -c cargo run -p ts-bindings-gen: 43.706s
|
|
1094
1117
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
|
|
1095
1118
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-config
|
|
1096
1119
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup
|