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