@layerzerolabs/protocol-stellar-v2 0.2.33 → 0.2.35
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 +351 -367
- package/.turbo/turbo-lint.log +220 -223
- package/.turbo/turbo-test.log +1993 -1796
- package/Cargo.lock +10 -10
- package/Cargo.toml +1 -1
- package/contracts/common-macros/src/storage.rs +7 -5
- 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/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/integration-tests/extensions/test_oft_fee.rs +5 -11
- package/contracts/oapps/oft/integration-tests/extensions/test_pausable.rs +7 -14
- package/contracts/oapps/oft/integration-tests/extensions/test_rate_limiter.rs +11 -22
- package/contracts/oapps/oft/integration-tests/setup.rs +59 -7
- package/contracts/oapps/oft/integration-tests/utils.rs +28 -2
- package/contracts/oapps/oft/src/extensions/oft_fee.rs +5 -0
- package/contracts/oapps/oft/src/interfaces/mintable.rs +14 -0
- package/contracts/oapps/oft/src/interfaces/mod.rs +2 -2
- package/contracts/oapps/oft/src/oft.rs +8 -7
- package/contracts/oapps/oft/src/oft_types/mint_burn.rs +8 -8
- package/contracts/oapps/oft/src/oft_types/mod.rs +3 -4
- package/contracts/oapps/oft/src/tests/extensions/rate_limiter.rs +7 -5
- package/contracts/oapps/sac-manager/src/errors.rs +14 -0
- package/contracts/{sac-manager → oapps/sac-manager}/src/lib.rs +0 -4
- package/contracts/oapps/sac-manager/src/sac_manager.rs +115 -0
- package/contracts/oapps/sac-manager/src/storage.rs +20 -0
- package/contracts/{sac-manager → oapps/sac-manager}/src/tests/mod.rs +0 -4
- package/contracts/oapps/sac-manager/src/tests/sac_manager/clawback.rs +86 -0
- package/contracts/oapps/sac-manager/src/tests/sac_manager/mint.rs +58 -0
- package/contracts/{sac-manager → oapps/sac-manager}/src/tests/sac_manager/mod.rs +1 -3
- package/contracts/oapps/sac-manager/src/tests/sac_manager/set_minter.rs +69 -0
- package/contracts/oapps/sac-manager/src/tests/sac_manager/test_helper.rs +18 -0
- package/contracts/oapps/sac-manager/src/tests/sac_manager/view_functions.rs +28 -0
- package/contracts/{sac-manager → oapps/sac-manager}/src/tests/test_helper.rs +16 -59
- package/docs/layerzero-v2-on-stellar.md +46 -2
- package/package.json +8 -3
- package/sdk/.turbo/turbo-test.log +424 -429
- package/sdk/dist/generated/bml.d.ts +3 -3
- package/sdk/dist/generated/bml.js +3 -3
- package/sdk/dist/generated/counter.d.ts +32 -3
- package/sdk/dist/generated/counter.js +6 -3
- package/sdk/dist/generated/dvn.d.ts +3 -3
- package/sdk/dist/generated/dvn.js +3 -3
- package/sdk/dist/generated/dvn_fee_lib.d.ts +2 -2
- package/sdk/dist/generated/dvn_fee_lib.js +2 -2
- package/sdk/dist/generated/endpoint.d.ts +12 -13
- package/sdk/dist/generated/endpoint.js +7 -7
- package/sdk/dist/generated/executor.d.ts +3 -3
- package/sdk/dist/generated/executor.js +3 -3
- package/sdk/dist/generated/executor_fee_lib.d.ts +2 -2
- package/sdk/dist/generated/executor_fee_lib.js +2 -2
- package/sdk/dist/generated/executor_helper.d.ts +2 -2
- package/sdk/dist/generated/executor_helper.js +2 -2
- package/sdk/dist/generated/layerzero_view.d.ts +3 -3
- package/sdk/dist/generated/layerzero_view.js +3 -3
- package/sdk/dist/generated/oft.d.ts +32 -3
- package/sdk/dist/generated/oft.js +7 -4
- package/sdk/dist/generated/price_feed.d.ts +3 -3
- package/sdk/dist/generated/price_feed.js +3 -3
- package/sdk/dist/generated/sac_manager.d.ts +47 -318
- package/sdk/dist/generated/sac_manager.js +24 -129
- package/sdk/dist/generated/sml.d.ts +2 -2
- package/sdk/dist/generated/sml.js +2 -2
- package/sdk/dist/generated/treasury.d.ts +2 -2
- package/sdk/dist/generated/treasury.js +2 -2
- package/sdk/dist/generated/uln302.d.ts +3 -3
- package/sdk/dist/generated/uln302.js +3 -3
- package/sdk/dist/generated/upgrader.d.ts +2 -2
- package/sdk/dist/generated/upgrader.js +2 -2
- package/sdk/package.json +6 -1
- package/sdk/test/oft-sml.test.ts +72 -36
- package/sdk/test/sac-manager-redistribution.test.ts +38 -182
- package/contracts/endpoint-v2/src/tests/messaging_channel/lazy_inbound_nonce.rs +0 -39
- package/contracts/oapps/oft/src/interfaces/mint_burnable.rs +0 -18
- package/contracts/sac-manager/src/errors.rs +0 -18
- package/contracts/sac-manager/src/extensions/mod.rs +0 -6
- package/contracts/sac-manager/src/extensions/redistribution.rs +0 -109
- package/contracts/sac-manager/src/extensions/supply_control/mod.rs +0 -488
- package/contracts/sac-manager/src/extensions/supply_control/rate_limit.rs +0 -126
- package/contracts/sac-manager/src/interfaces/mod.rs +0 -3
- package/contracts/sac-manager/src/interfaces/sac_manager.rs +0 -52
- package/contracts/sac-manager/src/sac_manager.rs +0 -193
- package/contracts/sac-manager/src/storage.rs +0 -20
- package/contracts/sac-manager/src/tests/redistribution/mod.rs +0 -1
- package/contracts/sac-manager/src/tests/redistribution/redistribute_funds.rs +0 -82
- package/contracts/sac-manager/src/tests/sac_manager/admin_mint.rs +0 -206
- package/contracts/sac-manager/src/tests/sac_manager/burn.rs +0 -215
- package/contracts/sac-manager/src/tests/sac_manager/clawback.rs +0 -209
- package/contracts/sac-manager/src/tests/sac_manager/mint.rs +0 -252
- package/contracts/sac-manager/src/tests/sac_manager/set_oft_address.rs +0 -47
- package/contracts/sac-manager/src/tests/sac_manager/test_helper.rs +0 -75
- package/contracts/sac-manager/src/tests/sac_manager/view_functions.rs +0 -60
- package/contracts/sac-manager/src/tests/supply_control/enumerable_set.rs +0 -256
- package/contracts/sac-manager/src/tests/supply_control/mod.rs +0 -8
- package/contracts/sac-manager/src/tests/supply_control/refill.rs +0 -90
- package/contracts/sac-manager/src/tests/supply_control/set_mint_whitelist.rs +0 -245
- package/contracts/sac-manager/src/tests/supply_control/set_supply_controller.rs +0 -267
- package/contracts/sac-manager/src/tests/supply_control/set_supply_controller_manager.rs +0 -122
- package/contracts/sac-manager/src/tests/supply_control/test_helper.rs +0 -38
- package/contracts/sac-manager/src/tests/supply_control/update_allow_any_mint_burn.rs +0 -114
- package/contracts/sac-manager/src/tests/supply_control/update_limit_config.rs +0 -257
- /package/contracts/{sac-manager → oapps/sac-manager}/Cargo.toml +0 -0
- /package/contracts/{sac-manager → oapps/sac-manager}/src/tests/sac_manager/set_admin.rs +0 -0
- /package/contracts/{sac-manager → oapps/sac-manager}/src/tests/sac_manager/set_authorized.rs +0 -0
package/.turbo/turbo-build.log
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
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:34161) [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)
|
|
@@ -35,16 +35,16 @@ f6bd9104d248: Pulling fs layer
|
|
|
35
35
|
73ca50fa4809: Pulling fs layer
|
|
36
36
|
f5a85bd7a844: Pulling fs layer
|
|
37
37
|
c132a28172a5: Pulling fs layer
|
|
38
|
-
|
|
38
|
+
67ce8fb56745: Waiting
|
|
39
39
|
43dc8d96fd20: Waiting
|
|
40
|
-
1cfd9ed002d2: Waiting
|
|
41
40
|
2c1ce468d9f3: Waiting
|
|
42
|
-
|
|
43
|
-
f5a85bd7a844: Waiting
|
|
44
|
-
c132a28172a5: Waiting
|
|
41
|
+
1b2c4c00c303: Waiting
|
|
45
42
|
1d4a870e3b66: Waiting
|
|
46
43
|
73ca50fa4809: Waiting
|
|
47
|
-
|
|
44
|
+
6ba0ba49c87d: Waiting
|
|
45
|
+
1cfd9ed002d2: Waiting
|
|
46
|
+
f5a85bd7a844: Waiting
|
|
47
|
+
c132a28172a5: Waiting
|
|
48
48
|
f6bd9104d248: Download complete
|
|
49
49
|
67ce8fb56745: Verifying Checksum
|
|
50
50
|
67ce8fb56745: Download complete
|
|
@@ -53,24 +53,23 @@ f6bd9104d248: Pull complete
|
|
|
53
53
|
6ba0ba49c87d: Download complete
|
|
54
54
|
1cfd9ed002d2: Verifying Checksum
|
|
55
55
|
1cfd9ed002d2: Download complete
|
|
56
|
-
4e430a9db1a3: Verifying Checksum
|
|
57
|
-
4e430a9db1a3: Download complete
|
|
58
|
-
2c1ce468d9f3: Verifying Checksum
|
|
59
|
-
2c1ce468d9f3: Download complete
|
|
60
56
|
4617420e017b: Verifying Checksum
|
|
61
57
|
4617420e017b: Download complete
|
|
58
|
+
2c1ce468d9f3: Verifying Checksum
|
|
59
|
+
2c1ce468d9f3: Download complete
|
|
62
60
|
43dc8d96fd20: Verifying Checksum
|
|
63
61
|
43dc8d96fd20: Download complete
|
|
64
62
|
1b2c4c00c303: Verifying Checksum
|
|
65
63
|
1b2c4c00c303: Download complete
|
|
66
|
-
73ca50fa4809: Verifying Checksum
|
|
67
|
-
73ca50fa4809: Download complete
|
|
68
64
|
1d4a870e3b66: Verifying Checksum
|
|
69
65
|
1d4a870e3b66: Download complete
|
|
70
|
-
f5a85bd7a844: Verifying Checksum
|
|
71
66
|
f5a85bd7a844: Download complete
|
|
67
|
+
73ca50fa4809: Verifying Checksum
|
|
68
|
+
73ca50fa4809: Download complete
|
|
72
69
|
c132a28172a5: Download complete
|
|
73
70
|
4617420e017b: Pull complete
|
|
71
|
+
4e430a9db1a3: Verifying Checksum
|
|
72
|
+
4e430a9db1a3: Download complete
|
|
74
73
|
4e430a9db1a3: Pull complete
|
|
75
74
|
67ce8fb56745: Pull complete
|
|
76
75
|
6ba0ba49c87d: Pull complete
|
|
@@ -95,176 +94,176 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
95
94
|
ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/endpoint-v2/Cargo.toml --crate-type=cdylib --target=wasm32v1-none --release
|
|
96
95
|
Updating crates.io index
|
|
97
96
|
Downloading crates ...
|
|
98
|
-
Downloaded
|
|
97
|
+
Downloaded ahash v0.8.12
|
|
99
98
|
Downloaded ark-bn254 v0.4.0
|
|
99
|
+
Downloaded ark-ff-macros v0.4.2
|
|
100
100
|
Downloaded ark-ff-asm v0.4.2
|
|
101
|
-
Downloaded
|
|
102
|
-
Downloaded
|
|
103
|
-
Downloaded
|
|
101
|
+
Downloaded arbitrary v1.3.2
|
|
102
|
+
Downloaded ctor-proc-macro v0.0.6
|
|
103
|
+
Downloaded cfg-if v1.0.4
|
|
104
104
|
Downloaded keccak v0.1.5
|
|
105
105
|
Downloaded rustc_version v0.4.1
|
|
106
|
-
Downloaded
|
|
107
|
-
Downloaded
|
|
108
|
-
Downloaded
|
|
109
|
-
Downloaded
|
|
106
|
+
Downloaded crate-git-revision v0.0.6
|
|
107
|
+
Downloaded curve25519-dalek-derive v0.1.1
|
|
108
|
+
Downloaded deranged v0.5.5
|
|
109
|
+
Downloaded ident_case v1.0.1
|
|
110
|
+
Downloaded hex v0.4.3
|
|
111
|
+
Downloaded fnv v1.0.7
|
|
112
|
+
Downloaded semver v1.0.27
|
|
113
|
+
Downloaded rand_core v0.6.4
|
|
114
|
+
Downloaded heck v0.5.0
|
|
115
|
+
Downloaded ryu v1.0.20
|
|
116
|
+
Downloaded stellar-strkey v0.0.13
|
|
110
117
|
Downloaded zeroize_derive v1.4.2
|
|
111
|
-
Downloaded
|
|
112
|
-
Downloaded
|
|
118
|
+
Downloaded version_check v0.9.5
|
|
119
|
+
Downloaded rand v0.8.5
|
|
120
|
+
Downloaded time-core v0.1.6
|
|
121
|
+
Downloaded wasmi_arena v0.4.1
|
|
122
|
+
Downloaded time-macros v0.2.24
|
|
113
123
|
Downloaded wasmi_core v0.13.0
|
|
114
|
-
Downloaded
|
|
124
|
+
Downloaded itertools v0.14.0
|
|
115
125
|
Downloaded zeroize v1.8.2
|
|
126
|
+
Downloaded spin v0.9.8
|
|
116
127
|
Downloaded typenum v1.19.0
|
|
117
|
-
Downloaded
|
|
128
|
+
Downloaded serde_core v1.0.228
|
|
118
129
|
Downloaded wasmparser-nostd v0.100.2
|
|
119
|
-
Downloaded
|
|
120
|
-
Downloaded wasmparser v0.116.1
|
|
130
|
+
Downloaded curve25519-dalek v4.1.3
|
|
121
131
|
Downloaded time v0.3.44
|
|
122
|
-
Downloaded
|
|
132
|
+
Downloaded serde_json v1.0.145
|
|
133
|
+
Downloaded wasmparser v0.116.1
|
|
123
134
|
Downloaded zerocopy v0.8.27
|
|
124
|
-
Downloaded
|
|
125
|
-
Downloaded ed25519-dalek v2.2.0
|
|
126
|
-
Downloaded memchr v2.7.6
|
|
127
|
-
Downloaded syn v1.0.109
|
|
128
|
-
Downloaded libc v0.2.177
|
|
135
|
+
Downloaded serde_with v3.15.1
|
|
129
136
|
Downloaded soroban-wasmi v0.31.1-soroban.20.0.1
|
|
130
137
|
Downloaded syn v2.0.108
|
|
131
|
-
Downloaded
|
|
132
|
-
Downloaded
|
|
133
|
-
Downloaded
|
|
138
|
+
Downloaded syn v1.0.109
|
|
139
|
+
Downloaded soroban-sdk v25.1.1
|
|
140
|
+
Downloaded ark-bls12-381 v0.4.0
|
|
141
|
+
Downloaded schemars v1.0.5
|
|
142
|
+
Downloaded soroban-env-common v25.0.1
|
|
143
|
+
Downloaded serde_derive v1.0.228
|
|
134
144
|
Downloaded serde v1.0.228
|
|
135
|
-
Downloaded schemars v0.9.0
|
|
136
|
-
Downloaded unicode-ident v1.0.22
|
|
137
|
-
Downloaded soroban-sdk-macros v25.1.0
|
|
138
|
-
Downloaded semver v1.0.27
|
|
139
|
-
Downloaded libm v0.2.15
|
|
140
|
-
Downloaded soroban-env-host v25.0.1
|
|
141
|
-
Downloaded curve25519-dalek v4.1.3
|
|
142
145
|
Downloaded chrono v0.4.42
|
|
143
|
-
Downloaded
|
|
144
|
-
Downloaded stellar-strkey v0.0.16
|
|
145
|
-
Downloaded spin v0.9.8
|
|
146
|
+
Downloaded soroban-sdk-macros v25.1.1
|
|
146
147
|
Downloaded soroban-env-macros v25.0.1
|
|
147
148
|
Downloaded smallvec v1.15.1
|
|
148
|
-
Downloaded signature v2.2.0
|
|
149
|
-
Downloaded sha2 v0.10.9
|
|
150
149
|
Downloaded serde_with_macros v3.15.1
|
|
151
|
-
Downloaded
|
|
152
|
-
Downloaded schemars
|
|
153
|
-
Downloaded
|
|
154
|
-
Downloaded ark-bls12-381 v0.4.0
|
|
155
|
-
Downloaded time-macros v0.2.24
|
|
150
|
+
Downloaded schemars v0.9.0
|
|
151
|
+
Downloaded schemars v0.8.22
|
|
152
|
+
Downloaded unicode-ident v1.0.22
|
|
156
153
|
Downloaded thiserror-impl v1.0.69
|
|
157
|
-
Downloaded stellar-strkey v0.0.
|
|
158
|
-
Downloaded
|
|
154
|
+
Downloaded stellar-strkey v0.0.16
|
|
155
|
+
Downloaded libm v0.2.15
|
|
156
|
+
Downloaded soroban-env-host v25.0.1
|
|
157
|
+
Downloaded hashbrown v0.16.0
|
|
158
|
+
Downloaded thiserror v1.0.69
|
|
159
|
+
Downloaded spki v0.7.3
|
|
159
160
|
Downloaded static_assertions v1.1.0
|
|
160
|
-
Downloaded
|
|
161
|
-
Downloaded
|
|
161
|
+
Downloaded libc v0.2.177
|
|
162
|
+
Downloaded signature v2.2.0
|
|
163
|
+
Downloaded sha2 v0.10.9
|
|
164
|
+
Downloaded num-bigint v0.4.6
|
|
162
165
|
Downloaded itertools v0.10.5
|
|
163
|
-
Downloaded heapless v0.8.0
|
|
164
166
|
Downloaded indexmap v2.12.0
|
|
165
|
-
Downloaded hashbrown v0.16.0
|
|
166
167
|
Downloaded hashbrown v0.13.2
|
|
167
|
-
Downloaded
|
|
168
|
-
Downloaded
|
|
168
|
+
Downloaded hashbrown v0.12.3
|
|
169
|
+
Downloaded der v0.7.10
|
|
170
|
+
Downloaded sha3 v0.10.8
|
|
171
|
+
Downloaded soroban-spec-rust v25.1.1
|
|
172
|
+
Downloaded soroban-spec v25.1.1
|
|
173
|
+
Downloaded memchr v2.7.6
|
|
174
|
+
Downloaded k256 v0.13.4
|
|
175
|
+
Downloaded darling_core v0.20.11
|
|
176
|
+
Downloaded crypto-bigint v0.5.5
|
|
177
|
+
Downloaded p256 v0.13.2
|
|
178
|
+
Downloaded heapless v0.8.0
|
|
179
|
+
Downloaded ethnum v1.5.2
|
|
180
|
+
Downloaded darling_core v0.21.3
|
|
181
|
+
Downloaded soroban-env-guest v25.0.1
|
|
169
182
|
Downloaded soroban-builtin-sdk-macros v25.0.1
|
|
170
|
-
Downloaded
|
|
183
|
+
Downloaded quote v1.0.41
|
|
171
184
|
Downloaded proc-macro2 v1.0.103
|
|
185
|
+
Downloaded prettyplease v0.2.37
|
|
186
|
+
Downloaded num-traits v0.2.19
|
|
187
|
+
Downloaded indexmap v1.9.3
|
|
172
188
|
Downloaded getrandom v0.2.16
|
|
173
|
-
Downloaded
|
|
174
|
-
Downloaded
|
|
189
|
+
Downloaded elliptic-curve v0.13.8
|
|
190
|
+
Downloaded ed25519-dalek v2.2.0
|
|
191
|
+
Downloaded darling v0.21.3
|
|
192
|
+
Downloaded darling v0.20.11
|
|
193
|
+
Downloaded base64 v0.22.1
|
|
194
|
+
Downloaded ark-ff v0.4.2
|
|
195
|
+
Downloaded visibility v0.1.1
|
|
175
196
|
Downloaded subtle v2.6.1
|
|
176
|
-
Downloaded
|
|
177
|
-
Downloaded
|
|
178
|
-
Downloaded
|
|
197
|
+
Downloaded strsim v0.11.1
|
|
198
|
+
Downloaded stable_deref_trait v1.2.1
|
|
199
|
+
Downloaded sec1 v0.7.3
|
|
179
200
|
Downloaded once_cell v1.21.3
|
|
201
|
+
Downloaded num-integer v0.1.46
|
|
180
202
|
Downloaded iana-time-zone v0.1.64
|
|
181
|
-
Downloaded elliptic-curve v0.13.8
|
|
182
|
-
Downloaded darling v0.21.3
|
|
183
|
-
Downloaded crypto-bigint v0.5.5
|
|
184
|
-
Downloaded const-oid v0.9.6
|
|
185
|
-
Downloaded autocfg v1.5.0
|
|
186
|
-
Downloaded time-core v0.1.6
|
|
187
|
-
Downloaded soroban-env-guest v25.0.1
|
|
188
|
-
Downloaded ryu v1.0.20
|
|
189
|
-
Downloaded rand_core v0.6.4
|
|
190
|
-
Downloaded prettyplease v0.2.37
|
|
191
|
-
Downloaded paste v1.0.15
|
|
192
|
-
Downloaded macro-string v0.1.4
|
|
193
|
-
Downloaded indexmap v1.9.3
|
|
194
203
|
Downloaded hmac v0.12.1
|
|
204
|
+
Downloaded group v0.13.0
|
|
195
205
|
Downloaded generic-array v0.14.9
|
|
196
|
-
Downloaded
|
|
197
|
-
Downloaded
|
|
206
|
+
Downloaded ff v0.13.1
|
|
207
|
+
Downloaded escape-bytes v0.1.1
|
|
208
|
+
Downloaded either v1.15.0
|
|
209
|
+
Downloaded ecdsa v0.16.9
|
|
210
|
+
Downloaded dyn-clone v1.0.20
|
|
211
|
+
Downloaded digest v0.10.7
|
|
212
|
+
Downloaded derivative v2.2.0
|
|
213
|
+
Downloaded data-encoding v2.9.0
|
|
214
|
+
Downloaded const-oid v0.9.6
|
|
215
|
+
Downloaded bytes-lit v0.0.5
|
|
216
|
+
Downloaded byteorder v1.5.0
|
|
198
217
|
Downloaded block-buffer v0.10.4
|
|
199
218
|
Downloaded base64ct v1.8.0
|
|
200
|
-
Downloaded
|
|
219
|
+
Downloaded autocfg v1.5.0
|
|
201
220
|
Downloaded ark-std v0.4.0
|
|
202
|
-
Downloaded
|
|
203
|
-
Downloaded
|
|
204
|
-
Downloaded
|
|
205
|
-
Downloaded
|
|
206
|
-
Downloaded
|
|
207
|
-
Downloaded
|
|
208
|
-
Downloaded
|
|
209
|
-
Downloaded bytes-lit v0.0.5
|
|
210
|
-
Downloaded ark-serialize-derive v0.4.2
|
|
211
|
-
Downloaded ark-serialize v0.4.2
|
|
212
|
-
Downloaded quote v1.0.41
|
|
221
|
+
Downloaded ark-ec v0.4.2
|
|
222
|
+
Downloaded soroban-ledger-snapshot v25.1.1
|
|
223
|
+
Downloaded rfc6979 v0.4.0
|
|
224
|
+
Downloaded ref-cast-impl v1.0.25
|
|
225
|
+
Downloaded ref-cast v1.0.25
|
|
226
|
+
Downloaded rand_chacha v0.3.1
|
|
227
|
+
Downloaded primeorder v0.13.6
|
|
213
228
|
Downloaded ppv-lite86 v0.2.21
|
|
214
229
|
Downloaded powerfmt v0.2.0
|
|
215
|
-
Downloaded num-integer v0.1.46
|
|
216
|
-
Downloaded indexmap-nostd v0.4.0
|
|
217
|
-
Downloaded ident_case v1.0.1
|
|
218
|
-
Downloaded hex v0.4.3
|
|
219
|
-
Downloaded heck v0.5.0
|
|
220
|
-
Downloaded hash32 v0.3.1
|
|
221
|
-
Downloaded escape-bytes v0.1.1
|
|
222
|
-
Downloaded either v1.15.0
|
|
223
|
-
Downloaded downcast-rs v1.2.1
|
|
224
|
-
Downloaded derive_arbitrary v1.3.2
|
|
225
|
-
Downloaded darling_macro v0.21.3
|
|
226
|
-
Downloaded cfg-if v1.0.4
|
|
227
|
-
Downloaded primeorder v0.13.6
|
|
228
230
|
Downloaded pkcs8 v0.10.2
|
|
229
|
-
Downloaded
|
|
231
|
+
Downloaded paste v1.0.15
|
|
232
|
+
Downloaded num-derive v0.4.2
|
|
230
233
|
Downloaded num-conv v0.1.0
|
|
234
|
+
Downloaded macro-string v0.1.4
|
|
231
235
|
Downloaded itoa v1.0.15
|
|
236
|
+
Downloaded indexmap-nostd v0.4.0
|
|
232
237
|
Downloaded ed25519 v2.2.3
|
|
233
|
-
Downloaded
|
|
234
|
-
Downloaded
|
|
238
|
+
Downloaded base16ct v0.2.0
|
|
239
|
+
Downloaded hash32 v0.3.1
|
|
240
|
+
Downloaded dtor v0.1.1
|
|
235
241
|
Downloaded darling_macro v0.20.11
|
|
236
|
-
Downloaded
|
|
237
|
-
Downloaded group v0.13.0
|
|
238
|
-
Downloaded fnv v1.0.7
|
|
239
|
-
Downloaded ff v0.13.1
|
|
240
|
-
Downloaded ecdsa v0.16.9
|
|
241
|
-
Downloaded cpufeatures v0.2.17
|
|
242
|
+
Downloaded crypto-common v0.1.6
|
|
242
243
|
Downloaded cfg_eval v0.1.2
|
|
243
|
-
Downloaded
|
|
244
|
+
Downloaded ark-serialize-derive v0.4.2
|
|
245
|
+
Downloaded ark-serialize v0.4.2
|
|
246
|
+
Downloaded hex-literal v0.4.1
|
|
244
247
|
Downloaded equivalent v1.0.2
|
|
245
|
-
Downloaded crypto-common v0.1.6
|
|
246
|
-
Downloaded crate-git-revision v0.0.6
|
|
247
248
|
Downloaded dtor-proc-macro v0.0.6
|
|
248
|
-
Downloaded
|
|
249
|
-
Downloaded
|
|
250
|
-
Downloaded
|
|
251
|
-
Downloaded
|
|
252
|
-
Downloaded
|
|
253
|
-
Downloaded ark-ec v0.4.2
|
|
249
|
+
Downloaded downcast-rs v1.2.1
|
|
250
|
+
Downloaded darling_macro v0.21.3
|
|
251
|
+
Downloaded ark-poly v0.4.2
|
|
252
|
+
Downloaded derive_arbitrary v1.3.2
|
|
253
|
+
Downloaded ctor v0.5.0
|
|
254
254
|
Downloaded stellar-xdr v25.0.0
|
|
255
|
-
Downloaded
|
|
256
|
-
Downloaded ahash v0.8.12
|
|
255
|
+
Downloaded cpufeatures v0.2.17
|
|
257
256
|
Compiling proc-macro2 v1.0.103
|
|
258
|
-
Compiling quote v1.0.41
|
|
259
257
|
Compiling unicode-ident v1.0.22
|
|
258
|
+
Compiling quote v1.0.41
|
|
260
259
|
Compiling serde_core v1.0.228
|
|
261
260
|
Compiling serde v1.0.228
|
|
262
261
|
Compiling serde_json v1.0.145
|
|
263
|
-
Compiling ryu v1.0.20
|
|
264
|
-
Compiling itoa v1.0.15
|
|
265
262
|
Compiling memchr v2.7.6
|
|
266
|
-
Compiling
|
|
263
|
+
Compiling itoa v1.0.15
|
|
264
|
+
Compiling ryu v1.0.20
|
|
267
265
|
Compiling strsim v0.11.1
|
|
266
|
+
Compiling ident_case v1.0.1
|
|
268
267
|
Compiling fnv v1.0.7
|
|
269
268
|
Compiling typenum v1.19.0
|
|
270
269
|
Compiling version_check v0.9.5
|
|
@@ -272,37 +271,37 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
272
271
|
Compiling schemars v0.8.22
|
|
273
272
|
Compiling dyn-clone v1.0.20
|
|
274
273
|
Compiling cfg-if v1.0.4
|
|
275
|
-
Compiling data-encoding v2.9.0
|
|
276
274
|
Compiling cpufeatures v0.2.17
|
|
275
|
+
Compiling data-encoding v2.9.0
|
|
276
|
+
Compiling escape-bytes v0.1.1
|
|
277
277
|
Compiling ethnum v1.5.2
|
|
278
278
|
Compiling either v1.15.0
|
|
279
|
-
Compiling escape-bytes v0.1.1
|
|
280
279
|
Compiling semver v1.0.27
|
|
281
|
-
Compiling equivalent v1.0.2
|
|
282
|
-
Compiling thiserror v1.0.69
|
|
283
280
|
Compiling hashbrown v0.16.0
|
|
281
|
+
Compiling thiserror v1.0.69
|
|
282
|
+
Compiling equivalent v1.0.2
|
|
284
283
|
Compiling prettyplease v0.2.37
|
|
285
|
-
Compiling heapless v0.8.0
|
|
286
284
|
Compiling generic-array v0.14.9
|
|
287
|
-
Compiling
|
|
285
|
+
Compiling byteorder v1.5.0
|
|
286
|
+
Compiling heapless v0.8.0
|
|
288
287
|
Compiling num-traits v0.2.19
|
|
289
288
|
Compiling itertools v0.10.5
|
|
290
|
-
Compiling
|
|
291
|
-
Compiling static_assertions v1.1.0
|
|
289
|
+
Compiling base64 v0.22.1
|
|
292
290
|
Compiling rustc_version v0.4.1
|
|
293
|
-
Compiling
|
|
291
|
+
Compiling static_assertions v1.1.0
|
|
294
292
|
Compiling stable_deref_trait v1.2.1
|
|
295
293
|
Compiling hash32 v0.3.1
|
|
294
|
+
Compiling heck v0.5.0
|
|
296
295
|
Compiling itertools v0.14.0
|
|
297
296
|
Compiling indexmap v2.12.0
|
|
297
|
+
Compiling num-integer v0.1.46
|
|
298
298
|
Compiling syn v2.0.108
|
|
299
|
+
Compiling num-bigint v0.4.6
|
|
300
|
+
Compiling wasmparser v0.116.1
|
|
299
301
|
Compiling block-buffer v0.10.4
|
|
300
302
|
Compiling crypto-common v0.1.6
|
|
301
|
-
Compiling num-integer v0.1.46
|
|
302
|
-
Compiling wasmparser v0.116.1
|
|
303
303
|
Compiling digest v0.10.7
|
|
304
304
|
Compiling sha2 v0.10.9
|
|
305
|
-
Compiling num-bigint v0.4.6
|
|
306
305
|
Compiling darling_core v0.21.3
|
|
307
306
|
Compiling darling_core v0.20.11
|
|
308
307
|
Compiling macro-string v0.1.4
|
|
@@ -310,34 +309,34 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
310
309
|
Compiling cfg_eval v0.1.2
|
|
311
310
|
Compiling thiserror-impl v1.0.69
|
|
312
311
|
Compiling num-derive v0.4.2
|
|
313
|
-
Compiling bytes-lit v0.0.5
|
|
314
312
|
Compiling visibility v0.1.1
|
|
313
|
+
Compiling bytes-lit v0.0.5
|
|
315
314
|
Compiling common-macros v0.0.1 (/workspace/contracts/protocol/stellar/contracts/common-macros)
|
|
316
|
-
Compiling darling_macro v0.20.11
|
|
317
315
|
Compiling darling_macro v0.21.3
|
|
318
|
-
Compiling
|
|
316
|
+
Compiling darling_macro v0.20.11
|
|
319
317
|
Compiling darling v0.21.3
|
|
320
318
|
Compiling serde_with_macros v3.15.1
|
|
319
|
+
Compiling darling v0.20.11
|
|
321
320
|
Compiling crate-git-revision v0.0.6
|
|
322
321
|
Compiling hex v0.4.3
|
|
323
322
|
Compiling stellar-strkey v0.0.13
|
|
324
323
|
Compiling stellar-xdr v25.0.0
|
|
325
324
|
Compiling soroban-env-common v25.0.1
|
|
326
325
|
Compiling stellar-strkey v0.0.16
|
|
327
|
-
Compiling soroban-sdk v25.1.
|
|
326
|
+
Compiling soroban-sdk v25.1.1
|
|
328
327
|
Compiling serde_with v3.15.1
|
|
329
|
-
Compiling soroban-spec v25.1.
|
|
328
|
+
Compiling soroban-spec v25.1.1
|
|
330
329
|
Compiling soroban-env-macros v25.0.1
|
|
331
|
-
Compiling soroban-spec-rust v25.1.
|
|
332
|
-
Compiling soroban-sdk-macros v25.1.0
|
|
330
|
+
Compiling soroban-spec-rust v25.1.1
|
|
333
331
|
Compiling soroban-env-guest v25.0.1
|
|
332
|
+
Compiling soroban-sdk-macros v25.1.1
|
|
334
333
|
Compiling utils v0.0.1 (/workspace/contracts/protocol/stellar/contracts/utils)
|
|
335
334
|
Compiling endpoint-v2 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/endpoint-v2)
|
|
336
|
-
Finished `release` profile [optimized] target(s) in
|
|
335
|
+
Finished `release` profile [optimized] target(s) in 1m 16s
|
|
337
336
|
ℹ️ Build Summary:
|
|
338
|
-
Wasm File: target/wasm32v1-none/release/endpoint_v2.wasm (
|
|
339
|
-
Wasm Hash:
|
|
340
|
-
Wasm Size:
|
|
337
|
+
Wasm File: target/wasm32v1-none/release/endpoint_v2.wasm (58196 bytes)
|
|
338
|
+
Wasm Hash: 54ecf00b5d62ed3843bde59713df1e5ff816e380b53b647ea1d43307b1957a78
|
|
339
|
+
Wasm Size: 58196 bytes
|
|
341
340
|
Exported Functions: 60 found
|
|
342
341
|
• __constructor
|
|
343
342
|
• accept_ownership
|
|
@@ -365,7 +364,6 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
365
364
|
• is_supported_eid
|
|
366
365
|
• is_ttl_configs_frozen
|
|
367
366
|
• is_valid_receive_library
|
|
368
|
-
• lazy_inbound_nonce
|
|
369
367
|
• lz_compose_alert
|
|
370
368
|
• lz_receive_alert
|
|
371
369
|
• native_token
|
|
@@ -373,6 +371,7 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
373
371
|
• nilify
|
|
374
372
|
• outbound_nonce
|
|
375
373
|
• owner
|
|
374
|
+
• pending_inbound_nonces
|
|
376
375
|
• pending_owner
|
|
377
376
|
• propose_ownership_transfer
|
|
378
377
|
• quote
|
|
@@ -402,13 +401,13 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
402
401
|
✅ Build Complete
|
|
403
402
|
|
|
404
403
|
ℹ️ 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
|
|
405
|
-
Compiling byteorder v1.5.0
|
|
406
404
|
Compiling escape-bytes v0.1.1
|
|
405
|
+
Compiling byteorder v1.5.0
|
|
406
|
+
Compiling static_assertions v1.1.0
|
|
407
407
|
Compiling ethnum v1.5.2
|
|
408
408
|
Compiling stable_deref_trait v1.2.1
|
|
409
|
-
Compiling static_assertions v1.1.0
|
|
410
|
-
Compiling data-encoding v2.9.0
|
|
411
409
|
Compiling num-traits v0.2.19
|
|
410
|
+
Compiling data-encoding v2.9.0
|
|
412
411
|
Compiling cfg-if v1.0.4
|
|
413
412
|
Compiling stellar-xdr v25.0.0
|
|
414
413
|
Compiling hash32 v0.3.1
|
|
@@ -416,17 +415,17 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
416
415
|
Compiling stellar-strkey v0.0.16
|
|
417
416
|
Compiling soroban-env-common v25.0.1
|
|
418
417
|
Compiling soroban-env-guest v25.0.1
|
|
419
|
-
Compiling soroban-sdk v25.1.
|
|
418
|
+
Compiling soroban-sdk v25.1.1
|
|
420
419
|
Compiling utils v0.0.1 (/workspace/contracts/protocol/stellar/contracts/utils)
|
|
421
420
|
Compiling endpoint-v2 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/endpoint-v2)
|
|
422
421
|
Compiling message-lib-common v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/message-lib-common)
|
|
423
422
|
Compiling uln302 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/uln-302)
|
|
424
423
|
Compiling layerzero-views v0.0.1 (/workspace/contracts/protocol/stellar/contracts/layerzero-views)
|
|
425
|
-
Finished `release` profile [optimized] target(s) in
|
|
424
|
+
Finished `release` profile [optimized] target(s) in 18.89s
|
|
426
425
|
ℹ️ Build Summary:
|
|
427
|
-
Wasm File: target/wasm32v1-none/release/layerzero_views.wasm (
|
|
428
|
-
Wasm Hash:
|
|
429
|
-
Wasm Size:
|
|
426
|
+
Wasm File: target/wasm32v1-none/release/layerzero_views.wasm (35539 bytes)
|
|
427
|
+
Wasm Hash: 0479b1caa25d4ba07e43fe204329bf1eaa0e95c0e2f698b264879ff63822cca3
|
|
428
|
+
Wasm Size: 35539 bytes
|
|
430
429
|
Exported Functions: 22 found
|
|
431
430
|
• __constructor
|
|
432
431
|
• accept_ownership
|
|
@@ -455,11 +454,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
455
454
|
ℹ️ 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
|
|
456
455
|
Compiling message-lib-common v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/message-lib-common)
|
|
457
456
|
Compiling uln302 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/uln-302)
|
|
458
|
-
Finished `release` profile [optimized] target(s) in
|
|
457
|
+
Finished `release` profile [optimized] target(s) in 2.28s
|
|
459
458
|
ℹ️ Build Summary:
|
|
460
|
-
Wasm File: target/wasm32v1-none/release/uln302.wasm (
|
|
461
|
-
Wasm Hash:
|
|
462
|
-
Wasm Size:
|
|
459
|
+
Wasm File: target/wasm32v1-none/release/uln302.wasm (59419 bytes)
|
|
460
|
+
Wasm Hash: 5ca539bdcf1f01c0a010265bb4ef0d06731362e4cb2b2b9ccc110fa878f2dbeb
|
|
461
|
+
Wasm Size: 59419 bytes
|
|
463
462
|
Exported Functions: 38 found
|
|
464
463
|
• __constructor
|
|
465
464
|
• accept_ownership
|
|
@@ -501,126 +500,41 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
501
500
|
• version
|
|
502
501
|
✅ Build Complete
|
|
503
502
|
|
|
504
|
-
ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/
|
|
505
|
-
Compiling
|
|
506
|
-
|
|
507
|
-
Compiling oft-core v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft-core)
|
|
508
|
-
Compiling oft v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft)
|
|
509
|
-
Compiling sac-manager v0.0.1 (/workspace/contracts/protocol/stellar/contracts/sac-manager)
|
|
510
|
-
Finished `release` profile [optimized] target(s) in 2.09s
|
|
503
|
+
ℹ️ 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
|
|
504
|
+
Compiling upgrader v0.0.1 (/workspace/contracts/protocol/stellar/contracts/upgrader)
|
|
505
|
+
Finished `release` profile [optimized] target(s) in 0.62s
|
|
511
506
|
ℹ️ Build Summary:
|
|
512
|
-
Wasm File: target/wasm32v1-none/release/
|
|
513
|
-
Wasm Hash:
|
|
514
|
-
Wasm Size:
|
|
515
|
-
Exported Functions:
|
|
516
|
-
• __constructor
|
|
517
|
-
• accept_ownership
|
|
518
|
-
• allow_any_mint_burn
|
|
519
|
-
• authorized_mint
|
|
520
|
-
• authorizer
|
|
521
|
-
• burn
|
|
522
|
-
• clawback
|
|
523
|
-
• extend_instance_ttl
|
|
524
|
-
• freeze_ttl_configs
|
|
525
|
-
• get_remaining_mint_amount
|
|
526
|
-
• get_supply_controller_config
|
|
527
|
-
• get_supply_controller_managers
|
|
528
|
-
• get_supply_controllers
|
|
529
|
-
• is_address_whitelisted
|
|
530
|
-
• is_supply_controller_manager
|
|
531
|
-
• is_ttl_configs_frozen
|
|
532
|
-
• migrate
|
|
533
|
-
• mint
|
|
534
|
-
• oft_address
|
|
535
|
-
• owner
|
|
536
|
-
• pending_owner
|
|
537
|
-
• propose_ownership_transfer
|
|
538
|
-
• redistribute_blacklisted_funds
|
|
539
|
-
• redistribution_enabled
|
|
540
|
-
• release_sac_admin
|
|
541
|
-
• renounce_ownership
|
|
542
|
-
• set_authorized
|
|
543
|
-
• set_mint_whitelist
|
|
544
|
-
• set_oft_address
|
|
545
|
-
• set_supply_controller
|
|
546
|
-
• set_supply_controller_manager
|
|
547
|
-
• set_ttl_configs
|
|
548
|
-
• supply_control_enabled
|
|
549
|
-
• transfer_ownership
|
|
550
|
-
• ttl_configs
|
|
551
|
-
• underlying_sac
|
|
552
|
-
• update_allow_any_mint_burn
|
|
553
|
-
• update_limit_config
|
|
507
|
+
Wasm File: target/wasm32v1-none/release/upgrader.wasm (5385 bytes)
|
|
508
|
+
Wasm Hash: eb96b8636dac9d2e5e36c7f859251076f83b311bd1d791ba1dca1911d229b89e
|
|
509
|
+
Wasm Size: 5385 bytes
|
|
510
|
+
Exported Functions: 2 found
|
|
554
511
|
• upgrade
|
|
512
|
+
• upgrade_and_migrate
|
|
555
513
|
✅ Build Complete
|
|
556
514
|
|
|
557
|
-
ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/
|
|
558
|
-
Compiling
|
|
559
|
-
|
|
560
|
-
Compiling oft v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft)
|
|
561
|
-
Finished `release` profile [optimized] target(s) in 1.56s
|
|
515
|
+
ℹ️ 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
|
|
516
|
+
Compiling blocked-message-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/blocked-message-lib)
|
|
517
|
+
Finished `release` profile [optimized] target(s) in 0.71s
|
|
562
518
|
ℹ️ Build Summary:
|
|
563
|
-
Wasm File: target/wasm32v1-none/release/
|
|
564
|
-
Wasm Hash:
|
|
565
|
-
Wasm Size:
|
|
566
|
-
Exported Functions:
|
|
567
|
-
•
|
|
568
|
-
•
|
|
569
|
-
•
|
|
570
|
-
•
|
|
571
|
-
• authorizer
|
|
572
|
-
• combine_options
|
|
573
|
-
• decimal_conversion_rate
|
|
574
|
-
• default_fee_bps
|
|
575
|
-
• effective_fee_bps
|
|
576
|
-
• endpoint
|
|
577
|
-
• enforced_options
|
|
578
|
-
• extend_instance_ttl
|
|
579
|
-
• fee_bps
|
|
580
|
-
• fee_deposit_address
|
|
581
|
-
• freeze_ttl_configs
|
|
582
|
-
• is_compose_msg_sender
|
|
583
|
-
• is_paused
|
|
584
|
-
• is_ttl_configs_frozen
|
|
585
|
-
• lz_receive
|
|
586
|
-
• msg_inspector
|
|
587
|
-
• next_nonce
|
|
588
|
-
• oapp_version
|
|
589
|
-
• oft_type
|
|
590
|
-
• oft_version
|
|
591
|
-
• owner
|
|
592
|
-
• peer
|
|
593
|
-
• pending_owner
|
|
594
|
-
• propose_ownership_transfer
|
|
595
|
-
• quote_oft
|
|
596
|
-
• quote_send
|
|
597
|
-
• rate_limit_capacity
|
|
598
|
-
• rate_limit_config
|
|
599
|
-
• rate_limit_in_flight
|
|
600
|
-
• renounce_ownership
|
|
519
|
+
Wasm File: target/wasm32v1-none/release/blocked_message_lib.wasm (14326 bytes)
|
|
520
|
+
Wasm Hash: fd0662698a8df398204d26d81a6fdcefa23fd46232b4d26d31886b4a60bc0474
|
|
521
|
+
Wasm Size: 14326 bytes
|
|
522
|
+
Exported Functions: 7 found
|
|
523
|
+
• get_config
|
|
524
|
+
• is_supported_eid
|
|
525
|
+
• message_lib_type
|
|
526
|
+
• quote
|
|
601
527
|
• send
|
|
602
|
-
•
|
|
603
|
-
•
|
|
604
|
-
• set_enforced_options
|
|
605
|
-
• set_fee_bps
|
|
606
|
-
• set_fee_deposit_address
|
|
607
|
-
• set_msg_inspector
|
|
608
|
-
• set_paused
|
|
609
|
-
• set_peer
|
|
610
|
-
• set_rate_limit
|
|
611
|
-
• set_ttl_configs
|
|
612
|
-
• shared_decimals
|
|
613
|
-
• token
|
|
614
|
-
• transfer_ownership
|
|
615
|
-
• ttl_configs
|
|
528
|
+
• set_config
|
|
529
|
+
• version
|
|
616
530
|
✅ Build Complete
|
|
617
531
|
|
|
618
532
|
ℹ️ 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
|
|
619
533
|
Compiling simple-message-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/simple-message-lib)
|
|
620
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
534
|
+
Finished `release` profile [optimized] target(s) in 0.97s
|
|
621
535
|
ℹ️ Build Summary:
|
|
622
536
|
Wasm File: target/wasm32v1-none/release/simple_message_lib.wasm (29777 bytes)
|
|
623
|
-
Wasm Hash:
|
|
537
|
+
Wasm Hash: a8010cb0a73dbac95aadd9de6d8479db14fd204db77c549560e309abd75867cd
|
|
624
538
|
Wasm Size: 29777 bytes
|
|
625
539
|
Exported Functions: 31 found
|
|
626
540
|
• __constructor
|
|
@@ -656,41 +570,12 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
656
570
|
• zro_fee
|
|
657
571
|
✅ Build Complete
|
|
658
572
|
|
|
659
|
-
ℹ️ 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
|
|
660
|
-
Compiling upgrader v0.0.1 (/workspace/contracts/protocol/stellar/contracts/upgrader)
|
|
661
|
-
Finished `release` profile [optimized] target(s) in 0.26s
|
|
662
|
-
ℹ️ Build Summary:
|
|
663
|
-
Wasm File: target/wasm32v1-none/release/upgrader.wasm (5385 bytes)
|
|
664
|
-
Wasm Hash: b1a7ef0631e7b4bf9569dcdc0525ba6a8669f7450a363c7052b16d14dd881771
|
|
665
|
-
Wasm Size: 5385 bytes
|
|
666
|
-
Exported Functions: 2 found
|
|
667
|
-
• upgrade
|
|
668
|
-
• upgrade_and_migrate
|
|
669
|
-
✅ Build Complete
|
|
670
|
-
|
|
671
|
-
ℹ️ 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
|
|
672
|
-
Compiling blocked-message-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/blocked-message-lib)
|
|
673
|
-
Finished `release` profile [optimized] target(s) in 0.31s
|
|
674
|
-
ℹ️ Build Summary:
|
|
675
|
-
Wasm File: target/wasm32v1-none/release/blocked_message_lib.wasm (15029 bytes)
|
|
676
|
-
Wasm Hash: bc7bee1f03e82d7cf2f2208f3084e8eb997b45a5ceecf10d2b832cf8c6f9611d
|
|
677
|
-
Wasm Size: 15029 bytes
|
|
678
|
-
Exported Functions: 7 found
|
|
679
|
-
• get_config
|
|
680
|
-
• is_supported_eid
|
|
681
|
-
• message_lib_type
|
|
682
|
-
• quote
|
|
683
|
-
• send
|
|
684
|
-
• set_config
|
|
685
|
-
• version
|
|
686
|
-
✅ Build Complete
|
|
687
|
-
|
|
688
573
|
ℹ️ 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
|
|
689
574
|
Compiling treasury v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/treasury)
|
|
690
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
575
|
+
Finished `release` profile [optimized] target(s) in 0.89s
|
|
691
576
|
ℹ️ Build Summary:
|
|
692
577
|
Wasm File: target/wasm32v1-none/release/treasury.wasm (28356 bytes)
|
|
693
|
-
Wasm Hash:
|
|
578
|
+
Wasm Hash: 6cfbe4d80402ec4148006b26e4b05eee2e0222f443abd09e1af80628e089373a
|
|
694
579
|
Wasm Size: 28356 bytes
|
|
695
580
|
Exported Functions: 21 found
|
|
696
581
|
• __constructor
|
|
@@ -717,13 +602,15 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
717
602
|
✅ Build Complete
|
|
718
603
|
|
|
719
604
|
ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/oapps/counter/Cargo.toml --crate-type=cdylib --target=wasm32v1-none --release
|
|
605
|
+
Compiling oapp-macros v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp-macros)
|
|
606
|
+
Compiling oapp v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp)
|
|
720
607
|
Compiling counter v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/counter)
|
|
721
|
-
Finished `release` profile [optimized] target(s) in
|
|
608
|
+
Finished `release` profile [optimized] target(s) in 2.25s
|
|
722
609
|
ℹ️ Build Summary:
|
|
723
|
-
Wasm File: target/wasm32v1-none/release/counter.wasm (
|
|
724
|
-
Wasm Hash:
|
|
725
|
-
Wasm Size:
|
|
726
|
-
Exported Functions:
|
|
610
|
+
Wasm File: target/wasm32v1-none/release/counter.wasm (42287 bytes)
|
|
611
|
+
Wasm Hash: b70653d4f4288fcb54f6a2bf073b6ba58edc547e92261781d4b3f348cabe82a5
|
|
612
|
+
Wasm Size: 42287 bytes
|
|
613
|
+
Exported Functions: 36 found
|
|
727
614
|
• __constructor
|
|
728
615
|
• accept_ownership
|
|
729
616
|
• allow_initialize_path
|
|
@@ -759,17 +646,18 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
759
646
|
• skip_inbound_nonce
|
|
760
647
|
• transfer_ownership
|
|
761
648
|
• ttl_configs
|
|
649
|
+
• withdraw
|
|
762
650
|
✅ Build Complete
|
|
763
651
|
|
|
764
652
|
ℹ️ 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
|
|
765
653
|
Compiling fee-lib-interfaces v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/fee-lib-interfaces)
|
|
766
654
|
Compiling worker v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/worker)
|
|
767
655
|
Compiling dvn v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/dvn)
|
|
768
|
-
Finished `release` profile [optimized] target(s) in
|
|
656
|
+
Finished `release` profile [optimized] target(s) in 2.49s
|
|
769
657
|
ℹ️ Build Summary:
|
|
770
|
-
Wasm File: target/wasm32v1-none/release/dvn.wasm (
|
|
771
|
-
Wasm Hash:
|
|
772
|
-
Wasm Size:
|
|
658
|
+
Wasm File: target/wasm32v1-none/release/dvn.wasm (55837 bytes)
|
|
659
|
+
Wasm Hash: 980a04d5d991b3c2c95f97d337bf4800b7914abd272316ea779853c3df2436db
|
|
660
|
+
Wasm Size: 55837 bytes
|
|
773
661
|
Exported Functions: 49 found
|
|
774
662
|
• __check_auth
|
|
775
663
|
• __constructor
|
|
@@ -825,10 +713,10 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
825
713
|
ℹ️ 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
|
|
826
714
|
Compiling fee-lib-interfaces v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/fee-lib-interfaces)
|
|
827
715
|
Compiling dvn-fee-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/dvn-fee-lib)
|
|
828
|
-
Finished `release` profile [optimized] target(s) in
|
|
716
|
+
Finished `release` profile [optimized] target(s) in 1.31s
|
|
829
717
|
ℹ️ Build Summary:
|
|
830
718
|
Wasm File: target/wasm32v1-none/release/dvn_fee_lib.wasm (21527 bytes)
|
|
831
|
-
Wasm Hash:
|
|
719
|
+
Wasm Hash: cf768fdefada9ac2723357901a271d64d1dcc105c288a179d9ebfb4f753a743c
|
|
832
720
|
Wasm Size: 21527 bytes
|
|
833
721
|
Exported Functions: 16 found
|
|
834
722
|
• __constructor
|
|
@@ -851,11 +739,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
851
739
|
|
|
852
740
|
ℹ️ 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
|
|
853
741
|
Compiling executor v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor)
|
|
854
|
-
Finished `release` profile [optimized] target(s) in
|
|
742
|
+
Finished `release` profile [optimized] target(s) in 1.57s
|
|
855
743
|
ℹ️ Build Summary:
|
|
856
|
-
Wasm File: target/wasm32v1-none/release/executor.wasm (
|
|
857
|
-
Wasm Hash:
|
|
858
|
-
Wasm Size:
|
|
744
|
+
Wasm File: target/wasm32v1-none/release/executor.wasm (58270 bytes)
|
|
745
|
+
Wasm Hash: 4bb812a8f36a4d808b731006d7f1aa3fd8cc3dcae20931f438ae1c07db7de4b8
|
|
746
|
+
Wasm Size: 58270 bytes
|
|
859
747
|
Exported Functions: 49 found
|
|
860
748
|
• __check_auth
|
|
861
749
|
• __constructor
|
|
@@ -910,10 +798,10 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
910
798
|
|
|
911
799
|
ℹ️ 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
|
|
912
800
|
Compiling executor-fee-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor-fee-lib)
|
|
913
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
801
|
+
Finished `release` profile [optimized] target(s) in 0.79s
|
|
914
802
|
ℹ️ Build Summary:
|
|
915
803
|
Wasm File: target/wasm32v1-none/release/executor_fee_lib.wasm (34412 bytes)
|
|
916
|
-
Wasm Hash:
|
|
804
|
+
Wasm Hash: fe721769490aa000061503e272d2f982af3f8c81265dda408a0b4cb86a89c4cb
|
|
917
805
|
Wasm Size: 34412 bytes
|
|
918
806
|
Exported Functions: 17 found
|
|
919
807
|
• __constructor
|
|
@@ -940,10 +828,10 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
940
828
|
Compiling worker v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/worker)
|
|
941
829
|
Compiling executor v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor)
|
|
942
830
|
Compiling executor-helper v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor-helper)
|
|
943
|
-
Finished `release` profile [optimized] target(s) in
|
|
831
|
+
Finished `release` profile [optimized] target(s) in 2.22s
|
|
944
832
|
ℹ️ Build Summary:
|
|
945
833
|
Wasm File: target/wasm32v1-none/release/executor_helper.wasm (24789 bytes)
|
|
946
|
-
Wasm Hash:
|
|
834
|
+
Wasm Hash: ccafeb36a3e216e688f70f62ee20e267d9902dc55b6d714dbe777eca41a1f383
|
|
947
835
|
Wasm Size: 24789 bytes
|
|
948
836
|
Exported Functions: 6 found
|
|
949
837
|
• compose
|
|
@@ -956,11 +844,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
956
844
|
|
|
957
845
|
ℹ️ 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
|
|
958
846
|
Compiling price-feed v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/price-feed)
|
|
959
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
847
|
+
Finished `release` profile [optimized] target(s) in 0.96s
|
|
960
848
|
ℹ️ Build Summary:
|
|
961
|
-
Wasm File: target/wasm32v1-none/release/price_feed.wasm (
|
|
962
|
-
Wasm Hash:
|
|
963
|
-
Wasm Size:
|
|
849
|
+
Wasm File: target/wasm32v1-none/release/price_feed.wasm (32616 bytes)
|
|
850
|
+
Wasm Hash: 4781533b1b62657f50b6b7849563e11663d3d7c33f93385cbf1b54443f289a75
|
|
851
|
+
Wasm Size: 32616 bytes
|
|
964
852
|
Exported Functions: 30 found
|
|
965
853
|
• __constructor
|
|
966
854
|
• accept_ownership
|
|
@@ -994,7 +882,103 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
994
882
|
• upgrade
|
|
995
883
|
✅ Build Complete
|
|
996
884
|
|
|
997
|
-
|
|
885
|
+
ℹ️ 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
|
|
886
|
+
Compiling oft-core v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft-core)
|
|
887
|
+
Compiling oft v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft)
|
|
888
|
+
Finished `release` profile [optimized] target(s) in 2.02s
|
|
889
|
+
ℹ️ Build Summary:
|
|
890
|
+
Wasm File: target/wasm32v1-none/release/oft.wasm (67175 bytes)
|
|
891
|
+
Wasm Hash: aeb5888655f105384232d53012d6cb4983d2678dbee974e7485b0e7bc2105722
|
|
892
|
+
Wasm Size: 67175 bytes
|
|
893
|
+
Exported Functions: 50 found
|
|
894
|
+
• __constructor
|
|
895
|
+
• accept_ownership
|
|
896
|
+
• allow_initialize_path
|
|
897
|
+
• approval_required
|
|
898
|
+
• authorizer
|
|
899
|
+
• combine_options
|
|
900
|
+
• decimal_conversion_rate
|
|
901
|
+
• default_fee_bps
|
|
902
|
+
• effective_fee_bps
|
|
903
|
+
• endpoint
|
|
904
|
+
• enforced_options
|
|
905
|
+
• extend_instance_ttl
|
|
906
|
+
• fee_bps
|
|
907
|
+
• fee_deposit_address
|
|
908
|
+
• freeze_ttl_configs
|
|
909
|
+
• has_oft_fee
|
|
910
|
+
• is_compose_msg_sender
|
|
911
|
+
• is_paused
|
|
912
|
+
• is_ttl_configs_frozen
|
|
913
|
+
• lz_receive
|
|
914
|
+
• msg_inspector
|
|
915
|
+
• next_nonce
|
|
916
|
+
• oapp_version
|
|
917
|
+
• oft_type
|
|
918
|
+
• oft_version
|
|
919
|
+
• owner
|
|
920
|
+
• peer
|
|
921
|
+
• pending_owner
|
|
922
|
+
• propose_ownership_transfer
|
|
923
|
+
• quote_oft
|
|
924
|
+
• quote_send
|
|
925
|
+
• rate_limit_capacity
|
|
926
|
+
• rate_limit_config
|
|
927
|
+
• rate_limit_in_flight
|
|
928
|
+
• renounce_ownership
|
|
929
|
+
• send
|
|
930
|
+
• set_default_fee_bps
|
|
931
|
+
• set_delegate
|
|
932
|
+
• set_enforced_options
|
|
933
|
+
• set_fee_bps
|
|
934
|
+
• set_fee_deposit_address
|
|
935
|
+
• set_msg_inspector
|
|
936
|
+
• set_paused
|
|
937
|
+
• set_peer
|
|
938
|
+
• set_rate_limit
|
|
939
|
+
• set_ttl_configs
|
|
940
|
+
• shared_decimals
|
|
941
|
+
• token
|
|
942
|
+
• transfer_ownership
|
|
943
|
+
• ttl_configs
|
|
944
|
+
✅ Build Complete
|
|
945
|
+
|
|
946
|
+
ℹ️ 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
|
|
947
|
+
Compiling oapp v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp)
|
|
948
|
+
Compiling oft-core v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft-core)
|
|
949
|
+
Compiling oft v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft)
|
|
950
|
+
Compiling sac-manager v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/sac-manager)
|
|
951
|
+
Finished `release` profile [optimized] target(s) in 2.09s
|
|
952
|
+
ℹ️ Build Summary:
|
|
953
|
+
Wasm File: target/wasm32v1-none/release/sac_manager.wasm (31206 bytes)
|
|
954
|
+
Wasm Hash: 58e728063a91a34a0a9ec7ef6acb934f01b87c349e4e481a05d9cc710a07a75f
|
|
955
|
+
Wasm Size: 31206 bytes
|
|
956
|
+
Exported Functions: 22 found
|
|
957
|
+
• __constructor
|
|
958
|
+
• accept_ownership
|
|
959
|
+
• authorizer
|
|
960
|
+
• clawback
|
|
961
|
+
• extend_instance_ttl
|
|
962
|
+
• freeze_ttl_configs
|
|
963
|
+
• is_ttl_configs_frozen
|
|
964
|
+
• migrate
|
|
965
|
+
• mint
|
|
966
|
+
• minters
|
|
967
|
+
• owner
|
|
968
|
+
• pending_owner
|
|
969
|
+
• propose_ownership_transfer
|
|
970
|
+
• release_sac_admin
|
|
971
|
+
• renounce_ownership
|
|
972
|
+
• set_authorized
|
|
973
|
+
• set_minter
|
|
974
|
+
• set_ttl_configs
|
|
975
|
+
• transfer_ownership
|
|
976
|
+
• ttl_configs
|
|
977
|
+
• underlying_sac
|
|
978
|
+
• upgrade
|
|
979
|
+
✅ Build Complete
|
|
980
|
+
|
|
981
|
+
⏱️ stellar contract build: 2:23.231 (m:ss.mmm)
|
|
998
982
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
|
|
999
983
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-config
|
|
1000
984
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup
|
|
@@ -1007,7 +991,7 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
1007
991
|
📦 Using 4 default cache volume(s) for stellar
|
|
1008
992
|
✅ stellar-25.0.0 (Latest stable release)
|
|
1009
993
|
🔧 stellar version: 25.0.0
|
|
1010
|
-
(node:
|
|
994
|
+
(node:96838) [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.
|
|
1011
995
|
Reparsing as ES module because module syntax was detected. This incurs a performance overhead.
|
|
1012
996
|
To eliminate this warning, add "type": "module" to /home/runner/work/monorepo-internal/monorepo-internal/package.json.
|
|
1013
997
|
(Use `node --trace-warnings ...` to show where the warning was created)
|
|
@@ -1022,87 +1006,87 @@ sha256:57520026e52d8bfec50ae6363977a40712bfa2549bac8ceed62a150f1d58a8d2
|
|
|
1022
1006
|
🔒 Acquired lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
|
|
1023
1007
|
$ 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'
|
|
1024
1008
|
Downloading crates ...
|
|
1025
|
-
Downloaded digest v0.9.0
|
|
1026
|
-
Downloaded block-buffer v0.9.0
|
|
1027
1009
|
Downloaded opaque-debug v0.3.1
|
|
1028
1010
|
Downloaded include_dir_macros v0.7.4
|
|
1029
|
-
Downloaded
|
|
1030
|
-
Downloaded heck v0.4.1
|
|
1011
|
+
Downloaded digest v0.9.0
|
|
1031
1012
|
Downloaded glob v0.3.3
|
|
1032
|
-
Downloaded sha2 v0.9.9
|
|
1033
1013
|
Downloaded anyhow v1.0.100
|
|
1034
|
-
Downloaded
|
|
1014
|
+
Downloaded heck v0.4.1
|
|
1015
|
+
Downloaded include_dir v0.7.4
|
|
1016
|
+
Downloaded block-buffer v0.9.0
|
|
1017
|
+
Downloaded sha2 v0.9.9
|
|
1035
1018
|
Downloaded base64 v0.21.7
|
|
1019
|
+
Downloaded soroban-spec-typescript v25.1.0
|
|
1036
1020
|
Compiling proc-macro2 v1.0.103
|
|
1037
|
-
Compiling unicode-ident v1.0.22
|
|
1038
1021
|
Compiling quote v1.0.41
|
|
1022
|
+
Compiling unicode-ident v1.0.22
|
|
1039
1023
|
Compiling serde_json v1.0.145
|
|
1040
|
-
Compiling typenum v1.19.0
|
|
1041
1024
|
Compiling serde_core v1.0.228
|
|
1025
|
+
Compiling typenum v1.19.0
|
|
1042
1026
|
Compiling version_check v0.9.5
|
|
1043
1027
|
Compiling serde v1.0.228
|
|
1044
1028
|
Compiling memchr v2.7.6
|
|
1045
|
-
Compiling ryu v1.0.20
|
|
1046
1029
|
Compiling itoa v1.0.15
|
|
1047
|
-
Compiling
|
|
1030
|
+
Compiling ryu v1.0.20
|
|
1048
1031
|
Compiling strsim v0.11.1
|
|
1032
|
+
Compiling fnv v1.0.7
|
|
1049
1033
|
Compiling ident_case v1.0.1
|
|
1050
1034
|
Compiling schemars v0.8.22
|
|
1051
1035
|
Compiling cfg-if v1.0.4
|
|
1052
1036
|
Compiling cpufeatures v0.2.17
|
|
1053
1037
|
Compiling dyn-clone v1.0.20
|
|
1054
|
-
Compiling thiserror v1.0.69
|
|
1055
|
-
Compiling equivalent v1.0.2
|
|
1056
1038
|
Compiling data-encoding v2.9.0
|
|
1039
|
+
Compiling thiserror v1.0.69
|
|
1057
1040
|
Compiling hashbrown v0.16.0
|
|
1041
|
+
Compiling equivalent v1.0.2
|
|
1042
|
+
Compiling prettyplease v0.2.37
|
|
1058
1043
|
Compiling escape-bytes v0.1.1
|
|
1059
|
-
Compiling ethnum v1.5.2
|
|
1060
1044
|
Compiling base64 v0.22.1
|
|
1061
1045
|
Compiling semver v1.0.27
|
|
1046
|
+
Compiling ethnum v1.5.2
|
|
1062
1047
|
Compiling generic-array v0.14.9
|
|
1063
|
-
Compiling prettyplease v0.2.37
|
|
1064
1048
|
Compiling glob v0.3.3
|
|
1065
1049
|
Compiling either v1.15.0
|
|
1066
|
-
Compiling opaque-debug v0.3.1
|
|
1067
1050
|
Compiling anyhow v1.0.100
|
|
1051
|
+
Compiling opaque-debug v0.3.1
|
|
1068
1052
|
Compiling heck v0.4.1
|
|
1069
1053
|
Compiling itertools v0.10.5
|
|
1070
1054
|
Compiling base64 v0.21.7
|
|
1071
1055
|
Compiling indexmap v2.12.0
|
|
1072
1056
|
Compiling syn v2.0.108
|
|
1057
|
+
Compiling include_dir_macros v0.7.4
|
|
1073
1058
|
Compiling crypto-common v0.1.6
|
|
1074
1059
|
Compiling block-buffer v0.10.4
|
|
1075
|
-
Compiling block-buffer v0.9.0
|
|
1076
1060
|
Compiling digest v0.9.0
|
|
1077
|
-
Compiling
|
|
1078
|
-
Compiling sha2 v0.9.9
|
|
1061
|
+
Compiling block-buffer v0.9.0
|
|
1079
1062
|
Compiling digest v0.10.7
|
|
1080
|
-
Compiling sha2 v0.
|
|
1081
|
-
Compiling
|
|
1063
|
+
Compiling sha2 v0.9.9
|
|
1064
|
+
Compiling wasmparser v0.116.1
|
|
1082
1065
|
Compiling include_dir v0.7.4
|
|
1066
|
+
Compiling sha2 v0.10.9
|
|
1083
1067
|
Compiling darling_core v0.21.3
|
|
1084
1068
|
Compiling serde_derive v1.0.228
|
|
1085
|
-
Compiling cfg_eval v0.1.2
|
|
1086
1069
|
Compiling thiserror-impl v1.0.69
|
|
1070
|
+
Compiling cfg_eval v0.1.2
|
|
1087
1071
|
Compiling crate-git-revision v0.0.6
|
|
1088
|
-
Compiling darling_macro v0.21.3
|
|
1089
1072
|
Compiling stellar-strkey v0.0.13
|
|
1073
|
+
Compiling darling_macro v0.21.3
|
|
1090
1074
|
Compiling stellar-xdr v25.0.0
|
|
1091
1075
|
Compiling hex v0.4.3
|
|
1092
1076
|
Compiling darling v0.21.3
|
|
1093
1077
|
Compiling serde_with_macros v3.15.1
|
|
1094
1078
|
Compiling serde_with v3.15.1
|
|
1095
|
-
Compiling soroban-spec v25.1.
|
|
1079
|
+
Compiling soroban-spec v25.1.1
|
|
1096
1080
|
Compiling soroban-spec-typescript v25.1.0
|
|
1097
1081
|
Compiling ts-bindings-gen v0.0.1 (/workspace/contracts/protocol/stellar/tools/ts-bindings-gen)
|
|
1098
|
-
Finished `dev` profile [unoptimized + debuginfo] target(s) in
|
|
1082
|
+
Finished `dev` profile [unoptimized + debuginfo] target(s) in 1m 49s
|
|
1099
1083
|
Running `target/debug/ts-bindings-gen`
|
|
1100
1084
|
🚀 Generating TypeScript bindings for Stellar contracts...
|
|
1101
1085
|
|
|
1102
1086
|
📦 Processing contract: endpoint_v2
|
|
1103
1087
|
WASM: target/wasm32v1-none/release/endpoint_v2.wasm
|
|
1104
1088
|
Output: sdk/src/generated/endpoint.ts
|
|
1105
|
-
WASM size:
|
|
1089
|
+
WASM size: 58196 bytes (56.83 KB)
|
|
1106
1090
|
Generating bindings...
|
|
1107
1091
|
✓ Generated: sdk/src/generated/endpoint.ts
|
|
1108
1092
|
📦 Processing contract: simple_message_lib
|
|
@@ -1114,13 +1098,13 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
1114
1098
|
📦 Processing contract: blocked_message_lib
|
|
1115
1099
|
WASM: target/wasm32v1-none/release/blocked_message_lib.wasm
|
|
1116
1100
|
Output: sdk/src/generated/bml.ts
|
|
1117
|
-
WASM size:
|
|
1101
|
+
WASM size: 14326 bytes (13.99 KB)
|
|
1118
1102
|
Generating bindings...
|
|
1119
1103
|
✓ Generated: sdk/src/generated/bml.ts
|
|
1120
1104
|
📦 Processing contract: uln302
|
|
1121
1105
|
WASM: target/wasm32v1-none/release/uln302.wasm
|
|
1122
1106
|
Output: sdk/src/generated/uln302.ts
|
|
1123
|
-
WASM size:
|
|
1107
|
+
WASM size: 59419 bytes (58.03 KB)
|
|
1124
1108
|
Generating bindings...
|
|
1125
1109
|
✓ Generated: sdk/src/generated/uln302.ts
|
|
1126
1110
|
📦 Processing contract: treasury
|
|
@@ -1138,7 +1122,7 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
1138
1122
|
📦 Processing contract: dvn
|
|
1139
1123
|
WASM: target/wasm32v1-none/release/dvn.wasm
|
|
1140
1124
|
Output: sdk/src/generated/dvn.ts
|
|
1141
|
-
WASM size:
|
|
1125
|
+
WASM size: 55837 bytes (54.53 KB)
|
|
1142
1126
|
Generating bindings...
|
|
1143
1127
|
✓ Generated: sdk/src/generated/dvn.ts
|
|
1144
1128
|
📦 Processing contract: dvn_fee_lib
|
|
@@ -1150,7 +1134,7 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
1150
1134
|
📦 Processing contract: executor
|
|
1151
1135
|
WASM: target/wasm32v1-none/release/executor.wasm
|
|
1152
1136
|
Output: sdk/src/generated/executor.ts
|
|
1153
|
-
WASM size:
|
|
1137
|
+
WASM size: 58270 bytes (56.90 KB)
|
|
1154
1138
|
Generating bindings...
|
|
1155
1139
|
✓ Generated: sdk/src/generated/executor.ts
|
|
1156
1140
|
📦 Processing contract: executor_fee_lib
|
|
@@ -1168,31 +1152,31 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
1168
1152
|
📦 Processing contract: price_feed
|
|
1169
1153
|
WASM: target/wasm32v1-none/release/price_feed.wasm
|
|
1170
1154
|
Output: sdk/src/generated/price_feed.ts
|
|
1171
|
-
WASM size:
|
|
1155
|
+
WASM size: 32616 bytes (31.85 KB)
|
|
1172
1156
|
Generating bindings...
|
|
1173
1157
|
✓ Generated: sdk/src/generated/price_feed.ts
|
|
1174
1158
|
📦 Processing contract: counter
|
|
1175
1159
|
WASM: target/wasm32v1-none/release/counter.wasm
|
|
1176
1160
|
Output: sdk/src/generated/counter.ts
|
|
1177
|
-
WASM size:
|
|
1161
|
+
WASM size: 42287 bytes (41.30 KB)
|
|
1178
1162
|
Generating bindings...
|
|
1179
1163
|
✓ Generated: sdk/src/generated/counter.ts
|
|
1180
1164
|
📦 Processing contract: oft
|
|
1181
1165
|
WASM: target/wasm32v1-none/release/oft.wasm
|
|
1182
1166
|
Output: sdk/src/generated/oft.ts
|
|
1183
|
-
WASM size:
|
|
1167
|
+
WASM size: 67175 bytes (65.60 KB)
|
|
1184
1168
|
Generating bindings...
|
|
1185
1169
|
✓ Generated: sdk/src/generated/oft.ts
|
|
1186
1170
|
📦 Processing contract: sac_manager
|
|
1187
1171
|
WASM: target/wasm32v1-none/release/sac_manager.wasm
|
|
1188
1172
|
Output: sdk/src/generated/sac_manager.ts
|
|
1189
|
-
WASM size:
|
|
1173
|
+
WASM size: 31206 bytes (30.47 KB)
|
|
1190
1174
|
Generating bindings...
|
|
1191
1175
|
✓ Generated: sdk/src/generated/sac_manager.ts
|
|
1192
1176
|
📦 Processing contract: layerzero_views
|
|
1193
1177
|
WASM: target/wasm32v1-none/release/layerzero_views.wasm
|
|
1194
1178
|
Output: sdk/src/generated/layerzero_view.ts
|
|
1195
|
-
WASM size:
|
|
1179
|
+
WASM size: 35539 bytes (34.71 KB)
|
|
1196
1180
|
Generating bindings...
|
|
1197
1181
|
✓ Generated: sdk/src/generated/layerzero_view.ts
|
|
1198
1182
|
|
|
@@ -1216,7 +1200,7 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
1216
1200
|
- oft.ts
|
|
1217
1201
|
- sac_manager.ts
|
|
1218
1202
|
- layerzero_view.ts
|
|
1219
|
-
⏱️ bash -c cargo run -p ts-bindings-gen:
|
|
1203
|
+
⏱️ bash -c cargo run -p ts-bindings-gen: 1:50.145 (m:ss.mmm)
|
|
1220
1204
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
|
|
1221
1205
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-config
|
|
1222
1206
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup
|