@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-build.log
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
WARN Issue while reading "/home/runner/work/monorepo-internal/monorepo-internal/.npmrc". Failed to replace env in config: ${NPM_TOKEN}
|
|
2
2
|
|
|
3
3
|
> @layerzerolabs/protocol-stellar-v2@0.0.1 build /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar
|
|
4
|
-
> pnpm build:contracts:sandbox && pnpm generate:sdk
|
|
4
|
+
> pnpm build:contracts:sandbox && pnpm generate:sdk
|
|
5
5
|
|
|
6
6
|
WARN Issue while reading "/home/runner/work/monorepo-internal/monorepo-internal/.npmrc". Failed to replace env in config: ${NPM_TOKEN}
|
|
7
7
|
|
|
@@ -31,15 +31,16 @@ f83e34e44849: Pulling fs layer
|
|
|
31
31
|
8bc2eeec2bb3: Pulling fs layer
|
|
32
32
|
2965c99ac5df: Pulling fs layer
|
|
33
33
|
66f4137c2c7c: Pulling fs layer
|
|
34
|
-
|
|
35
|
-
|
|
34
|
+
a7d3f750d5ec: Waiting
|
|
35
|
+
8a4f031cd7ce: Waiting
|
|
36
|
+
2ff845d4f468: Waiting
|
|
36
37
|
2c1ce468d9f3: Waiting
|
|
38
|
+
1b86cc28e881: Waiting
|
|
37
39
|
f83e34e44849: Waiting
|
|
38
|
-
|
|
39
|
-
8a4f031cd7ce: Waiting
|
|
40
|
-
a7d3f750d5ec: Waiting
|
|
40
|
+
8bc2eeec2bb3: Waiting
|
|
41
41
|
2965c99ac5df: Waiting
|
|
42
42
|
66f4137c2c7c: Waiting
|
|
43
|
+
889cdda75b95: Waiting
|
|
43
44
|
f6bd9104d248: Verifying Checksum
|
|
44
45
|
f6bd9104d248: Download complete
|
|
45
46
|
889cdda75b95: Verifying Checksum
|
|
@@ -47,22 +48,22 @@ f6bd9104d248: Download complete
|
|
|
47
48
|
f6bd9104d248: Pull complete
|
|
48
49
|
a7d3f750d5ec: Verifying Checksum
|
|
49
50
|
a7d3f750d5ec: Download complete
|
|
50
|
-
8a4f031cd7ce: Verifying Checksum
|
|
51
|
-
8a4f031cd7ce: Download complete
|
|
52
51
|
e9886d99af76: Verifying Checksum
|
|
53
52
|
e9886d99af76: Download complete
|
|
54
|
-
|
|
55
|
-
4617420e017b: Verifying Checksum
|
|
53
|
+
8a4f031cd7ce: Download complete
|
|
56
54
|
4617420e017b: Download complete
|
|
57
|
-
|
|
58
|
-
8bc2eeec2bb3: Download complete
|
|
55
|
+
2c1ce468d9f3: Download complete
|
|
59
56
|
f83e34e44849: Verifying Checksum
|
|
60
57
|
f83e34e44849: Download complete
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
66f4137c2c7c: Download complete
|
|
58
|
+
8bc2eeec2bb3: Verifying Checksum
|
|
59
|
+
8bc2eeec2bb3: Download complete
|
|
64
60
|
1b86cc28e881: Verifying Checksum
|
|
65
61
|
1b86cc28e881: Download complete
|
|
62
|
+
2965c99ac5df: Download complete
|
|
63
|
+
66f4137c2c7c: Verifying Checksum
|
|
64
|
+
66f4137c2c7c: Download complete
|
|
65
|
+
2ff845d4f468: Verifying Checksum
|
|
66
|
+
2ff845d4f468: Download complete
|
|
66
67
|
4617420e017b: Pull complete
|
|
67
68
|
e9886d99af76: Pull complete
|
|
68
69
|
889cdda75b95: Pull complete
|
|
@@ -89,173 +90,173 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
89
90
|
Updating crates.io index
|
|
90
91
|
Updating git repository `https://github.com/OpenZeppelin/stellar-contracts.git`
|
|
91
92
|
Downloading crates ...
|
|
92
|
-
Downloaded ark-ff-macros v0.4.2
|
|
93
|
-
Downloaded rustc_version v0.4.1
|
|
94
93
|
Downloaded ark-serialize v0.4.2
|
|
94
|
+
Downloaded ark-ec v0.4.2
|
|
95
95
|
Downloaded ark-ff-asm v0.4.2
|
|
96
|
+
Downloaded ark-ff-macros v0.4.2
|
|
97
|
+
Downloaded curve25519-dalek-derive v0.1.1
|
|
98
|
+
Downloaded ahash v0.8.12
|
|
99
|
+
Downloaded rustc_version v0.4.1
|
|
100
|
+
Downloaded powerfmt v0.2.0
|
|
101
|
+
Downloaded hex-literal v0.4.1
|
|
102
|
+
Downloaded either v1.15.0
|
|
96
103
|
Downloaded ark-poly v0.4.2
|
|
97
|
-
Downloaded
|
|
98
|
-
Downloaded
|
|
104
|
+
Downloaded derivative v2.2.0
|
|
105
|
+
Downloaded ref-cast-impl v1.0.25
|
|
106
|
+
Downloaded rfc6979 v0.4.0
|
|
107
|
+
Downloaded rand_core v0.6.4
|
|
99
108
|
Downloaded hmac v0.12.1
|
|
100
|
-
Downloaded
|
|
109
|
+
Downloaded quote v1.0.41
|
|
110
|
+
Downloaded zeroize_derive v1.4.2
|
|
101
111
|
Downloaded hashbrown v0.13.2
|
|
102
|
-
Downloaded
|
|
103
|
-
Downloaded static_assertions v1.1.0
|
|
104
|
-
Downloaded serde_core v1.0.228
|
|
105
|
-
Downloaded thiserror-impl v1.0.69
|
|
112
|
+
Downloaded soroban-ledger-snapshot v23.4.0
|
|
106
113
|
Downloaded zeroize v1.8.2
|
|
107
|
-
Downloaded wasmi_core v0.13.0
|
|
108
|
-
Downloaded soroban-wasmi v0.31.1-soroban.20.0.1
|
|
109
|
-
Downloaded zeroize_derive v1.4.2
|
|
110
|
-
Downloaded visibility v0.1.1
|
|
111
|
-
Downloaded serde_with_macros v3.15.1
|
|
112
|
-
Downloaded soroban-env-macros v23.0.1
|
|
113
|
-
Downloaded stellar-strkey v0.0.13
|
|
114
114
|
Downloaded wasmi_arena v0.4.1
|
|
115
|
-
Downloaded
|
|
116
|
-
Downloaded
|
|
117
|
-
Downloaded syn v2.0.108
|
|
118
|
-
Downloaded syn v1.0.109
|
|
119
|
-
Downloaded soroban-spec-rust v23.4.0
|
|
120
|
-
Downloaded typenum v1.19.0
|
|
121
|
-
Downloaded soroban-env-guest v23.0.1
|
|
115
|
+
Downloaded thiserror v1.0.69
|
|
116
|
+
Downloaded wasmi_core v0.13.0
|
|
122
117
|
Downloaded unicode-ident v1.0.22
|
|
123
|
-
Downloaded
|
|
118
|
+
Downloaded spin v0.9.8
|
|
119
|
+
Downloaded typenum v1.19.0
|
|
120
|
+
Downloaded soroban-env-common v23.0.1
|
|
121
|
+
Downloaded serde_json v1.0.145
|
|
124
122
|
Downloaded wasmparser-nostd v0.100.2
|
|
125
|
-
Downloaded wasmparser v0.116.1
|
|
126
123
|
Downloaded time v0.3.44
|
|
127
|
-
Downloaded
|
|
128
|
-
Downloaded
|
|
129
|
-
Downloaded
|
|
130
|
-
Downloaded
|
|
131
|
-
Downloaded elliptic-curve v0.13.8
|
|
132
|
-
Downloaded sha3 v0.10.8
|
|
133
|
-
Downloaded ident_case v1.0.1
|
|
134
|
-
Downloaded derive_arbitrary v1.3.2
|
|
135
|
-
Downloaded cfg_eval v0.1.2
|
|
136
|
-
Downloaded ed25519 v2.2.3
|
|
137
|
-
Downloaded ecdsa v0.16.9
|
|
138
|
-
Downloaded ref-cast v1.0.25
|
|
139
|
-
Downloaded block-buffer v0.10.4
|
|
140
|
-
Downloaded dyn-clone v1.0.20
|
|
141
|
-
Downloaded darling_macro v0.21.3
|
|
142
|
-
Downloaded hex-literal v0.4.1
|
|
143
|
-
Downloaded rfc6979 v0.4.0
|
|
144
|
-
Downloaded num-derive v0.4.2
|
|
145
|
-
Downloaded ref-cast-impl v1.0.25
|
|
146
|
-
Downloaded macro-string v0.1.4
|
|
147
|
-
Downloaded rand_chacha v0.3.1
|
|
148
|
-
Downloaded quote v1.0.41
|
|
149
|
-
Downloaded getrandom v0.2.16
|
|
150
|
-
Downloaded proc-macro2 v1.0.103
|
|
151
|
-
Downloaded rand_core v0.6.4
|
|
152
|
-
Downloaded rand v0.8.5
|
|
153
|
-
Downloaded num-bigint v0.4.6
|
|
124
|
+
Downloaded wasmparser v0.116.1
|
|
125
|
+
Downloaded curve25519-dalek v4.1.3
|
|
126
|
+
Downloaded serde_with v3.15.1
|
|
127
|
+
Downloaded soroban-wasmi v0.31.1-soroban.20.0.1
|
|
154
128
|
Downloaded zerocopy v0.8.27
|
|
129
|
+
Downloaded syn v1.0.109
|
|
130
|
+
Downloaded syn v2.0.108
|
|
131
|
+
Downloaded soroban-sdk v23.4.0
|
|
132
|
+
Downloaded schemars v1.0.5
|
|
133
|
+
Downloaded serde_derive v1.0.228
|
|
134
|
+
Downloaded serde_core v1.0.228
|
|
135
|
+
Downloaded schemars v0.9.0
|
|
155
136
|
Downloaded libm v0.2.15
|
|
156
|
-
Downloaded itertools v0.14.0
|
|
157
137
|
Downloaded hashbrown v0.16.0
|
|
138
|
+
Downloaded serde v1.0.228
|
|
139
|
+
Downloaded soroban-env-host v23.0.1
|
|
140
|
+
Downloaded soroban-sdk-macros v23.4.0
|
|
141
|
+
Downloaded smallvec v1.15.1
|
|
142
|
+
Downloaded serde_with_macros v3.15.1
|
|
143
|
+
Downloaded itertools v0.14.0
|
|
158
144
|
Downloaded itertools v0.10.5
|
|
159
|
-
Downloaded
|
|
160
|
-
Downloaded
|
|
161
|
-
Downloaded
|
|
162
|
-
Downloaded
|
|
163
|
-
Downloaded
|
|
164
|
-
Downloaded
|
|
145
|
+
Downloaded time-macros v0.2.24
|
|
146
|
+
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
|
|
165
151
|
Downloaded der v0.7.10
|
|
152
|
+
Downloaded strsim v0.11.1
|
|
153
|
+
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
|
+
Downloaded sha3 v0.10.8
|
|
164
|
+
Downloaded sec1 v0.7.3
|
|
166
165
|
Downloaded darling_core v0.21.3
|
|
167
|
-
Downloaded
|
|
166
|
+
Downloaded ark-bls12-381 v0.4.0
|
|
167
|
+
Downloaded signature v2.2.0
|
|
168
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
|
|
169
178
|
Downloaded p256 v0.13.2
|
|
170
179
|
Downloaded indexmap v1.9.3
|
|
171
|
-
Downloaded
|
|
172
|
-
Downloaded
|
|
173
|
-
Downloaded
|
|
174
|
-
Downloaded
|
|
180
|
+
Downloaded getrandom v0.2.16
|
|
181
|
+
Downloaded ethnum v1.5.2
|
|
182
|
+
Downloaded elliptic-curve v0.13.8
|
|
183
|
+
Downloaded darling_core v0.20.11
|
|
175
184
|
Downloaded darling v0.21.3
|
|
176
|
-
Downloaded const-oid v0.9.6
|
|
177
|
-
Downloaded darling v0.20.11
|
|
178
|
-
Downloaded crypto-common v0.1.6
|
|
179
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
|
|
192
|
+
Downloaded generic-array v0.14.9
|
|
193
|
+
Downloaded ff v0.13.1
|
|
194
|
+
Downloaded equivalent v1.0.2
|
|
195
|
+
Downloaded ed25519 v2.2.3
|
|
196
|
+
Downloaded ecdsa v0.16.9
|
|
197
|
+
Downloaded downcast-rs v1.2.1
|
|
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
|
|
180
205
|
Downloaded primeorder v0.13.6
|
|
181
206
|
Downloaded ppv-lite86 v0.2.21
|
|
182
207
|
Downloaded pkcs8 v0.10.2
|
|
208
|
+
Downloaded paste v1.0.15
|
|
183
209
|
Downloaded num-integer v0.1.46
|
|
210
|
+
Downloaded indexmap-nostd v0.4.0
|
|
211
|
+
Downloaded dyn-clone v1.0.20
|
|
184
212
|
Downloaded dtor v0.1.1
|
|
185
|
-
Downloaded
|
|
213
|
+
Downloaded cpufeatures v0.2.17
|
|
214
|
+
Downloaded base64 v0.22.1
|
|
215
|
+
Downloaded num-conv v0.1.0
|
|
216
|
+
Downloaded ident_case v1.0.1
|
|
217
|
+
Downloaded hex v0.4.3
|
|
218
|
+
Downloaded heck v0.5.0
|
|
219
|
+
Downloaded fnv v1.0.7
|
|
186
220
|
Downloaded deranged v0.5.5
|
|
187
|
-
Downloaded
|
|
188
|
-
Downloaded
|
|
189
|
-
Downloaded
|
|
190
|
-
Downloaded base64ct v1.8.0
|
|
221
|
+
Downloaded ctor v0.5.0
|
|
222
|
+
Downloaded crate-git-revision v0.0.6
|
|
223
|
+
Downloaded block-buffer v0.10.4
|
|
191
224
|
Downloaded autocfg v1.5.0
|
|
192
|
-
Downloaded powerfmt v0.2.0
|
|
193
|
-
Downloaded paste v1.0.15
|
|
194
|
-
Downloaded indexmap-nostd v0.4.0
|
|
195
|
-
Downloaded hex v0.4.3
|
|
196
225
|
Downloaded ark-serialize-derive v0.4.2
|
|
197
|
-
Downloaded
|
|
198
|
-
Downloaded
|
|
199
|
-
Downloaded
|
|
200
|
-
Downloaded
|
|
201
|
-
Downloaded
|
|
226
|
+
Downloaded ark-ff v0.4.2
|
|
227
|
+
Downloaded proc-macro2 v1.0.103
|
|
228
|
+
Downloaded num-traits v0.2.19
|
|
229
|
+
Downloaded num-derive v0.4.2
|
|
230
|
+
Downloaded macro-string v0.1.4
|
|
202
231
|
Downloaded keccak v0.1.5
|
|
232
|
+
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
|
|
203
237
|
Downloaded cfg-if v1.0.4
|
|
204
|
-
Downloaded downcast-rs v1.2.1
|
|
205
238
|
Downloaded bytes-lit v0.0.5
|
|
206
|
-
Downloaded
|
|
207
|
-
Downloaded generic-array v0.14.9
|
|
208
|
-
Downloaded fnv v1.0.7
|
|
209
|
-
Downloaded equivalent v1.0.2
|
|
210
|
-
Downloaded ctor v0.5.0
|
|
211
|
-
Downloaded ff v0.13.1
|
|
212
|
-
Downloaded either v1.15.0
|
|
213
|
-
Downloaded dtor-proc-macro v0.0.6
|
|
214
|
-
Downloaded subtle v2.6.1
|
|
215
|
-
Downloaded spin v0.9.8
|
|
216
|
-
Downloaded soroban-env-host v23.0.1
|
|
217
|
-
Downloaded soroban-builtin-sdk-macros v23.0.1
|
|
218
|
-
Downloaded serde_with v3.15.1
|
|
219
|
-
Downloaded serde_json v1.0.145
|
|
220
|
-
Downloaded soroban-sdk v23.4.0
|
|
221
|
-
Downloaded soroban-env-common v23.0.1
|
|
222
|
-
Downloaded smallvec v1.15.1
|
|
223
|
-
Downloaded sha2 v0.10.9
|
|
224
|
-
Downloaded time-core v0.1.6
|
|
225
|
-
Downloaded thiserror v1.0.69
|
|
226
|
-
Downloaded strsim v0.11.1
|
|
227
|
-
Downloaded spki v0.7.3
|
|
228
|
-
Downloaded soroban-ledger-snapshot v23.4.0
|
|
229
|
-
Downloaded signature v2.2.0
|
|
230
|
-
Downloaded version_check v0.9.5
|
|
231
|
-
Downloaded soroban-spec v23.4.0
|
|
232
|
-
Downloaded schemars v0.9.0
|
|
233
|
-
Downloaded serde_derive v1.0.228
|
|
234
|
-
Downloaded serde v1.0.228
|
|
235
|
-
Downloaded schemars v1.0.5
|
|
236
|
-
Downloaded ryu v1.0.20
|
|
237
|
-
Downloaded schemars v0.8.22
|
|
238
|
-
Downloaded sec1 v0.7.3
|
|
239
|
-
Downloaded ark-bls12-381 v0.4.0
|
|
240
|
-
Downloaded crypto-bigint v0.5.5
|
|
241
|
-
Downloaded ark-ec v0.4.2
|
|
239
|
+
Downloaded base16ct v0.2.0
|
|
242
240
|
Downloaded arbitrary v1.3.2
|
|
243
|
-
Downloaded
|
|
241
|
+
Downloaded darling_macro v0.20.11
|
|
242
|
+
Downloaded dtor-proc-macro v0.0.6
|
|
243
|
+
Downloaded ref-cast v1.0.25
|
|
244
244
|
Downloaded stellar-xdr v23.0.0
|
|
245
|
+
Downloaded cfg_eval v0.1.2
|
|
245
246
|
Compiling proc-macro2 v1.0.103
|
|
246
247
|
Compiling quote v1.0.41
|
|
247
248
|
Compiling unicode-ident v1.0.22
|
|
248
249
|
Compiling serde_core v1.0.228
|
|
249
250
|
Compiling serde v1.0.228
|
|
250
251
|
Compiling serde_json v1.0.145
|
|
252
|
+
Compiling ryu v1.0.20
|
|
251
253
|
Compiling itoa v1.0.15
|
|
252
254
|
Compiling memchr v2.7.6
|
|
253
|
-
Compiling ryu v1.0.20
|
|
254
|
-
Compiling ident_case v1.0.1
|
|
255
255
|
Compiling strsim v0.11.1
|
|
256
|
+
Compiling ident_case v1.0.1
|
|
256
257
|
Compiling fnv v1.0.7
|
|
257
|
-
Compiling typenum v1.19.0
|
|
258
258
|
Compiling version_check v0.9.5
|
|
259
|
+
Compiling typenum v1.19.0
|
|
259
260
|
Compiling autocfg v1.5.0
|
|
260
261
|
Compiling schemars v0.8.22
|
|
261
262
|
Compiling dyn-clone v1.0.20
|
|
@@ -266,36 +267,36 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
266
267
|
Compiling ethnum v1.5.2
|
|
267
268
|
Compiling either v1.15.0
|
|
268
269
|
Compiling semver v1.0.27
|
|
269
|
-
Compiling hashbrown v0.16.0
|
|
270
270
|
Compiling prettyplease v0.2.37
|
|
271
|
-
Compiling
|
|
271
|
+
Compiling hashbrown v0.16.0
|
|
272
272
|
Compiling equivalent v1.0.2
|
|
273
|
-
Compiling
|
|
273
|
+
Compiling thiserror v1.0.69
|
|
274
274
|
Compiling base64 v0.22.1
|
|
275
275
|
Compiling num-traits v0.2.19
|
|
276
|
-
Compiling
|
|
277
|
-
Compiling heck v0.5.0
|
|
276
|
+
Compiling generic-array v0.14.9
|
|
278
277
|
Compiling static_assertions v1.1.0
|
|
278
|
+
Compiling itertools v0.10.5
|
|
279
279
|
Compiling rustc_version v0.4.1
|
|
280
|
+
Compiling heck v0.5.0
|
|
280
281
|
Compiling itertools v0.14.0
|
|
281
282
|
Compiling indexmap v2.12.0
|
|
282
283
|
Compiling syn v2.0.108
|
|
283
|
-
Compiling num-integer v0.1.46
|
|
284
|
-
Compiling wasmparser v0.116.1
|
|
285
284
|
Compiling block-buffer v0.10.4
|
|
286
285
|
Compiling crypto-common v0.1.6
|
|
287
|
-
Compiling
|
|
286
|
+
Compiling wasmparser v0.116.1
|
|
287
|
+
Compiling num-integer v0.1.46
|
|
288
288
|
Compiling digest v0.10.7
|
|
289
289
|
Compiling sha2 v0.10.9
|
|
290
|
+
Compiling num-bigint v0.4.6
|
|
290
291
|
Compiling darling_core v0.21.3
|
|
291
292
|
Compiling darling_core v0.20.11
|
|
292
293
|
Compiling macro-string v0.1.4
|
|
293
294
|
Compiling serde_derive v1.0.228
|
|
294
295
|
Compiling cfg_eval v0.1.2
|
|
295
|
-
Compiling num-derive v0.4.2
|
|
296
296
|
Compiling thiserror-impl v1.0.69
|
|
297
|
-
Compiling
|
|
297
|
+
Compiling num-derive v0.4.2
|
|
298
298
|
Compiling bytes-lit v0.0.5
|
|
299
|
+
Compiling visibility v0.1.1
|
|
299
300
|
Compiling common-macros v0.0.1 (/workspace/contracts/protocol/stellar/contracts/common-macros)
|
|
300
301
|
Compiling darling_macro v0.20.11
|
|
301
302
|
Compiling darling_macro v0.21.3
|
|
@@ -312,16 +313,17 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
312
313
|
Compiling soroban-spec v23.4.0
|
|
313
314
|
Compiling soroban-env-macros v23.0.1
|
|
314
315
|
Compiling soroban-spec-rust v23.4.0
|
|
315
|
-
Compiling soroban-sdk-macros v23.4.0
|
|
316
316
|
Compiling soroban-env-guest v23.0.1
|
|
317
|
+
Compiling soroban-sdk-macros v23.4.0
|
|
317
318
|
Compiling utils v0.0.1 (/workspace/contracts/protocol/stellar/contracts/utils)
|
|
318
319
|
Compiling endpoint-v2 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/endpoint-v2)
|
|
319
|
-
Finished `release` profile [optimized] target(s) in
|
|
320
|
+
Finished `release` profile [optimized] target(s) in 58.19s
|
|
320
321
|
ℹ️ Build Summary:
|
|
321
322
|
Wasm File: target/wasm32v1-none/release/endpoint_v2.wasm
|
|
322
|
-
Wasm Hash:
|
|
323
|
-
Exported Functions:
|
|
323
|
+
Wasm Hash: d7c15e83a1ac049aa09b98bdf584d2eee06cbc273de60ec732ab08f67f5a9b9d
|
|
324
|
+
Exported Functions: 60 found
|
|
324
325
|
• __constructor
|
|
326
|
+
• accept_ownership
|
|
325
327
|
• authorizer
|
|
326
328
|
• burn
|
|
327
329
|
• clear
|
|
@@ -354,6 +356,8 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
354
356
|
• nilify
|
|
355
357
|
• outbound_nonce
|
|
356
358
|
• owner
|
|
359
|
+
• pending_owner
|
|
360
|
+
• propose_ownership_transfer
|
|
357
361
|
• quote
|
|
358
362
|
• receive_library_timeout
|
|
359
363
|
• recover_token
|
|
@@ -383,8 +387,8 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
383
387
|
Compiling escape-bytes v0.1.1
|
|
384
388
|
Compiling ethnum v1.5.2
|
|
385
389
|
Compiling static_assertions v1.1.0
|
|
386
|
-
Compiling num-traits v0.2.19
|
|
387
390
|
Compiling cfg-if v1.0.4
|
|
391
|
+
Compiling num-traits v0.2.19
|
|
388
392
|
Compiling stellar-xdr v23.0.0
|
|
389
393
|
Compiling soroban-env-common v23.0.1
|
|
390
394
|
Compiling soroban-env-guest v23.0.1
|
|
@@ -394,12 +398,13 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
394
398
|
Compiling message-lib-common v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/message-lib-common)
|
|
395
399
|
Compiling uln302 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/uln-302)
|
|
396
400
|
Compiling layerzero-views v0.0.1 (/workspace/contracts/protocol/stellar/contracts/layerzero-views)
|
|
397
|
-
Finished `release` profile [optimized] target(s) in
|
|
401
|
+
Finished `release` profile [optimized] target(s) in 12.83s
|
|
398
402
|
ℹ️ Build Summary:
|
|
399
403
|
Wasm File: target/wasm32v1-none/release/layerzero_views.wasm
|
|
400
|
-
Wasm Hash:
|
|
401
|
-
Exported Functions:
|
|
404
|
+
Wasm Hash: 813cc288e30574997eb9fd9a6a8d18449ef406ee2957ee7a83f967ea0846b931
|
|
405
|
+
Exported Functions: 22 found
|
|
402
406
|
• __constructor
|
|
407
|
+
• accept_ownership
|
|
403
408
|
• authorizer
|
|
404
409
|
• endpoint
|
|
405
410
|
• executable
|
|
@@ -410,6 +415,8 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
410
415
|
• local_eid
|
|
411
416
|
• migrate
|
|
412
417
|
• owner
|
|
418
|
+
• pending_owner
|
|
419
|
+
• propose_ownership_transfer
|
|
413
420
|
• renounce_ownership
|
|
414
421
|
• set_ttl_configs
|
|
415
422
|
• transfer_ownership
|
|
@@ -422,12 +429,13 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
422
429
|
ℹ️ 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
|
|
423
430
|
Compiling message-lib-common v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/message-lib-common)
|
|
424
431
|
Compiling uln302 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/uln-302)
|
|
425
|
-
Finished `release` profile [optimized] target(s) in 1.
|
|
432
|
+
Finished `release` profile [optimized] target(s) in 1.68s
|
|
426
433
|
ℹ️ Build Summary:
|
|
427
434
|
Wasm File: target/wasm32v1-none/release/uln302.wasm
|
|
428
|
-
Wasm Hash:
|
|
429
|
-
Exported Functions:
|
|
435
|
+
Wasm Hash: c672ec2924162d976095c4cf9d6ea67a02d68d1c8fce2367338f46ccd3265268
|
|
436
|
+
Exported Functions: 38 found
|
|
430
437
|
• __constructor
|
|
438
|
+
• accept_ownership
|
|
431
439
|
• authorizer
|
|
432
440
|
• commit_verification
|
|
433
441
|
• confirmations
|
|
@@ -448,6 +456,8 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
448
456
|
• oapp_receive_uln_config
|
|
449
457
|
• oapp_send_uln_config
|
|
450
458
|
• owner
|
|
459
|
+
• pending_owner
|
|
460
|
+
• propose_ownership_transfer
|
|
451
461
|
• quote
|
|
452
462
|
• renounce_ownership
|
|
453
463
|
• send
|
|
@@ -465,7 +475,7 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
465
475
|
✅ Build Complete
|
|
466
476
|
ℹ️ 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
|
|
467
477
|
Compiling upgrader v0.0.1 (/workspace/contracts/protocol/stellar/contracts/upgrader)
|
|
468
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
478
|
+
Finished `release` profile [optimized] target(s) in 0.27s
|
|
469
479
|
ℹ️ Build Summary:
|
|
470
480
|
Wasm File: target/wasm32v1-none/release/upgrader.wasm
|
|
471
481
|
Wasm Hash: 250cba854264d9d437c960e9f8ed838dbf39876947b4fb84c5a209a39b794da6
|
|
@@ -474,10 +484,10 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
474
484
|
✅ Build Complete
|
|
475
485
|
ℹ️ 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
|
|
476
486
|
Compiling blocked-message-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/blocked-message-lib)
|
|
477
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
487
|
+
Finished `release` profile [optimized] target(s) in 0.41s
|
|
478
488
|
ℹ️ Build Summary:
|
|
479
489
|
Wasm File: target/wasm32v1-none/release/blocked_message_lib.wasm
|
|
480
|
-
Wasm Hash:
|
|
490
|
+
Wasm Hash: 7e0b2d0ec3b884665c5ccf4b3b2f289a8d3ae3575dce19a0f016a3aa9fe82a31
|
|
481
491
|
Exported Functions: 7 found
|
|
482
492
|
• get_config
|
|
483
493
|
• is_supported_eid
|
|
@@ -489,12 +499,13 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
489
499
|
✅ Build Complete
|
|
490
500
|
ℹ️ 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
|
|
491
501
|
Compiling simple-message-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/simple-message-lib)
|
|
492
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
502
|
+
Finished `release` profile [optimized] target(s) in 0.72s
|
|
493
503
|
ℹ️ Build Summary:
|
|
494
504
|
Wasm File: target/wasm32v1-none/release/simple_message_lib.wasm
|
|
495
|
-
Wasm Hash:
|
|
496
|
-
Exported Functions:
|
|
505
|
+
Wasm Hash: 00d120a82635e4e4497d07d1233a432efc4301a890ce92b159b977a8b5275462
|
|
506
|
+
Exported Functions: 31 found
|
|
497
507
|
• __constructor
|
|
508
|
+
• accept_ownership
|
|
498
509
|
• authorizer
|
|
499
510
|
• endpoint
|
|
500
511
|
• extend_instance_ttl
|
|
@@ -507,6 +518,8 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
507
518
|
• message_lib_type
|
|
508
519
|
• native_fee
|
|
509
520
|
• owner
|
|
521
|
+
• pending_owner
|
|
522
|
+
• propose_ownership_transfer
|
|
510
523
|
• quote
|
|
511
524
|
• renounce_ownership
|
|
512
525
|
• send
|
|
@@ -525,12 +538,13 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
525
538
|
✅ Build Complete
|
|
526
539
|
ℹ️ 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
|
|
527
540
|
Compiling treasury v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/treasury)
|
|
528
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
541
|
+
Finished `release` profile [optimized] target(s) in 0.59s
|
|
529
542
|
ℹ️ Build Summary:
|
|
530
543
|
Wasm File: target/wasm32v1-none/release/treasury.wasm
|
|
531
|
-
Wasm Hash:
|
|
532
|
-
Exported Functions:
|
|
544
|
+
Wasm Hash: 1bfeb72123ffa91ac90e056f03dc8b2370a5d6563e5cedc9495b175d1e8caf20
|
|
545
|
+
Exported Functions: 21 found
|
|
533
546
|
• __constructor
|
|
547
|
+
• accept_ownership
|
|
534
548
|
• authorizer
|
|
535
549
|
• extend_instance_ttl
|
|
536
550
|
• fee_enabled
|
|
@@ -539,6 +553,8 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
539
553
|
• is_ttl_configs_frozen
|
|
540
554
|
• native_fee_bp
|
|
541
555
|
• owner
|
|
556
|
+
• pending_owner
|
|
557
|
+
• propose_ownership_transfer
|
|
542
558
|
• renounce_ownership
|
|
543
559
|
• set_fee_enabled
|
|
544
560
|
• set_native_fee_bp
|
|
@@ -553,12 +569,13 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
553
569
|
Compiling oapp-macros v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp-macros)
|
|
554
570
|
Compiling oapp v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp)
|
|
555
571
|
Compiling counter v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/counter)
|
|
556
|
-
Finished `release` profile [optimized] target(s) in 1.
|
|
572
|
+
Finished `release` profile [optimized] target(s) in 1.99s
|
|
557
573
|
ℹ️ Build Summary:
|
|
558
574
|
Wasm File: target/wasm32v1-none/release/counter.wasm
|
|
559
|
-
Wasm Hash:
|
|
560
|
-
Exported Functions:
|
|
575
|
+
Wasm Hash: 85427aebe5a3f0a70bb9c3c4b5ea70ffd885c17e9fec536cfa04b4d48230b605
|
|
576
|
+
Exported Functions: 35 found
|
|
561
577
|
• __constructor
|
|
578
|
+
• accept_ownership
|
|
562
579
|
• allow_initialize_path
|
|
563
580
|
• authorizer
|
|
564
581
|
• combine_options
|
|
@@ -580,6 +597,8 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
580
597
|
• outbound_count
|
|
581
598
|
• owner
|
|
582
599
|
• peer
|
|
600
|
+
• pending_owner
|
|
601
|
+
• propose_ownership_transfer
|
|
583
602
|
• quote
|
|
584
603
|
• renounce_ownership
|
|
585
604
|
• set_delegate
|
|
@@ -594,10 +613,10 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
594
613
|
ℹ️ 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
|
|
595
614
|
Compiling worker v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/worker)
|
|
596
615
|
Compiling dvn v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/dvn)
|
|
597
|
-
Finished `release` profile [optimized] target(s) in
|
|
616
|
+
Finished `release` profile [optimized] target(s) in 2.34s
|
|
598
617
|
ℹ️ Build Summary:
|
|
599
618
|
Wasm File: target/wasm32v1-none/release/dvn.wasm
|
|
600
|
-
Wasm Hash:
|
|
619
|
+
Wasm Hash: 5c52cac1c298d768f8af85192d911b1f33f3885278ff4ae8f05b251c068d02a2
|
|
601
620
|
Exported Functions: 49 found
|
|
602
621
|
• __check_auth
|
|
603
622
|
• __constructor
|
|
@@ -651,12 +670,13 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
651
670
|
✅ Build Complete
|
|
652
671
|
ℹ️ 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
|
|
653
672
|
Compiling dvn-fee-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/dvn-fee-lib)
|
|
654
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
673
|
+
Finished `release` profile [optimized] target(s) in 0.68s
|
|
655
674
|
ℹ️ Build Summary:
|
|
656
675
|
Wasm File: target/wasm32v1-none/release/dvn_fee_lib.wasm
|
|
657
|
-
Wasm Hash:
|
|
658
|
-
Exported Functions:
|
|
676
|
+
Wasm Hash: bc0c5db74d86951e8ef2edf14feb273b5a4eb8d038b3f0d191981161ba98d5dd
|
|
677
|
+
Exported Functions: 16 found
|
|
659
678
|
• __constructor
|
|
679
|
+
• accept_ownership
|
|
660
680
|
• authorizer
|
|
661
681
|
• extend_instance_ttl
|
|
662
682
|
• freeze_ttl_configs
|
|
@@ -664,6 +684,8 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
664
684
|
• is_ttl_configs_frozen
|
|
665
685
|
• migrate
|
|
666
686
|
• owner
|
|
687
|
+
• pending_owner
|
|
688
|
+
• propose_ownership_transfer
|
|
667
689
|
• renounce_ownership
|
|
668
690
|
• set_ttl_configs
|
|
669
691
|
• transfer_ownership
|
|
@@ -672,13 +694,14 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
672
694
|
✅ Build Complete
|
|
673
695
|
ℹ️ 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
|
|
674
696
|
Compiling executor v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor)
|
|
675
|
-
Finished `release` profile [optimized] target(s) in
|
|
697
|
+
Finished `release` profile [optimized] target(s) in 1.53s
|
|
676
698
|
ℹ️ Build Summary:
|
|
677
699
|
Wasm File: target/wasm32v1-none/release/executor.wasm
|
|
678
|
-
Wasm Hash:
|
|
679
|
-
Exported Functions:
|
|
700
|
+
Wasm Hash: 8292af76dd7a2983d4ba9b224c35ec25fdf9e43803307e90ff50529a63afdf04
|
|
701
|
+
Exported Functions: 47 found
|
|
680
702
|
• __check_auth
|
|
681
703
|
• __constructor
|
|
704
|
+
• accept_ownership
|
|
682
705
|
• admins
|
|
683
706
|
• allowlist_size
|
|
684
707
|
• assign_job
|
|
@@ -702,7 +725,9 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
702
725
|
• native_drop
|
|
703
726
|
• owner
|
|
704
727
|
• paused
|
|
728
|
+
• pending_owner
|
|
705
729
|
• price_feed
|
|
730
|
+
• propose_ownership_transfer
|
|
706
731
|
• renounce_ownership
|
|
707
732
|
• set_admin
|
|
708
733
|
• set_allowlist
|
|
@@ -724,12 +749,13 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
724
749
|
✅ Build Complete
|
|
725
750
|
ℹ️ 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
|
|
726
751
|
Compiling executor-fee-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor-fee-lib)
|
|
727
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
752
|
+
Finished `release` profile [optimized] target(s) in 0.91s
|
|
728
753
|
ℹ️ Build Summary:
|
|
729
754
|
Wasm File: target/wasm32v1-none/release/executor_fee_lib.wasm
|
|
730
|
-
Wasm Hash:
|
|
731
|
-
Exported Functions:
|
|
755
|
+
Wasm Hash: 78a68782035118b045c5980b4b7045158774d4469e103175216969efa8b589ba
|
|
756
|
+
Exported Functions: 17 found
|
|
732
757
|
• __constructor
|
|
758
|
+
• accept_ownership
|
|
733
759
|
• authorizer
|
|
734
760
|
• extend_instance_ttl
|
|
735
761
|
• freeze_ttl_configs
|
|
@@ -737,6 +763,8 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
737
763
|
• is_ttl_configs_frozen
|
|
738
764
|
• migrate
|
|
739
765
|
• owner
|
|
766
|
+
• pending_owner
|
|
767
|
+
• propose_ownership_transfer
|
|
740
768
|
• renounce_ownership
|
|
741
769
|
• set_ttl_configs
|
|
742
770
|
• transfer_ownership
|
|
@@ -748,10 +776,10 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
748
776
|
Compiling worker v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/worker)
|
|
749
777
|
Compiling executor v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor)
|
|
750
778
|
Compiling executor-helper v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor-helper)
|
|
751
|
-
Finished `release` profile [optimized] target(s) in
|
|
779
|
+
Finished `release` profile [optimized] target(s) in 2.13s
|
|
752
780
|
ℹ️ Build Summary:
|
|
753
781
|
Wasm File: target/wasm32v1-none/release/executor_helper.wasm
|
|
754
|
-
Wasm Hash:
|
|
782
|
+
Wasm Hash: 5103971ef8c9ef09d1add5a8471f46323505ab6a40f02656f2b3f6012a7ccf9e
|
|
755
783
|
Exported Functions: 6 found
|
|
756
784
|
• compose
|
|
757
785
|
• execute
|
|
@@ -763,12 +791,13 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
763
791
|
ℹ️ 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
|
|
764
792
|
Compiling worker v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/worker)
|
|
765
793
|
Compiling price-feed v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/price-feed)
|
|
766
|
-
Finished `release` profile [optimized] target(s) in
|
|
794
|
+
Finished `release` profile [optimized] target(s) in 2.14s
|
|
767
795
|
ℹ️ Build Summary:
|
|
768
796
|
Wasm File: target/wasm32v1-none/release/price_feed.wasm
|
|
769
|
-
Wasm Hash:
|
|
770
|
-
Exported Functions:
|
|
797
|
+
Wasm Hash: cfc1615712a9510f7edc8a62ea2a39bf33e6f9d6717342400e93a23775b55abe
|
|
798
|
+
Exported Functions: 30 found
|
|
771
799
|
• __constructor
|
|
800
|
+
• accept_ownership
|
|
772
801
|
• arbitrum_compression_percent
|
|
773
802
|
• arbitrum_price_ext
|
|
774
803
|
• authorizer
|
|
@@ -783,6 +812,8 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
783
812
|
• migrate
|
|
784
813
|
• native_token_price_usd
|
|
785
814
|
• owner
|
|
815
|
+
• pending_owner
|
|
816
|
+
• propose_ownership_transfer
|
|
786
817
|
• renounce_ownership
|
|
787
818
|
• set_arbitrum_compression_percent
|
|
788
819
|
• set_eid_to_model_type
|
|
@@ -796,15 +827,16 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
796
827
|
• ttl_configs
|
|
797
828
|
• upgrade
|
|
798
829
|
✅ Build Complete
|
|
799
|
-
ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/oapps/oft
|
|
830
|
+
ℹ️ 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
|
+
Compiling oft-core v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft-core)
|
|
800
832
|
Compiling oft v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft)
|
|
801
|
-
|
|
802
|
-
Finished `release` profile [optimized] target(s) in 1.22s
|
|
833
|
+
Finished `release` profile [optimized] target(s) in 2.41s
|
|
803
834
|
ℹ️ Build Summary:
|
|
804
|
-
Wasm File: target/wasm32v1-none/release/
|
|
805
|
-
Wasm Hash:
|
|
806
|
-
Exported Functions:
|
|
835
|
+
Wasm File: target/wasm32v1-none/release/oft.wasm
|
|
836
|
+
Wasm Hash: 1b2ae0ec201aefddd7d1aadd4c9fdafa9addc742333490b509be519b5e01869b
|
|
837
|
+
Exported Functions: 50 found
|
|
807
838
|
• __constructor
|
|
839
|
+
• accept_ownership
|
|
808
840
|
• allow_initialize_path
|
|
809
841
|
• approval_required
|
|
810
842
|
• authorizer
|
|
@@ -823,12 +855,14 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
823
855
|
• is_paused
|
|
824
856
|
• is_ttl_configs_frozen
|
|
825
857
|
• lz_receive
|
|
826
|
-
• mode
|
|
827
858
|
• next_nonce
|
|
828
859
|
• oapp_version
|
|
860
|
+
• oft_type
|
|
829
861
|
• oft_version
|
|
830
862
|
• owner
|
|
831
863
|
• peer
|
|
864
|
+
• pending_owner
|
|
865
|
+
• propose_ownership_transfer
|
|
832
866
|
• quote_oft
|
|
833
867
|
• quote_send
|
|
834
868
|
• rate_limit_capacity
|
|
@@ -852,7 +886,7 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
852
886
|
• unset_fee_bps
|
|
853
887
|
• unset_rate_limit
|
|
854
888
|
✅ Build Complete
|
|
855
|
-
⏱️ stellar contract build --features sandbox: 1:
|
|
889
|
+
⏱️ stellar contract build --features sandbox: 1:52.621 (m:ss.mmm)
|
|
856
890
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
|
|
857
891
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-config
|
|
858
892
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup
|
|
@@ -876,70 +910,70 @@ sha256:2477334a514bfb7b9dd6b51d49e5c2ef2ca47d8f4fca31ca4209be570fec6423
|
|
|
876
910
|
🔒 Acquired lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
|
|
877
911
|
$ 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'
|
|
878
912
|
Downloading crates ...
|
|
879
|
-
Downloaded
|
|
913
|
+
Downloaded heck v0.4.1
|
|
880
914
|
Downloaded digest v0.9.0
|
|
881
|
-
Downloaded
|
|
882
|
-
Downloaded sha2 v0.9.9
|
|
883
|
-
Downloaded block-buffer v0.9.0
|
|
884
|
-
Downloaded anyhow v1.0.100
|
|
915
|
+
Downloaded opaque-debug v0.3.1
|
|
885
916
|
Downloaded include_dir_macros v0.7.4
|
|
886
|
-
Downloaded
|
|
917
|
+
Downloaded include_dir v0.7.4
|
|
918
|
+
Downloaded anyhow v1.0.100
|
|
919
|
+
Downloaded block-buffer v0.9.0
|
|
920
|
+
Downloaded sha2 v0.9.9
|
|
921
|
+
Downloaded glob v0.3.3
|
|
887
922
|
Downloaded base64 v0.21.7
|
|
888
923
|
Downloaded soroban-spec-typescript v23.1.4
|
|
889
|
-
Downloaded include_dir v0.7.4
|
|
890
924
|
Compiling proc-macro2 v1.0.103
|
|
891
925
|
Compiling quote v1.0.41
|
|
892
926
|
Compiling unicode-ident v1.0.22
|
|
893
927
|
Compiling serde_json v1.0.145
|
|
894
|
-
Compiling serde_core v1.0.228
|
|
895
|
-
Compiling version_check v0.9.5
|
|
896
928
|
Compiling typenum v1.19.0
|
|
929
|
+
Compiling version_check v0.9.5
|
|
930
|
+
Compiling serde_core v1.0.228
|
|
897
931
|
Compiling serde v1.0.228
|
|
898
|
-
Compiling memchr v2.7.6
|
|
899
932
|
Compiling ryu v1.0.20
|
|
900
933
|
Compiling itoa v1.0.15
|
|
934
|
+
Compiling memchr v2.7.6
|
|
901
935
|
Compiling fnv v1.0.7
|
|
902
|
-
Compiling ident_case v1.0.1
|
|
903
936
|
Compiling strsim v0.11.1
|
|
937
|
+
Compiling ident_case v1.0.1
|
|
904
938
|
Compiling schemars v0.8.22
|
|
905
939
|
Compiling cpufeatures v0.2.17
|
|
906
940
|
Compiling cfg-if v1.0.4
|
|
907
941
|
Compiling dyn-clone v1.0.20
|
|
908
|
-
Compiling thiserror v1.0.69
|
|
909
942
|
Compiling equivalent v1.0.2
|
|
943
|
+
Compiling thiserror v1.0.69
|
|
910
944
|
Compiling hashbrown v0.16.0
|
|
911
945
|
Compiling data-encoding v2.9.0
|
|
946
|
+
Compiling semver v1.0.27
|
|
947
|
+
Compiling prettyplease v0.2.37
|
|
912
948
|
Compiling escape-bytes v0.1.1
|
|
913
|
-
Compiling generic-array v0.14.9
|
|
914
949
|
Compiling ethnum v1.5.2
|
|
915
|
-
Compiling prettyplease v0.2.37
|
|
916
|
-
Compiling semver v1.0.27
|
|
917
950
|
Compiling base64 v0.22.1
|
|
918
|
-
Compiling
|
|
951
|
+
Compiling glob v0.3.3
|
|
919
952
|
Compiling anyhow v1.0.100
|
|
953
|
+
Compiling generic-array v0.14.9
|
|
954
|
+
Compiling opaque-debug v0.3.1
|
|
920
955
|
Compiling either v1.15.0
|
|
921
|
-
Compiling glob v0.3.3
|
|
922
956
|
Compiling base64 v0.21.7
|
|
923
|
-
Compiling itertools v0.10.5
|
|
924
|
-
Compiling indexmap v2.12.0
|
|
925
957
|
Compiling heck v0.4.1
|
|
958
|
+
Compiling indexmap v2.12.0
|
|
959
|
+
Compiling itertools v0.10.5
|
|
926
960
|
Compiling syn v2.0.108
|
|
927
|
-
Compiling
|
|
961
|
+
Compiling wasmparser v0.116.1
|
|
928
962
|
Compiling crypto-common v0.1.6
|
|
963
|
+
Compiling block-buffer v0.10.4
|
|
929
964
|
Compiling block-buffer v0.9.0
|
|
930
965
|
Compiling digest v0.9.0
|
|
931
|
-
Compiling digest v0.10.7
|
|
932
966
|
Compiling sha2 v0.9.9
|
|
933
|
-
Compiling
|
|
934
|
-
Compiling include_dir_macros v0.7.4
|
|
967
|
+
Compiling digest v0.10.7
|
|
935
968
|
Compiling sha2 v0.10.9
|
|
969
|
+
Compiling include_dir_macros v0.7.4
|
|
936
970
|
Compiling include_dir v0.7.4
|
|
937
971
|
Compiling darling_core v0.21.3
|
|
938
972
|
Compiling serde_derive v1.0.228
|
|
939
|
-
Compiling thiserror-impl v1.0.69
|
|
940
973
|
Compiling cfg_eval v0.1.2
|
|
941
|
-
Compiling
|
|
974
|
+
Compiling thiserror-impl v1.0.69
|
|
942
975
|
Compiling darling_macro v0.21.3
|
|
976
|
+
Compiling crate-git-revision v0.0.6
|
|
943
977
|
Compiling stellar-strkey v0.0.13
|
|
944
978
|
Compiling stellar-xdr v23.0.0
|
|
945
979
|
Compiling hex v0.4.3
|
|
@@ -949,83 +983,97 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
949
983
|
Compiling soroban-spec v23.4.0
|
|
950
984
|
Compiling soroban-spec-typescript v23.1.4
|
|
951
985
|
Compiling ts-bindings-gen v0.0.1 (/workspace/contracts/protocol/stellar/tools/ts-bindings-gen)
|
|
952
|
-
Finished `dev` profile [unoptimized + debuginfo] target(s) in
|
|
986
|
+
Finished `dev` profile [unoptimized + debuginfo] target(s) in 1m 20s
|
|
953
987
|
Running `target/debug/ts-bindings-gen`
|
|
954
988
|
🚀 Generating TypeScript bindings for Stellar contracts...
|
|
955
989
|
|
|
956
990
|
📦 Processing contract: endpoint_v2
|
|
957
991
|
WASM: target/wasm32v1-none/release/endpoint_v2.wasm
|
|
958
992
|
Output: sdk/src/generated/endpoint.ts
|
|
993
|
+
WASM size: 58849 bytes (57.47 KB)
|
|
959
994
|
Generating bindings...
|
|
960
995
|
✓ Generated: sdk/src/generated/endpoint.ts
|
|
961
996
|
📦 Processing contract: simple_message_lib
|
|
962
997
|
WASM: target/wasm32v1-none/release/simple_message_lib.wasm
|
|
963
998
|
Output: sdk/src/generated/sml.ts
|
|
999
|
+
WASM size: 29063 bytes (28.38 KB)
|
|
964
1000
|
Generating bindings...
|
|
965
1001
|
✓ Generated: sdk/src/generated/sml.ts
|
|
966
1002
|
📦 Processing contract: blocked_message_lib
|
|
967
1003
|
WASM: target/wasm32v1-none/release/blocked_message_lib.wasm
|
|
968
1004
|
Output: sdk/src/generated/bml.ts
|
|
1005
|
+
WASM size: 13645 bytes (13.33 KB)
|
|
969
1006
|
Generating bindings...
|
|
970
1007
|
✓ Generated: sdk/src/generated/bml.ts
|
|
971
1008
|
📦 Processing contract: uln302
|
|
972
1009
|
WASM: target/wasm32v1-none/release/uln302.wasm
|
|
973
1010
|
Output: sdk/src/generated/uln302.ts
|
|
1011
|
+
WASM size: 57134 bytes (55.79 KB)
|
|
974
1012
|
Generating bindings...
|
|
975
1013
|
✓ Generated: sdk/src/generated/uln302.ts
|
|
976
1014
|
📦 Processing contract: treasury
|
|
977
1015
|
WASM: target/wasm32v1-none/release/treasury.wasm
|
|
978
1016
|
Output: sdk/src/generated/treasury.ts
|
|
1017
|
+
WASM size: 27240 bytes (26.60 KB)
|
|
979
1018
|
Generating bindings...
|
|
980
1019
|
✓ Generated: sdk/src/generated/treasury.ts
|
|
981
1020
|
📦 Processing contract: upgrader
|
|
982
1021
|
WASM: target/wasm32v1-none/release/upgrader.wasm
|
|
983
1022
|
Output: sdk/src/generated/upgrader.ts
|
|
1023
|
+
WASM size: 1597 bytes (1.56 KB)
|
|
984
1024
|
Generating bindings...
|
|
985
1025
|
✓ Generated: sdk/src/generated/upgrader.ts
|
|
986
1026
|
📦 Processing contract: dvn
|
|
987
1027
|
WASM: target/wasm32v1-none/release/dvn.wasm
|
|
988
1028
|
Output: sdk/src/generated/dvn.ts
|
|
1029
|
+
WASM size: 56667 bytes (55.34 KB)
|
|
989
1030
|
Generating bindings...
|
|
990
1031
|
✓ Generated: sdk/src/generated/dvn.ts
|
|
991
1032
|
📦 Processing contract: dvn_fee_lib
|
|
992
1033
|
WASM: target/wasm32v1-none/release/dvn_fee_lib.wasm
|
|
993
1034
|
Output: sdk/src/generated/dvn_fee_lib.ts
|
|
1035
|
+
WASM size: 23312 bytes (22.77 KB)
|
|
994
1036
|
Generating bindings...
|
|
995
1037
|
✓ Generated: sdk/src/generated/dvn_fee_lib.ts
|
|
996
1038
|
📦 Processing contract: executor
|
|
997
1039
|
WASM: target/wasm32v1-none/release/executor.wasm
|
|
998
1040
|
Output: sdk/src/generated/executor.ts
|
|
1041
|
+
WASM size: 56028 bytes (54.71 KB)
|
|
999
1042
|
Generating bindings...
|
|
1000
1043
|
✓ Generated: sdk/src/generated/executor.ts
|
|
1001
1044
|
📦 Processing contract: executor_fee_lib
|
|
1002
1045
|
WASM: target/wasm32v1-none/release/executor_fee_lib.wasm
|
|
1003
1046
|
Output: sdk/src/generated/executor_fee_lib.ts
|
|
1047
|
+
WASM size: 35000 bytes (34.18 KB)
|
|
1004
1048
|
Generating bindings...
|
|
1005
1049
|
✓ Generated: sdk/src/generated/executor_fee_lib.ts
|
|
1006
1050
|
📦 Processing contract: executor_helper
|
|
1007
1051
|
WASM: target/wasm32v1-none/release/executor_helper.wasm
|
|
1008
1052
|
Output: sdk/src/generated/executor_helper.ts
|
|
1053
|
+
WASM size: 27792 bytes (27.14 KB)
|
|
1009
1054
|
Generating bindings...
|
|
1010
1055
|
✓ Generated: sdk/src/generated/executor_helper.ts
|
|
1011
1056
|
📦 Processing contract: price_feed
|
|
1012
1057
|
WASM: target/wasm32v1-none/release/price_feed.wasm
|
|
1013
1058
|
Output: sdk/src/generated/price_feed.ts
|
|
1059
|
+
WASM size: 34996 bytes (34.18 KB)
|
|
1014
1060
|
Generating bindings...
|
|
1015
1061
|
✓ Generated: sdk/src/generated/price_feed.ts
|
|
1016
1062
|
📦 Processing contract: counter
|
|
1017
1063
|
WASM: target/wasm32v1-none/release/counter.wasm
|
|
1018
1064
|
Output: sdk/src/generated/counter.ts
|
|
1065
|
+
WASM size: 40111 bytes (39.17 KB)
|
|
1019
1066
|
Generating bindings...
|
|
1020
1067
|
✓ Generated: sdk/src/generated/counter.ts
|
|
1021
|
-
📦 Processing contract:
|
|
1022
|
-
WASM: target/wasm32v1-none/release/
|
|
1023
|
-
Output: sdk/src/generated/
|
|
1068
|
+
📦 Processing contract: oft
|
|
1069
|
+
WASM: target/wasm32v1-none/release/oft.wasm
|
|
1070
|
+
Output: sdk/src/generated/oft.ts
|
|
1071
|
+
WASM size: 59520 bytes (58.12 KB)
|
|
1024
1072
|
Generating bindings...
|
|
1025
|
-
✓ Generated: sdk/src/generated/
|
|
1073
|
+
✓ Generated: sdk/src/generated/oft.ts
|
|
1026
1074
|
|
|
1027
1075
|
✅ TypeScript binding generation complete!
|
|
1028
|
-
Generated 14 contract(s)
|
|
1076
|
+
Generated 14 contract(s) with embedded WASM
|
|
1029
1077
|
|
|
1030
1078
|
📦 Generated files in sdk/src/generated/:
|
|
1031
1079
|
- endpoint.ts
|
|
@@ -1041,29 +1089,8 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
1041
1089
|
- executor_helper.ts
|
|
1042
1090
|
- price_feed.ts
|
|
1043
1091
|
- counter.ts
|
|
1044
|
-
-
|
|
1045
|
-
⏱️ bash -c cargo run -p ts-bindings-gen:
|
|
1092
|
+
- oft.ts
|
|
1093
|
+
⏱️ bash -c cargo run -p ts-bindings-gen: 1:21.334 (m:ss.mmm)
|
|
1046
1094
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
|
|
1047
1095
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-config
|
|
1048
1096
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup
|
|
1049
|
-
WARN Issue while reading "/home/runner/work/monorepo-internal/monorepo-internal/.npmrc". Failed to replace env in config: ${NPM_TOKEN}
|
|
1050
|
-
|
|
1051
|
-
> @layerzerolabs/protocol-stellar-v2@0.0.1 build:wasm /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar
|
|
1052
|
-
> lz-tool extra stellar build-typescript-sdk target sdk/src
|
|
1053
|
-
|
|
1054
|
-
✅ blocked_message_lib.wasm -> wasm/blocked-message-lib.ts (13241 bytes)
|
|
1055
|
-
✅ counter.wasm -> wasm/counter.ts (37218 bytes)
|
|
1056
|
-
✅ dvn.wasm -> wasm/dvn.ts (56263 bytes)
|
|
1057
|
-
✅ dvn_fee_lib.wasm -> wasm/dvn-fee-lib.ts (20368 bytes)
|
|
1058
|
-
✅ endpoint_v2.wasm -> wasm/endpoint-v2.ts (55941 bytes)
|
|
1059
|
-
✅ executor.wasm -> wasm/executor.ts (53108 bytes)
|
|
1060
|
-
✅ executor_fee_lib.wasm -> wasm/executor-fee-lib.ts (32063 bytes)
|
|
1061
|
-
✅ executor_helper.wasm -> wasm/executor-helper.ts (27388 bytes)
|
|
1062
|
-
✅ layerzero_views.wasm -> wasm/layerzero-views.ts (30051 bytes)
|
|
1063
|
-
✅ oft_std.wasm -> wasm/oft-std.ts (56449 bytes)
|
|
1064
|
-
✅ price_feed.wasm -> wasm/price-feed.ts (32046 bytes)
|
|
1065
|
-
✅ simple_message_lib.wasm -> wasm/simple-message-lib.ts (26121 bytes)
|
|
1066
|
-
✅ treasury.wasm -> wasm/treasury.ts (24293 bytes)
|
|
1067
|
-
✅ uln302.wasm -> wasm/uln302.ts (54211 bytes)
|
|
1068
|
-
✅ upgrader.wasm -> wasm/upgrader.ts (1597 bytes)
|
|
1069
|
-
✅ Generated wasm.ts (15 contracts)
|