@layerzerolabs/protocol-stellar-v2 0.2.40 → 0.2.43
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 +312 -397
- package/.turbo/turbo-lint.log +185 -245
- package/.turbo/turbo-test.log +1846 -1942
- package/Cargo.lock +22 -127
- package/Cargo.toml +4 -6
- package/contracts/common-macros/src/lib.rs +38 -15
- package/contracts/common-macros/src/lz_contract.rs +12 -21
- package/contracts/common-macros/src/tests/lz_contract.rs +17 -8
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__lz_contract__snapshot_generated_lz_contract_code.snap +20 -0
- package/contracts/common-macros/src/upgradeable.rs +37 -30
- package/contracts/endpoint-v2/src/endpoint_v2.rs +4 -3
- package/contracts/endpoint-v2/src/errors.rs +2 -2
- package/contracts/endpoint-v2/src/messaging_channel.rs +11 -0
- package/contracts/endpoint-v2/src/messaging_composer.rs +1 -0
- package/contracts/endpoint-v2/src/tests/endpoint_v2/clear.rs +12 -25
- package/contracts/endpoint-v2/src/tests/endpoint_v2/initializable.rs +4 -4
- package/contracts/endpoint-v2/src/tests/endpoint_v2/verifiable.rs +50 -10
- package/contracts/endpoint-v2/src/tests/endpoint_v2/verify.rs +6 -35
- package/contracts/endpoint-v2/src/tests/messaging_channel/burn.rs +2 -2
- package/contracts/endpoint-v2/src/tests/messaging_channel/clear_payload.rs +50 -1
- package/contracts/endpoint-v2/src/tests/messaging_channel/inbound.rs +78 -0
- package/contracts/endpoint-v2/src/tests/messaging_channel/insert_and_drain_pending_nonces.rs +272 -0
- package/contracts/endpoint-v2/src/tests/messaging_channel/mod.rs +1 -0
- package/contracts/endpoint-v2/src/tests/messaging_channel/nilify.rs +10 -5
- package/contracts/endpoint-v2/src/tests/messaging_channel/skip.rs +30 -0
- package/contracts/macro-integration-tests/tests/runtime/oapp/mod.rs +25 -6
- package/contracts/macro-integration-tests/tests/runtime/oapp/oapp_core.rs +13 -11
- package/contracts/macro-integration-tests/tests/runtime/oapp/options_type3.rs +13 -10
- package/contracts/macro-integration-tests/tests/runtime/oapp/receiver.rs +15 -11
- package/contracts/macro-integration-tests/tests/runtime/oapp/sender.rs +5 -3
- package/contracts/macro-integration-tests/tests/runtime/ownable/mod.rs +1 -1
- package/contracts/macro-integration-tests/tests/runtime/ownable/two_step_transfer.rs +14 -12
- package/contracts/macro-integration-tests/tests/runtime/upgradeable/migrate_guard_and_state.rs +3 -9
- package/contracts/macro-integration-tests/tests/ui/lz_contract/fail/upgradeable_invalid_inner_option.stderr +24 -1
- package/contracts/macro-integration-tests/tests/ui/lz_contract/fail/upgradeable_missing_internal.stderr +3 -3
- package/contracts/macro-integration-tests/tests/ui/lz_contract/pass/upgradeable_rbac.rs +44 -0
- package/contracts/macro-integration-tests/tests/ui/oapp/fail/missing_auth_trait.rs +28 -0
- package/contracts/macro-integration-tests/tests/ui/oapp/fail/missing_auth_trait.stderr +397 -0
- package/contracts/macro-integration-tests/tests/ui/oapp/fail/missing_lz_receive_internal.rs +1 -0
- package/contracts/macro-integration-tests/tests/ui/oapp/fail/missing_lz_receive_internal.stderr +10 -10
- package/contracts/macro-integration-tests/tests/ui/oapp/pass/custom_all.rs +4 -0
- package/contracts/macro-integration-tests/tests/ui/oapp/pass/custom_single_trait.rs +7 -0
- package/contracts/macro-integration-tests/tests/ui/oapp/pass/minimal_contract.rs +5 -4
- package/contracts/macro-integration-tests/tests/ui/oapp/pass/struct_with_fields.rs +2 -0
- package/contracts/macro-integration-tests/tests/ui/ownable/pass/basic.rs +1 -1
- package/contracts/macro-integration-tests/tests/ui/upgradeable/fail/attr_args.stderr +1 -1
- package/contracts/macro-integration-tests/tests/ui/upgradeable/fail/missing_auth_trait.stderr +2 -2
- package/contracts/macro-integration-tests/tests/ui/upgradeable/fail/missing_upgradeable_internal.stderr +2 -2
- package/contracts/macro-integration-tests/tests/ui/upgradeable/pass/rbac.rs +44 -0
- package/contracts/oapps/counter/integration_tests/utils.rs +5 -3
- package/contracts/oapps/counter/src/counter.rs +4 -3
- package/contracts/oapps/counter/src/tests/mod.rs +16 -1
- package/contracts/oapps/counter/src/tests/test_counter.rs +5 -2
- package/contracts/oapps/oapp/src/oapp_core.rs +22 -8
- package/contracts/oapps/oapp/src/oapp_options_type3.rs +7 -5
- package/contracts/oapps/oapp/src/tests/mod.rs +21 -0
- package/contracts/oapps/oapp/src/tests/oapp_core.rs +14 -11
- package/contracts/oapps/oapp/src/tests/oapp_options_type3.rs +17 -10
- package/contracts/oapps/oapp/src/tests/oapp_receiver.rs +6 -3
- package/contracts/oapps/oapp/src/tests/oapp_sender.rs +5 -3
- package/contracts/oapps/oapp/src/tests/test_macros.rs +25 -0
- package/contracts/oapps/oapp-macros/src/generators.rs +12 -9
- package/contracts/oapps/oapp-macros/src/lib.rs +1 -1
- package/contracts/oapps/oapp-macros/src/tests/snapshots/oapp_macros__tests__oapp__snapshot_generate_oapp.snap +15 -7
- package/contracts/oapps/oft/integration-tests/setup.rs +22 -4
- package/contracts/oapps/oft/integration-tests/utils.rs +94 -13
- package/contracts/oapps/oft/src/extensions/oft_fee.rs +23 -10
- package/contracts/oapps/oft/src/extensions/pausable.rs +31 -10
- package/contracts/oapps/oft/src/extensions/rate_limiter.rs +9 -4
- package/contracts/oapps/oft/src/oft.rs +3 -3
- package/contracts/oapps/oft/src/tests/extensions/oft_fee.rs +39 -27
- package/contracts/oapps/oft/src/tests/extensions/pausable.rs +38 -24
- package/contracts/oapps/oft/src/tests/extensions/rate_limiter.rs +87 -69
- package/contracts/oapps/oft/src/tests/oft_types/lock_unlock.rs +1 -0
- package/contracts/oapps/oft-core/integration-tests/setup.rs +28 -3
- package/contracts/oapps/oft-core/src/oft_core.rs +11 -6
- package/contracts/oapps/oft-core/src/tests/test_msg_inspector.rs +20 -20
- package/contracts/oapps/oft-core/src/tests/test_utils.rs +33 -3
- package/contracts/upgrader/src/lib.rs +67 -30
- package/contracts/upgrader/src/tests/test_data/test_upgradeable_contract3.wasm +0 -0
- package/contracts/upgrader/src/tests/test_data/test_upgradeable_contract4.wasm +0 -0
- package/contracts/upgrader/src/tests/test_upgrader.rs +50 -4
- package/contracts/utils/src/ownable.rs +16 -5
- package/contracts/utils/src/tests/ownable.rs +39 -39
- package/contracts/utils/src/upgradeable.rs +60 -17
- package/docs/oapp-guide.md +18 -13
- package/package.json +5 -5
- package/sdk/.turbo/turbo-test.log +359 -348
- package/sdk/dist/generated/bml.d.ts +4 -4
- package/sdk/dist/generated/bml.js +6 -6
- package/sdk/dist/generated/counter.d.ts +269 -123
- package/sdk/dist/generated/counter.js +45 -25
- package/sdk/dist/generated/dvn.d.ts +4 -6
- package/sdk/dist/generated/dvn.js +8 -8
- package/sdk/dist/generated/dvn_fee_lib.d.ts +8 -10
- package/sdk/dist/generated/dvn_fee_lib.js +8 -8
- package/sdk/dist/generated/endpoint.d.ts +9 -9
- package/sdk/dist/generated/endpoint.js +9 -9
- package/sdk/dist/generated/executor.d.ts +9 -11
- package/sdk/dist/generated/executor.js +11 -11
- package/sdk/dist/generated/executor_fee_lib.d.ts +9 -11
- package/sdk/dist/generated/executor_fee_lib.js +11 -11
- package/sdk/dist/generated/executor_helper.d.ts +4 -4
- package/sdk/dist/generated/executor_helper.js +6 -6
- package/sdk/dist/generated/layerzero_view.d.ts +9 -11
- package/sdk/dist/generated/layerzero_view.js +11 -11
- package/sdk/dist/generated/oft.d.ts +323 -156
- package/sdk/dist/generated/oft.js +65 -43
- package/sdk/dist/generated/price_feed.d.ts +8 -10
- package/sdk/dist/generated/price_feed.js +8 -8
- package/sdk/dist/generated/sac_manager.d.ts +8 -8
- package/sdk/dist/generated/sac_manager.js +6 -6
- package/sdk/dist/generated/sml.d.ts +9 -9
- package/sdk/dist/generated/sml.js +9 -9
- package/sdk/dist/generated/treasury.d.ts +9 -9
- package/sdk/dist/generated/treasury.js +9 -9
- package/sdk/dist/generated/uln302.d.ts +9 -9
- package/sdk/dist/generated/uln302.js +9 -9
- package/sdk/dist/generated/upgrader.d.ts +25 -16
- package/sdk/dist/generated/upgrader.js +5 -5
- package/sdk/package.json +1 -1
- package/sdk/test/counter-sml.test.ts +20 -0
- package/sdk/test/counter-uln.test.ts +20 -0
- package/sdk/test/oft-sml.test.ts +22 -0
- package/sdk/test/upgrader.test.ts +1 -0
- package/ts-bindings-gen.toml +67 -0
- package/turbo.json +1 -8
- package/tools/ts-bindings-gen/Cargo.toml +0 -16
- package/tools/ts-bindings-gen/src/main.rs +0 -214
package/.turbo/turbo-build.log
CHANGED
|
@@ -9,230 +9,176 @@
|
|
|
9
9
|
> pnpm exec lz-tool stellar contract build
|
|
10
10
|
|
|
11
11
|
WARN Issue while reading "/home/runner/work/monorepo-internal/monorepo-internal/.npmrc". Failed to replace env in config: ${NPM_TOKEN}
|
|
12
|
+
🔧 Syncing Rust toolchain: rustup toolchain install 1.90.0 --target wasm32v1-none --component rustfmt --component clippy
|
|
12
13
|
📦 Using 4 default cache volume(s) for stellar
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
14
|
+
🔧 User volumes override 1 default volume(s)
|
|
15
|
+
✅ stellar-25.1.0 (Latest stable release)
|
|
16
|
+
🔧 stellar version: 25.1.0
|
|
17
|
+
(node:17722) [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
18
|
Reparsing as ES module because module syntax was detected. This incurs a performance overhead.
|
|
17
19
|
To eliminate this warning, add "type": "module" to /home/runner/work/monorepo-internal/monorepo-internal/package.json.
|
|
18
20
|
(Use `node --trace-warnings ...` to show where the warning was created)
|
|
19
|
-
$ docker image inspect --format {{.Id}} 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.
|
|
20
|
-
|
|
21
|
-
|
|
21
|
+
$ docker image inspect --format {{.Id}} 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.1.0
|
|
22
|
+
Error response from daemon: No such image: 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.1.0
|
|
23
|
+
|
|
24
|
+
📥 Pulling Docker image from: 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.1.0
|
|
25
|
+
$ docker pull 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.1.0
|
|
26
|
+
stellar_25.1.0: Pulling from layerzerolabs/stellar-tooling
|
|
27
|
+
f6bd9104d248: Pulling fs layer
|
|
28
|
+
4617420e017b: Pulling fs layer
|
|
29
|
+
beaaf8a7146e: Pulling fs layer
|
|
30
|
+
3e1d87a413fa: Pulling fs layer
|
|
31
|
+
a0f6971ecbd3: Pulling fs layer
|
|
32
|
+
92a1b3d31b96: Pulling fs layer
|
|
33
|
+
fb456ca5475e: Pulling fs layer
|
|
34
|
+
2c1ce468d9f3: Pulling fs layer
|
|
35
|
+
963aa7b66e91: Pulling fs layer
|
|
36
|
+
efd28cb7ba78: Pulling fs layer
|
|
37
|
+
14f775f5d67b: Pulling fs layer
|
|
38
|
+
3f562c99cbe3: Pulling fs layer
|
|
39
|
+
5fa3a944df97: Pulling fs layer
|
|
40
|
+
92a1b3d31b96: Waiting
|
|
41
|
+
efd28cb7ba78: Waiting
|
|
42
|
+
fb456ca5475e: Waiting
|
|
43
|
+
14f775f5d67b: Waiting
|
|
44
|
+
3f562c99cbe3: Waiting
|
|
45
|
+
2c1ce468d9f3: Waiting
|
|
46
|
+
5fa3a944df97: Waiting
|
|
47
|
+
963aa7b66e91: Waiting
|
|
48
|
+
3e1d87a413fa: Waiting
|
|
49
|
+
a0f6971ecbd3: Waiting
|
|
50
|
+
f6bd9104d248: Verifying Checksum
|
|
51
|
+
f6bd9104d248: Download complete
|
|
52
|
+
3e1d87a413fa: Verifying Checksum
|
|
53
|
+
3e1d87a413fa: Download complete
|
|
54
|
+
f6bd9104d248: Pull complete
|
|
55
|
+
a0f6971ecbd3: Verifying Checksum
|
|
56
|
+
a0f6971ecbd3: Download complete
|
|
57
|
+
beaaf8a7146e: Verifying Checksum
|
|
58
|
+
beaaf8a7146e: Download complete
|
|
59
|
+
4617420e017b: Verifying Checksum
|
|
60
|
+
4617420e017b: Download complete
|
|
61
|
+
2c1ce468d9f3: Verifying Checksum
|
|
62
|
+
2c1ce468d9f3: Download complete
|
|
63
|
+
92a1b3d31b96: Verifying Checksum
|
|
64
|
+
92a1b3d31b96: Download complete
|
|
65
|
+
efd28cb7ba78: Verifying Checksum
|
|
66
|
+
efd28cb7ba78: Download complete
|
|
67
|
+
14f775f5d67b: Download complete
|
|
68
|
+
fb456ca5475e: Verifying Checksum
|
|
69
|
+
fb456ca5475e: Download complete
|
|
70
|
+
3f562c99cbe3: Download complete
|
|
71
|
+
5fa3a944df97: Download complete
|
|
72
|
+
963aa7b66e91: Verifying Checksum
|
|
73
|
+
963aa7b66e91: Download complete
|
|
74
|
+
4617420e017b: Pull complete
|
|
75
|
+
beaaf8a7146e: Pull complete
|
|
76
|
+
3e1d87a413fa: Pull complete
|
|
77
|
+
a0f6971ecbd3: Pull complete
|
|
78
|
+
92a1b3d31b96: Pull complete
|
|
79
|
+
fb456ca5475e: Pull complete
|
|
80
|
+
2c1ce468d9f3: Pull complete
|
|
81
|
+
963aa7b66e91: Pull complete
|
|
82
|
+
efd28cb7ba78: Pull complete
|
|
83
|
+
14f775f5d67b: Pull complete
|
|
84
|
+
3f562c99cbe3: Pull complete
|
|
85
|
+
5fa3a944df97: Pull complete
|
|
86
|
+
Digest: sha256:fa3b739bf5c746bcb374b6fff2f13f253c8694b18fd0d9faa4e3b33a13b82781
|
|
87
|
+
Status: Downloaded newer image for 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.1.0
|
|
88
|
+
438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.1.0
|
|
89
|
+
✅ Successfully pulled: 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.1.0
|
|
90
|
+
👤 Running container as UID:GID 1001:1001
|
|
91
|
+
🌍 Using 5 default environment variable(s) for stellar
|
|
92
|
+
📜 Executing custom script: mkdir -p $CARGO_HOME/bin && ln -sf /usr/local/cargo/bin/rustup $CARGO_HOME/bin/rustup && rustup toolchain install 1.90.0 --target wasm32v1-none --component rustfmt --component clippy
|
|
93
|
+
🔒 Acquired lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup
|
|
94
|
+
$ 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-rustup:/cache/rustup -v lz-tooling-cache-stellar-config:/cache/stellar -v lz-tooling-cache-stellar-cargo:/cache/cargo -v /home/runner/.sccache:/cache/sccache 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.1.0 bash -c $'mkdir -p $CARGO_HOME/bin && ln -sf /usr/local/cargo/bin/rustup $CARGO_HOME/bin/rustup && rustup toolchain install 1.90.0 --target wasm32v1-none --component rustfmt --component clippy'
|
|
95
|
+
info: syncing channel updates for '1.90.0-x86_64-unknown-linux-gnu'
|
|
96
|
+
info: latest update on 2025-09-18, rust version 1.90.0 (1159e78c4 2025-09-14)
|
|
97
|
+
info: downloading component 'cargo'
|
|
98
|
+
info: downloading component 'clippy'
|
|
99
|
+
info: downloading component 'rust-docs'
|
|
100
|
+
info: downloading component 'rust-std' for 'wasm32v1-none'
|
|
101
|
+
info: downloading component 'rust-std'
|
|
102
|
+
info: downloading component 'rustc'
|
|
103
|
+
info: downloading component 'rustfmt'
|
|
104
|
+
info: installing component 'cargo'
|
|
105
|
+
info: installing component 'clippy'
|
|
106
|
+
info: installing component 'rust-docs'
|
|
107
|
+
info: installing component 'rust-std' for 'wasm32v1-none'
|
|
108
|
+
info: installing component 'rust-std'
|
|
109
|
+
info: installing component 'rustc'
|
|
110
|
+
info: installing component 'rustfmt'
|
|
111
|
+
|
|
112
|
+
1.90.0-x86_64-unknown-linux-gnu installed - rustc 1.90.0 (1159e78c4 2025-09-14)
|
|
113
|
+
|
|
114
|
+
info: default toolchain set to '1.90.0-x86_64-unknown-linux-gnu'
|
|
115
|
+
info: checking for self-update
|
|
116
|
+
⏱️ bash -c mkdir -p $CARGO_HOME/bin && ln -sf /usr/local/cargo/bin/rustup $CARGO_HOME/bin/rustup && rustup toolchain install 1.90.0 --target wasm32v1-none --component rustfmt --component clippy: 15.377s
|
|
117
|
+
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup
|
|
118
|
+
📦 Using 4 default cache volume(s) for stellar
|
|
119
|
+
✅ stellar-25.1.0 (Latest stable release)
|
|
120
|
+
🔧 stellar version: 25.1.0
|
|
121
|
+
$ docker image inspect --format {{.Id}} 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.1.0
|
|
122
|
+
sha256:314e086933eed3b936567f54f10bcac74de514b93d4841d04eca14b97756d33b
|
|
123
|
+
✅ Using cached Docker image: 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.1.0
|
|
22
124
|
👤 Running container as UID:GID 1001:1001
|
|
23
125
|
🌍 Using 5 default environment variable(s) for stellar
|
|
24
|
-
$ 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.
|
|
126
|
+
$ 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.1.0 stellar contract build
|
|
25
127
|
ℹ️ 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
|
|
26
128
|
Updating crates.io index
|
|
27
129
|
Downloading crates ...
|
|
28
|
-
Downloaded
|
|
29
|
-
Downloaded arbitrary v1.3.2
|
|
30
|
-
Downloaded derive_arbitrary v1.3.2
|
|
31
|
-
Downloaded elliptic-curve v0.13.8
|
|
32
|
-
Downloaded primeorder v0.13.6
|
|
33
|
-
Downloaded visibility v0.1.1
|
|
34
|
-
Downloaded time-core v0.1.6
|
|
35
|
-
Downloaded schemars v0.8.22
|
|
36
|
-
Downloaded time-macros v0.2.24
|
|
37
|
-
Downloaded smallvec v1.15.1
|
|
38
|
-
Downloaded indexmap v2.12.0
|
|
39
|
-
Downloaded soroban-env-common v25.0.1
|
|
40
|
-
Downloaded serde v1.0.228
|
|
41
|
-
Downloaded rand_chacha v0.3.1
|
|
42
|
-
Downloaded wasmi_arena v0.4.1
|
|
43
|
-
Downloaded version_check v0.9.5
|
|
44
|
-
Downloaded zeroize_derive v1.4.2
|
|
45
|
-
Downloaded strsim v0.11.1
|
|
46
|
-
Downloaded zeroize v1.8.2
|
|
47
|
-
Downloaded thiserror-impl v1.0.69
|
|
48
|
-
Downloaded static_assertions v1.1.0
|
|
49
|
-
Downloaded thiserror v1.0.69
|
|
50
|
-
Downloaded stellar-strkey v0.0.16
|
|
130
|
+
Downloaded dtor v0.1.1
|
|
51
131
|
Downloaded unicode-ident v1.0.22
|
|
52
|
-
Downloaded serde_core v1.0.228
|
|
53
|
-
Downloaded wasmparser v0.116.1
|
|
54
|
-
Downloaded typenum v1.19.0
|
|
55
|
-
Downloaded serde_with v3.15.1
|
|
56
|
-
Downloaded itertools v0.14.0
|
|
57
|
-
Downloaded wasmparser-nostd v0.100.2
|
|
58
|
-
Downloaded soroban-wasmi v0.31.1-soroban.20.0.1
|
|
59
|
-
Downloaded serde_json v1.0.145
|
|
60
|
-
Downloaded chrono v0.4.42
|
|
61
|
-
Downloaded zerocopy v0.8.27
|
|
62
|
-
Downloaded syn v1.0.109
|
|
63
|
-
Downloaded dyn-clone v1.0.20
|
|
64
|
-
Downloaded syn v2.0.108
|
|
65
|
-
Downloaded ark-bls12-381 v0.4.0
|
|
66
|
-
Downloaded curve25519-dalek v4.1.3
|
|
67
|
-
Downloaded cpufeatures v0.2.17
|
|
68
|
-
Downloaded soroban-sdk v25.1.1
|
|
69
|
-
Downloaded time v0.3.44
|
|
70
|
-
Downloaded hex-literal v0.4.1
|
|
71
|
-
Downloaded hashbrown v0.12.3
|
|
72
132
|
Downloaded schemars v1.0.5
|
|
73
|
-
Downloaded num-bigint v0.4.6
|
|
74
|
-
Downloaded soroban-env-host v25.0.1
|
|
75
|
-
Downloaded k256 v0.13.4
|
|
76
|
-
Downloaded itertools v0.10.5
|
|
77
|
-
Downloaded hashbrown v0.13.2
|
|
78
|
-
Downloaded ethnum v1.5.2
|
|
79
|
-
Downloaded crypto-bigint v0.5.5
|
|
80
|
-
Downloaded memchr v2.7.6
|
|
81
|
-
Downloaded sha3 v0.10.8
|
|
82
|
-
Downloaded libm v0.2.15
|
|
83
|
-
Downloaded base64ct v1.8.0
|
|
84
|
-
Downloaded p256 v0.13.2
|
|
85
|
-
Downloaded num-traits v0.2.19
|
|
86
|
-
Downloaded indexmap v1.9.3
|
|
87
|
-
Downloaded getrandom v0.2.16
|
|
88
|
-
Downloaded digest v0.10.7
|
|
89
|
-
Downloaded darling v0.20.11
|
|
90
|
-
Downloaded const-oid v0.9.6
|
|
91
|
-
Downloaded ark-poly v0.4.2
|
|
92
|
-
Downloaded ahash v0.8.12
|
|
93
|
-
Downloaded hmac v0.12.1
|
|
94
|
-
Downloaded either v1.15.0
|
|
95
|
-
Downloaded data-encoding v2.9.0
|
|
96
|
-
Downloaded darling_macro v0.20.11
|
|
97
|
-
Downloaded darling v0.21.3
|
|
98
|
-
Downloaded ctor v0.5.0
|
|
99
|
-
Downloaded autocfg v1.5.0
|
|
100
|
-
Downloaded ark-std v0.4.0
|
|
101
|
-
Downloaded ark-ff-macros v0.4.2
|
|
102
|
-
Downloaded ark-bn254 v0.4.0
|
|
103
|
-
Downloaded serde_derive v1.0.228
|
|
104
|
-
Downloaded powerfmt v0.2.0
|
|
105
|
-
Downloaded paste v1.0.15
|
|
106
|
-
Downloaded num-integer v0.1.46
|
|
107
|
-
Downloaded indexmap-nostd v0.4.0
|
|
108
|
-
Downloaded heck v0.5.0
|
|
109
|
-
Downloaded stellar-xdr v25.0.0
|
|
110
|
-
Downloaded soroban-sdk-macros v25.1.1
|
|
111
|
-
Downloaded ff v0.13.1
|
|
112
|
-
Downloaded escape-bytes v0.1.1
|
|
113
|
-
Downloaded ed25519 v2.2.3
|
|
114
|
-
Downloaded downcast-rs v1.2.1
|
|
115
|
-
Downloaded darling_macro v0.21.3
|
|
116
|
-
Downloaded ctor-proc-macro v0.0.6
|
|
117
|
-
Downloaded crate-git-revision v0.0.6
|
|
118
|
-
Downloaded ryu v1.0.20
|
|
119
|
-
Downloaded num-derive v0.4.2
|
|
120
|
-
Downloaded itoa v1.0.15
|
|
121
|
-
Downloaded hash32 v0.3.1
|
|
122
|
-
Downloaded fnv v1.0.7
|
|
123
|
-
Downloaded curve25519-dalek-derive v0.1.1
|
|
124
|
-
Downloaded stellar-strkey v0.0.13
|
|
125
|
-
Downloaded spin v0.9.8
|
|
126
|
-
Downloaded serde_with_macros v3.15.1
|
|
127
|
-
Downloaded soroban-ledger-snapshot v25.1.1
|
|
128
|
-
Downloaded spki v0.7.3
|
|
129
|
-
Downloaded soroban-env-macros v25.0.1
|
|
130
|
-
Downloaded sha2 v0.10.9
|
|
131
|
-
Downloaded semver v1.0.27
|
|
132
|
-
Downloaded sec1 v0.7.3
|
|
133
|
-
Downloaded wasmi_core v0.13.0
|
|
134
|
-
Downloaded subtle v2.6.1
|
|
135
|
-
Downloaded soroban-builtin-sdk-macros v25.0.1
|
|
136
|
-
Downloaded rfc6979 v0.4.0
|
|
137
|
-
Downloaded stable_deref_trait v1.2.1
|
|
138
|
-
Downloaded soroban-spec-rust v25.1.1
|
|
139
|
-
Downloaded soroban-env-guest v25.0.1
|
|
140
|
-
Downloaded soroban-spec v25.1.1
|
|
141
|
-
Downloaded ref-cast-impl v1.0.25
|
|
142
|
-
Downloaded ref-cast v1.0.25
|
|
143
|
-
Downloaded byteorder v1.5.0
|
|
144
|
-
Downloaded libc v0.2.177
|
|
145
|
-
Downloaded rustc_version v0.4.1
|
|
146
|
-
Downloaded ed25519-dalek v2.2.0
|
|
147
|
-
Downloaded bytes-lit v0.0.5
|
|
148
|
-
Downloaded deranged v0.5.5
|
|
149
|
-
Downloaded crypto-common v0.1.6
|
|
150
|
-
Downloaded cfg-if v1.0.4
|
|
151
|
-
Downloaded ark-serialize-derive v0.4.2
|
|
152
|
-
Downloaded ark-ff v0.4.2
|
|
153
|
-
Downloaded proc-macro2 v1.0.103
|
|
154
|
-
Downloaded ppv-lite86 v0.2.21
|
|
155
|
-
Downloaded keccak v0.1.5
|
|
156
|
-
Downloaded heapless v0.8.0
|
|
157
|
-
Downloaded group v0.13.0
|
|
158
|
-
Downloaded generic-array v0.14.9
|
|
159
|
-
Downloaded equivalent v1.0.2
|
|
160
|
-
Downloaded dtor-proc-macro v0.0.6
|
|
161
|
-
Downloaded dtor v0.1.1
|
|
162
|
-
Downloaded darling_core v0.20.11
|
|
163
|
-
Downloaded ark-ec v0.4.2
|
|
164
|
-
Downloaded signature v2.2.0
|
|
165
|
-
Downloaded schemars v0.9.0
|
|
166
|
-
Downloaded ident_case v1.0.1
|
|
167
|
-
Downloaded iana-time-zone v0.1.64
|
|
168
|
-
Downloaded hashbrown v0.16.0
|
|
169
|
-
Downloaded derivative v2.2.0
|
|
170
|
-
Downloaded cfg_eval v0.1.2
|
|
171
|
-
Downloaded rand_core v0.6.4
|
|
172
|
-
Downloaded num-conv v0.1.0
|
|
173
|
-
Downloaded base64 v0.22.1
|
|
174
|
-
Downloaded rand v0.8.5
|
|
175
|
-
Downloaded quote v1.0.41
|
|
176
|
-
Downloaded prettyplease v0.2.37
|
|
177
|
-
Downloaded once_cell v1.21.3
|
|
178
|
-
Downloaded macro-string v0.1.4
|
|
179
|
-
Downloaded hex v0.4.3
|
|
180
|
-
Downloaded der v0.7.10
|
|
181
|
-
Downloaded darling_core v0.21.3
|
|
182
|
-
Downloaded pkcs8 v0.10.2
|
|
183
|
-
Downloaded ecdsa v0.16.9
|
|
184
|
-
Downloaded block-buffer v0.10.4
|
|
185
|
-
Downloaded ark-serialize v0.4.2
|
|
186
|
-
Downloaded base16ct v0.2.0
|
|
187
133
|
Compiling proc-macro2 v1.0.103
|
|
188
|
-
Compiling quote v1.0.41
|
|
189
134
|
Compiling unicode-ident v1.0.22
|
|
135
|
+
Compiling quote v1.0.41
|
|
190
136
|
Compiling serde_core v1.0.228
|
|
191
137
|
Compiling serde v1.0.228
|
|
192
138
|
Compiling serde_json v1.0.145
|
|
193
|
-
Compiling ryu v1.0.20
|
|
194
|
-
Compiling itoa v1.0.15
|
|
195
139
|
Compiling memchr v2.7.6
|
|
196
|
-
Compiling
|
|
140
|
+
Compiling itoa v1.0.15
|
|
141
|
+
Compiling ryu v1.0.20
|
|
197
142
|
Compiling strsim v0.11.1
|
|
198
143
|
Compiling ident_case v1.0.1
|
|
199
|
-
Compiling
|
|
144
|
+
Compiling fnv v1.0.7
|
|
200
145
|
Compiling version_check v0.9.5
|
|
146
|
+
Compiling typenum v1.19.0
|
|
201
147
|
Compiling autocfg v1.5.0
|
|
202
148
|
Compiling schemars v0.8.22
|
|
203
149
|
Compiling dyn-clone v1.0.20
|
|
204
150
|
Compiling cfg-if v1.0.4
|
|
205
|
-
Compiling cpufeatures v0.2.17
|
|
206
151
|
Compiling data-encoding v2.9.0
|
|
152
|
+
Compiling generic-array v0.14.9
|
|
153
|
+
Compiling cpufeatures v0.2.17
|
|
207
154
|
Compiling either v1.15.0
|
|
208
155
|
Compiling ethnum v1.5.2
|
|
209
156
|
Compiling escape-bytes v0.1.1
|
|
157
|
+
Compiling num-traits v0.2.19
|
|
210
158
|
Compiling semver v1.0.27
|
|
211
159
|
Compiling thiserror v1.0.69
|
|
212
160
|
Compiling hashbrown v0.16.0
|
|
161
|
+
Compiling itertools v0.10.5
|
|
213
162
|
Compiling equivalent v1.0.2
|
|
214
|
-
Compiling generic-array v0.14.9
|
|
215
163
|
Compiling prettyplease v0.2.37
|
|
216
|
-
Compiling heapless v0.8.0
|
|
217
|
-
Compiling num-traits v0.2.19
|
|
218
164
|
Compiling base64 v0.22.1
|
|
219
|
-
Compiling itertools v0.10.5
|
|
220
165
|
Compiling byteorder v1.5.0
|
|
166
|
+
Compiling heapless v0.8.0
|
|
221
167
|
Compiling rustc_version v0.4.1
|
|
222
|
-
Compiling static_assertions v1.1.0
|
|
223
168
|
Compiling heck v0.5.0
|
|
169
|
+
Compiling indexmap v2.12.0
|
|
224
170
|
Compiling stable_deref_trait v1.2.1
|
|
171
|
+
Compiling static_assertions v1.1.0
|
|
225
172
|
Compiling hash32 v0.3.1
|
|
226
173
|
Compiling itertools v0.14.0
|
|
227
|
-
Compiling indexmap v2.12.0
|
|
228
|
-
Compiling syn v2.0.108
|
|
229
174
|
Compiling wasmparser v0.116.1
|
|
230
175
|
Compiling num-integer v0.1.46
|
|
231
|
-
Compiling block-buffer v0.10.4
|
|
232
176
|
Compiling crypto-common v0.1.6
|
|
233
|
-
Compiling
|
|
177
|
+
Compiling block-buffer v0.10.4
|
|
234
178
|
Compiling num-bigint v0.4.6
|
|
179
|
+
Compiling digest v0.10.7
|
|
235
180
|
Compiling sha2 v0.10.9
|
|
181
|
+
Compiling syn v2.0.108
|
|
236
182
|
Compiling darling_core v0.21.3
|
|
237
183
|
Compiling darling_core v0.20.11
|
|
238
184
|
Compiling macro-string v0.1.4
|
|
@@ -263,15 +209,16 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
263
209
|
Compiling soroban-env-guest v25.0.1
|
|
264
210
|
Compiling utils v0.0.1 (/workspace/contracts/protocol/stellar/contracts/utils)
|
|
265
211
|
Compiling endpoint-v2 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/endpoint-v2)
|
|
266
|
-
Finished `release` profile [optimized] target(s) in
|
|
212
|
+
Finished `release` profile [optimized] target(s) in 32.28s
|
|
267
213
|
ℹ️ Build Summary:
|
|
268
|
-
Wasm File: target/wasm32v1-none/release/endpoint_v2.wasm (
|
|
269
|
-
Wasm Hash:
|
|
270
|
-
Wasm Size:
|
|
214
|
+
Wasm File: target/wasm32v1-none/release/endpoint_v2.wasm (59457 bytes)
|
|
215
|
+
Wasm Hash: 0f3336cb82c088d8430af0b9110c309baa6c2eade24e65d35b16650d197d1592
|
|
216
|
+
Wasm Size: 59457 bytes
|
|
271
217
|
Exported Functions: 60 found
|
|
272
218
|
• __constructor
|
|
273
219
|
• accept_ownership
|
|
274
220
|
• authorizer
|
|
221
|
+
• begin_ownership_transfer
|
|
275
222
|
• burn
|
|
276
223
|
• clear
|
|
277
224
|
• clear_compose
|
|
@@ -304,7 +251,6 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
304
251
|
• owner
|
|
305
252
|
• pending_inbound_nonces
|
|
306
253
|
• pending_owner
|
|
307
|
-
• propose_ownership_transfer
|
|
308
254
|
• quote
|
|
309
255
|
• receive_library_timeout
|
|
310
256
|
• recover_token
|
|
@@ -334,10 +280,10 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
334
280
|
ℹ️ 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
|
|
335
281
|
Compiling byteorder v1.5.0
|
|
336
282
|
Compiling escape-bytes v0.1.1
|
|
283
|
+
Compiling static_assertions v1.1.0
|
|
284
|
+
Compiling ethnum v1.5.2
|
|
337
285
|
Compiling stable_deref_trait v1.2.1
|
|
338
286
|
Compiling num-traits v0.2.19
|
|
339
|
-
Compiling ethnum v1.5.2
|
|
340
|
-
Compiling static_assertions v1.1.0
|
|
341
287
|
Compiling data-encoding v2.9.0
|
|
342
288
|
Compiling cfg-if v1.0.4
|
|
343
289
|
Compiling stellar-xdr v25.0.0
|
|
@@ -352,15 +298,16 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
352
298
|
Compiling message-lib-common v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/message-lib-common)
|
|
353
299
|
Compiling uln302 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/uln-302)
|
|
354
300
|
Compiling layerzero-views v0.0.1 (/workspace/contracts/protocol/stellar/contracts/layerzero-views)
|
|
355
|
-
Finished `release` profile [optimized] target(s) in 9.
|
|
301
|
+
Finished `release` profile [optimized] target(s) in 9.17s
|
|
356
302
|
ℹ️ Build Summary:
|
|
357
|
-
Wasm File: target/wasm32v1-none/release/layerzero_views.wasm (
|
|
358
|
-
Wasm Hash:
|
|
359
|
-
Wasm Size:
|
|
303
|
+
Wasm File: target/wasm32v1-none/release/layerzero_views.wasm (36531 bytes)
|
|
304
|
+
Wasm Hash: e1191bc282426547ae9c65f4188a69678b16897bcd40c548ff9940650470c409
|
|
305
|
+
Wasm Size: 36531 bytes
|
|
360
306
|
Exported Functions: 22 found
|
|
361
307
|
• __constructor
|
|
362
308
|
• accept_ownership
|
|
363
309
|
• authorizer
|
|
310
|
+
• begin_ownership_transfer
|
|
364
311
|
• endpoint
|
|
365
312
|
• executable
|
|
366
313
|
• extend_instance_ttl
|
|
@@ -371,7 +318,6 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
371
318
|
• migrate
|
|
372
319
|
• owner
|
|
373
320
|
• pending_owner
|
|
374
|
-
• propose_ownership_transfer
|
|
375
321
|
• renounce_ownership
|
|
376
322
|
• set_ttl_configs
|
|
377
323
|
• transfer_ownership
|
|
@@ -385,15 +331,16 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
385
331
|
ℹ️ 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
|
|
386
332
|
Compiling message-lib-common v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/message-lib-common)
|
|
387
333
|
Compiling uln302 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/uln-302)
|
|
388
|
-
Finished `release` profile [optimized] target(s) in 1.
|
|
334
|
+
Finished `release` profile [optimized] target(s) in 1.11s
|
|
389
335
|
ℹ️ Build Summary:
|
|
390
|
-
Wasm File: target/wasm32v1-none/release/uln302.wasm (
|
|
391
|
-
Wasm Hash:
|
|
392
|
-
Wasm Size:
|
|
336
|
+
Wasm File: target/wasm32v1-none/release/uln302.wasm (60571 bytes)
|
|
337
|
+
Wasm Hash: e5a97c9d7e69b9c03a9ba3b415c069d07a9b5282737921ba1f4a99b256510ab9
|
|
338
|
+
Wasm Size: 60571 bytes
|
|
393
339
|
Exported Functions: 38 found
|
|
394
340
|
• __constructor
|
|
395
341
|
• accept_ownership
|
|
396
342
|
• authorizer
|
|
343
|
+
• begin_ownership_transfer
|
|
397
344
|
• commit_verification
|
|
398
345
|
• confirmations
|
|
399
346
|
• default_executor_config
|
|
@@ -414,7 +361,6 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
414
361
|
• oapp_send_uln_config
|
|
415
362
|
• owner
|
|
416
363
|
• pending_owner
|
|
417
|
-
• propose_ownership_transfer
|
|
418
364
|
• quote
|
|
419
365
|
• renounce_ownership
|
|
420
366
|
• send
|
|
@@ -435,9 +381,9 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
435
381
|
Compiling upgrader v0.0.1 (/workspace/contracts/protocol/stellar/contracts/upgrader)
|
|
436
382
|
Finished `release` profile [optimized] target(s) in 0.27s
|
|
437
383
|
ℹ️ Build Summary:
|
|
438
|
-
Wasm File: target/wasm32v1-none/release/upgrader.wasm (
|
|
439
|
-
Wasm Hash:
|
|
440
|
-
Wasm Size:
|
|
384
|
+
Wasm File: target/wasm32v1-none/release/upgrader.wasm (7575 bytes)
|
|
385
|
+
Wasm Hash: 7796fed7be887c8f281a3c6e043203c0597969b65d23d5c1f9d767b62dfba062
|
|
386
|
+
Wasm Size: 7575 bytes
|
|
441
387
|
Exported Functions: 2 found
|
|
442
388
|
• upgrade
|
|
443
389
|
• upgrade_and_migrate
|
|
@@ -445,11 +391,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
445
391
|
|
|
446
392
|
ℹ️ 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
|
|
447
393
|
Compiling blocked-message-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/blocked-message-lib)
|
|
448
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
394
|
+
Finished `release` profile [optimized] target(s) in 0.30s
|
|
449
395
|
ℹ️ Build Summary:
|
|
450
|
-
Wasm File: target/wasm32v1-none/release/blocked_message_lib.wasm (
|
|
451
|
-
Wasm Hash:
|
|
452
|
-
Wasm Size:
|
|
396
|
+
Wasm File: target/wasm32v1-none/release/blocked_message_lib.wasm (15398 bytes)
|
|
397
|
+
Wasm Hash: 0a8ee862d5fa45a3dca9c2dc8ba111b83e9ab333a78d89273ae0a111211445d1
|
|
398
|
+
Wasm Size: 15398 bytes
|
|
453
399
|
Exported Functions: 7 found
|
|
454
400
|
• get_config
|
|
455
401
|
• is_supported_eid
|
|
@@ -462,15 +408,16 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
462
408
|
|
|
463
409
|
ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/message-libs/simple-message-lib/Cargo.toml --crate-type=cdylib --target=wasm32v1-none --release
|
|
464
410
|
Compiling simple-message-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/simple-message-lib)
|
|
465
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
411
|
+
Finished `release` profile [optimized] target(s) in 0.49s
|
|
466
412
|
ℹ️ Build Summary:
|
|
467
|
-
Wasm File: target/wasm32v1-none/release/simple_message_lib.wasm (
|
|
468
|
-
Wasm Hash:
|
|
469
|
-
Wasm Size:
|
|
413
|
+
Wasm File: target/wasm32v1-none/release/simple_message_lib.wasm (30929 bytes)
|
|
414
|
+
Wasm Hash: 05c2d9b85bb8fd0c3f7039961b591e38c97355385b787ba2329ca61c691fd423
|
|
415
|
+
Wasm Size: 30929 bytes
|
|
470
416
|
Exported Functions: 31 found
|
|
471
417
|
• __constructor
|
|
472
418
|
• accept_ownership
|
|
473
419
|
• authorizer
|
|
420
|
+
• begin_ownership_transfer
|
|
474
421
|
• endpoint
|
|
475
422
|
• extend_instance_ttl
|
|
476
423
|
• fee_recipient
|
|
@@ -483,7 +430,6 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
483
430
|
• native_fee
|
|
484
431
|
• owner
|
|
485
432
|
• pending_owner
|
|
486
|
-
• propose_ownership_transfer
|
|
487
433
|
• quote
|
|
488
434
|
• renounce_ownership
|
|
489
435
|
• send
|
|
@@ -503,15 +449,16 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
503
449
|
|
|
504
450
|
ℹ️ 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
|
|
505
451
|
Compiling treasury v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/treasury)
|
|
506
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
452
|
+
Finished `release` profile [optimized] target(s) in 0.45s
|
|
507
453
|
ℹ️ Build Summary:
|
|
508
|
-
Wasm File: target/wasm32v1-none/release/treasury.wasm (
|
|
509
|
-
Wasm Hash:
|
|
510
|
-
Wasm Size:
|
|
454
|
+
Wasm File: target/wasm32v1-none/release/treasury.wasm (29508 bytes)
|
|
455
|
+
Wasm Hash: 0eb3a9c49b66b4af26b0a95337a334b31d981a89258d0fbe0b8d7390a36fc2aa
|
|
456
|
+
Wasm Size: 29508 bytes
|
|
511
457
|
Exported Functions: 21 found
|
|
512
458
|
• __constructor
|
|
513
459
|
• accept_ownership
|
|
514
460
|
• authorizer
|
|
461
|
+
• begin_ownership_transfer
|
|
515
462
|
• extend_instance_ttl
|
|
516
463
|
• fee_enabled
|
|
517
464
|
• freeze_ttl_configs
|
|
@@ -520,7 +467,6 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
520
467
|
• native_fee_bp
|
|
521
468
|
• owner
|
|
522
469
|
• pending_owner
|
|
523
|
-
• propose_ownership_transfer
|
|
524
470
|
• renounce_ownership
|
|
525
471
|
• set_fee_enabled
|
|
526
472
|
• set_native_fee_bp
|
|
@@ -536,16 +482,17 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
536
482
|
Compiling oapp-macros v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp-macros)
|
|
537
483
|
Compiling oapp v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp)
|
|
538
484
|
Compiling counter v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/counter)
|
|
539
|
-
Finished `release` profile [optimized] target(s) in 1.
|
|
485
|
+
Finished `release` profile [optimized] target(s) in 1.33s
|
|
540
486
|
ℹ️ Build Summary:
|
|
541
|
-
Wasm File: target/wasm32v1-none/release/counter.wasm (
|
|
542
|
-
Wasm Hash:
|
|
543
|
-
Wasm Size:
|
|
544
|
-
Exported Functions:
|
|
487
|
+
Wasm File: target/wasm32v1-none/release/counter.wasm (51636 bytes)
|
|
488
|
+
Wasm Hash: 30621500ebb1c345cbae764389880af8b09f964663de4dc8920af137e0d1951e
|
|
489
|
+
Wasm Size: 51636 bytes
|
|
490
|
+
Exported Functions: 46 found
|
|
545
491
|
• __constructor
|
|
546
492
|
• accept_ownership
|
|
547
493
|
• allow_initialize_path
|
|
548
494
|
• authorizer
|
|
495
|
+
• begin_ownership_transfer
|
|
549
496
|
• combine_options
|
|
550
497
|
• composed_count
|
|
551
498
|
• count
|
|
@@ -554,6 +501,12 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
554
501
|
• enforced_options
|
|
555
502
|
• extend_instance_ttl
|
|
556
503
|
• freeze_ttl_configs
|
|
504
|
+
• get_existing_roles
|
|
505
|
+
• get_role_admin
|
|
506
|
+
• get_role_member
|
|
507
|
+
• get_role_member_count
|
|
508
|
+
• grant_role
|
|
509
|
+
• has_role
|
|
557
510
|
• inbound_count
|
|
558
511
|
• increment
|
|
559
512
|
• is_compose_msg_sender
|
|
@@ -566,13 +519,16 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
566
519
|
• owner
|
|
567
520
|
• peer
|
|
568
521
|
• pending_owner
|
|
569
|
-
• propose_ownership_transfer
|
|
570
522
|
• quote
|
|
523
|
+
• remove_role_admin
|
|
571
524
|
• renounce_ownership
|
|
525
|
+
• renounce_role
|
|
526
|
+
• revoke_role
|
|
572
527
|
• set_delegate
|
|
573
528
|
• set_enforced_options
|
|
574
529
|
• set_ordered_nonce
|
|
575
530
|
• set_peer
|
|
531
|
+
• set_role_admin
|
|
576
532
|
• set_ttl_configs
|
|
577
533
|
• skip_inbound_nonce
|
|
578
534
|
• transfer_ownership
|
|
@@ -584,11 +540,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
584
540
|
Compiling fee-lib-interfaces v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/fee-lib-interfaces)
|
|
585
541
|
Compiling worker v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/worker)
|
|
586
542
|
Compiling dvn v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/dvn)
|
|
587
|
-
Finished `release` profile [optimized] target(s) in 1.
|
|
543
|
+
Finished `release` profile [optimized] target(s) in 1.17s
|
|
588
544
|
ℹ️ Build Summary:
|
|
589
|
-
Wasm File: target/wasm32v1-none/release/dvn.wasm (
|
|
590
|
-
Wasm Hash:
|
|
591
|
-
Wasm Size:
|
|
545
|
+
Wasm File: target/wasm32v1-none/release/dvn.wasm (56968 bytes)
|
|
546
|
+
Wasm Hash: 0b95d8f0155be47dec46abd2914d176eb571e37e7db011c76517dbfdbb56b093
|
|
547
|
+
Wasm Size: 56968 bytes
|
|
592
548
|
Exported Functions: 49 found
|
|
593
549
|
• __check_auth
|
|
594
550
|
• __constructor
|
|
@@ -644,15 +600,16 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
644
600
|
ℹ️ 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
|
|
645
601
|
Compiling fee-lib-interfaces v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/fee-lib-interfaces)
|
|
646
602
|
Compiling dvn-fee-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/dvn-fee-lib)
|
|
647
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
603
|
+
Finished `release` profile [optimized] target(s) in 0.61s
|
|
648
604
|
ℹ️ Build Summary:
|
|
649
|
-
Wasm File: target/wasm32v1-none/release/dvn_fee_lib.wasm (
|
|
650
|
-
Wasm Hash:
|
|
651
|
-
Wasm Size:
|
|
605
|
+
Wasm File: target/wasm32v1-none/release/dvn_fee_lib.wasm (22523 bytes)
|
|
606
|
+
Wasm Hash: 002118d4c869e210b4f7400541ebe3641ddbe39f43de5cb342b763f1a617c758
|
|
607
|
+
Wasm Size: 22523 bytes
|
|
652
608
|
Exported Functions: 16 found
|
|
653
609
|
• __constructor
|
|
654
610
|
• accept_ownership
|
|
655
611
|
• authorizer
|
|
612
|
+
• begin_ownership_transfer
|
|
656
613
|
• extend_instance_ttl
|
|
657
614
|
• freeze_ttl_configs
|
|
658
615
|
• get_fee
|
|
@@ -660,7 +617,6 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
660
617
|
• migrate
|
|
661
618
|
• owner
|
|
662
619
|
• pending_owner
|
|
663
|
-
• propose_ownership_transfer
|
|
664
620
|
• renounce_ownership
|
|
665
621
|
• set_ttl_configs
|
|
666
622
|
• transfer_ownership
|
|
@@ -670,11 +626,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
670
626
|
|
|
671
627
|
ℹ️ 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
|
|
672
628
|
Compiling executor v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor)
|
|
673
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
629
|
+
Finished `release` profile [optimized] target(s) in 0.79s
|
|
674
630
|
ℹ️ Build Summary:
|
|
675
|
-
Wasm File: target/wasm32v1-none/release/executor.wasm (
|
|
676
|
-
Wasm Hash:
|
|
677
|
-
Wasm Size:
|
|
631
|
+
Wasm File: target/wasm32v1-none/release/executor.wasm (59292 bytes)
|
|
632
|
+
Wasm Hash: 936ada7ca624b7776f737743d2aa24207a3785f964a03174de6ecef6d1888172
|
|
633
|
+
Wasm Size: 59292 bytes
|
|
678
634
|
Exported Functions: 49 found
|
|
679
635
|
• __check_auth
|
|
680
636
|
• __constructor
|
|
@@ -683,6 +639,7 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
683
639
|
• allowlist_size
|
|
684
640
|
• assign_job
|
|
685
641
|
• authorizer
|
|
642
|
+
• begin_ownership_transfer
|
|
686
643
|
• default_multiplier_bps
|
|
687
644
|
• deposit_address
|
|
688
645
|
• dst_config
|
|
@@ -705,7 +662,6 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
705
662
|
• paused
|
|
706
663
|
• pending_owner
|
|
707
664
|
• price_feed
|
|
708
|
-
• propose_ownership_transfer
|
|
709
665
|
• renounce_ownership
|
|
710
666
|
• set_admin
|
|
711
667
|
• set_allowlist
|
|
@@ -729,15 +685,16 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
729
685
|
|
|
730
686
|
ℹ️ 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
|
|
731
687
|
Compiling executor-fee-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor-fee-lib)
|
|
732
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
688
|
+
Finished `release` profile [optimized] target(s) in 0.43s
|
|
733
689
|
ℹ️ Build Summary:
|
|
734
|
-
Wasm File: target/wasm32v1-none/release/executor_fee_lib.wasm (
|
|
735
|
-
Wasm Hash:
|
|
736
|
-
Wasm Size:
|
|
690
|
+
Wasm File: target/wasm32v1-none/release/executor_fee_lib.wasm (35404 bytes)
|
|
691
|
+
Wasm Hash: 8f42a35df1173387ba2c5ffe34384b3e4517ce4ec11df13db67d5f2211267cf9
|
|
692
|
+
Wasm Size: 35404 bytes
|
|
737
693
|
Exported Functions: 17 found
|
|
738
694
|
• __constructor
|
|
739
695
|
• accept_ownership
|
|
740
696
|
• authorizer
|
|
697
|
+
• begin_ownership_transfer
|
|
741
698
|
• extend_instance_ttl
|
|
742
699
|
• freeze_ttl_configs
|
|
743
700
|
• get_fee
|
|
@@ -745,7 +702,6 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
745
702
|
• migrate
|
|
746
703
|
• owner
|
|
747
704
|
• pending_owner
|
|
748
|
-
• propose_ownership_transfer
|
|
749
705
|
• renounce_ownership
|
|
750
706
|
• set_ttl_configs
|
|
751
707
|
• transfer_ownership
|
|
@@ -761,9 +717,9 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
761
717
|
Compiling executor-helper v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor-helper)
|
|
762
718
|
Finished `release` profile [optimized] target(s) in 1.02s
|
|
763
719
|
ℹ️ Build Summary:
|
|
764
|
-
Wasm File: target/wasm32v1-none/release/executor_helper.wasm (
|
|
765
|
-
Wasm Hash:
|
|
766
|
-
Wasm Size:
|
|
720
|
+
Wasm File: target/wasm32v1-none/release/executor_helper.wasm (25861 bytes)
|
|
721
|
+
Wasm Hash: 0b467a6655e22fdc3bb5d7ca32c3df86fe38a5856570be78f07c1cac18ccc6cd
|
|
722
|
+
Wasm Size: 25861 bytes
|
|
767
723
|
Exported Functions: 6 found
|
|
768
724
|
• compose
|
|
769
725
|
• execute
|
|
@@ -775,17 +731,18 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
775
731
|
|
|
776
732
|
ℹ️ 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
|
|
777
733
|
Compiling price-feed v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/price-feed)
|
|
778
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
734
|
+
Finished `release` profile [optimized] target(s) in 0.61s
|
|
779
735
|
ℹ️ Build Summary:
|
|
780
|
-
Wasm File: target/wasm32v1-none/release/price_feed.wasm (
|
|
781
|
-
Wasm Hash:
|
|
782
|
-
Wasm Size:
|
|
736
|
+
Wasm File: target/wasm32v1-none/release/price_feed.wasm (33612 bytes)
|
|
737
|
+
Wasm Hash: 009d6d308d7b1b7f884c4be86ca40f22525c64034528ad39b3c59711d53bca1e
|
|
738
|
+
Wasm Size: 33612 bytes
|
|
783
739
|
Exported Functions: 30 found
|
|
784
740
|
• __constructor
|
|
785
741
|
• accept_ownership
|
|
786
742
|
• arbitrum_compression_percent
|
|
787
743
|
• arbitrum_price_ext
|
|
788
744
|
• authorizer
|
|
745
|
+
• begin_ownership_transfer
|
|
789
746
|
• eid_to_model_type
|
|
790
747
|
• estimate_fee_by_eid
|
|
791
748
|
• extend_instance_ttl
|
|
@@ -798,7 +755,6 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
798
755
|
• native_token_price_usd
|
|
799
756
|
• owner
|
|
800
757
|
• pending_owner
|
|
801
|
-
• propose_ownership_transfer
|
|
802
758
|
• renounce_ownership
|
|
803
759
|
• set_arbitrum_compression_percent
|
|
804
760
|
• set_eid_to_model_type
|
|
@@ -816,17 +772,18 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
816
772
|
ℹ️ 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
|
|
817
773
|
Compiling oft-core v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft-core)
|
|
818
774
|
Compiling oft v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft)
|
|
819
|
-
Finished `release` profile [optimized] target(s) in 1.
|
|
775
|
+
Finished `release` profile [optimized] target(s) in 1.35s
|
|
820
776
|
ℹ️ Build Summary:
|
|
821
|
-
Wasm File: target/wasm32v1-none/release/oft.wasm (
|
|
822
|
-
Wasm Hash:
|
|
823
|
-
Wasm Size:
|
|
824
|
-
Exported Functions:
|
|
777
|
+
Wasm File: target/wasm32v1-none/release/oft.wasm (77408 bytes)
|
|
778
|
+
Wasm Hash: 74e4275f33ec47f4843dfd81d8e96e41155c269dd4122faba70a31dbc9cf4ae3
|
|
779
|
+
Wasm Size: 77408 bytes
|
|
780
|
+
Exported Functions: 61 found
|
|
825
781
|
• __constructor
|
|
826
782
|
• accept_ownership
|
|
827
783
|
• allow_initialize_path
|
|
828
784
|
• approval_required
|
|
829
785
|
• authorizer
|
|
786
|
+
• begin_ownership_transfer
|
|
830
787
|
• combine_options
|
|
831
788
|
• decimal_conversion_rate
|
|
832
789
|
• default_fee_bps
|
|
@@ -837,7 +794,13 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
837
794
|
• fee_bps
|
|
838
795
|
• fee_deposit_address
|
|
839
796
|
• freeze_ttl_configs
|
|
797
|
+
• get_existing_roles
|
|
798
|
+
• get_role_admin
|
|
799
|
+
• get_role_member
|
|
800
|
+
• get_role_member_count
|
|
801
|
+
• grant_role
|
|
840
802
|
• has_oft_fee
|
|
803
|
+
• has_role
|
|
841
804
|
• is_compose_msg_sender
|
|
842
805
|
• is_paused
|
|
843
806
|
• is_ttl_configs_frozen
|
|
@@ -848,15 +811,18 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
848
811
|
• oft_type
|
|
849
812
|
• oft_version
|
|
850
813
|
• owner
|
|
814
|
+
• pause
|
|
851
815
|
• peer
|
|
852
816
|
• pending_owner
|
|
853
|
-
• propose_ownership_transfer
|
|
854
817
|
• quote_oft
|
|
855
818
|
• quote_send
|
|
856
819
|
• rate_limit_capacity
|
|
857
820
|
• rate_limit_config
|
|
858
821
|
• rate_limit_in_flight
|
|
822
|
+
• remove_role_admin
|
|
859
823
|
• renounce_ownership
|
|
824
|
+
• renounce_role
|
|
825
|
+
• revoke_role
|
|
860
826
|
• send
|
|
861
827
|
• set_default_fee_bps
|
|
862
828
|
• set_delegate
|
|
@@ -864,27 +830,29 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
864
830
|
• set_fee_bps
|
|
865
831
|
• set_fee_deposit_address
|
|
866
832
|
• set_msg_inspector
|
|
867
|
-
• set_paused
|
|
868
833
|
• set_peer
|
|
869
834
|
• set_rate_limit
|
|
835
|
+
• set_role_admin
|
|
870
836
|
• set_ttl_configs
|
|
871
837
|
• shared_decimals
|
|
872
838
|
• token
|
|
873
839
|
• transfer_ownership
|
|
874
840
|
• ttl_configs
|
|
841
|
+
• unpause
|
|
875
842
|
✅ Build Complete
|
|
876
843
|
|
|
877
844
|
ℹ️ 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
|
|
878
845
|
Compiling sac-manager v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/sac-manager)
|
|
879
846
|
Finished `release` profile [optimized] target(s) in 0.46s
|
|
880
847
|
ℹ️ Build Summary:
|
|
881
|
-
Wasm File: target/wasm32v1-none/release/sac_manager.wasm (
|
|
882
|
-
Wasm Hash:
|
|
883
|
-
Wasm Size:
|
|
848
|
+
Wasm File: target/wasm32v1-none/release/sac_manager.wasm (23520 bytes)
|
|
849
|
+
Wasm Hash: aa38e04ee0060ed167a7e944ff54f92a9b508c36097a26fa2a5eb522fc070278
|
|
850
|
+
Wasm Size: 23520 bytes
|
|
884
851
|
Exported Functions: 28 found
|
|
885
852
|
• __constructor
|
|
886
853
|
• accept_ownership
|
|
887
854
|
• authorizer
|
|
855
|
+
• begin_ownership_transfer
|
|
888
856
|
• clawback
|
|
889
857
|
• extend_instance_ttl
|
|
890
858
|
• freeze_ttl_configs
|
|
@@ -898,7 +866,6 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
898
866
|
• mint
|
|
899
867
|
• owner
|
|
900
868
|
• pending_owner
|
|
901
|
-
• propose_ownership_transfer
|
|
902
869
|
• remove_role_admin
|
|
903
870
|
• renounce_ownership
|
|
904
871
|
• renounce_role
|
|
@@ -912,206 +879,154 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
912
879
|
• underlying_sac
|
|
913
880
|
✅ Build Complete
|
|
914
881
|
|
|
915
|
-
⏱️ stellar contract build: 1:
|
|
882
|
+
⏱️ stellar contract build: 1:08.334 (m:ss.mmm)
|
|
916
883
|
WARN Issue while reading "/home/runner/work/monorepo-internal/monorepo-internal/.npmrc". Failed to replace env in config: ${NPM_TOKEN}
|
|
917
884
|
|
|
918
885
|
> @layerzerolabs/protocol-stellar-v2@0.0.1 generate:sdk /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar
|
|
919
|
-
>
|
|
886
|
+
> stellar-ts-bindings-gen --config ts-bindings-gen.toml
|
|
920
887
|
|
|
921
|
-
|
|
888
|
+
🔧 Syncing Rust toolchain: rustup toolchain install 1.90.0 --target wasm32v1-none --component rustfmt --component clippy
|
|
922
889
|
📦 Using 4 default cache volume(s) for stellar
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
890
|
+
🔧 User volumes override 1 default volume(s)
|
|
891
|
+
✅ stellar-25.1.0 (Latest stable release)
|
|
892
|
+
🔧 stellar version: 25.1.0
|
|
893
|
+
(node:35031) [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.
|
|
926
894
|
Reparsing as ES module because module syntax was detected. This incurs a performance overhead.
|
|
927
895
|
To eliminate this warning, add "type": "module" to /home/runner/work/monorepo-internal/monorepo-internal/package.json.
|
|
928
896
|
(Use `node --trace-warnings ...` to show where the warning was created)
|
|
929
|
-
$ docker image inspect --format {{.Id}} 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.
|
|
930
|
-
sha256:
|
|
931
|
-
✅ Using cached Docker image: 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.
|
|
897
|
+
$ docker image inspect --format {{.Id}} 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.1.0
|
|
898
|
+
sha256:314e086933eed3b936567f54f10bcac74de514b93d4841d04eca14b97756d33b
|
|
899
|
+
✅ Using cached Docker image: 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.1.0
|
|
932
900
|
👤 Running container as UID:GID 1001:1001
|
|
933
901
|
🌍 Using 5 default environment variable(s) for stellar
|
|
934
|
-
📜 Executing custom script:
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
Compiling ident_case v1.0.1
|
|
962
|
-
Compiling schemars v0.8.22
|
|
963
|
-
Compiling cpufeatures v0.2.17
|
|
964
|
-
Compiling cfg-if v1.0.4
|
|
965
|
-
Compiling dyn-clone v1.0.20
|
|
966
|
-
Compiling equivalent v1.0.2
|
|
967
|
-
Compiling hashbrown v0.16.0
|
|
968
|
-
Compiling data-encoding v2.9.0
|
|
969
|
-
Compiling thiserror v1.0.69
|
|
970
|
-
Compiling semver v1.0.27
|
|
971
|
-
Compiling prettyplease v0.2.37
|
|
972
|
-
Compiling ethnum v1.5.2
|
|
973
|
-
Compiling base64 v0.22.1
|
|
974
|
-
Compiling generic-array v0.14.9
|
|
975
|
-
Compiling escape-bytes v0.1.1
|
|
976
|
-
Compiling opaque-debug v0.3.1
|
|
977
|
-
Compiling glob v0.3.3
|
|
978
|
-
Compiling anyhow v1.0.100
|
|
979
|
-
Compiling either v1.15.0
|
|
980
|
-
Compiling heck v0.4.1
|
|
981
|
-
Compiling base64 v0.21.7
|
|
982
|
-
Compiling indexmap v2.12.0
|
|
983
|
-
Compiling itertools v0.10.5
|
|
984
|
-
Compiling syn v2.0.108
|
|
985
|
-
Compiling crypto-common v0.1.6
|
|
986
|
-
Compiling block-buffer v0.10.4
|
|
987
|
-
Compiling digest v0.9.0
|
|
988
|
-
Compiling block-buffer v0.9.0
|
|
989
|
-
Compiling wasmparser v0.116.1
|
|
990
|
-
Compiling sha2 v0.9.9
|
|
991
|
-
Compiling digest v0.10.7
|
|
992
|
-
Compiling include_dir_macros v0.7.4
|
|
993
|
-
Compiling sha2 v0.10.9
|
|
994
|
-
Compiling include_dir v0.7.4
|
|
995
|
-
Compiling darling_core v0.21.3
|
|
996
|
-
Compiling serde_derive v1.0.228
|
|
997
|
-
Compiling cfg_eval v0.1.2
|
|
998
|
-
Compiling thiserror-impl v1.0.69
|
|
999
|
-
Compiling crate-git-revision v0.0.6
|
|
1000
|
-
Compiling stellar-strkey v0.0.13
|
|
1001
|
-
Compiling stellar-xdr v25.0.0
|
|
1002
|
-
Compiling hex v0.4.3
|
|
1003
|
-
Compiling darling_macro v0.21.3
|
|
1004
|
-
Compiling darling v0.21.3
|
|
1005
|
-
Compiling serde_with_macros v3.15.1
|
|
1006
|
-
Compiling serde_with v3.15.1
|
|
1007
|
-
Compiling soroban-spec v25.1.1
|
|
1008
|
-
Compiling soroban-spec-typescript v25.1.0
|
|
1009
|
-
Compiling ts-bindings-gen v0.0.1 (/workspace/contracts/protocol/stellar/tools/ts-bindings-gen)
|
|
1010
|
-
Finished `dev` profile [unoptimized + debuginfo] target(s) in 43.97s
|
|
1011
|
-
Running `target/debug/ts-bindings-gen`
|
|
1012
|
-
🚀 Generating TypeScript bindings for Stellar contracts...
|
|
902
|
+
📜 Executing custom script: mkdir -p $CARGO_HOME/bin && ln -sf /usr/local/cargo/bin/rustup $CARGO_HOME/bin/rustup && rustup toolchain install 1.90.0 --target wasm32v1-none --component rustfmt --component clippy
|
|
903
|
+
🔒 Acquired lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup
|
|
904
|
+
$ 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-rustup:/cache/rustup -v lz-tooling-cache-stellar-config:/cache/stellar -v lz-tooling-cache-stellar-cargo:/cache/cargo -v /home/runner/.sccache:/cache/sccache 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.1.0 bash -c $'mkdir -p $CARGO_HOME/bin && ln -sf /usr/local/cargo/bin/rustup $CARGO_HOME/bin/rustup && rustup toolchain install 1.90.0 --target wasm32v1-none --component rustfmt --component clippy'
|
|
905
|
+
info: syncing channel updates for '1.90.0-x86_64-unknown-linux-gnu'
|
|
906
|
+
info: latest update on 2025-09-18, rust version 1.90.0 (1159e78c4 2025-09-14)
|
|
907
|
+
info: component 'clippy' for target 'x86_64-unknown-linux-gnu' is up to date
|
|
908
|
+
info: component 'rust-std' for target 'wasm32v1-none' is up to date
|
|
909
|
+
info: component 'rustfmt' for target 'x86_64-unknown-linux-gnu' is up to date
|
|
910
|
+
|
|
911
|
+
1.90.0-x86_64-unknown-linux-gnu unchanged - rustc 1.90.0 (1159e78c4 2025-09-14)
|
|
912
|
+
|
|
913
|
+
info: checking for self-update
|
|
914
|
+
⏱️ bash -c mkdir -p $CARGO_HOME/bin && ln -sf /usr/local/cargo/bin/rustup $CARGO_HOME/bin/rustup && rustup toolchain install 1.90.0 --target wasm32v1-none --component rustfmt --component clippy: 577.654ms
|
|
915
|
+
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup
|
|
916
|
+
📦 Using 4 default cache volume(s) for stellar
|
|
917
|
+
✅ stellar-25.1.0 (Latest stable release)
|
|
918
|
+
🔧 stellar version: 25.1.0
|
|
919
|
+
$ docker image inspect --format {{.Id}} 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.1.0
|
|
920
|
+
sha256:314e086933eed3b936567f54f10bcac74de514b93d4841d04eca14b97756d33b
|
|
921
|
+
✅ Using cached Docker image: 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.1.0
|
|
922
|
+
👤 Running container as UID:GID 1001:1001
|
|
923
|
+
🌍 Using 5 default environment variable(s) for stellar
|
|
924
|
+
📜 Executing custom script: cargo run --manifest-path ../../../packages/vms/stellar/ts-bindings-gen/Cargo.toml -- --config ts-bindings-gen.toml
|
|
925
|
+
$ 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.1.0 bash -c $'cargo run --manifest-path ../../../packages/vms/stellar/ts-bindings-gen/Cargo.toml -- --config ts-bindings-gen.toml'
|
|
926
|
+
Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.05s
|
|
927
|
+
Running `/workspace/packages/vms/stellar/ts-bindings-gen/target/debug/stellar-ts-bindings-gen --config ts-bindings-gen.toml`
|
|
928
|
+
Generating TypeScript bindings for 16 contract(s)...
|
|
1013
929
|
|
|
1014
|
-
|
|
930
|
+
Processing contract: endpoint_v2
|
|
1015
931
|
WASM: target/wasm32v1-none/release/endpoint_v2.wasm
|
|
1016
932
|
Output: sdk/src/generated/endpoint.ts
|
|
1017
|
-
WASM size:
|
|
933
|
+
WASM size: 59457 bytes (58.06 KB)
|
|
1018
934
|
Generating bindings...
|
|
1019
|
-
|
|
1020
|
-
|
|
935
|
+
Generated: sdk/src/generated/endpoint.ts
|
|
936
|
+
Processing contract: simple_message_lib
|
|
1021
937
|
WASM: target/wasm32v1-none/release/simple_message_lib.wasm
|
|
1022
938
|
Output: sdk/src/generated/sml.ts
|
|
1023
|
-
WASM size:
|
|
939
|
+
WASM size: 30929 bytes (30.20 KB)
|
|
1024
940
|
Generating bindings...
|
|
1025
|
-
|
|
1026
|
-
|
|
941
|
+
Generated: sdk/src/generated/sml.ts
|
|
942
|
+
Processing contract: blocked_message_lib
|
|
1027
943
|
WASM: target/wasm32v1-none/release/blocked_message_lib.wasm
|
|
1028
944
|
Output: sdk/src/generated/bml.ts
|
|
1029
|
-
WASM size:
|
|
945
|
+
WASM size: 15398 bytes (15.04 KB)
|
|
1030
946
|
Generating bindings...
|
|
1031
|
-
|
|
1032
|
-
|
|
947
|
+
Generated: sdk/src/generated/bml.ts
|
|
948
|
+
Processing contract: uln302
|
|
1033
949
|
WASM: target/wasm32v1-none/release/uln302.wasm
|
|
1034
950
|
Output: sdk/src/generated/uln302.ts
|
|
1035
|
-
WASM size:
|
|
951
|
+
WASM size: 60571 bytes (59.15 KB)
|
|
1036
952
|
Generating bindings...
|
|
1037
|
-
|
|
1038
|
-
|
|
953
|
+
Generated: sdk/src/generated/uln302.ts
|
|
954
|
+
Processing contract: treasury
|
|
1039
955
|
WASM: target/wasm32v1-none/release/treasury.wasm
|
|
1040
956
|
Output: sdk/src/generated/treasury.ts
|
|
1041
|
-
WASM size:
|
|
957
|
+
WASM size: 29508 bytes (28.82 KB)
|
|
1042
958
|
Generating bindings...
|
|
1043
|
-
|
|
1044
|
-
|
|
959
|
+
Generated: sdk/src/generated/treasury.ts
|
|
960
|
+
Processing contract: upgrader
|
|
1045
961
|
WASM: target/wasm32v1-none/release/upgrader.wasm
|
|
1046
962
|
Output: sdk/src/generated/upgrader.ts
|
|
1047
|
-
WASM size:
|
|
963
|
+
WASM size: 7575 bytes (7.40 KB)
|
|
1048
964
|
Generating bindings...
|
|
1049
|
-
|
|
1050
|
-
|
|
965
|
+
Generated: sdk/src/generated/upgrader.ts
|
|
966
|
+
Processing contract: dvn
|
|
1051
967
|
WASM: target/wasm32v1-none/release/dvn.wasm
|
|
1052
968
|
Output: sdk/src/generated/dvn.ts
|
|
1053
|
-
WASM size:
|
|
969
|
+
WASM size: 56968 bytes (55.63 KB)
|
|
1054
970
|
Generating bindings...
|
|
1055
|
-
|
|
1056
|
-
|
|
971
|
+
Generated: sdk/src/generated/dvn.ts
|
|
972
|
+
Processing contract: dvn_fee_lib
|
|
1057
973
|
WASM: target/wasm32v1-none/release/dvn_fee_lib.wasm
|
|
1058
974
|
Output: sdk/src/generated/dvn_fee_lib.ts
|
|
1059
|
-
WASM size:
|
|
975
|
+
WASM size: 22523 bytes (22.00 KB)
|
|
1060
976
|
Generating bindings...
|
|
1061
|
-
|
|
1062
|
-
|
|
977
|
+
Generated: sdk/src/generated/dvn_fee_lib.ts
|
|
978
|
+
Processing contract: executor
|
|
1063
979
|
WASM: target/wasm32v1-none/release/executor.wasm
|
|
1064
980
|
Output: sdk/src/generated/executor.ts
|
|
1065
|
-
WASM size:
|
|
981
|
+
WASM size: 59292 bytes (57.90 KB)
|
|
1066
982
|
Generating bindings...
|
|
1067
|
-
|
|
1068
|
-
|
|
983
|
+
Generated: sdk/src/generated/executor.ts
|
|
984
|
+
Processing contract: executor_fee_lib
|
|
1069
985
|
WASM: target/wasm32v1-none/release/executor_fee_lib.wasm
|
|
1070
986
|
Output: sdk/src/generated/executor_fee_lib.ts
|
|
1071
|
-
WASM size:
|
|
987
|
+
WASM size: 35404 bytes (34.57 KB)
|
|
1072
988
|
Generating bindings...
|
|
1073
|
-
|
|
1074
|
-
|
|
989
|
+
Generated: sdk/src/generated/executor_fee_lib.ts
|
|
990
|
+
Processing contract: executor_helper
|
|
1075
991
|
WASM: target/wasm32v1-none/release/executor_helper.wasm
|
|
1076
992
|
Output: sdk/src/generated/executor_helper.ts
|
|
1077
|
-
WASM size:
|
|
993
|
+
WASM size: 25861 bytes (25.25 KB)
|
|
1078
994
|
Generating bindings...
|
|
1079
|
-
|
|
1080
|
-
|
|
995
|
+
Generated: sdk/src/generated/executor_helper.ts
|
|
996
|
+
Processing contract: price_feed
|
|
1081
997
|
WASM: target/wasm32v1-none/release/price_feed.wasm
|
|
1082
998
|
Output: sdk/src/generated/price_feed.ts
|
|
1083
|
-
WASM size:
|
|
999
|
+
WASM size: 33612 bytes (32.82 KB)
|
|
1084
1000
|
Generating bindings...
|
|
1085
|
-
|
|
1086
|
-
|
|
1001
|
+
Generated: sdk/src/generated/price_feed.ts
|
|
1002
|
+
Processing contract: counter
|
|
1087
1003
|
WASM: target/wasm32v1-none/release/counter.wasm
|
|
1088
1004
|
Output: sdk/src/generated/counter.ts
|
|
1089
|
-
WASM size:
|
|
1005
|
+
WASM size: 51636 bytes (50.43 KB)
|
|
1090
1006
|
Generating bindings...
|
|
1091
|
-
|
|
1092
|
-
|
|
1007
|
+
Generated: sdk/src/generated/counter.ts
|
|
1008
|
+
Processing contract: oft
|
|
1093
1009
|
WASM: target/wasm32v1-none/release/oft.wasm
|
|
1094
1010
|
Output: sdk/src/generated/oft.ts
|
|
1095
|
-
WASM size:
|
|
1011
|
+
WASM size: 77408 bytes (75.59 KB)
|
|
1096
1012
|
Generating bindings...
|
|
1097
|
-
|
|
1098
|
-
|
|
1013
|
+
Generated: sdk/src/generated/oft.ts
|
|
1014
|
+
Processing contract: sac_manager
|
|
1099
1015
|
WASM: target/wasm32v1-none/release/sac_manager.wasm
|
|
1100
1016
|
Output: sdk/src/generated/sac_manager.ts
|
|
1101
|
-
WASM size:
|
|
1017
|
+
WASM size: 23520 bytes (22.97 KB)
|
|
1102
1018
|
Generating bindings...
|
|
1103
|
-
|
|
1104
|
-
|
|
1019
|
+
Generated: sdk/src/generated/sac_manager.ts
|
|
1020
|
+
Processing contract: layerzero_views
|
|
1105
1021
|
WASM: target/wasm32v1-none/release/layerzero_views.wasm
|
|
1106
1022
|
Output: sdk/src/generated/layerzero_view.ts
|
|
1107
|
-
WASM size:
|
|
1023
|
+
WASM size: 36531 bytes (35.67 KB)
|
|
1108
1024
|
Generating bindings...
|
|
1109
|
-
|
|
1025
|
+
Generated: sdk/src/generated/layerzero_view.ts
|
|
1110
1026
|
|
|
1111
|
-
|
|
1112
|
-
Generated 16 contract(s) with embedded WASM
|
|
1027
|
+
TypeScript binding generation complete! Generated 16 contract(s) with embedded WASM
|
|
1113
1028
|
|
|
1114
|
-
|
|
1029
|
+
Generated files in sdk/src/generated:
|
|
1115
1030
|
- endpoint.ts
|
|
1116
1031
|
- sml.ts
|
|
1117
1032
|
- bml.ts
|
|
@@ -1128,4 +1043,4 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
1128
1043
|
- oft.ts
|
|
1129
1044
|
- sac_manager.ts
|
|
1130
1045
|
- layerzero_view.ts
|
|
1131
|
-
⏱️ bash -c cargo run -
|
|
1046
|
+
⏱️ bash -c cargo run --manifest-path ../../../packages/vms/stellar/ts-bindings-gen/Cargo.toml -- --config ts-bindings-gen.toml: 426.466ms
|