@layerzerolabs/protocol-stellar-v2 0.2.18 → 0.2.19
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 +275 -248
- package/.turbo/turbo-lint.log +52 -58
- package/.turbo/turbo-test.log +1224 -1358
- package/Cargo.lock +8 -5
- package/Cargo.toml +1 -1
- package/contracts/ERROR_SPEC.md +1 -1
- package/contracts/message-libs/uln-302/src/send_uln.rs +1 -1
- package/contracts/oapps/oapp/src/oapp_receiver.rs +1 -1
- package/contracts/oapps/oft/Cargo.toml +10 -7
- package/contracts/oapps/{oft-std → oft}/integration-tests/extensions/test_oft_fee.rs +3 -4
- package/contracts/oapps/{oft-std → oft}/integration-tests/extensions/test_pausable.rs +2 -3
- package/contracts/oapps/{oft-std → oft}/integration-tests/extensions/test_rate_limiter.rs +1 -1
- package/contracts/oapps/oft/integration-tests/mod.rs +1 -1
- package/contracts/oapps/oft/integration-tests/setup.rs +28 -127
- package/contracts/oapps/oft/integration-tests/utils.rs +254 -21
- package/contracts/oapps/oft/src/extensions/oft_fee.rs +5 -6
- package/contracts/oapps/oft/src/lib.rs +10 -14
- package/contracts/oapps/oft/src/oft.rs +151 -189
- package/contracts/oapps/oft/src/oft_types/lock_unlock.rs +9 -11
- package/contracts/oapps/oft/src/oft_types/mint_burn.rs +32 -12
- package/contracts/oapps/oft/src/oft_types/mod.rs +13 -0
- package/contracts/oapps/{oft-std → oft-core}/Cargo.toml +6 -4
- package/contracts/oapps/{oft-std → oft-core}/integration-tests/mod.rs +1 -1
- package/contracts/oapps/{oft-std → oft-core}/integration-tests/setup.rs +126 -29
- package/contracts/oapps/{oft → oft-core}/integration-tests/test_with_sml.rs +3 -3
- package/contracts/oapps/oft-core/integration-tests/utils.rs +201 -0
- package/contracts/oapps/oft-core/src/lib.rs +18 -0
- package/contracts/oapps/oft-core/src/oft_core.rs +439 -0
- package/contracts/oapps/{oft → oft-core}/src/tests/mod.rs +0 -2
- package/contracts/oapps/{oft → oft-core}/src/tests/test_lz_receive.rs +7 -7
- package/contracts/oapps/{oft → oft-core}/src/tests/test_oft_msg_codec.rs +4 -4
- package/contracts/oapps/{oft → oft-core}/src/tests/test_resolve_address.rs +3 -3
- package/contracts/oapps/{oft → oft-core}/src/tests/test_utils.rs +44 -25
- package/contracts/oapps/{oft → oft-core}/src/utils.rs +1 -1
- package/contracts/utils/src/errors.rs +5 -1
- package/contracts/utils/src/ownable.rs +125 -3
- package/contracts/utils/src/tests/option_ext.rs +1 -1
- package/contracts/utils/src/tests/ownable.rs +445 -7
- package/contracts/utils/src/tests/ttl_configurable.rs +2 -2
- package/package.json +4 -5
- package/sdk/.turbo/turbo-test.log +216 -206
- package/sdk/dist/generated/bml.d.ts +30 -0
- package/sdk/dist/generated/bml.js +28 -5
- package/sdk/dist/generated/counter.d.ts +122 -2
- package/sdk/dist/generated/counter.js +36 -7
- package/sdk/dist/generated/dvn.d.ts +30 -0
- package/sdk/dist/generated/dvn.js +28 -5
- package/sdk/dist/generated/dvn_fee_lib.d.ts +122 -2
- package/sdk/dist/generated/dvn_fee_lib.js +36 -7
- package/sdk/dist/generated/endpoint.d.ts +122 -2
- package/sdk/dist/generated/endpoint.js +36 -7
- package/sdk/dist/generated/executor.d.ts +122 -2
- package/sdk/dist/generated/executor.js +36 -7
- package/sdk/dist/generated/executor_fee_lib.d.ts +122 -2
- package/sdk/dist/generated/executor_fee_lib.js +36 -7
- package/sdk/dist/generated/executor_helper.d.ts +30 -0
- package/sdk/dist/generated/executor_helper.js +28 -5
- package/sdk/dist/generated/oft.d.ts +1842 -0
- package/sdk/dist/generated/oft.js +345 -0
- package/sdk/dist/generated/price_feed.d.ts +122 -2
- package/sdk/dist/generated/price_feed.js +36 -7
- package/sdk/dist/generated/sml.d.ts +122 -2
- package/sdk/dist/generated/sml.js +36 -7
- package/sdk/dist/generated/treasury.d.ts +122 -2
- package/sdk/dist/generated/treasury.js +36 -7
- package/sdk/dist/generated/uln302.d.ts +122 -2
- package/sdk/dist/generated/uln302.js +36 -7
- package/sdk/dist/generated/upgrader.d.ts +15 -0
- package/sdk/dist/generated/upgrader.js +18 -0
- package/sdk/dist/index.d.ts +1 -2
- package/sdk/dist/index.js +1 -3
- package/sdk/package.json +3 -2
- package/sdk/src/index.ts +1 -4
- package/sdk/test/oft-sml.test.ts +16 -16
- package/sdk/turbo.json +8 -0
- package/tools/ts-bindings-gen/Cargo.toml +2 -0
- package/tools/ts-bindings-gen/src/main.rs +51 -4
- package/turbo.json +0 -2
- package/contracts/oapps/oft/src/interfaces/mint_burn_token.rs +0 -23
- package/contracts/oapps/oft/src/interfaces/mod.rs +0 -3
- package/contracts/oapps/oft/src/oft_impl.rs +0 -201
- package/contracts/oapps/oft/src/tests/extensions/mod.rs +0 -11
- package/contracts/oapps/oft/src/tests/extensions/setup.rs +0 -917
- package/contracts/oapps/oft/src/tests/extensions/test_oft_fee.rs +0 -751
- package/contracts/oapps/oft/src/tests/extensions/test_pausable.rs +0 -434
- package/contracts/oapps/oft/src/tests/extensions/test_rate_limiter.rs +0 -1080
- package/contracts/oapps/oft-std/integration-tests/utils.rs +0 -427
- package/contracts/oapps/oft-std/src/lib.rs +0 -16
- package/contracts/oapps/oft-std/src/oft.rs +0 -174
- package/sdk/dist/generated/oft_std.d.ts +0 -1722
- package/sdk/dist/generated/oft_std.js +0 -316
- package/sdk/dist/wasm/blocked-message-lib.d.ts +0 -1
- package/sdk/dist/wasm/blocked-message-lib.js +0 -2
- package/sdk/dist/wasm/counter.d.ts +0 -1
- package/sdk/dist/wasm/counter.js +0 -2
- package/sdk/dist/wasm/dvn-fee-lib.d.ts +0 -1
- package/sdk/dist/wasm/dvn-fee-lib.js +0 -2
- package/sdk/dist/wasm/dvn.d.ts +0 -1
- package/sdk/dist/wasm/dvn.js +0 -2
- package/sdk/dist/wasm/endpoint-v2.d.ts +0 -1
- package/sdk/dist/wasm/endpoint-v2.js +0 -2
- package/sdk/dist/wasm/executor-fee-lib.d.ts +0 -1
- package/sdk/dist/wasm/executor-fee-lib.js +0 -2
- package/sdk/dist/wasm/executor-helper.d.ts +0 -1
- package/sdk/dist/wasm/executor-helper.js +0 -2
- package/sdk/dist/wasm/executor.d.ts +0 -1
- package/sdk/dist/wasm/executor.js +0 -2
- package/sdk/dist/wasm/layerzero-views.d.ts +0 -1
- package/sdk/dist/wasm/layerzero-views.js +0 -2
- package/sdk/dist/wasm/oft-std.d.ts +0 -1
- package/sdk/dist/wasm/oft-std.js +0 -2
- package/sdk/dist/wasm/price-feed.d.ts +0 -1
- package/sdk/dist/wasm/price-feed.js +0 -2
- package/sdk/dist/wasm/simple-message-lib.d.ts +0 -1
- package/sdk/dist/wasm/simple-message-lib.js +0 -2
- package/sdk/dist/wasm/treasury.d.ts +0 -1
- package/sdk/dist/wasm/treasury.js +0 -2
- package/sdk/dist/wasm/uln302.d.ts +0 -1
- package/sdk/dist/wasm/uln302.js +0 -2
- package/sdk/dist/wasm/upgrader.d.ts +0 -1
- package/sdk/dist/wasm/upgrader.js +0 -2
- package/sdk/dist/wasm.d.ts +0 -15
- package/sdk/dist/wasm.js +0 -15
- /package/contracts/oapps/{oft-std → oft}/integration-tests/extensions/mod.rs +0 -0
- /package/contracts/oapps/{oft → oft-core}/src/codec/mod.rs +0 -0
- /package/contracts/oapps/{oft → oft-core}/src/codec/oft_compose_msg_codec.rs +0 -0
- /package/contracts/oapps/{oft → oft-core}/src/codec/oft_msg_codec.rs +0 -0
- /package/contracts/oapps/{oft → oft-core}/src/errors.rs +0 -0
- /package/contracts/oapps/{oft → oft-core}/src/events.rs +0 -0
- /package/contracts/oapps/{oft → oft-core}/src/storage.rs +0 -0
- /package/contracts/oapps/{oft → oft-core}/src/tests/test_decimals.rs +0 -0
- /package/contracts/oapps/{oft → oft-core}/src/tests/test_oft_compose_msg_codec.rs +0 -0
- /package/contracts/oapps/{oft → oft-core}/src/tests/test_oft_version.rs +0 -0
- /package/contracts/oapps/{oft → oft-core}/src/tests/test_quote_oft.rs +0 -0
- /package/contracts/oapps/{oft → oft-core}/src/tests/test_quote_send.rs +0 -0
- /package/contracts/oapps/{oft → oft-core}/src/tests/test_send.rs +0 -0
- /package/contracts/oapps/{oft → oft-core}/src/tests/test_token.rs +0 -0
- /package/contracts/oapps/{oft → oft-core}/src/types.rs +0 -0
package/.turbo/turbo-lint.log
CHANGED
|
@@ -11,8 +11,8 @@ Error response from daemon: No such image: 438003944538.dkr.ecr.us-east-1.amazon
|
|
|
11
11
|
📥 Pulling Docker image from ECR: 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_23.1.4_patch_6
|
|
12
12
|
$ docker pull 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_23.1.4_patch_6
|
|
13
13
|
stellar_23.1.4_patch_6: Pulling from layerzerolabs/stellar-tooling
|
|
14
|
-
f6bd9104d248:
|
|
15
|
-
4617420e017b:
|
|
14
|
+
f6bd9104d248: Already exists
|
|
15
|
+
4617420e017b: Already exists
|
|
16
16
|
e9886d99af76: Pulling fs layer
|
|
17
17
|
889cdda75b95: Pulling fs layer
|
|
18
18
|
a7d3f750d5ec: Pulling fs layer
|
|
@@ -24,44 +24,38 @@ f83e34e44849: Pulling fs layer
|
|
|
24
24
|
8bc2eeec2bb3: Pulling fs layer
|
|
25
25
|
2965c99ac5df: Pulling fs layer
|
|
26
26
|
66f4137c2c7c: Pulling fs layer
|
|
27
|
-
|
|
27
|
+
8bc2eeec2bb3: Waiting
|
|
28
28
|
2ff845d4f468: Waiting
|
|
29
|
-
8a4f031cd7ce: Waiting
|
|
30
|
-
2c1ce468d9f3: Waiting
|
|
31
29
|
1b86cc28e881: Waiting
|
|
30
|
+
2c1ce468d9f3: Waiting
|
|
32
31
|
f83e34e44849: Waiting
|
|
33
|
-
|
|
32
|
+
66f4137c2c7c: Waiting
|
|
33
|
+
e9886d99af76: Waiting
|
|
34
34
|
2965c99ac5df: Waiting
|
|
35
35
|
a7d3f750d5ec: Waiting
|
|
36
36
|
889cdda75b95: Waiting
|
|
37
|
-
|
|
38
|
-
f6bd9104d248: Pull complete
|
|
37
|
+
8a4f031cd7ce: Waiting
|
|
39
38
|
889cdda75b95: Verifying Checksum
|
|
40
39
|
889cdda75b95: Download complete
|
|
41
40
|
a7d3f750d5ec: Verifying Checksum
|
|
42
41
|
a7d3f750d5ec: Download complete
|
|
42
|
+
8a4f031cd7ce: Verifying Checksum
|
|
43
|
+
8a4f031cd7ce: Download complete
|
|
43
44
|
e9886d99af76: Verifying Checksum
|
|
44
45
|
e9886d99af76: Download complete
|
|
45
|
-
4617420e017b: Download complete
|
|
46
46
|
2c1ce468d9f3: Verifying Checksum
|
|
47
47
|
2c1ce468d9f3: Download complete
|
|
48
|
-
|
|
49
|
-
8a4f031cd7ce: Download complete
|
|
50
|
-
f83e34e44849: Verifying Checksum
|
|
51
|
-
f83e34e44849: Download complete
|
|
48
|
+
2ff845d4f468: Download complete
|
|
52
49
|
1b86cc28e881: Verifying Checksum
|
|
53
50
|
1b86cc28e881: Download complete
|
|
54
|
-
|
|
51
|
+
f83e34e44849: Verifying Checksum
|
|
52
|
+
f83e34e44849: Download complete
|
|
55
53
|
8bc2eeec2bb3: Download complete
|
|
56
54
|
2965c99ac5df: Verifying Checksum
|
|
57
55
|
2965c99ac5df: Download complete
|
|
58
|
-
66f4137c2c7c: Verifying Checksum
|
|
59
56
|
66f4137c2c7c: Download complete
|
|
60
|
-
4617420e017b: Pull complete
|
|
61
57
|
e9886d99af76: Pull complete
|
|
62
58
|
889cdda75b95: Pull complete
|
|
63
|
-
2ff845d4f468: Verifying Checksum
|
|
64
|
-
2ff845d4f468: Download complete
|
|
65
59
|
a7d3f750d5ec: Pull complete
|
|
66
60
|
8a4f031cd7ce: Pull complete
|
|
67
61
|
2ff845d4f468: Pull complete
|
|
@@ -92,94 +86,94 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
92
86
|
Checking serde_core v1.0.228
|
|
93
87
|
Checking zerocopy v0.8.27
|
|
94
88
|
Checking zeroize v1.8.2
|
|
95
|
-
Checking ryu v1.0.20
|
|
96
89
|
Checking memchr v2.7.6
|
|
90
|
+
Checking ryu v1.0.20
|
|
97
91
|
Checking itoa v1.0.15
|
|
98
|
-
Checking dyn-clone v1.0.20
|
|
99
92
|
Checking either v1.15.0
|
|
93
|
+
Checking dyn-clone v1.0.20
|
|
100
94
|
Compiling stellar-xdr v23.0.0
|
|
101
|
-
Checking
|
|
95
|
+
Checking hashbrown v0.16.0
|
|
102
96
|
Checking data-encoding v2.9.0
|
|
97
|
+
Checking equivalent v1.0.2
|
|
103
98
|
Checking base16ct v0.2.0
|
|
104
|
-
Checking
|
|
99
|
+
Checking der v0.7.10
|
|
105
100
|
Checking once_cell v1.21.3
|
|
106
|
-
Checking base64 v0.22.1
|
|
107
101
|
Checking ethnum v1.5.2
|
|
108
|
-
Checking der v0.7.10
|
|
109
|
-
Checking escape-bytes v0.1.1
|
|
110
102
|
Checking semver v1.0.27
|
|
111
|
-
Checking
|
|
103
|
+
Checking escape-bytes v0.1.1
|
|
104
|
+
Checking base64 v0.22.1
|
|
112
105
|
Checking libm v0.2.15
|
|
106
|
+
Checking itertools v0.10.5
|
|
113
107
|
Checking downcast-rs v1.2.1
|
|
114
108
|
Checking indexmap-nostd v0.4.0
|
|
115
|
-
Compiling soroban-env-common v23.0.1
|
|
116
|
-
Checking smallvec v1.15.1
|
|
117
109
|
Checking stellar-strkey v0.0.13
|
|
110
|
+
Compiling soroban-env-common v23.0.1
|
|
118
111
|
Checking wasmi_arena v0.4.1
|
|
112
|
+
Checking smallvec v1.15.1
|
|
119
113
|
Checking wasmparser-nostd v0.100.2
|
|
120
114
|
Checking spin v0.9.8
|
|
121
|
-
Checking
|
|
115
|
+
Checking generic-array v0.14.9
|
|
116
|
+
Checking indexmap v2.12.0
|
|
122
117
|
Compiling soroban-env-host v23.0.1
|
|
118
|
+
Checking static_assertions v1.1.0
|
|
119
|
+
Checking num-integer v0.1.46
|
|
123
120
|
Checking keccak v0.1.5
|
|
124
121
|
Compiling soroban-sdk v23.4.0
|
|
125
122
|
Checking hex-literal v0.4.1
|
|
126
|
-
Checking generic-array v0.14.9
|
|
127
|
-
Checking indexmap v2.12.0
|
|
128
123
|
Compiling soroban-sdk-macros v23.4.0
|
|
129
|
-
Checking num-integer v0.1.46
|
|
130
124
|
Compiling common-macros v0.0.1 (/workspace/contracts/protocol/stellar/contracts/common-macros)
|
|
131
125
|
Checking unicode-ident v1.0.22
|
|
132
126
|
Compiling oapp-macros v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp-macros)
|
|
133
127
|
Checking thiserror v1.0.69
|
|
134
|
-
Checking glob v0.3.3
|
|
135
128
|
Checking proc-macro2 v1.0.103
|
|
136
|
-
Checking opaque-debug v0.3.1
|
|
137
129
|
Checking num-bigint v0.4.6
|
|
138
|
-
Checking
|
|
139
|
-
Checking
|
|
130
|
+
Checking opaque-debug v0.3.1
|
|
131
|
+
Checking glob v0.3.3
|
|
132
|
+
Checking heck v0.5.0
|
|
140
133
|
Checking block-buffer v0.10.4
|
|
141
134
|
Checking crypto-common v0.1.6
|
|
142
135
|
Checking sec1 v0.7.3
|
|
143
|
-
Checking wasmparser v0.116.1
|
|
144
|
-
Checking digest v0.9.0
|
|
145
136
|
Checking wasmi_core v0.13.0
|
|
146
137
|
Checking block-buffer v0.9.0
|
|
138
|
+
Checking wasmparser v0.116.1
|
|
139
|
+
Checking digest v0.9.0
|
|
140
|
+
Checking include_dir v0.7.4
|
|
147
141
|
Checking quote v1.0.41
|
|
148
142
|
Checking digest v0.10.7
|
|
149
143
|
Checking heck v0.4.1
|
|
150
144
|
Checking sha2 v0.9.9
|
|
151
|
-
Checking
|
|
152
|
-
Checking anyhow v1.0.100
|
|
145
|
+
Checking base64 v0.21.7
|
|
153
146
|
Checking syn v2.0.108
|
|
154
|
-
Checking oapps v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps)
|
|
155
|
-
Checking itertools v0.14.0
|
|
156
147
|
Checking ppv-lite86 v0.2.21
|
|
148
|
+
Checking getrandom v0.2.16
|
|
157
149
|
Checking ahash v0.8.12
|
|
150
|
+
Checking anyhow v1.0.100
|
|
151
|
+
Checking workers v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers)
|
|
158
152
|
Checking message-libs v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs)
|
|
159
153
|
Checking sha2 v0.10.9
|
|
160
|
-
Checking getrandom v0.2.16
|
|
161
154
|
Checking hmac v0.12.1
|
|
162
155
|
Checking curve25519-dalek v4.1.3
|
|
163
156
|
Checking sha3 v0.10.8
|
|
164
|
-
Checking workers v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers)
|
|
165
|
-
Checking hashbrown v0.13.2
|
|
166
|
-
Checking rfc6979 v0.4.0
|
|
167
|
-
Checking rand_core v0.6.4
|
|
168
157
|
Checking serde v1.0.228
|
|
158
|
+
Checking rand_core v0.6.4
|
|
169
159
|
Checking serde_json v1.0.145
|
|
160
|
+
Checking rfc6979 v0.4.0
|
|
161
|
+
Checking hashbrown v0.13.2
|
|
162
|
+
Checking itertools v0.14.0
|
|
163
|
+
Checking oapps v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps)
|
|
170
164
|
Checking rand_chacha v0.3.1
|
|
171
165
|
Checking ff v0.13.1
|
|
172
|
-
Checking crypto-bigint v0.5.5
|
|
173
166
|
Checking signature v2.2.0
|
|
174
|
-
Checking
|
|
167
|
+
Checking crypto-bigint v0.5.5
|
|
175
168
|
Checking ed25519 v2.2.3
|
|
176
|
-
Checking rand v0.8.5
|
|
177
169
|
Checking hex v0.4.3
|
|
170
|
+
Checking group v0.13.0
|
|
171
|
+
Checking rand v0.8.5
|
|
172
|
+
Checking schemars v0.8.22
|
|
178
173
|
Checking ed25519-dalek v2.2.0
|
|
174
|
+
Checking soroban-wasmi v0.31.1-soroban.20.0.1
|
|
179
175
|
Checking ark-std v0.4.0
|
|
180
|
-
Checking schemars v0.8.22
|
|
181
176
|
Checking ark-serialize v0.4.2
|
|
182
|
-
Checking soroban-wasmi v0.31.1-soroban.20.0.1
|
|
183
177
|
Checking ark-ff v0.4.2
|
|
184
178
|
Checking elliptic-curve v0.13.8
|
|
185
179
|
Checking serde_with v3.15.1
|
|
@@ -204,19 +198,19 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
204
198
|
Checking blocked-message-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/blocked-message-lib)
|
|
205
199
|
Checking uln302 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/uln-302)
|
|
206
200
|
Checking executor v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor)
|
|
201
|
+
Checking simple-message-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/simple-message-lib)
|
|
202
|
+
Checking dvn v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/dvn)
|
|
207
203
|
Checking executor-fee-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor-fee-lib)
|
|
208
204
|
Checking treasury v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/treasury)
|
|
209
205
|
Checking dvn-fee-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/dvn-fee-lib)
|
|
210
|
-
Checking
|
|
211
|
-
Checking dvn v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/dvn)
|
|
212
|
-
Checking oft v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft)
|
|
206
|
+
Checking oft-core v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft-core)
|
|
213
207
|
Checking counter v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/counter)
|
|
214
208
|
Checking macro-integration-tests v0.0.1 (/workspace/contracts/protocol/stellar/contracts/macro-integration-tests)
|
|
215
209
|
Checking executor-helper v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor-helper)
|
|
216
210
|
Checking layerzero-views v0.0.1 (/workspace/contracts/protocol/stellar/contracts/layerzero-views)
|
|
217
|
-
Checking oft
|
|
218
|
-
Finished `dev` profile [unoptimized + debuginfo] target(s) in
|
|
219
|
-
⏱️ bash -c cargo clippy -- -D warnings:
|
|
211
|
+
Checking oft v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft)
|
|
212
|
+
Finished `dev` profile [unoptimized + debuginfo] target(s) in 43.95s
|
|
213
|
+
⏱️ bash -c cargo clippy -- -D warnings: 44.498s
|
|
220
214
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
|
|
221
215
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-config
|
|
222
216
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup
|