@layerzerolabs/protocol-stellar-v2 0.2.34 → 0.2.36
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 +281 -276
- package/.turbo/turbo-lint.log +209 -211
- package/.turbo/turbo-test.log +1705 -1701
- package/Cargo.lock +10 -10
- package/Cargo.toml +1 -1
- package/contracts/common-macros/src/auth.rs +5 -5
- package/contracts/common-macros/src/lib.rs +69 -0
- package/contracts/common-macros/src/rbac.rs +90 -0
- package/contracts/common-macros/src/storage.rs +7 -5
- package/contracts/common-macros/src/tests/lz_contract.rs +5 -7
- package/contracts/common-macros/src/tests/mod.rs +1 -0
- package/contracts/common-macros/src/tests/rbac.rs +420 -0
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__auth__snapshot_generated_multisig_code.snap +4 -4
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__auth__snapshot_generated_ownable_code.snap +5 -12
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__rbac__snapshot_preserve_function_signature.snap +17 -0
- package/contracts/common-macros/src/tests/storage/parse_name.rs +0 -1
- package/contracts/common-macros/src/tests/storage/snapshots/common_macros__tests__storage__generate_storage__snapshot_generated_storage_code.snap +3 -3
- package/contracts/endpoint-v2/src/endpoint_v2.rs +5 -4
- package/contracts/endpoint-v2/src/interfaces/messaging_channel.rs +7 -8
- package/contracts/endpoint-v2/src/messaging_channel.rs +78 -45
- package/contracts/endpoint-v2/src/storage.rs +8 -3
- package/contracts/endpoint-v2/src/tests/endpoint_setup.rs +2 -2
- package/contracts/endpoint-v2/src/tests/endpoint_v2/clear.rs +12 -15
- package/contracts/endpoint-v2/src/tests/endpoint_v2/verifiable.rs +46 -9
- package/contracts/endpoint-v2/src/tests/messaging_channel/burn.rs +7 -23
- package/contracts/endpoint-v2/src/tests/messaging_channel/clear_payload.rs +23 -20
- package/contracts/endpoint-v2/src/tests/messaging_channel/inbound.rs +94 -1
- package/contracts/endpoint-v2/src/tests/messaging_channel/inbound_nonce.rs +17 -15
- package/contracts/endpoint-v2/src/tests/messaging_channel/mod.rs +1 -1
- package/contracts/endpoint-v2/src/tests/messaging_channel/nilify.rs +48 -13
- package/contracts/endpoint-v2/src/tests/messaging_channel/pending_inbound_nonces.rs +111 -0
- package/contracts/endpoint-v2/src/tests/messaging_channel/skip.rs +15 -25
- package/contracts/layerzero-views/src/layerzero_view.rs +2 -2
- package/contracts/layerzero-views/src/tests/layerzero_view_tests.rs +3 -4
- package/contracts/layerzero-views/src/tests/setup.rs +0 -21
- package/contracts/macro-integration-tests/tests/runtime/lz_contract/wrapper_default.rs +1 -1
- package/contracts/macro-integration-tests/tests/runtime/lz_contract/wrapper_multisig.rs +1 -1
- package/contracts/macro-integration-tests/tests/runtime/lz_contract/wrapper_multisig_upgradeable.rs +1 -1
- package/contracts/macro-integration-tests/tests/runtime/multisig/self_auth.rs +1 -1
- package/contracts/macro-integration-tests/tests/runtime/ownable/initialization.rs +8 -5
- package/contracts/macro-integration-tests/tests/runtime/ownable/ownership_transfer.rs +2 -2
- package/contracts/macro-integration-tests/tests/runtime/rbac/guard_behavior.rs +91 -0
- package/contracts/macro-integration-tests/tests/runtime/rbac/mod.rs +30 -0
- package/contracts/macro-integration-tests/tests/runtime/ttl_configurable/configuration.rs +2 -2
- package/contracts/macro-integration-tests/tests/runtime/upgradeable/migrate_guard_and_state.rs +4 -4
- package/contracts/macro-integration-tests/tests/ui/lz_contract/pass/basic.rs +1 -1
- package/contracts/macro-integration-tests/tests/ui/ownable/pass/basic.rs +1 -1
- package/contracts/macro-integration-tests/tests/ui/rbac/fail/missing_env.rs +18 -0
- package/contracts/macro-integration-tests/tests/ui/rbac/fail/missing_env.stderr +16 -0
- package/contracts/macro-integration-tests/tests/ui/rbac/fail/param_not_address.rs +18 -0
- package/contracts/macro-integration-tests/tests/ui/rbac/fail/param_not_address.stderr +24 -0
- package/contracts/macro-integration-tests/tests/ui/rbac/fail/param_not_found.rs +18 -0
- package/contracts/macro-integration-tests/tests/ui/rbac/fail/param_not_found.stderr +24 -0
- package/contracts/macro-integration-tests/tests/ui/rbac/pass/basic.rs +71 -0
- package/contracts/macro-integration-tests/tests/ui_rbac.rs +12 -0
- package/contracts/message-libs/blocked-message-lib/src/lib.rs +4 -4
- package/contracts/message-libs/uln-302/src/send_uln.rs +5 -5
- package/contracts/oapps/counter/src/counter.rs +6 -0
- package/contracts/oapps/oapp/src/oapp_sender.rs +3 -2
- package/contracts/oapps/oft/src/extensions/oft_fee.rs +5 -0
- package/contracts/oapps/oft/src/interfaces/mintable.rs +2 -2
- package/contracts/oapps/oft/src/oft.rs +5 -4
- package/contracts/oapps/oft/src/tests/extensions/oft_fee.rs +2 -2
- package/contracts/oapps/oft/src/tests/extensions/pausable.rs +2 -2
- package/contracts/oapps/oft/src/tests/extensions/rate_limiter.rs +2 -2
- package/contracts/oapps/sac-manager/Cargo.toml +0 -1
- package/contracts/oapps/sac-manager/src/interfaces/mod.rs +3 -0
- package/contracts/oapps/sac-manager/src/interfaces/sac_admin_wrapper.rs +49 -0
- package/contracts/oapps/sac-manager/src/lib.rs +3 -3
- package/contracts/oapps/sac-manager/src/sac_manager.rs +45 -73
- package/contracts/oapps/sac-manager/src/storage.rs +2 -9
- package/contracts/oapps/sac-manager/src/tests/sac_manager/clawback.rs +8 -10
- package/contracts/oapps/sac-manager/src/tests/sac_manager/mint.rs +13 -18
- package/contracts/oapps/sac-manager/src/tests/sac_manager/mod.rs +0 -1
- package/contracts/oapps/sac-manager/src/tests/sac_manager/set_admin.rs +22 -12
- package/contracts/oapps/sac-manager/src/tests/sac_manager/set_authorized.rs +19 -9
- package/contracts/oapps/sac-manager/src/tests/sac_manager/test_helper.rs +27 -10
- package/contracts/oapps/sac-manager/src/tests/sac_manager/view_functions.rs +0 -15
- package/contracts/oapps/sac-manager/src/tests/test_helper.rs +19 -28
- package/contracts/upgrader/src/lib.rs +5 -2
- package/contracts/utils/src/auth.rs +6 -2
- package/contracts/utils/src/errors.rs +18 -0
- package/contracts/utils/src/lib.rs +1 -0
- package/contracts/utils/src/multisig.rs +5 -1
- package/contracts/utils/src/ownable.rs +1 -1
- package/contracts/utils/src/rbac.rs +428 -0
- package/contracts/utils/src/tests/auth.rs +2 -2
- package/contracts/utils/src/tests/mod.rs +1 -0
- package/contracts/utils/src/tests/multisig.rs +2 -2
- package/contracts/utils/src/tests/ownable.rs +4 -5
- package/contracts/utils/src/tests/rbac.rs +559 -0
- package/contracts/utils/src/tests/ttl_configurable.rs +5 -6
- package/contracts/utils/src/tests/upgradeable.rs +4 -5
- package/contracts/workers/worker/src/worker.rs +1 -1
- package/docs/layerzero-v2-on-stellar.md +46 -2
- package/package.json +3 -3
- package/sdk/.turbo/turbo-test.log +370 -372
- package/sdk/dist/generated/bml.d.ts +53 -3
- package/sdk/dist/generated/bml.js +27 -3
- package/sdk/dist/generated/counter.d.ts +84 -5
- package/sdk/dist/generated/counter.js +31 -4
- package/sdk/dist/generated/dvn.d.ts +55 -5
- package/sdk/dist/generated/dvn.js +28 -4
- package/sdk/dist/generated/dvn_fee_lib.d.ts +55 -5
- package/sdk/dist/generated/dvn_fee_lib.js +28 -4
- package/sdk/dist/generated/endpoint.d.ts +64 -15
- package/sdk/dist/generated/endpoint.js +32 -8
- package/sdk/dist/generated/executor.d.ts +55 -5
- package/sdk/dist/generated/executor.js +28 -4
- package/sdk/dist/generated/executor_fee_lib.d.ts +55 -5
- package/sdk/dist/generated/executor_fee_lib.js +28 -4
- package/sdk/dist/generated/executor_helper.d.ts +53 -3
- package/sdk/dist/generated/executor_helper.js +27 -3
- package/sdk/dist/generated/layerzero_view.d.ts +55 -5
- package/sdk/dist/generated/layerzero_view.js +28 -4
- package/sdk/dist/generated/oft.d.ts +84 -5
- package/sdk/dist/generated/oft.js +31 -4
- package/sdk/dist/generated/price_feed.d.ts +55 -5
- package/sdk/dist/generated/price_feed.js +28 -4
- package/sdk/dist/generated/sac_manager.d.ts +213 -666
- package/sdk/dist/generated/sac_manager.js +57 -238
- package/sdk/dist/generated/sml.d.ts +55 -5
- package/sdk/dist/generated/sml.js +28 -4
- package/sdk/dist/generated/treasury.d.ts +55 -5
- package/sdk/dist/generated/treasury.js +28 -4
- package/sdk/dist/generated/uln302.d.ts +55 -5
- package/sdk/dist/generated/uln302.js +28 -4
- package/sdk/dist/generated/upgrader.d.ts +53 -3
- package/sdk/dist/generated/upgrader.js +27 -3
- package/sdk/package.json +1 -1
- package/sdk/test/oft-sml.test.ts +10 -9
- package/sdk/test/{sac-manager-redistribution.test.ts → sac-manager.test.ts} +49 -25
- package/contracts/endpoint-v2/src/tests/messaging_channel/lazy_inbound_nonce.rs +0 -39
- package/contracts/oapps/sac-manager/src/errors.rs +0 -14
- package/contracts/oapps/sac-manager/src/tests/sac_manager/set_minter.rs +0 -69
package/.turbo/turbo-build.log
CHANGED
|
@@ -12,13 +12,13 @@
|
|
|
12
12
|
📦 Using 4 default cache volume(s) for stellar
|
|
13
13
|
✅ stellar-25.0.0 (Latest stable release)
|
|
14
14
|
🔧 stellar version: 25.0.0
|
|
15
|
-
(node:
|
|
15
|
+
(node:16262) [MODULE_TYPELESS_PACKAGE_JSON] Warning: Module type of file:///home/runner/work/monorepo-internal/monorepo-internal/configs/vm-tooling/values/docker-image-repo.ts is not specified and it doesn't parse as CommonJS.
|
|
16
16
|
Reparsing as ES module because module syntax was detected. This incurs a performance overhead.
|
|
17
17
|
To eliminate this warning, add "type": "module" to /home/runner/work/monorepo-internal/monorepo-internal/package.json.
|
|
18
18
|
(Use `node --trace-warnings ...` to show where the warning was created)
|
|
19
19
|
$ docker image inspect --format {{.Id}} 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.0.0
|
|
20
|
-
|
|
21
20
|
Error response from daemon: No such image: 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.0.0
|
|
21
|
+
|
|
22
22
|
📥 Pulling Docker image from: 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.0.0
|
|
23
23
|
$ docker pull 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.0.0
|
|
24
24
|
stellar_25.0.0: Pulling from layerzerolabs/stellar-tooling
|
|
@@ -33,21 +33,20 @@ f6bd9104d248: Pulling fs layer
|
|
|
33
33
|
f6bd9104d248: Waiting
|
|
34
34
|
1d4a870e3b66: Pulling fs layer
|
|
35
35
|
1b2c4c00c303: Pulling fs layer
|
|
36
|
+
4617420e017b: Waiting
|
|
36
37
|
73ca50fa4809: Pulling fs layer
|
|
38
|
+
4e430a9db1a3: Waiting
|
|
39
|
+
67ce8fb56745: Waiting
|
|
37
40
|
f5a85bd7a844: Pulling fs layer
|
|
41
|
+
2c1ce468d9f3: Waiting
|
|
38
42
|
c132a28172a5: Pulling fs layer
|
|
39
|
-
67ce8fb56745: Waiting
|
|
40
43
|
6ba0ba49c87d: Waiting
|
|
41
44
|
1cfd9ed002d2: Waiting
|
|
42
|
-
43dc8d96fd20: Waiting
|
|
43
|
-
2c1ce468d9f3: Waiting
|
|
44
45
|
1d4a870e3b66: Waiting
|
|
45
|
-
1b2c4c00c303: Waiting
|
|
46
46
|
73ca50fa4809: Waiting
|
|
47
|
-
f5a85bd7a844: Waiting
|
|
48
47
|
c132a28172a5: Waiting
|
|
49
|
-
|
|
50
|
-
|
|
48
|
+
1b2c4c00c303: Waiting
|
|
49
|
+
f5a85bd7a844: Waiting
|
|
51
50
|
f6bd9104d248: Verifying Checksum
|
|
52
51
|
f6bd9104d248: Download complete
|
|
53
52
|
f6bd9104d248: Pull complete
|
|
@@ -55,21 +54,22 @@ f6bd9104d248: Pull complete
|
|
|
55
54
|
67ce8fb56745: Download complete
|
|
56
55
|
6ba0ba49c87d: Verifying Checksum
|
|
57
56
|
6ba0ba49c87d: Download complete
|
|
57
|
+
4e430a9db1a3: Verifying Checksum
|
|
58
|
+
4e430a9db1a3: Download complete
|
|
58
59
|
1cfd9ed002d2: Verifying Checksum
|
|
59
60
|
1cfd9ed002d2: Download complete
|
|
60
61
|
4617420e017b: Verifying Checksum
|
|
61
62
|
4617420e017b: Download complete
|
|
63
|
+
2c1ce468d9f3: Verifying Checksum
|
|
62
64
|
2c1ce468d9f3: Download complete
|
|
63
|
-
|
|
64
|
-
4e430a9db1a3: Download complete
|
|
65
|
+
1b2c4c00c303: Verifying Checksum
|
|
65
66
|
1b2c4c00c303: Download complete
|
|
66
67
|
73ca50fa4809: Download complete
|
|
68
|
+
43dc8d96fd20: Verifying Checksum
|
|
69
|
+
43dc8d96fd20: Download complete
|
|
67
70
|
f5a85bd7a844: Verifying Checksum
|
|
68
71
|
f5a85bd7a844: Download complete
|
|
69
|
-
c132a28172a5: Verifying Checksum
|
|
70
72
|
c132a28172a5: Download complete
|
|
71
|
-
43dc8d96fd20: Verifying Checksum
|
|
72
|
-
43dc8d96fd20: Download complete
|
|
73
73
|
1d4a870e3b66: Verifying Checksum
|
|
74
74
|
1d4a870e3b66: Download complete
|
|
75
75
|
4617420e017b: Pull complete
|
|
@@ -98,213 +98,213 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
98
98
|
Updating crates.io index
|
|
99
99
|
Downloading crates ...
|
|
100
100
|
Downloaded ark-bn254 v0.4.0
|
|
101
|
-
Downloaded
|
|
102
|
-
Downloaded
|
|
103
|
-
Downloaded ref-cast v1.0.25
|
|
104
|
-
Downloaded ref-cast-impl v1.0.25
|
|
105
|
-
Downloaded visibility v0.1.1
|
|
106
|
-
Downloaded soroban-env-guest v25.0.1
|
|
107
|
-
Downloaded time-core v0.1.6
|
|
101
|
+
Downloaded bytes-lit v0.0.5
|
|
102
|
+
Downloaded spki v0.7.3
|
|
108
103
|
Downloaded rustc_version v0.4.1
|
|
109
|
-
Downloaded
|
|
110
|
-
Downloaded
|
|
111
|
-
Downloaded
|
|
112
|
-
Downloaded sec1 v0.7.3
|
|
113
|
-
Downloaded schemars v0.9.0
|
|
114
|
-
Downloaded zeroize_derive v1.4.2
|
|
104
|
+
Downloaded rand_core v0.6.4
|
|
105
|
+
Downloaded rfc6979 v0.4.0
|
|
106
|
+
Downloaded schemars v0.8.22
|
|
115
107
|
Downloaded zeroize v1.8.2
|
|
116
|
-
Downloaded
|
|
117
|
-
Downloaded
|
|
118
|
-
Downloaded
|
|
119
|
-
Downloaded
|
|
120
|
-
Downloaded
|
|
108
|
+
Downloaded zeroize_derive v1.4.2
|
|
109
|
+
Downloaded visibility v0.1.1
|
|
110
|
+
Downloaded thiserror-impl v1.0.69
|
|
111
|
+
Downloaded soroban-ledger-snapshot v25.1.1
|
|
112
|
+
Downloaded soroban-sdk-macros v25.1.1
|
|
113
|
+
Downloaded num-derive v0.4.2
|
|
114
|
+
Downloaded paste v1.0.15
|
|
115
|
+
Downloaded serde_core v1.0.228
|
|
116
|
+
Downloaded soroban-wasmi v0.31.1-soroban.20.0.1
|
|
117
|
+
Downloaded soroban-sdk v25.1.1
|
|
121
118
|
Downloaded wasmparser-nostd v0.100.2
|
|
122
|
-
Downloaded
|
|
119
|
+
Downloaded num-bigint v0.4.6
|
|
123
120
|
Downloaded wasmparser v0.116.1
|
|
124
|
-
Downloaded
|
|
121
|
+
Downloaded serde_with v3.15.1
|
|
122
|
+
Downloaded zerocopy v0.8.27
|
|
125
123
|
Downloaded itertools v0.14.0
|
|
126
|
-
Downloaded
|
|
124
|
+
Downloaded syn v1.0.109
|
|
127
125
|
Downloaded libm v0.2.15
|
|
128
126
|
Downloaded syn v2.0.108
|
|
129
|
-
Downloaded chrono v0.4.42
|
|
130
|
-
Downloaded curve25519-dalek v4.1.3
|
|
131
127
|
Downloaded hashbrown v0.16.0
|
|
132
|
-
Downloaded
|
|
133
|
-
Downloaded soroban-wasmi v0.31.1-soroban.20.0.1
|
|
134
|
-
Downloaded itertools v0.10.5
|
|
135
|
-
Downloaded hashbrown v0.12.3
|
|
136
|
-
Downloaded num-bigint v0.4.6
|
|
128
|
+
Downloaded chrono v0.4.42
|
|
137
129
|
Downloaded memchr v2.7.6
|
|
130
|
+
Downloaded itertools v0.10.5
|
|
138
131
|
Downloaded indexmap v2.12.0
|
|
132
|
+
Downloaded curve25519-dalek v4.1.3
|
|
139
133
|
Downloaded hashbrown v0.13.2
|
|
140
|
-
Downloaded
|
|
141
|
-
Downloaded darling_core v0.20.11
|
|
142
|
-
Downloaded ark-bls12-381 v0.4.0
|
|
134
|
+
Downloaded hashbrown v0.12.3
|
|
143
135
|
Downloaded crypto-bigint v0.5.5
|
|
136
|
+
Downloaded k256 v0.13.4
|
|
137
|
+
Downloaded ark-bls12-381 v0.4.0
|
|
138
|
+
Downloaded base64 v0.22.1
|
|
144
139
|
Downloaded rand v0.8.5
|
|
140
|
+
Downloaded proc-macro2 v1.0.103
|
|
145
141
|
Downloaded prettyplease v0.2.37
|
|
146
|
-
Downloaded k256 v0.13.4
|
|
147
142
|
Downloaded soroban-env-host v25.0.1
|
|
143
|
+
Downloaded hmac v0.12.1
|
|
144
|
+
Downloaded heapless v0.8.0
|
|
145
|
+
Downloaded ethnum v1.5.2
|
|
148
146
|
Downloaded ed25519-dalek v2.2.0
|
|
149
|
-
Downloaded
|
|
147
|
+
Downloaded der v0.7.10
|
|
150
148
|
Downloaded darling_core v0.21.3
|
|
151
|
-
Downloaded base64 v0.22.1
|
|
152
149
|
Downloaded ark-ff v0.4.2
|
|
153
|
-
Downloaded
|
|
150
|
+
Downloaded num-traits v0.2.19
|
|
151
|
+
Downloaded indexmap v1.9.3
|
|
152
|
+
Downloaded data-encoding v2.9.0
|
|
153
|
+
Downloaded darling_core v0.20.11
|
|
154
|
+
Downloaded darling v0.21.3
|
|
155
|
+
Downloaded base64ct v1.8.0
|
|
154
156
|
Downloaded sha3 v0.10.8
|
|
155
|
-
Downloaded serde_core v1.0.228
|
|
156
157
|
Downloaded libc v0.2.177
|
|
157
|
-
Downloaded
|
|
158
|
+
Downloaded autocfg v1.5.0
|
|
159
|
+
Downloaded ark-poly v0.4.2
|
|
160
|
+
Downloaded ark-ec v0.4.2
|
|
161
|
+
Downloaded serde_json v1.0.145
|
|
162
|
+
Downloaded primeorder v0.13.6
|
|
158
163
|
Downloaded p256 v0.13.2
|
|
159
|
-
Downloaded
|
|
164
|
+
Downloaded once_cell v1.21.3
|
|
160
165
|
Downloaded iana-time-zone v0.1.64
|
|
161
|
-
Downloaded
|
|
162
|
-
Downloaded ethnum v1.5.2
|
|
163
|
-
Downloaded elliptic-curve v0.13.8
|
|
164
|
-
Downloaded darling v0.20.11
|
|
165
|
-
Downloaded typenum v1.19.0
|
|
166
|
-
Downloaded serde_derive v1.0.228
|
|
167
|
-
Downloaded num-traits v0.2.19
|
|
168
|
-
Downloaded hmac v0.12.1
|
|
166
|
+
Downloaded heck v0.5.0
|
|
169
167
|
Downloaded getrandom v0.2.16
|
|
170
168
|
Downloaded ff v0.13.1
|
|
171
|
-
Downloaded
|
|
172
|
-
Downloaded
|
|
173
|
-
Downloaded
|
|
169
|
+
Downloaded elliptic-curve v0.13.8
|
|
170
|
+
Downloaded either v1.15.0
|
|
171
|
+
Downloaded deranged v0.5.5
|
|
172
|
+
Downloaded darling v0.20.11
|
|
173
|
+
Downloaded crypto-common v0.1.6
|
|
174
174
|
Downloaded const-oid v0.9.6
|
|
175
|
-
Downloaded ark-
|
|
175
|
+
Downloaded ark-std v0.4.0
|
|
176
|
+
Downloaded ark-ff-macros v0.4.2
|
|
176
177
|
Downloaded arbitrary v1.3.2
|
|
177
|
-
Downloaded
|
|
178
|
-
Downloaded spki v0.7.3
|
|
179
|
-
Downloaded soroban-sdk-macros v25.1.0
|
|
180
|
-
Downloaded soroban-ledger-snapshot v25.1.0
|
|
181
|
-
Downloaded soroban-env-macros v25.0.1
|
|
182
|
-
Downloaded soroban-builtin-sdk-macros v25.0.1
|
|
183
|
-
Downloaded smallvec v1.15.1
|
|
184
|
-
Downloaded sha2 v0.10.9
|
|
185
|
-
Downloaded serde_with_macros v3.15.1
|
|
186
|
-
Downloaded schemars v1.0.5
|
|
178
|
+
Downloaded quote v1.0.41
|
|
187
179
|
Downloaded ppv-lite86 v0.2.21
|
|
188
180
|
Downloaded pkcs8 v0.10.2
|
|
189
|
-
Downloaded paste v1.0.15
|
|
190
|
-
Downloaded once_cell v1.21.3
|
|
191
181
|
Downloaded num-integer v0.1.46
|
|
182
|
+
Downloaded num-conv v0.1.0
|
|
183
|
+
Downloaded macro-string v0.1.4
|
|
192
184
|
Downloaded itoa v1.0.15
|
|
193
|
-
Downloaded
|
|
185
|
+
Downloaded ident_case v1.0.1
|
|
186
|
+
Downloaded hex-literal v0.4.1
|
|
187
|
+
Downloaded hash32 v0.3.1
|
|
188
|
+
Downloaded group v0.13.0
|
|
189
|
+
Downloaded generic-array v0.14.9
|
|
194
190
|
Downloaded ed25519 v2.2.3
|
|
195
191
|
Downloaded digest v0.10.7
|
|
196
|
-
Downloaded
|
|
197
|
-
Downloaded
|
|
198
|
-
Downloaded
|
|
199
|
-
Downloaded
|
|
200
|
-
Downloaded autocfg v1.5.0
|
|
201
|
-
Downloaded ark-std v0.4.0
|
|
202
|
-
Downloaded ark-poly v0.4.2
|
|
203
|
-
Downloaded wasmi_core v0.13.0
|
|
204
|
-
Downloaded version_check v0.9.5
|
|
205
|
-
Downloaded time-macros v0.2.24
|
|
206
|
-
Downloaded thiserror-impl v1.0.69
|
|
207
|
-
Downloaded thiserror v1.0.69
|
|
208
|
-
Downloaded strsim v0.11.1
|
|
209
|
-
Downloaded soroban-spec v25.1.0
|
|
210
|
-
Downloaded quote v1.0.41
|
|
211
|
-
Downloaded primeorder v0.13.6
|
|
212
|
-
Downloaded num-derive v0.4.2
|
|
213
|
-
Downloaded macro-string v0.1.4
|
|
214
|
-
Downloaded keccak v0.1.5
|
|
215
|
-
Downloaded indexmap-nostd v0.4.0
|
|
192
|
+
Downloaded derivative v2.2.0
|
|
193
|
+
Downloaded ctor v0.5.0
|
|
194
|
+
Downloaded ecdsa v0.16.9
|
|
195
|
+
Downloaded cpufeatures v0.2.17
|
|
216
196
|
Downloaded hex v0.4.3
|
|
217
|
-
Downloaded
|
|
218
|
-
Downloaded hash32 v0.3.1
|
|
219
|
-
Downloaded generic-array v0.14.9
|
|
220
|
-
Downloaded curve25519-dalek-derive v0.1.1
|
|
197
|
+
Downloaded darling_macro v0.20.11
|
|
221
198
|
Downloaded ctor-proc-macro v0.0.6
|
|
222
|
-
Downloaded
|
|
223
|
-
Downloaded
|
|
224
|
-
Downloaded
|
|
225
|
-
Downloaded
|
|
226
|
-
Downloaded soroban-
|
|
227
|
-
Downloaded
|
|
228
|
-
Downloaded
|
|
229
|
-
Downloaded ident_case v1.0.1
|
|
230
|
-
Downloaded group v0.13.0
|
|
231
|
-
Downloaded fnv v1.0.7
|
|
199
|
+
Downloaded crate-git-revision v0.0.6
|
|
200
|
+
Downloaded cfg-if v1.0.4
|
|
201
|
+
Downloaded serde_derive v1.0.228
|
|
202
|
+
Downloaded serde v1.0.228
|
|
203
|
+
Downloaded soroban-env-macros v25.0.1
|
|
204
|
+
Downloaded serde_with_macros v3.15.1
|
|
205
|
+
Downloaded keccak v0.1.5
|
|
232
206
|
Downloaded escape-bytes v0.1.1
|
|
233
207
|
Downloaded equivalent v1.0.2
|
|
234
|
-
Downloaded dyn-clone v1.0.20
|
|
235
208
|
Downloaded dtor v0.1.1
|
|
236
209
|
Downloaded derive_arbitrary v1.3.2
|
|
237
|
-
Downloaded
|
|
238
|
-
Downloaded
|
|
239
|
-
Downloaded
|
|
240
|
-
Downloaded
|
|
241
|
-
Downloaded
|
|
242
|
-
Downloaded
|
|
243
|
-
Downloaded
|
|
244
|
-
Downloaded
|
|
210
|
+
Downloaded ark-ff-asm v0.4.2
|
|
211
|
+
Downloaded version_check v0.9.5
|
|
212
|
+
Downloaded unicode-ident v1.0.22
|
|
213
|
+
Downloaded strsim v0.11.1
|
|
214
|
+
Downloaded soroban-spec-rust v25.1.1
|
|
215
|
+
Downloaded soroban-env-guest v25.0.1
|
|
216
|
+
Downloaded signature v2.2.0
|
|
217
|
+
Downloaded semver v1.0.27
|
|
218
|
+
Downloaded sec1 v0.7.3
|
|
219
|
+
Downloaded wasmi_core v0.13.0
|
|
220
|
+
Downloaded wasmi_arena v0.4.1
|
|
221
|
+
Downloaded thiserror v1.0.69
|
|
222
|
+
Downloaded subtle v2.6.1
|
|
223
|
+
Downloaded stellar-strkey v0.0.13
|
|
224
|
+
Downloaded static_assertions v1.1.0
|
|
225
|
+
Downloaded stable_deref_trait v1.2.1
|
|
226
|
+
Downloaded soroban-spec v25.1.1
|
|
227
|
+
Downloaded soroban-env-common v25.0.1
|
|
228
|
+
Downloaded smallvec v1.15.1
|
|
229
|
+
Downloaded sha2 v0.10.9
|
|
230
|
+
Downloaded schemars v1.0.5
|
|
231
|
+
Downloaded schemars v0.9.0
|
|
232
|
+
Downloaded ryu v1.0.20
|
|
233
|
+
Downloaded ref-cast-impl v1.0.25
|
|
234
|
+
Downloaded ref-cast v1.0.25
|
|
235
|
+
Downloaded indexmap-nostd v0.4.0
|
|
236
|
+
Downloaded dyn-clone v1.0.20
|
|
245
237
|
Downloaded stellar-xdr v25.0.0
|
|
238
|
+
Downloaded dtor-proc-macro v0.0.6
|
|
239
|
+
Downloaded byteorder v1.5.0
|
|
240
|
+
Downloaded base16ct v0.2.0
|
|
241
|
+
Downloaded ark-serialize v0.4.2
|
|
242
|
+
Downloaded ahash v0.8.12
|
|
243
|
+
Downloaded typenum v1.19.0
|
|
244
|
+
Downloaded time-macros v0.2.24
|
|
245
|
+
Downloaded time-core v0.1.6
|
|
246
|
+
Downloaded time v0.3.44
|
|
247
|
+
Downloaded stellar-strkey v0.0.16
|
|
248
|
+
Downloaded soroban-builtin-sdk-macros v25.0.1
|
|
249
|
+
Downloaded powerfmt v0.2.0
|
|
246
250
|
Downloaded downcast-rs v1.2.1
|
|
247
|
-
Downloaded bytes-lit v0.0.5
|
|
248
|
-
Downloaded ryu v1.0.20
|
|
249
|
-
Downloaded rfc6979 v0.4.0
|
|
250
|
-
Downloaded hex-literal v0.4.1
|
|
251
251
|
Downloaded darling_macro v0.21.3
|
|
252
|
-
Downloaded
|
|
253
|
-
Downloaded
|
|
254
|
-
Downloaded
|
|
255
|
-
Downloaded
|
|
256
|
-
Downloaded
|
|
252
|
+
Downloaded curve25519-dalek-derive v0.1.1
|
|
253
|
+
Downloaded cfg_eval v0.1.2
|
|
254
|
+
Downloaded block-buffer v0.10.4
|
|
255
|
+
Downloaded rand_chacha v0.3.1
|
|
256
|
+
Downloaded fnv v1.0.7
|
|
257
|
+
Downloaded ark-serialize-derive v0.4.2
|
|
257
258
|
Downloaded spin v0.9.8
|
|
258
|
-
Downloaded schemars v0.8.22
|
|
259
259
|
Compiling proc-macro2 v1.0.103
|
|
260
260
|
Compiling unicode-ident v1.0.22
|
|
261
261
|
Compiling quote v1.0.41
|
|
262
262
|
Compiling serde_core v1.0.228
|
|
263
263
|
Compiling serde v1.0.228
|
|
264
264
|
Compiling serde_json v1.0.145
|
|
265
|
-
Compiling itoa v1.0.15
|
|
266
265
|
Compiling memchr v2.7.6
|
|
267
266
|
Compiling ryu v1.0.20
|
|
268
|
-
Compiling
|
|
269
|
-
Compiling fnv v1.0.7
|
|
267
|
+
Compiling itoa v1.0.15
|
|
270
268
|
Compiling ident_case v1.0.1
|
|
271
|
-
Compiling
|
|
269
|
+
Compiling fnv v1.0.7
|
|
270
|
+
Compiling strsim v0.11.1
|
|
272
271
|
Compiling typenum v1.19.0
|
|
272
|
+
Compiling version_check v0.9.5
|
|
273
273
|
Compiling autocfg v1.5.0
|
|
274
274
|
Compiling schemars v0.8.22
|
|
275
275
|
Compiling dyn-clone v1.0.20
|
|
276
|
-
Compiling data-encoding v2.9.0
|
|
277
276
|
Compiling cfg-if v1.0.4
|
|
277
|
+
Compiling data-encoding v2.9.0
|
|
278
278
|
Compiling cpufeatures v0.2.17
|
|
279
279
|
Compiling ethnum v1.5.2
|
|
280
280
|
Compiling escape-bytes v0.1.1
|
|
281
|
-
Compiling generic-array v0.14.9
|
|
282
281
|
Compiling either v1.15.0
|
|
283
282
|
Compiling semver v1.0.27
|
|
283
|
+
Compiling hashbrown v0.16.0
|
|
284
284
|
Compiling thiserror v1.0.69
|
|
285
285
|
Compiling equivalent v1.0.2
|
|
286
|
-
Compiling hashbrown v0.16.0
|
|
287
286
|
Compiling prettyplease v0.2.37
|
|
288
|
-
Compiling
|
|
289
|
-
Compiling
|
|
287
|
+
Compiling generic-array v0.14.9
|
|
288
|
+
Compiling num-traits v0.2.19
|
|
290
289
|
Compiling heapless v0.8.0
|
|
290
|
+
Compiling itertools v0.10.5
|
|
291
291
|
Compiling byteorder v1.5.0
|
|
292
|
-
Compiling
|
|
292
|
+
Compiling base64 v0.22.1
|
|
293
293
|
Compiling rustc_version v0.4.1
|
|
294
|
-
Compiling hash32 v0.3.1
|
|
295
|
-
Compiling static_assertions v1.1.0
|
|
296
294
|
Compiling stable_deref_trait v1.2.1
|
|
297
295
|
Compiling heck v0.5.0
|
|
296
|
+
Compiling static_assertions v1.1.0
|
|
297
|
+
Compiling hash32 v0.3.1
|
|
298
298
|
Compiling itertools v0.14.0
|
|
299
299
|
Compiling indexmap v2.12.0
|
|
300
|
+
Compiling syn v2.0.108
|
|
301
|
+
Compiling num-integer v0.1.46
|
|
300
302
|
Compiling block-buffer v0.10.4
|
|
301
303
|
Compiling crypto-common v0.1.6
|
|
302
|
-
Compiling syn v2.0.108
|
|
303
|
-
Compiling digest v0.10.7
|
|
304
|
-
Compiling sha2 v0.10.9
|
|
305
304
|
Compiling wasmparser v0.116.1
|
|
306
|
-
Compiling
|
|
305
|
+
Compiling digest v0.10.7
|
|
307
306
|
Compiling num-bigint v0.4.6
|
|
307
|
+
Compiling sha2 v0.10.9
|
|
308
308
|
Compiling darling_core v0.21.3
|
|
309
309
|
Compiling darling_core v0.20.11
|
|
310
310
|
Compiling macro-string v0.1.4
|
|
@@ -312,8 +312,8 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
312
312
|
Compiling cfg_eval v0.1.2
|
|
313
313
|
Compiling thiserror-impl v1.0.69
|
|
314
314
|
Compiling num-derive v0.4.2
|
|
315
|
-
Compiling bytes-lit v0.0.5
|
|
316
315
|
Compiling visibility v0.1.1
|
|
316
|
+
Compiling bytes-lit v0.0.5
|
|
317
317
|
Compiling common-macros v0.0.1 (/workspace/contracts/protocol/stellar/contracts/common-macros)
|
|
318
318
|
Compiling darling_macro v0.20.11
|
|
319
319
|
Compiling darling_macro v0.21.3
|
|
@@ -326,20 +326,20 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
326
326
|
Compiling stellar-xdr v25.0.0
|
|
327
327
|
Compiling soroban-env-common v25.0.1
|
|
328
328
|
Compiling stellar-strkey v0.0.16
|
|
329
|
-
Compiling soroban-sdk v25.1.
|
|
329
|
+
Compiling soroban-sdk v25.1.1
|
|
330
330
|
Compiling serde_with v3.15.1
|
|
331
|
-
Compiling soroban-spec v25.1.
|
|
331
|
+
Compiling soroban-spec v25.1.1
|
|
332
332
|
Compiling soroban-env-macros v25.0.1
|
|
333
|
-
Compiling soroban-spec-rust v25.1.
|
|
334
|
-
Compiling soroban-sdk-macros v25.1.
|
|
333
|
+
Compiling soroban-spec-rust v25.1.1
|
|
334
|
+
Compiling soroban-sdk-macros v25.1.1
|
|
335
335
|
Compiling soroban-env-guest v25.0.1
|
|
336
336
|
Compiling utils v0.0.1 (/workspace/contracts/protocol/stellar/contracts/utils)
|
|
337
337
|
Compiling endpoint-v2 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/endpoint-v2)
|
|
338
|
-
Finished `release` profile [optimized] target(s) in
|
|
338
|
+
Finished `release` profile [optimized] target(s) in 37.31s
|
|
339
339
|
ℹ️ Build Summary:
|
|
340
|
-
Wasm File: target/wasm32v1-none/release/endpoint_v2.wasm (
|
|
341
|
-
Wasm Hash:
|
|
342
|
-
Wasm Size:
|
|
340
|
+
Wasm File: target/wasm32v1-none/release/endpoint_v2.wasm (59413 bytes)
|
|
341
|
+
Wasm Hash: 3ade5ac0893539448c4feba947394f4c6e47fd2986ecd30edb210f6d7c2d0969
|
|
342
|
+
Wasm Size: 59413 bytes
|
|
343
343
|
Exported Functions: 60 found
|
|
344
344
|
• __constructor
|
|
345
345
|
• accept_ownership
|
|
@@ -367,7 +367,6 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
367
367
|
• is_supported_eid
|
|
368
368
|
• is_ttl_configs_frozen
|
|
369
369
|
• is_valid_receive_library
|
|
370
|
-
• lazy_inbound_nonce
|
|
371
370
|
• lz_compose_alert
|
|
372
371
|
• lz_receive_alert
|
|
373
372
|
• native_token
|
|
@@ -375,6 +374,7 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
375
374
|
• nilify
|
|
376
375
|
• outbound_nonce
|
|
377
376
|
• owner
|
|
377
|
+
• pending_inbound_nonces
|
|
378
378
|
• pending_owner
|
|
379
379
|
• propose_ownership_transfer
|
|
380
380
|
• quote
|
|
@@ -404,12 +404,12 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
404
404
|
✅ Build Complete
|
|
405
405
|
|
|
406
406
|
ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/layerzero-views/Cargo.toml --crate-type=cdylib --target=wasm32v1-none --release
|
|
407
|
-
Compiling byteorder v1.5.0
|
|
408
407
|
Compiling escape-bytes v0.1.1
|
|
409
|
-
Compiling
|
|
408
|
+
Compiling byteorder v1.5.0
|
|
410
409
|
Compiling static_assertions v1.1.0
|
|
411
|
-
Compiling stable_deref_trait v1.2.1
|
|
412
410
|
Compiling ethnum v1.5.2
|
|
411
|
+
Compiling num-traits v0.2.19
|
|
412
|
+
Compiling stable_deref_trait v1.2.1
|
|
413
413
|
Compiling data-encoding v2.9.0
|
|
414
414
|
Compiling cfg-if v1.0.4
|
|
415
415
|
Compiling stellar-xdr v25.0.0
|
|
@@ -418,17 +418,17 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
418
418
|
Compiling stellar-strkey v0.0.16
|
|
419
419
|
Compiling soroban-env-common v25.0.1
|
|
420
420
|
Compiling soroban-env-guest v25.0.1
|
|
421
|
-
Compiling soroban-sdk v25.1.
|
|
421
|
+
Compiling soroban-sdk v25.1.1
|
|
422
422
|
Compiling utils v0.0.1 (/workspace/contracts/protocol/stellar/contracts/utils)
|
|
423
423
|
Compiling endpoint-v2 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/endpoint-v2)
|
|
424
424
|
Compiling message-lib-common v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/message-lib-common)
|
|
425
425
|
Compiling uln302 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/uln-302)
|
|
426
426
|
Compiling layerzero-views v0.0.1 (/workspace/contracts/protocol/stellar/contracts/layerzero-views)
|
|
427
|
-
Finished `release` profile [optimized] target(s) in
|
|
427
|
+
Finished `release` profile [optimized] target(s) in 9.17s
|
|
428
428
|
ℹ️ Build Summary:
|
|
429
|
-
Wasm File: target/wasm32v1-none/release/layerzero_views.wasm (
|
|
430
|
-
Wasm Hash:
|
|
431
|
-
Wasm Size:
|
|
429
|
+
Wasm File: target/wasm32v1-none/release/layerzero_views.wasm (36701 bytes)
|
|
430
|
+
Wasm Hash: 8262961b302afe1a991e743ef70a8d4404263adc8350d54b9b6d123561323d8f
|
|
431
|
+
Wasm Size: 36701 bytes
|
|
432
432
|
Exported Functions: 22 found
|
|
433
433
|
• __constructor
|
|
434
434
|
• accept_ownership
|
|
@@ -457,11 +457,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
457
457
|
ℹ️ 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
|
|
458
458
|
Compiling message-lib-common v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/message-lib-common)
|
|
459
459
|
Compiling uln302 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/uln-302)
|
|
460
|
-
Finished `release` profile [optimized] target(s) in
|
|
460
|
+
Finished `release` profile [optimized] target(s) in 1.13s
|
|
461
461
|
ℹ️ Build Summary:
|
|
462
|
-
Wasm File: target/wasm32v1-none/release/uln302.wasm (
|
|
463
|
-
Wasm Hash:
|
|
464
|
-
Wasm Size:
|
|
462
|
+
Wasm File: target/wasm32v1-none/release/uln302.wasm (60581 bytes)
|
|
463
|
+
Wasm Hash: 0d7520b1c15ec0e74d77a83b411062e9fd192d764122849fa7f8d1133fa30dd1
|
|
464
|
+
Wasm Size: 60581 bytes
|
|
465
465
|
Exported Functions: 38 found
|
|
466
466
|
• __constructor
|
|
467
467
|
• accept_ownership
|
|
@@ -505,11 +505,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
505
505
|
|
|
506
506
|
ℹ️ 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
|
|
507
507
|
Compiling upgrader v0.0.1 (/workspace/contracts/protocol/stellar/contracts/upgrader)
|
|
508
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
508
|
+
Finished `release` profile [optimized] target(s) in 0.26s
|
|
509
509
|
ℹ️ Build Summary:
|
|
510
|
-
Wasm File: target/wasm32v1-none/release/upgrader.wasm (
|
|
511
|
-
Wasm Hash:
|
|
512
|
-
Wasm Size:
|
|
510
|
+
Wasm File: target/wasm32v1-none/release/upgrader.wasm (6502 bytes)
|
|
511
|
+
Wasm Hash: d97a7d611b07c5c0767dd1d785faea2ba1f3b20086ff6f7ea21afa837d48345b
|
|
512
|
+
Wasm Size: 6502 bytes
|
|
513
513
|
Exported Functions: 2 found
|
|
514
514
|
• upgrade
|
|
515
515
|
• upgrade_and_migrate
|
|
@@ -517,11 +517,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
517
517
|
|
|
518
518
|
ℹ️ 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
|
|
519
519
|
Compiling blocked-message-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/blocked-message-lib)
|
|
520
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
520
|
+
Finished `release` profile [optimized] target(s) in 0.30s
|
|
521
521
|
ℹ️ Build Summary:
|
|
522
|
-
Wasm File: target/wasm32v1-none/release/blocked_message_lib.wasm (
|
|
523
|
-
Wasm Hash:
|
|
524
|
-
Wasm Size:
|
|
522
|
+
Wasm File: target/wasm32v1-none/release/blocked_message_lib.wasm (15402 bytes)
|
|
523
|
+
Wasm Hash: 7ca4d00f21db6c06a9597f723f4d9c997d05ba1e88c6ce3d79c4eaf303379e6e
|
|
524
|
+
Wasm Size: 15402 bytes
|
|
525
525
|
Exported Functions: 7 found
|
|
526
526
|
• get_config
|
|
527
527
|
• is_supported_eid
|
|
@@ -534,11 +534,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
534
534
|
|
|
535
535
|
ℹ️ 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
|
|
536
536
|
Compiling simple-message-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/simple-message-lib)
|
|
537
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
537
|
+
Finished `release` profile [optimized] target(s) in 0.49s
|
|
538
538
|
ℹ️ Build Summary:
|
|
539
|
-
Wasm File: target/wasm32v1-none/release/simple_message_lib.wasm (
|
|
540
|
-
Wasm Hash:
|
|
541
|
-
Wasm Size:
|
|
539
|
+
Wasm File: target/wasm32v1-none/release/simple_message_lib.wasm (30939 bytes)
|
|
540
|
+
Wasm Hash: 25e25deccfacae018fbf9bb8c41146d304e1acedf3df665caac9f8857b08abec
|
|
541
|
+
Wasm Size: 30939 bytes
|
|
542
542
|
Exported Functions: 31 found
|
|
543
543
|
• __constructor
|
|
544
544
|
• accept_ownership
|
|
@@ -575,11 +575,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
575
575
|
|
|
576
576
|
ℹ️ 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
|
|
577
577
|
Compiling treasury v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/treasury)
|
|
578
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
578
|
+
Finished `release` profile [optimized] target(s) in 0.44s
|
|
579
579
|
ℹ️ Build Summary:
|
|
580
|
-
Wasm File: target/wasm32v1-none/release/treasury.wasm (
|
|
581
|
-
Wasm Hash:
|
|
582
|
-
Wasm Size:
|
|
580
|
+
Wasm File: target/wasm32v1-none/release/treasury.wasm (29518 bytes)
|
|
581
|
+
Wasm Hash: 7c09582303c1dbdf5e036df7583b48894a62dcdad5f2d948efc63ad73f576745
|
|
582
|
+
Wasm Size: 29518 bytes
|
|
583
583
|
Exported Functions: 21 found
|
|
584
584
|
• __constructor
|
|
585
585
|
• accept_ownership
|
|
@@ -608,12 +608,12 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
608
608
|
Compiling oapp-macros v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp-macros)
|
|
609
609
|
Compiling oapp v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp)
|
|
610
610
|
Compiling counter v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/counter)
|
|
611
|
-
Finished `release` profile [optimized] target(s) in
|
|
611
|
+
Finished `release` profile [optimized] target(s) in 1.21s
|
|
612
612
|
ℹ️ Build Summary:
|
|
613
|
-
Wasm File: target/wasm32v1-none/release/counter.wasm (
|
|
614
|
-
Wasm Hash:
|
|
615
|
-
Wasm Size:
|
|
616
|
-
Exported Functions:
|
|
613
|
+
Wasm File: target/wasm32v1-none/release/counter.wasm (43449 bytes)
|
|
614
|
+
Wasm Hash: 6a57a83fb7a87bcb64e5330521856b5d2533c29f9861fdc63beb00e9cec6dfb6
|
|
615
|
+
Wasm Size: 43449 bytes
|
|
616
|
+
Exported Functions: 36 found
|
|
617
617
|
• __constructor
|
|
618
618
|
• accept_ownership
|
|
619
619
|
• allow_initialize_path
|
|
@@ -649,17 +649,18 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
649
649
|
• skip_inbound_nonce
|
|
650
650
|
• transfer_ownership
|
|
651
651
|
• ttl_configs
|
|
652
|
+
• withdraw
|
|
652
653
|
✅ Build Complete
|
|
653
654
|
|
|
654
655
|
ℹ️ 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
|
|
655
656
|
Compiling fee-lib-interfaces v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/fee-lib-interfaces)
|
|
656
657
|
Compiling worker v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/worker)
|
|
657
658
|
Compiling dvn v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/dvn)
|
|
658
|
-
Finished `release` profile [optimized] target(s) in
|
|
659
|
+
Finished `release` profile [optimized] target(s) in 1.18s
|
|
659
660
|
ℹ️ Build Summary:
|
|
660
|
-
Wasm File: target/wasm32v1-none/release/dvn.wasm (
|
|
661
|
-
Wasm Hash:
|
|
662
|
-
Wasm Size:
|
|
661
|
+
Wasm File: target/wasm32v1-none/release/dvn.wasm (57132 bytes)
|
|
662
|
+
Wasm Hash: ca7834c6ed6ade6a9539276aedca225020330595d6bc731896c2658d4961c22e
|
|
663
|
+
Wasm Size: 57132 bytes
|
|
663
664
|
Exported Functions: 49 found
|
|
664
665
|
• __check_auth
|
|
665
666
|
• __constructor
|
|
@@ -715,11 +716,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
715
716
|
ℹ️ 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
|
|
716
717
|
Compiling fee-lib-interfaces v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/fee-lib-interfaces)
|
|
717
718
|
Compiling dvn-fee-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/dvn-fee-lib)
|
|
718
|
-
Finished `release` profile [optimized] target(s) in
|
|
719
|
+
Finished `release` profile [optimized] target(s) in 0.61s
|
|
719
720
|
ℹ️ Build Summary:
|
|
720
|
-
Wasm File: target/wasm32v1-none/release/dvn_fee_lib.wasm (
|
|
721
|
-
Wasm Hash:
|
|
722
|
-
Wasm Size:
|
|
721
|
+
Wasm File: target/wasm32v1-none/release/dvn_fee_lib.wasm (22689 bytes)
|
|
722
|
+
Wasm Hash: 1a551485d6498e0705d2fcc677884aaed3e8bfc9ed38da6b81b5b8e2bd5facf8
|
|
723
|
+
Wasm Size: 22689 bytes
|
|
723
724
|
Exported Functions: 16 found
|
|
724
725
|
• __constructor
|
|
725
726
|
• accept_ownership
|
|
@@ -741,11 +742,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
741
742
|
|
|
742
743
|
ℹ️ 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
|
|
743
744
|
Compiling executor v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor)
|
|
744
|
-
Finished `release` profile [optimized] target(s) in
|
|
745
|
+
Finished `release` profile [optimized] target(s) in 0.78s
|
|
745
746
|
ℹ️ Build Summary:
|
|
746
|
-
Wasm File: target/wasm32v1-none/release/executor.wasm (
|
|
747
|
-
Wasm Hash:
|
|
748
|
-
Wasm Size:
|
|
747
|
+
Wasm File: target/wasm32v1-none/release/executor.wasm (59462 bytes)
|
|
748
|
+
Wasm Hash: e77e3d2ac1deacdd1e2c430eaad45569b2ef2c5778107399f6825aca90181e88
|
|
749
|
+
Wasm Size: 59462 bytes
|
|
749
750
|
Exported Functions: 49 found
|
|
750
751
|
• __check_auth
|
|
751
752
|
• __constructor
|
|
@@ -800,11 +801,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
800
801
|
|
|
801
802
|
ℹ️ 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
|
|
802
803
|
Compiling executor-fee-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor-fee-lib)
|
|
803
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
804
|
+
Finished `release` profile [optimized] target(s) in 0.43s
|
|
804
805
|
ℹ️ Build Summary:
|
|
805
|
-
Wasm File: target/wasm32v1-none/release/executor_fee_lib.wasm (
|
|
806
|
-
Wasm Hash:
|
|
807
|
-
Wasm Size:
|
|
806
|
+
Wasm File: target/wasm32v1-none/release/executor_fee_lib.wasm (35574 bytes)
|
|
807
|
+
Wasm Hash: 99f1d3d7912bbf457c50675cd9cc627f8332e919dfac90b35ddd3bbb0a09a667
|
|
808
|
+
Wasm Size: 35574 bytes
|
|
808
809
|
Exported Functions: 17 found
|
|
809
810
|
• __constructor
|
|
810
811
|
• accept_ownership
|
|
@@ -830,11 +831,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
830
831
|
Compiling worker v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/worker)
|
|
831
832
|
Compiling executor v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor)
|
|
832
833
|
Compiling executor-helper v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor-helper)
|
|
833
|
-
Finished `release` profile [optimized] target(s) in
|
|
834
|
+
Finished `release` profile [optimized] target(s) in 0.99s
|
|
834
835
|
ℹ️ Build Summary:
|
|
835
|
-
Wasm File: target/wasm32v1-none/release/executor_helper.wasm (
|
|
836
|
-
Wasm Hash:
|
|
837
|
-
Wasm Size:
|
|
836
|
+
Wasm File: target/wasm32v1-none/release/executor_helper.wasm (25865 bytes)
|
|
837
|
+
Wasm Hash: 0ebe8f083ccddc2f5731758d8d0804f42408fdbd2b7e43df1f34ec95a4af4d8b
|
|
838
|
+
Wasm Size: 25865 bytes
|
|
838
839
|
Exported Functions: 6 found
|
|
839
840
|
• compose
|
|
840
841
|
• execute
|
|
@@ -846,11 +847,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
846
847
|
|
|
847
848
|
ℹ️ 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
|
|
848
849
|
Compiling price-feed v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/price-feed)
|
|
849
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
850
|
+
Finished `release` profile [optimized] target(s) in 0.60s
|
|
850
851
|
ℹ️ Build Summary:
|
|
851
|
-
Wasm File: target/wasm32v1-none/release/price_feed.wasm (
|
|
852
|
-
Wasm Hash:
|
|
853
|
-
Wasm Size:
|
|
852
|
+
Wasm File: target/wasm32v1-none/release/price_feed.wasm (33778 bytes)
|
|
853
|
+
Wasm Hash: 0e91b68a7a3eed460a399efdc89372781ec98f238d10fc47944562dde0026d11
|
|
854
|
+
Wasm Size: 33778 bytes
|
|
854
855
|
Exported Functions: 30 found
|
|
855
856
|
• __constructor
|
|
856
857
|
• accept_ownership
|
|
@@ -887,12 +888,12 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
887
888
|
ℹ️ 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
|
|
888
889
|
Compiling oft-core v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft-core)
|
|
889
890
|
Compiling oft v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft)
|
|
890
|
-
Finished `release` profile [optimized] target(s) in
|
|
891
|
+
Finished `release` profile [optimized] target(s) in 1.21s
|
|
891
892
|
ℹ️ Build Summary:
|
|
892
|
-
Wasm File: target/wasm32v1-none/release/oft.wasm (
|
|
893
|
-
Wasm Hash:
|
|
894
|
-
Wasm Size:
|
|
895
|
-
Exported Functions:
|
|
893
|
+
Wasm File: target/wasm32v1-none/release/oft.wasm (68337 bytes)
|
|
894
|
+
Wasm Hash: 84890f3103cd4dd74a2be893972918493ec07da658e2ba8bc5716ab0a0322719
|
|
895
|
+
Wasm Size: 68337 bytes
|
|
896
|
+
Exported Functions: 50 found
|
|
896
897
|
• __constructor
|
|
897
898
|
• accept_ownership
|
|
898
899
|
• allow_initialize_path
|
|
@@ -908,6 +909,7 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
908
909
|
• fee_bps
|
|
909
910
|
• fee_deposit_address
|
|
910
911
|
• freeze_ttl_configs
|
|
912
|
+
• has_oft_fee
|
|
911
913
|
• is_compose_msg_sender
|
|
912
914
|
• is_paused
|
|
913
915
|
• is_ttl_configs_frozen
|
|
@@ -945,41 +947,44 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
945
947
|
✅ Build Complete
|
|
946
948
|
|
|
947
949
|
ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/oapps/sac-manager/Cargo.toml --crate-type=cdylib --target=wasm32v1-none --release
|
|
948
|
-
Compiling oapp v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp)
|
|
949
|
-
Compiling oft-core v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft-core)
|
|
950
|
-
Compiling oft v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft)
|
|
951
950
|
Compiling sac-manager v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/sac-manager)
|
|
952
|
-
Finished `release` profile [optimized] target(s) in
|
|
951
|
+
Finished `release` profile [optimized] target(s) in 0.45s
|
|
953
952
|
ℹ️ Build Summary:
|
|
954
|
-
Wasm File: target/wasm32v1-none/release/sac_manager.wasm (
|
|
955
|
-
Wasm Hash:
|
|
956
|
-
Wasm Size:
|
|
957
|
-
Exported Functions:
|
|
953
|
+
Wasm File: target/wasm32v1-none/release/sac_manager.wasm (23526 bytes)
|
|
954
|
+
Wasm Hash: 5d91c1f0a5adf949d96bc6e53a72c38928ec7397a3b5d0ad6c6bf97b188af2dd
|
|
955
|
+
Wasm Size: 23526 bytes
|
|
956
|
+
Exported Functions: 28 found
|
|
958
957
|
• __constructor
|
|
959
958
|
• accept_ownership
|
|
960
959
|
• authorizer
|
|
961
960
|
• clawback
|
|
962
961
|
• extend_instance_ttl
|
|
963
962
|
• freeze_ttl_configs
|
|
963
|
+
• get_existing_roles
|
|
964
|
+
• get_role_admin
|
|
965
|
+
• get_role_member
|
|
966
|
+
• get_role_member_count
|
|
967
|
+
• grant_role
|
|
968
|
+
• has_role
|
|
964
969
|
• is_ttl_configs_frozen
|
|
965
|
-
• migrate
|
|
966
970
|
• mint
|
|
967
|
-
• minters
|
|
968
971
|
• owner
|
|
969
972
|
• pending_owner
|
|
970
973
|
• propose_ownership_transfer
|
|
971
|
-
•
|
|
974
|
+
• remove_role_admin
|
|
972
975
|
• renounce_ownership
|
|
976
|
+
• renounce_role
|
|
977
|
+
• revoke_role
|
|
978
|
+
• set_admin
|
|
973
979
|
• set_authorized
|
|
974
|
-
•
|
|
980
|
+
• set_role_admin
|
|
975
981
|
• set_ttl_configs
|
|
976
982
|
• transfer_ownership
|
|
977
983
|
• ttl_configs
|
|
978
984
|
• underlying_sac
|
|
979
|
-
• upgrade
|
|
980
985
|
✅ Build Complete
|
|
981
986
|
|
|
982
|
-
⏱️ stellar contract build:
|
|
987
|
+
⏱️ stellar contract build: 1:12.071 (m:ss.mmm)
|
|
983
988
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
|
|
984
989
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-config
|
|
985
990
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup
|
|
@@ -992,7 +997,7 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
992
997
|
📦 Using 4 default cache volume(s) for stellar
|
|
993
998
|
✅ stellar-25.0.0 (Latest stable release)
|
|
994
999
|
🔧 stellar version: 25.0.0
|
|
995
|
-
(node:
|
|
1000
|
+
(node:30660) [MODULE_TYPELESS_PACKAGE_JSON] Warning: Module type of file:///home/runner/work/monorepo-internal/monorepo-internal/configs/vm-tooling/values/docker-image-repo.ts is not specified and it doesn't parse as CommonJS.
|
|
996
1001
|
Reparsing as ES module because module syntax was detected. This incurs a performance overhead.
|
|
997
1002
|
To eliminate this warning, add "type": "module" to /home/runner/work/monorepo-internal/monorepo-internal/package.json.
|
|
998
1003
|
(Use `node --trace-warnings ...` to show where the warning was created)
|
|
@@ -1007,17 +1012,17 @@ sha256:57520026e52d8bfec50ae6363977a40712bfa2549bac8ceed62a150f1d58a8d2
|
|
|
1007
1012
|
🔒 Acquired lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
|
|
1008
1013
|
$ 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_25.0.0 bash -c $'cargo run -p ts-bindings-gen'
|
|
1009
1014
|
Downloading crates ...
|
|
1010
|
-
Downloaded
|
|
1015
|
+
Downloaded include_dir v0.7.4
|
|
1011
1016
|
Downloaded opaque-debug v0.3.1
|
|
1012
|
-
Downloaded block-buffer v0.9.0
|
|
1013
1017
|
Downloaded include_dir_macros v0.7.4
|
|
1014
|
-
Downloaded
|
|
1018
|
+
Downloaded sha2 v0.9.9
|
|
1019
|
+
Downloaded digest v0.9.0
|
|
1015
1020
|
Downloaded anyhow v1.0.100
|
|
1016
1021
|
Downloaded heck v0.4.1
|
|
1017
|
-
Downloaded
|
|
1022
|
+
Downloaded soroban-spec-typescript v25.1.0
|
|
1018
1023
|
Downloaded glob v0.3.3
|
|
1019
1024
|
Downloaded base64 v0.21.7
|
|
1020
|
-
Downloaded
|
|
1025
|
+
Downloaded block-buffer v0.9.0
|
|
1021
1026
|
Compiling proc-macro2 v1.0.103
|
|
1022
1027
|
Compiling unicode-ident v1.0.22
|
|
1023
1028
|
Compiling quote v1.0.41
|
|
@@ -1026,43 +1031,43 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
1026
1031
|
Compiling typenum v1.19.0
|
|
1027
1032
|
Compiling serde_core v1.0.228
|
|
1028
1033
|
Compiling serde v1.0.228
|
|
1029
|
-
Compiling ryu v1.0.20
|
|
1030
|
-
Compiling itoa v1.0.15
|
|
1031
1034
|
Compiling memchr v2.7.6
|
|
1035
|
+
Compiling itoa v1.0.15
|
|
1036
|
+
Compiling ryu v1.0.20
|
|
1037
|
+
Compiling fnv v1.0.7
|
|
1032
1038
|
Compiling ident_case v1.0.1
|
|
1033
1039
|
Compiling strsim v0.11.1
|
|
1034
|
-
Compiling fnv v1.0.7
|
|
1035
1040
|
Compiling schemars v0.8.22
|
|
1036
|
-
Compiling dyn-clone v1.0.20
|
|
1037
1041
|
Compiling cpufeatures v0.2.17
|
|
1042
|
+
Compiling dyn-clone v1.0.20
|
|
1038
1043
|
Compiling cfg-if v1.0.4
|
|
1039
|
-
Compiling equivalent v1.0.2
|
|
1040
|
-
Compiling hashbrown v0.16.0
|
|
1041
|
-
Compiling data-encoding v2.9.0
|
|
1042
1044
|
Compiling thiserror v1.0.69
|
|
1043
|
-
Compiling
|
|
1045
|
+
Compiling data-encoding v2.9.0
|
|
1046
|
+
Compiling hashbrown v0.16.0
|
|
1047
|
+
Compiling equivalent v1.0.2
|
|
1044
1048
|
Compiling base64 v0.22.1
|
|
1045
|
-
Compiling semver v1.0.27
|
|
1046
1049
|
Compiling prettyplease v0.2.37
|
|
1047
|
-
Compiling ethnum v1.5.2
|
|
1048
|
-
Compiling anyhow v1.0.100
|
|
1049
1050
|
Compiling generic-array v0.14.9
|
|
1050
|
-
Compiling
|
|
1051
|
+
Compiling escape-bytes v0.1.1
|
|
1052
|
+
Compiling ethnum v1.5.2
|
|
1053
|
+
Compiling semver v1.0.27
|
|
1051
1054
|
Compiling glob v0.3.3
|
|
1055
|
+
Compiling anyhow v1.0.100
|
|
1052
1056
|
Compiling opaque-debug v0.3.1
|
|
1053
|
-
Compiling
|
|
1054
|
-
Compiling indexmap v2.12.0
|
|
1055
|
-
Compiling base64 v0.21.7
|
|
1057
|
+
Compiling either v1.15.0
|
|
1056
1058
|
Compiling heck v0.4.1
|
|
1057
|
-
Compiling
|
|
1059
|
+
Compiling base64 v0.21.7
|
|
1060
|
+
Compiling indexmap v2.12.0
|
|
1061
|
+
Compiling itertools v0.10.5
|
|
1058
1062
|
Compiling syn v2.0.108
|
|
1059
|
-
Compiling
|
|
1063
|
+
Compiling wasmparser v0.116.1
|
|
1060
1064
|
Compiling block-buffer v0.10.4
|
|
1061
1065
|
Compiling crypto-common v0.1.6
|
|
1062
|
-
Compiling digest v0.9.0
|
|
1063
1066
|
Compiling block-buffer v0.9.0
|
|
1064
|
-
Compiling digest v0.
|
|
1067
|
+
Compiling digest v0.9.0
|
|
1065
1068
|
Compiling sha2 v0.9.9
|
|
1069
|
+
Compiling digest v0.10.7
|
|
1070
|
+
Compiling include_dir_macros v0.7.4
|
|
1066
1071
|
Compiling sha2 v0.10.9
|
|
1067
1072
|
Compiling include_dir v0.7.4
|
|
1068
1073
|
Compiling darling_core v0.21.3
|
|
@@ -1077,107 +1082,107 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
1077
1082
|
Compiling darling v0.21.3
|
|
1078
1083
|
Compiling serde_with_macros v3.15.1
|
|
1079
1084
|
Compiling serde_with v3.15.1
|
|
1080
|
-
Compiling soroban-spec v25.1.
|
|
1085
|
+
Compiling soroban-spec v25.1.1
|
|
1081
1086
|
Compiling soroban-spec-typescript v25.1.0
|
|
1082
1087
|
Compiling ts-bindings-gen v0.0.1 (/workspace/contracts/protocol/stellar/tools/ts-bindings-gen)
|
|
1083
|
-
Finished `dev` profile [unoptimized + debuginfo] target(s) in
|
|
1088
|
+
Finished `dev` profile [unoptimized + debuginfo] target(s) in 43.49s
|
|
1084
1089
|
Running `target/debug/ts-bindings-gen`
|
|
1085
1090
|
🚀 Generating TypeScript bindings for Stellar contracts...
|
|
1086
1091
|
|
|
1087
1092
|
📦 Processing contract: endpoint_v2
|
|
1088
1093
|
WASM: target/wasm32v1-none/release/endpoint_v2.wasm
|
|
1089
1094
|
Output: sdk/src/generated/endpoint.ts
|
|
1090
|
-
WASM size:
|
|
1095
|
+
WASM size: 59413 bytes (58.02 KB)
|
|
1091
1096
|
Generating bindings...
|
|
1092
1097
|
✓ Generated: sdk/src/generated/endpoint.ts
|
|
1093
1098
|
📦 Processing contract: simple_message_lib
|
|
1094
1099
|
WASM: target/wasm32v1-none/release/simple_message_lib.wasm
|
|
1095
1100
|
Output: sdk/src/generated/sml.ts
|
|
1096
|
-
WASM size:
|
|
1101
|
+
WASM size: 30939 bytes (30.21 KB)
|
|
1097
1102
|
Generating bindings...
|
|
1098
1103
|
✓ Generated: sdk/src/generated/sml.ts
|
|
1099
1104
|
📦 Processing contract: blocked_message_lib
|
|
1100
1105
|
WASM: target/wasm32v1-none/release/blocked_message_lib.wasm
|
|
1101
1106
|
Output: sdk/src/generated/bml.ts
|
|
1102
|
-
WASM size:
|
|
1107
|
+
WASM size: 15402 bytes (15.04 KB)
|
|
1103
1108
|
Generating bindings...
|
|
1104
1109
|
✓ Generated: sdk/src/generated/bml.ts
|
|
1105
1110
|
📦 Processing contract: uln302
|
|
1106
1111
|
WASM: target/wasm32v1-none/release/uln302.wasm
|
|
1107
1112
|
Output: sdk/src/generated/uln302.ts
|
|
1108
|
-
WASM size:
|
|
1113
|
+
WASM size: 60581 bytes (59.16 KB)
|
|
1109
1114
|
Generating bindings...
|
|
1110
1115
|
✓ Generated: sdk/src/generated/uln302.ts
|
|
1111
1116
|
📦 Processing contract: treasury
|
|
1112
1117
|
WASM: target/wasm32v1-none/release/treasury.wasm
|
|
1113
1118
|
Output: sdk/src/generated/treasury.ts
|
|
1114
|
-
WASM size:
|
|
1119
|
+
WASM size: 29518 bytes (28.83 KB)
|
|
1115
1120
|
Generating bindings...
|
|
1116
1121
|
✓ Generated: sdk/src/generated/treasury.ts
|
|
1117
1122
|
📦 Processing contract: upgrader
|
|
1118
1123
|
WASM: target/wasm32v1-none/release/upgrader.wasm
|
|
1119
1124
|
Output: sdk/src/generated/upgrader.ts
|
|
1120
|
-
WASM size:
|
|
1125
|
+
WASM size: 6502 bytes (6.35 KB)
|
|
1121
1126
|
Generating bindings...
|
|
1122
1127
|
✓ Generated: sdk/src/generated/upgrader.ts
|
|
1123
1128
|
📦 Processing contract: dvn
|
|
1124
1129
|
WASM: target/wasm32v1-none/release/dvn.wasm
|
|
1125
1130
|
Output: sdk/src/generated/dvn.ts
|
|
1126
|
-
WASM size:
|
|
1131
|
+
WASM size: 57132 bytes (55.79 KB)
|
|
1127
1132
|
Generating bindings...
|
|
1128
1133
|
✓ Generated: sdk/src/generated/dvn.ts
|
|
1129
1134
|
📦 Processing contract: dvn_fee_lib
|
|
1130
1135
|
WASM: target/wasm32v1-none/release/dvn_fee_lib.wasm
|
|
1131
1136
|
Output: sdk/src/generated/dvn_fee_lib.ts
|
|
1132
|
-
WASM size:
|
|
1137
|
+
WASM size: 22689 bytes (22.16 KB)
|
|
1133
1138
|
Generating bindings...
|
|
1134
1139
|
✓ Generated: sdk/src/generated/dvn_fee_lib.ts
|
|
1135
1140
|
📦 Processing contract: executor
|
|
1136
1141
|
WASM: target/wasm32v1-none/release/executor.wasm
|
|
1137
1142
|
Output: sdk/src/generated/executor.ts
|
|
1138
|
-
WASM size:
|
|
1143
|
+
WASM size: 59462 bytes (58.07 KB)
|
|
1139
1144
|
Generating bindings...
|
|
1140
1145
|
✓ Generated: sdk/src/generated/executor.ts
|
|
1141
1146
|
📦 Processing contract: executor_fee_lib
|
|
1142
1147
|
WASM: target/wasm32v1-none/release/executor_fee_lib.wasm
|
|
1143
1148
|
Output: sdk/src/generated/executor_fee_lib.ts
|
|
1144
|
-
WASM size:
|
|
1149
|
+
WASM size: 35574 bytes (34.74 KB)
|
|
1145
1150
|
Generating bindings...
|
|
1146
1151
|
✓ Generated: sdk/src/generated/executor_fee_lib.ts
|
|
1147
1152
|
📦 Processing contract: executor_helper
|
|
1148
1153
|
WASM: target/wasm32v1-none/release/executor_helper.wasm
|
|
1149
1154
|
Output: sdk/src/generated/executor_helper.ts
|
|
1150
|
-
WASM size:
|
|
1155
|
+
WASM size: 25865 bytes (25.26 KB)
|
|
1151
1156
|
Generating bindings...
|
|
1152
1157
|
✓ Generated: sdk/src/generated/executor_helper.ts
|
|
1153
1158
|
📦 Processing contract: price_feed
|
|
1154
1159
|
WASM: target/wasm32v1-none/release/price_feed.wasm
|
|
1155
1160
|
Output: sdk/src/generated/price_feed.ts
|
|
1156
|
-
WASM size:
|
|
1161
|
+
WASM size: 33778 bytes (32.99 KB)
|
|
1157
1162
|
Generating bindings...
|
|
1158
1163
|
✓ Generated: sdk/src/generated/price_feed.ts
|
|
1159
1164
|
📦 Processing contract: counter
|
|
1160
1165
|
WASM: target/wasm32v1-none/release/counter.wasm
|
|
1161
1166
|
Output: sdk/src/generated/counter.ts
|
|
1162
|
-
WASM size:
|
|
1167
|
+
WASM size: 43449 bytes (42.43 KB)
|
|
1163
1168
|
Generating bindings...
|
|
1164
1169
|
✓ Generated: sdk/src/generated/counter.ts
|
|
1165
1170
|
📦 Processing contract: oft
|
|
1166
1171
|
WASM: target/wasm32v1-none/release/oft.wasm
|
|
1167
1172
|
Output: sdk/src/generated/oft.ts
|
|
1168
|
-
WASM size:
|
|
1173
|
+
WASM size: 68337 bytes (66.74 KB)
|
|
1169
1174
|
Generating bindings...
|
|
1170
1175
|
✓ Generated: sdk/src/generated/oft.ts
|
|
1171
1176
|
📦 Processing contract: sac_manager
|
|
1172
1177
|
WASM: target/wasm32v1-none/release/sac_manager.wasm
|
|
1173
1178
|
Output: sdk/src/generated/sac_manager.ts
|
|
1174
|
-
WASM size:
|
|
1179
|
+
WASM size: 23526 bytes (22.97 KB)
|
|
1175
1180
|
Generating bindings...
|
|
1176
1181
|
✓ Generated: sdk/src/generated/sac_manager.ts
|
|
1177
1182
|
📦 Processing contract: layerzero_views
|
|
1178
1183
|
WASM: target/wasm32v1-none/release/layerzero_views.wasm
|
|
1179
1184
|
Output: sdk/src/generated/layerzero_view.ts
|
|
1180
|
-
WASM size:
|
|
1185
|
+
WASM size: 36701 bytes (35.84 KB)
|
|
1181
1186
|
Generating bindings...
|
|
1182
1187
|
✓ Generated: sdk/src/generated/layerzero_view.ts
|
|
1183
1188
|
|
|
@@ -1201,7 +1206,7 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
1201
1206
|
- oft.ts
|
|
1202
1207
|
- sac_manager.ts
|
|
1203
1208
|
- layerzero_view.ts
|
|
1204
|
-
⏱️ bash -c cargo run -p ts-bindings-gen:
|
|
1209
|
+
⏱️ bash -c cargo run -p ts-bindings-gen: 44.257s
|
|
1205
1210
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
|
|
1206
1211
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-config
|
|
1207
1212
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup
|