@layerzerolabs/protocol-stellar-v2 0.2.20 → 0.2.21
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 +783 -802
- package/.turbo/turbo-lint.log +320 -157
- package/.turbo/turbo-test.log +1414 -1457
- package/Cargo.lock +109 -108
- package/Cargo.toml +32 -18
- package/contracts/common-macros/Cargo.toml +7 -7
- package/contracts/common-macros/src/auth.rs +18 -37
- package/contracts/common-macros/src/contract_ttl.rs +2 -2
- package/contracts/common-macros/src/lib.rs +27 -10
- package/contracts/common-macros/src/lz_contract.rs +38 -7
- package/contracts/common-macros/src/storage.rs +251 -292
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__auth__snapshot_generated_multisig_code.snap +6 -12
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__auth__snapshot_generated_ownable_code.snap +12 -17
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__ttl_configurable__snapshot_generated_ttl_configurable_code.snap +2 -7
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__upgradeable__snapshot_generated_upgradeable_code.snap +20 -9
- package/contracts/common-macros/src/tests/upgradeable.rs +26 -4
- package/contracts/common-macros/src/ttl_configurable.rs +2 -10
- package/contracts/common-macros/src/ttl_extendable.rs +2 -10
- package/contracts/common-macros/src/upgradeable.rs +56 -15
- package/contracts/common-macros/src/utils.rs +0 -9
- package/contracts/endpoint-v2/src/lib.rs +3 -2
- package/contracts/endpoint-v2/src/tests/endpoint_v2/clear.rs +2 -2
- package/contracts/endpoint-v2/src/tests/endpoint_v2/lz_receive_alert.rs +3 -3
- package/contracts/endpoint-v2/src/tests/endpoint_v2/send.rs +4 -4
- package/contracts/endpoint-v2/src/tests/endpoint_v2/set_delegate.rs +17 -5
- package/contracts/endpoint-v2/src/tests/endpoint_v2/set_zro.rs +4 -4
- package/contracts/endpoint-v2/src/tests/endpoint_v2/verify.rs +2 -2
- package/contracts/endpoint-v2/src/tests/message_lib_manager/register_library.rs +2 -2
- package/contracts/endpoint-v2/src/tests/message_lib_manager/set_default_receive_lib_timeout.rs +6 -6
- package/contracts/endpoint-v2/src/tests/message_lib_manager/set_default_receive_library.rs +67 -37
- package/contracts/endpoint-v2/src/tests/message_lib_manager/set_default_send_library.rs +5 -5
- package/contracts/endpoint-v2/src/tests/message_lib_manager/set_receive_library.rs +44 -54
- package/contracts/endpoint-v2/src/tests/message_lib_manager/set_receive_library_timeout.rs +7 -7
- package/contracts/endpoint-v2/src/tests/message_lib_manager/set_send_library.rs +8 -8
- package/contracts/endpoint-v2/src/tests/messaging_channel/burn.rs +3 -3
- package/contracts/endpoint-v2/src/tests/messaging_channel/nilify.rs +4 -4
- package/contracts/endpoint-v2/src/tests/messaging_channel/skip.rs +3 -3
- package/contracts/endpoint-v2/src/tests/messaging_composer/clear_compose.rs +2 -2
- package/contracts/endpoint-v2/src/tests/messaging_composer/lz_compose_alert.rs +3 -3
- package/contracts/endpoint-v2/src/tests/messaging_composer/send_compose.rs +2 -2
- package/contracts/layerzero-views/Cargo.toml +0 -1
- package/contracts/layerzero-views/src/layerzero_view.rs +1 -13
- package/contracts/macro-integration-tests/Cargo.toml +5 -15
- package/contracts/macro-integration-tests/tests/runtime/oapp/mod.rs +48 -0
- package/contracts/macro-integration-tests/tests/runtime/oapp/oapp_core.rs +170 -0
- package/contracts/macro-integration-tests/tests/runtime/oapp/options_type3.rs +154 -0
- package/contracts/macro-integration-tests/tests/runtime/oapp/receiver.rs +338 -0
- package/contracts/macro-integration-tests/tests/runtime/oapp/sender.rs +435 -0
- package/contracts/macro-integration-tests/tests/runtime.rs +1 -0
- package/contracts/macro-integration-tests/tests/ui/oapp/fail/custom_wrong_value.rs +8 -0
- package/contracts/macro-integration-tests/tests/ui/oapp/fail/custom_wrong_value.stderr +5 -0
- package/contracts/macro-integration-tests/tests/ui/oapp/fail/missing_lz_receive_internal.rs +8 -0
- package/contracts/macro-integration-tests/tests/ui/oapp/fail/missing_lz_receive_internal.stderr +71 -0
- package/contracts/macro-integration-tests/tests/ui/oapp/fail/non_struct_input.rs +10 -0
- package/contracts/macro-integration-tests/tests/ui/oapp/fail/non_struct_input.stderr +5 -0
- package/contracts/macro-integration-tests/tests/ui/oapp/fail/unknown_custom_option.rs +8 -0
- package/contracts/macro-integration-tests/tests/ui/oapp/fail/unknown_custom_option.stderr +5 -0
- package/contracts/macro-integration-tests/tests/ui/oapp/fail/wrong_key.rs +8 -0
- package/contracts/macro-integration-tests/tests/ui/oapp/fail/wrong_key.stderr +5 -0
- package/contracts/macro-integration-tests/tests/ui/oapp/pass/custom_all.rs +38 -0
- package/contracts/macro-integration-tests/tests/ui/oapp/pass/custom_single_trait.rs +96 -0
- package/contracts/macro-integration-tests/tests/ui/oapp/pass/minimal_contract.rs +64 -0
- package/contracts/macro-integration-tests/tests/ui/oapp/pass/struct_with_fields.rs +46 -0
- package/contracts/macro-integration-tests/tests/ui/ownable/fail/only_auth_missing_env.stderr +8 -0
- package/contracts/macro-integration-tests/tests/ui/ownable/pass/namespacing_and_imports.rs +1 -1
- package/contracts/macro-integration-tests/tests/ui/ownable/pass/only_auth_env_param_variants.rs +1 -1
- package/contracts/macro-integration-tests/tests/ui_oapp.rs +11 -0
- package/contracts/message-libs/message-lib-common/Cargo.toml +0 -1
- package/contracts/message-libs/message-lib-common/src/errors.rs +1 -1
- package/contracts/message-libs/treasury/Cargo.toml +0 -2
- package/contracts/message-libs/treasury/src/tests/treasury_tests.rs +2 -2
- package/contracts/message-libs/uln-302/src/tests/receive_uln302/effective_receive_uln_config.rs +2 -2
- package/contracts/message-libs/uln-302/src/tests/receive_uln302/set_default_receive_uln_configs.rs +2 -2
- package/contracts/message-libs/uln-302/src/tests/receive_uln302/verify.rs +2 -2
- package/contracts/message-libs/uln-302/src/tests/send_uln302/effective_executor_config.rs +2 -2
- package/contracts/message-libs/uln-302/src/tests/send_uln302/effective_send_uln_config.rs +2 -2
- package/contracts/message-libs/uln-302/src/tests/send_uln302/send.rs +7 -27
- package/contracts/message-libs/uln-302/src/tests/send_uln302/set_default_executor_configs.rs +2 -2
- package/contracts/message-libs/uln-302/src/tests/send_uln302/set_default_send_uln_configs.rs +2 -2
- package/contracts/oapps/counter/Cargo.toml +4 -6
- package/contracts/oapps/counter/integration_tests/utils.rs +19 -12
- package/contracts/oapps/oapp/src/errors.rs +1 -1
- package/contracts/oapps/oapp/src/interfaces/mod.rs +3 -0
- package/contracts/oapps/oapp/src/interfaces/oapp_msg_inspector.rs +47 -0
- package/contracts/oapps/oapp/src/lib.rs +1 -0
- package/contracts/oapps/oapp/src/macro_tests/test_macros.rs +4 -4
- package/contracts/oapps/oapp/src/oapp_core.rs +5 -5
- package/contracts/oapps/oapp/src/oapp_options_type3.rs +12 -4
- package/contracts/oapps/oapp/src/oapp_receiver.rs +14 -9
- package/contracts/oapps/oapp/src/tests/mod.rs +4 -4
- package/contracts/oapps/oapp/src/tests/{test_oapp_core.rs → oapp_core.rs} +4 -4
- package/contracts/oapps/oapp/src/tests/{test_oapp_options_type3.rs → oapp_options_type3.rs} +3 -4
- package/contracts/oapps/oapp-macros/Cargo.toml +8 -4
- package/contracts/oapps/oapp-macros/src/generators.rs +9 -34
- package/contracts/oapps/oapp-macros/src/lib.rs +3 -0
- package/contracts/oapps/oapp-macros/src/tests/mod.rs +2 -0
- package/contracts/oapps/oapp-macros/src/tests/oapp.rs +88 -0
- package/contracts/oapps/oapp-macros/src/tests/parse_custom_impls.rs +86 -0
- package/contracts/oapps/oapp-macros/src/tests/snapshots/oapp_macros__tests__oapp__snapshot_generate_oapp.snap +103 -0
- package/contracts/oapps/oft/integration-tests/utils.rs +28 -8
- package/contracts/oapps/oft/src/extensions/oft_fee.rs +136 -74
- package/contracts/oapps/oft/src/extensions/pausable.rs +44 -10
- package/contracts/oapps/oft/src/extensions/rate_limiter.rs +170 -130
- package/contracts/oapps/oft/src/oft.rs +19 -12
- package/contracts/oapps/oft/src/oft_types/lock_unlock.rs +1 -1
- package/contracts/oapps/oft/src/oft_types/mint_burn.rs +1 -1
- package/contracts/oapps/oft-core/Cargo.toml +1 -4
- package/contracts/oapps/oft-core/integration-tests/setup.rs +2 -2
- package/contracts/oapps/oft-core/integration-tests/utils.rs +21 -3
- package/contracts/oapps/oft-core/src/errors.rs +3 -2
- package/contracts/oapps/oft-core/src/events.rs +6 -0
- package/contracts/oapps/oft-core/src/lib.rs +1 -1
- package/contracts/oapps/oft-core/src/oft_core.rs +115 -60
- package/contracts/oapps/oft-core/src/storage.rs +7 -3
- package/contracts/oapps/oft-core/src/tests/mod.rs +1 -0
- package/contracts/oapps/oft-core/src/tests/test_decimals.rs +37 -2
- package/contracts/oapps/oft-core/src/tests/test_lz_receive.rs +2 -2
- package/contracts/oapps/oft-core/src/tests/test_msg_inspector.rs +323 -0
- package/contracts/oapps/oft-core/src/tests/test_send.rs +2 -2
- package/contracts/oapps/oft-core/src/tests/test_utils.rs +59 -14
- package/contracts/utils/Cargo.toml +0 -1
- package/contracts/utils/src/errors.rs +1 -1
- package/contracts/utils/src/multisig.rs +17 -8
- package/contracts/utils/src/ownable.rs +6 -6
- package/contracts/utils/src/testing_utils.rs +124 -54
- package/contracts/utils/src/tests/multisig.rs +12 -12
- package/contracts/utils/src/tests/ownable.rs +6 -6
- package/contracts/utils/src/tests/testing_utils.rs +50 -167
- package/contracts/utils/src/tests/ttl_configurable.rs +5 -5
- package/contracts/utils/src/tests/upgradeable.rs +1 -1
- package/contracts/utils/src/ttl_configurable.rs +10 -4
- package/contracts/utils/src/upgradeable.rs +5 -5
- package/contracts/workers/dvn/Cargo.toml +5 -6
- package/contracts/workers/dvn/src/dvn.rs +2 -12
- package/contracts/workers/dvn-fee-lib/Cargo.toml +1 -1
- package/contracts/workers/dvn-fee-lib/src/dvn_fee_lib.rs +37 -19
- package/contracts/workers/dvn-fee-lib/src/lib.rs +12 -2
- package/contracts/workers/dvn-fee-lib/src/tests/dvn_fee_lib.rs +15 -13
- package/contracts/workers/executor/Cargo.toml +3 -0
- package/contracts/workers/executor/src/executor.rs +2 -12
- package/contracts/workers/executor/src/lib.rs +2 -2
- package/contracts/workers/executor/src/tests/auth.rs +394 -0
- package/contracts/workers/executor/src/tests/executor.rs +410 -0
- package/contracts/workers/executor/src/tests/mod.rs +3 -0
- package/contracts/workers/executor/src/tests/setup.rs +250 -0
- package/contracts/workers/executor-fee-lib/Cargo.toml +5 -0
- package/contracts/workers/executor-fee-lib/src/executor_fee_lib.rs +1 -12
- package/contracts/workers/executor-fee-lib/src/lib.rs +8 -2
- package/contracts/workers/executor-helper/Cargo.toml +0 -1
- package/contracts/workers/price-feed/Cargo.toml +5 -0
- package/contracts/workers/price-feed/src/lib.rs +9 -4
- package/contracts/workers/price-feed/src/price_feed.rs +1 -11
- package/contracts/workers/worker/src/errors.rs +1 -1
- package/contracts/workers/worker/src/tests/setup.rs +1 -1
- package/contracts/workers/worker/src/tests/worker.rs +55 -41
- package/contracts/workers/worker/src/worker.rs +34 -25
- package/docs/error-spec.md +55 -0
- package/docs/layerzero-v2-on-stellar.md +447 -0
- package/docs/oapp-guide.md +212 -0
- package/docs/oft-guide.md +314 -0
- package/package.json +3 -3
- package/sdk/.turbo/turbo-test.log +260 -257
- package/sdk/dist/generated/bml.d.ts +3 -3
- package/sdk/dist/generated/bml.js +4 -4
- package/sdk/dist/generated/counter.d.ts +295 -295
- package/sdk/dist/generated/counter.js +43 -43
- package/sdk/dist/generated/dvn.d.ts +91 -91
- package/sdk/dist/generated/dvn.js +24 -24
- package/sdk/dist/generated/dvn_fee_lib.d.ts +92 -92
- package/sdk/dist/generated/dvn_fee_lib.js +25 -25
- package/sdk/dist/generated/endpoint.d.ts +99 -99
- package/sdk/dist/generated/endpoint.js +16 -16
- package/sdk/dist/generated/executor.d.ts +91 -91
- package/sdk/dist/generated/executor.js +24 -24
- package/sdk/dist/generated/executor_fee_lib.d.ts +92 -92
- package/sdk/dist/generated/executor_fee_lib.js +25 -25
- package/sdk/dist/generated/executor_helper.d.ts +3 -3
- package/sdk/dist/generated/executor_helper.js +4 -4
- package/sdk/dist/generated/layerzero_view.d.ts +186 -186
- package/sdk/dist/generated/layerzero_view.js +35 -35
- package/sdk/dist/generated/oft.d.ts +366 -352
- package/sdk/dist/generated/oft.js +74 -79
- package/sdk/dist/generated/price_feed.d.ts +198 -198
- package/sdk/dist/generated/price_feed.js +39 -39
- package/sdk/dist/generated/sml.d.ts +99 -99
- package/sdk/dist/generated/sml.js +16 -16
- package/sdk/dist/generated/treasury.d.ts +99 -99
- package/sdk/dist/generated/treasury.js +16 -16
- package/sdk/dist/generated/uln302.d.ts +99 -99
- package/sdk/dist/generated/uln302.js +16 -16
- package/sdk/dist/generated/upgrader.d.ts +3 -3
- package/sdk/dist/generated/upgrader.js +3 -3
- package/sdk/package.json +1 -1
- package/sdk/test/suites/localnet.ts +84 -20
- package/contracts/ERROR_SPEC.md +0 -51
- package/contracts/endpoint-v2/ARCHITECTURE.md +0 -233
- /package/contracts/oapps/oapp/src/tests/{test_oapp_receiver.rs → oapp_receiver.rs} +0 -0
- /package/contracts/oapps/oapp/src/tests/{test_oapp_sender.rs → oapp_sender.rs} +0 -0
package/.turbo/turbo-build.log
CHANGED
|
@@ -10,284 +10,227 @@
|
|
|
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
12
|
📦 Using 4 default cache volume(s) for stellar
|
|
13
|
-
✅ stellar-
|
|
14
|
-
🔧 stellar version:
|
|
15
|
-
$ docker image inspect --format {{.Id}} 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
📥 Pulling Docker image from ECR: 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_23.1.4_patch_6
|
|
19
|
-
$ docker pull 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_23.1.4_patch_6
|
|
20
|
-
stellar_23.1.4_patch_6: Pulling from layerzerolabs/stellar-tooling
|
|
21
|
-
f6bd9104d248: Pulling fs layer
|
|
22
|
-
4617420e017b: Pulling fs layer
|
|
23
|
-
e9886d99af76: Pulling fs layer
|
|
24
|
-
889cdda75b95: Pulling fs layer
|
|
25
|
-
a7d3f750d5ec: Pulling fs layer
|
|
26
|
-
8a4f031cd7ce: Pulling fs layer
|
|
27
|
-
2ff845d4f468: Pulling fs layer
|
|
28
|
-
2c1ce468d9f3: Pulling fs layer
|
|
29
|
-
1b86cc28e881: Pulling fs layer
|
|
30
|
-
f83e34e44849: Pulling fs layer
|
|
31
|
-
8bc2eeec2bb3: Pulling fs layer
|
|
32
|
-
2965c99ac5df: Pulling fs layer
|
|
33
|
-
66f4137c2c7c: Pulling fs layer
|
|
34
|
-
a7d3f750d5ec: Waiting
|
|
35
|
-
8a4f031cd7ce: Waiting
|
|
36
|
-
2ff845d4f468: Waiting
|
|
37
|
-
f83e34e44849: Waiting
|
|
38
|
-
2965c99ac5df: Waiting
|
|
39
|
-
889cdda75b95: Waiting
|
|
40
|
-
8bc2eeec2bb3: Waiting
|
|
41
|
-
66f4137c2c7c: Waiting
|
|
42
|
-
2c1ce468d9f3: Waiting
|
|
43
|
-
f6bd9104d248: Verifying Checksum
|
|
44
|
-
f6bd9104d248: Download complete
|
|
45
|
-
f6bd9104d248: Pull complete
|
|
46
|
-
889cdda75b95: Verifying Checksum
|
|
47
|
-
889cdda75b95: Download complete
|
|
48
|
-
a7d3f750d5ec: Verifying Checksum
|
|
49
|
-
a7d3f750d5ec: Download complete
|
|
50
|
-
e9886d99af76: Verifying Checksum
|
|
51
|
-
e9886d99af76: Download complete
|
|
52
|
-
8a4f031cd7ce: Verifying Checksum
|
|
53
|
-
8a4f031cd7ce: Download complete
|
|
54
|
-
2c1ce468d9f3: Download complete
|
|
55
|
-
1b86cc28e881: Verifying Checksum
|
|
56
|
-
1b86cc28e881: Download complete
|
|
57
|
-
2ff845d4f468: Verifying Checksum
|
|
58
|
-
2ff845d4f468: Download complete
|
|
59
|
-
f83e34e44849: Download complete
|
|
60
|
-
8bc2eeec2bb3: Verifying Checksum
|
|
61
|
-
8bc2eeec2bb3: Download complete
|
|
62
|
-
2965c99ac5df: Verifying Checksum
|
|
63
|
-
2965c99ac5df: Download complete
|
|
64
|
-
66f4137c2c7c: Verifying Checksum
|
|
65
|
-
66f4137c2c7c: Download complete
|
|
66
|
-
4617420e017b: Verifying Checksum
|
|
67
|
-
4617420e017b: Download complete
|
|
68
|
-
4617420e017b: Pull complete
|
|
69
|
-
e9886d99af76: Pull complete
|
|
70
|
-
889cdda75b95: Pull complete
|
|
71
|
-
a7d3f750d5ec: Pull complete
|
|
72
|
-
8a4f031cd7ce: Pull complete
|
|
73
|
-
2ff845d4f468: Pull complete
|
|
74
|
-
2c1ce468d9f3: Pull complete
|
|
75
|
-
1b86cc28e881: Pull complete
|
|
76
|
-
f83e34e44849: Pull complete
|
|
77
|
-
8bc2eeec2bb3: Pull complete
|
|
78
|
-
2965c99ac5df: Pull complete
|
|
79
|
-
66f4137c2c7c: Pull complete
|
|
80
|
-
Digest: sha256:635ca108241d5962b99bfce73582af12fbeea76e530b326fdcfc7224fa2ca257
|
|
81
|
-
Status: Downloaded newer image for 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_23.1.4_patch_6
|
|
82
|
-
438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_23.1.4_patch_6
|
|
83
|
-
✅ Successfully pulled: 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_23.1.4_patch_6
|
|
13
|
+
✅ stellar-25.0.0 (Latest stable release)
|
|
14
|
+
🔧 stellar version: 25.0.0
|
|
15
|
+
$ docker image inspect --format {{.Id}} 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.0.0
|
|
16
|
+
sha256:3b1e577a4303ad4a4df7bc898df7b4c89fa8e14faab5e73fc574869af49f9b3b
|
|
17
|
+
✅ Using cached Docker image: 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.0.0
|
|
84
18
|
👤 Running container as UID:GID 1001:1001
|
|
85
19
|
🌍 Using 5 default environment variable(s) for stellar
|
|
86
20
|
🔒 Acquired lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup
|
|
87
21
|
🔒 Acquired lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-config
|
|
88
22
|
🔒 Acquired lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
|
|
89
|
-
$ 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:
|
|
90
|
-
ℹ️
|
|
23
|
+
$ 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 stellar contract build --features sandbox
|
|
24
|
+
ℹ️ 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 --features=sandbox
|
|
91
25
|
Updating crates.io index
|
|
92
|
-
Updating git repository `https://github.com/OpenZeppelin/stellar-contracts.git`
|
|
93
26
|
Downloading crates ...
|
|
94
|
-
Downloaded
|
|
95
|
-
Downloaded ark-ff-macros v0.4.2
|
|
27
|
+
Downloaded darling_macro v0.21.3
|
|
96
28
|
Downloaded ark-ff-asm v0.4.2
|
|
97
|
-
Downloaded
|
|
98
|
-
Downloaded
|
|
99
|
-
Downloaded
|
|
100
|
-
Downloaded
|
|
101
|
-
Downloaded
|
|
102
|
-
Downloaded
|
|
103
|
-
Downloaded
|
|
104
|
-
Downloaded either v1.15.0
|
|
29
|
+
Downloaded ark-ff-macros v0.4.2
|
|
30
|
+
Downloaded hex-literal v0.4.1
|
|
31
|
+
Downloaded once_cell v1.21.3
|
|
32
|
+
Downloaded elliptic-curve v0.13.8
|
|
33
|
+
Downloaded escape-bytes v0.1.1
|
|
34
|
+
Downloaded k256 v0.13.4
|
|
35
|
+
Downloaded rand_chacha v0.3.1
|
|
105
36
|
Downloaded ethnum v1.5.2
|
|
106
|
-
Downloaded sec1 v0.7.3
|
|
107
|
-
Downloaded rustc_version v0.4.1
|
|
108
|
-
Downloaded signature v2.2.0
|
|
109
|
-
Downloaded ryu v1.0.20
|
|
110
37
|
Downloaded visibility v0.1.1
|
|
38
|
+
Downloaded dtor-proc-macro v0.0.6
|
|
39
|
+
Downloaded powerfmt v0.2.0
|
|
40
|
+
Downloaded block-buffer v0.10.4
|
|
41
|
+
Downloaded heck v0.5.0
|
|
42
|
+
Downloaded ed25519 v2.2.3
|
|
111
43
|
Downloaded zeroize_derive v1.4.2
|
|
112
|
-
Downloaded
|
|
44
|
+
Downloaded base16ct v0.2.0
|
|
45
|
+
Downloaded keccak v0.1.5
|
|
46
|
+
Downloaded smallvec v1.15.1
|
|
47
|
+
Downloaded schemars v0.9.0
|
|
48
|
+
Downloaded wasmi_arena v0.4.1
|
|
113
49
|
Downloaded zeroize v1.8.2
|
|
114
|
-
Downloaded wasmi_core v0.13.0
|
|
115
|
-
Downloaded unicode-ident v1.0.22
|
|
116
|
-
Downloaded typenum v1.19.0
|
|
117
|
-
Downloaded serde v1.0.228
|
|
118
50
|
Downloaded wasmparser-nostd v0.100.2
|
|
119
|
-
Downloaded
|
|
120
|
-
Downloaded soroban-sdk v23.4.0
|
|
51
|
+
Downloaded typenum v1.19.0
|
|
121
52
|
Downloaded wasmparser v0.116.1
|
|
122
|
-
Downloaded
|
|
123
|
-
Downloaded serde_with v3.15.1
|
|
124
|
-
Downloaded hashbrown v0.13.2
|
|
125
|
-
Downloaded zerocopy v0.8.27
|
|
126
|
-
Downloaded chrono v0.4.42
|
|
53
|
+
Downloaded itertools v0.10.5
|
|
127
54
|
Downloaded syn v1.0.109
|
|
128
|
-
Downloaded
|
|
55
|
+
Downloaded zerocopy v0.8.27
|
|
56
|
+
Downloaded itertools v0.14.0
|
|
57
|
+
Downloaded soroban-spec-rust v25.0.1
|
|
129
58
|
Downloaded syn v2.0.108
|
|
59
|
+
Downloaded soroban-sdk v25.0.1
|
|
60
|
+
Downloaded serde_with v3.15.1
|
|
61
|
+
Downloaded curve25519-dalek v4.1.3
|
|
62
|
+
Downloaded serde v1.0.228
|
|
63
|
+
Downloaded soroban-env-host v25.0.1
|
|
130
64
|
Downloaded soroban-wasmi v0.31.1-soroban.20.0.1
|
|
131
|
-
Downloaded
|
|
65
|
+
Downloaded libm v0.2.15
|
|
132
66
|
Downloaded serde_json v1.0.145
|
|
133
|
-
Downloaded
|
|
134
|
-
Downloaded
|
|
135
|
-
Downloaded
|
|
136
|
-
Downloaded
|
|
137
|
-
Downloaded
|
|
138
|
-
Downloaded num-conv v0.1.0
|
|
139
|
-
Downloaded soroban-env-common v23.0.1
|
|
140
|
-
Downloaded schemars v1.0.5
|
|
141
|
-
Downloaded serde_with_macros v3.15.1
|
|
142
|
-
Downloaded serde_derive v1.0.228
|
|
143
|
-
Downloaded ark-std v0.4.0
|
|
144
|
-
Downloaded stellar-strkey v0.0.13
|
|
145
|
-
Downloaded spki v0.7.3
|
|
146
|
-
Downloaded spin v0.9.8
|
|
147
|
-
Downloaded soroban-spec v23.4.0
|
|
148
|
-
Downloaded soroban-sdk-macros v23.4.0
|
|
149
|
-
Downloaded soroban-env-macros v23.0.1
|
|
150
|
-
Downloaded smallvec v1.15.1
|
|
67
|
+
Downloaded hashbrown v0.12.3
|
|
68
|
+
Downloaded darling_core v0.21.3
|
|
69
|
+
Downloaded darling_core v0.20.11
|
|
70
|
+
Downloaded crypto-bigint v0.5.5
|
|
71
|
+
Downloaded soroban-builtin-sdk-macros v25.0.1
|
|
151
72
|
Downloaded sha2 v0.10.9
|
|
152
|
-
Downloaded
|
|
153
|
-
Downloaded
|
|
73
|
+
Downloaded sec1 v0.7.3
|
|
74
|
+
Downloaded sha3 v0.10.8
|
|
75
|
+
Downloaded ryu v1.0.20
|
|
76
|
+
Downloaded rustc_version v0.4.1
|
|
77
|
+
Downloaded num-bigint v0.4.6
|
|
154
78
|
Downloaded indexmap v2.12.0
|
|
155
|
-
Downloaded
|
|
156
|
-
Downloaded
|
|
157
|
-
Downloaded
|
|
79
|
+
Downloaded indexmap v1.9.3
|
|
80
|
+
Downloaded const-oid v0.9.6
|
|
81
|
+
Downloaded unicode-ident v1.0.22
|
|
158
82
|
Downloaded time-macros v0.2.24
|
|
159
|
-
Downloaded time-core v0.1.6
|
|
160
|
-
Downloaded thiserror-impl v1.0.69
|
|
161
|
-
Downloaded sha3 v0.10.8
|
|
162
|
-
Downloaded thiserror v1.0.69
|
|
163
83
|
Downloaded static_assertions v1.1.0
|
|
164
|
-
Downloaded
|
|
165
|
-
Downloaded
|
|
84
|
+
Downloaded spki v0.7.3
|
|
85
|
+
Downloaded spin v0.9.8
|
|
86
|
+
Downloaded soroban-sdk-macros v25.0.1
|
|
87
|
+
Downloaded soroban-ledger-snapshot v25.0.1
|
|
88
|
+
Downloaded soroban-env-guest v25.0.1
|
|
89
|
+
Downloaded semver v1.0.27
|
|
90
|
+
Downloaded rfc6979 v0.4.0
|
|
91
|
+
Downloaded ref-cast-impl v1.0.25
|
|
92
|
+
Downloaded prettyplease v0.2.37
|
|
166
93
|
Downloaded p256 v0.13.2
|
|
167
|
-
Downloaded libm v0.2.15
|
|
168
|
-
Downloaded hex-literal v0.4.1
|
|
169
|
-
Downloaded generic-array v0.14.9
|
|
170
|
-
Downloaded ff v0.13.1
|
|
171
|
-
Downloaded escape-bytes v0.1.1
|
|
172
|
-
Downloaded darling_core v0.20.11
|
|
173
|
-
Downloaded quote v1.0.41
|
|
174
|
-
Downloaded powerfmt v0.2.0
|
|
175
|
-
Downloaded paste v1.0.15
|
|
176
|
-
Downloaded num-integer v0.1.46
|
|
177
|
-
Downloaded num-bigint v0.4.6
|
|
178
94
|
Downloaded libc v0.2.177
|
|
179
|
-
Downloaded
|
|
180
|
-
Downloaded
|
|
181
|
-
Downloaded
|
|
182
|
-
Downloaded
|
|
183
|
-
Downloaded
|
|
95
|
+
Downloaded num-traits v0.2.19
|
|
96
|
+
Downloaded hashbrown v0.16.0
|
|
97
|
+
Downloaded ed25519-dalek v2.2.0
|
|
98
|
+
Downloaded wasmi_core v0.13.0
|
|
99
|
+
Downloaded thiserror v1.0.69
|
|
184
100
|
Downloaded subtle v2.6.1
|
|
101
|
+
Downloaded soroban-env-macros v25.0.1
|
|
102
|
+
Downloaded soroban-env-common v25.0.1
|
|
103
|
+
Downloaded serde_core v1.0.228
|
|
104
|
+
Downloaded schemars v1.0.5
|
|
105
|
+
Downloaded ref-cast v1.0.25
|
|
106
|
+
Downloaded rand_core v0.6.4
|
|
107
|
+
Downloaded proc-macro2 v1.0.103
|
|
108
|
+
Downloaded paste v1.0.15
|
|
109
|
+
Downloaded iana-time-zone v0.1.64
|
|
110
|
+
Downloaded group v0.13.0
|
|
111
|
+
Downloaded getrandom v0.2.16
|
|
112
|
+
Downloaded ecdsa v0.16.9
|
|
113
|
+
Downloaded derivative v2.2.0
|
|
114
|
+
Downloaded deranged v0.5.5
|
|
115
|
+
Downloaded data-encoding v2.9.0
|
|
116
|
+
Downloaded byteorder v1.5.0
|
|
117
|
+
Downloaded autocfg v1.5.0
|
|
118
|
+
Downloaded ark-std v0.4.0
|
|
119
|
+
Downloaded version_check v0.9.5
|
|
120
|
+
Downloaded time-core v0.1.6
|
|
121
|
+
Downloaded thiserror-impl v1.0.69
|
|
185
122
|
Downloaded strsim v0.11.1
|
|
186
|
-
Downloaded
|
|
123
|
+
Downloaded stellar-strkey v0.0.16
|
|
124
|
+
Downloaded stellar-strkey v0.0.13
|
|
125
|
+
Downloaded stable_deref_trait v1.2.1
|
|
126
|
+
Downloaded soroban-spec v25.0.1
|
|
127
|
+
Downloaded serde_with_macros v3.15.1
|
|
128
|
+
Downloaded serde_derive v1.0.228
|
|
129
|
+
Downloaded schemars v0.8.22
|
|
130
|
+
Downloaded quote v1.0.41
|
|
131
|
+
Downloaded ppv-lite86 v0.2.21
|
|
187
132
|
Downloaded pkcs8 v0.10.2
|
|
188
|
-
Downloaded
|
|
189
|
-
Downloaded
|
|
190
|
-
Downloaded
|
|
191
|
-
Downloaded
|
|
133
|
+
Downloaded num-integer v0.1.46
|
|
134
|
+
Downloaded ff v0.13.1
|
|
135
|
+
Downloaded ctor-proc-macro v0.0.6
|
|
136
|
+
Downloaded ark-serialize-derive v0.4.2
|
|
137
|
+
Downloaded ark-serialize v0.4.2
|
|
138
|
+
Downloaded num-derive v0.4.2
|
|
192
139
|
Downloaded indexmap-nostd v0.4.0
|
|
193
|
-
Downloaded
|
|
194
|
-
Downloaded
|
|
140
|
+
Downloaded signature v2.2.0
|
|
141
|
+
Downloaded rand v0.8.5
|
|
142
|
+
Downloaded stellar-xdr v25.0.0
|
|
143
|
+
Downloaded num-conv v0.1.0
|
|
195
144
|
Downloaded hex v0.4.3
|
|
196
|
-
Downloaded
|
|
197
|
-
Downloaded
|
|
198
|
-
Downloaded
|
|
199
|
-
Downloaded
|
|
200
|
-
Downloaded
|
|
201
|
-
Downloaded num-traits v0.2.19
|
|
202
|
-
Downloaded macro-string v0.1.4
|
|
145
|
+
Downloaded time v0.3.44
|
|
146
|
+
Downloaded generic-array v0.14.9
|
|
147
|
+
Downloaded darling_macro v0.20.11
|
|
148
|
+
Downloaded darling v0.20.11
|
|
149
|
+
Downloaded crypto-common v0.1.6
|
|
203
150
|
Downloaded itoa v1.0.15
|
|
151
|
+
Downloaded ident_case v1.0.1
|
|
152
|
+
Downloaded curve25519-dalek-derive v0.1.1
|
|
204
153
|
Downloaded bytes-lit v0.0.5
|
|
205
|
-
Downloaded
|
|
154
|
+
Downloaded downcast-rs v1.2.1
|
|
155
|
+
Downloaded ctor v0.5.0
|
|
156
|
+
Downloaded cfg_eval v0.1.2
|
|
157
|
+
Downloaded cfg-if v1.0.4
|
|
158
|
+
Downloaded dtor v0.1.1
|
|
159
|
+
Downloaded darling v0.21.3
|
|
160
|
+
Downloaded crate-git-revision v0.0.6
|
|
161
|
+
Downloaded chrono v0.4.42
|
|
162
|
+
Downloaded primeorder v0.13.6
|
|
163
|
+
Downloaded macro-string v0.1.4
|
|
164
|
+
Downloaded hmac v0.12.1
|
|
165
|
+
Downloaded hash32 v0.3.1
|
|
166
|
+
Downloaded digest v0.10.7
|
|
167
|
+
Downloaded derive_arbitrary v1.3.2
|
|
168
|
+
Downloaded base64 v0.22.1
|
|
169
|
+
Downloaded cpufeatures v0.2.17
|
|
206
170
|
Downloaded ark-bls12-381 v0.4.0
|
|
207
|
-
Downloaded
|
|
208
|
-
Downloaded
|
|
209
|
-
Downloaded
|
|
210
|
-
Downloaded
|
|
211
|
-
Downloaded
|
|
212
|
-
Downloaded
|
|
213
|
-
Downloaded
|
|
171
|
+
Downloaded either v1.15.0
|
|
172
|
+
Downloaded ark-ff v0.4.2
|
|
173
|
+
Downloaded memchr v2.7.6
|
|
174
|
+
Downloaded heapless v0.8.0
|
|
175
|
+
Downloaded hashbrown v0.13.2
|
|
176
|
+
Downloaded equivalent v1.0.2
|
|
177
|
+
Downloaded ark-bn254 v0.4.0
|
|
178
|
+
Downloaded arbitrary v1.3.2
|
|
179
|
+
Downloaded ahash v0.8.12
|
|
214
180
|
Downloaded fnv v1.0.7
|
|
215
|
-
Downloaded ed25519-dalek v2.2.0
|
|
216
181
|
Downloaded dyn-clone v1.0.20
|
|
217
|
-
Downloaded
|
|
218
|
-
Downloaded digest v0.10.7
|
|
219
|
-
Downloaded darling v0.20.11
|
|
220
|
-
Downloaded curve25519-dalek v4.1.3
|
|
221
|
-
Downloaded crypto-bigint v0.5.5
|
|
222
|
-
Downloaded cpufeatures v0.2.17
|
|
182
|
+
Downloaded der v0.7.10
|
|
223
183
|
Downloaded base64ct v1.8.0
|
|
224
|
-
Downloaded
|
|
225
|
-
Downloaded primeorder v0.13.6
|
|
226
|
-
Downloaded itertools v0.14.0
|
|
227
|
-
Downloaded equivalent v1.0.2
|
|
228
|
-
Downloaded derivative v2.2.0
|
|
229
|
-
Downloaded data-encoding v2.9.0
|
|
230
|
-
Downloaded ctor-proc-macro v0.0.6
|
|
231
|
-
Downloaded elliptic-curve v0.13.8
|
|
232
|
-
Downloaded darling v0.21.3
|
|
233
|
-
Downloaded ed25519 v2.2.3
|
|
234
|
-
Downloaded darling_macro v0.20.11
|
|
235
|
-
Downloaded darling_core v0.21.3
|
|
236
|
-
Downloaded ctor v0.5.0
|
|
237
|
-
Downloaded ark-ff v0.4.2
|
|
184
|
+
Downloaded ark-poly v0.4.2
|
|
238
185
|
Downloaded ark-ec v0.4.2
|
|
239
|
-
Downloaded downcast-rs v1.2.1
|
|
240
|
-
Downloaded stellar-xdr v23.0.0
|
|
241
|
-
Downloaded curve25519-dalek-derive v0.1.1
|
|
242
|
-
Downloaded crypto-common v0.1.6
|
|
243
|
-
Downloaded crate-git-revision v0.0.6
|
|
244
|
-
Downloaded ahash v0.8.12
|
|
245
|
-
Downloaded deranged v0.5.5
|
|
246
|
-
Downloaded cfg-if v1.0.4
|
|
247
186
|
Compiling proc-macro2 v1.0.103
|
|
248
|
-
Compiling quote v1.0.41
|
|
249
187
|
Compiling unicode-ident v1.0.22
|
|
188
|
+
Compiling quote v1.0.41
|
|
250
189
|
Compiling serde_core v1.0.228
|
|
251
190
|
Compiling serde v1.0.228
|
|
252
191
|
Compiling serde_json v1.0.145
|
|
192
|
+
Compiling ryu v1.0.20
|
|
253
193
|
Compiling itoa v1.0.15
|
|
254
194
|
Compiling memchr v2.7.6
|
|
255
|
-
Compiling ryu v1.0.20
|
|
256
|
-
Compiling strsim v0.11.1
|
|
257
195
|
Compiling ident_case v1.0.1
|
|
196
|
+
Compiling strsim v0.11.1
|
|
258
197
|
Compiling fnv v1.0.7
|
|
259
198
|
Compiling typenum v1.19.0
|
|
260
199
|
Compiling version_check v0.9.5
|
|
261
200
|
Compiling autocfg v1.5.0
|
|
262
201
|
Compiling schemars v0.8.22
|
|
263
202
|
Compiling dyn-clone v1.0.20
|
|
203
|
+
Compiling data-encoding v2.9.0
|
|
264
204
|
Compiling cfg-if v1.0.4
|
|
265
205
|
Compiling cpufeatures v0.2.17
|
|
266
|
-
Compiling data-encoding v2.9.0
|
|
267
206
|
Compiling either v1.15.0
|
|
268
|
-
Compiling ethnum v1.5.2
|
|
269
207
|
Compiling escape-bytes v0.1.1
|
|
208
|
+
Compiling ethnum v1.5.2
|
|
270
209
|
Compiling semver v1.0.27
|
|
271
210
|
Compiling equivalent v1.0.2
|
|
211
|
+
Compiling thiserror v1.0.69
|
|
272
212
|
Compiling hashbrown v0.16.0
|
|
273
213
|
Compiling prettyplease v0.2.37
|
|
274
|
-
Compiling thiserror v1.0.69
|
|
275
214
|
Compiling generic-array v0.14.9
|
|
276
|
-
Compiling base64 v0.22.1
|
|
277
215
|
Compiling num-traits v0.2.19
|
|
278
|
-
Compiling
|
|
216
|
+
Compiling heapless v0.8.0
|
|
279
217
|
Compiling itertools v0.10.5
|
|
280
|
-
Compiling
|
|
218
|
+
Compiling byteorder v1.5.0
|
|
219
|
+
Compiling base64 v0.22.1
|
|
281
220
|
Compiling rustc_version v0.4.1
|
|
221
|
+
Compiling static_assertions v1.1.0
|
|
222
|
+
Compiling hash32 v0.3.1
|
|
223
|
+
Compiling heck v0.5.0
|
|
224
|
+
Compiling stable_deref_trait v1.2.1
|
|
282
225
|
Compiling itertools v0.14.0
|
|
283
226
|
Compiling indexmap v2.12.0
|
|
284
227
|
Compiling syn v2.0.108
|
|
285
228
|
Compiling num-integer v0.1.46
|
|
286
229
|
Compiling wasmparser v0.116.1
|
|
287
|
-
Compiling num-bigint v0.4.6
|
|
288
|
-
Compiling block-buffer v0.10.4
|
|
289
230
|
Compiling crypto-common v0.1.6
|
|
231
|
+
Compiling block-buffer v0.10.4
|
|
290
232
|
Compiling digest v0.10.7
|
|
233
|
+
Compiling num-bigint v0.4.6
|
|
291
234
|
Compiling sha2 v0.10.9
|
|
292
235
|
Compiling darling_core v0.21.3
|
|
293
236
|
Compiling darling_core v0.20.11
|
|
@@ -296,8 +239,8 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
296
239
|
Compiling cfg_eval v0.1.2
|
|
297
240
|
Compiling num-derive v0.4.2
|
|
298
241
|
Compiling thiserror-impl v1.0.69
|
|
299
|
-
Compiling visibility v0.1.1
|
|
300
242
|
Compiling bytes-lit v0.0.5
|
|
243
|
+
Compiling visibility v0.1.1
|
|
301
244
|
Compiling common-macros v0.0.1 (/workspace/contracts/protocol/stellar/contracts/common-macros)
|
|
302
245
|
Compiling darling_macro v0.20.11
|
|
303
246
|
Compiling darling_macro v0.21.3
|
|
@@ -307,602 +250,638 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
307
250
|
Compiling crate-git-revision v0.0.6
|
|
308
251
|
Compiling hex v0.4.3
|
|
309
252
|
Compiling stellar-strkey v0.0.13
|
|
310
|
-
Compiling stellar-xdr
|
|
311
|
-
Compiling soroban-env-common
|
|
312
|
-
Compiling
|
|
253
|
+
Compiling stellar-xdr v25.0.0
|
|
254
|
+
Compiling soroban-env-common v25.0.1
|
|
255
|
+
Compiling stellar-strkey v0.0.16
|
|
256
|
+
Compiling soroban-sdk v25.0.1
|
|
313
257
|
Compiling serde_with v3.15.1
|
|
314
|
-
Compiling soroban-spec
|
|
315
|
-
Compiling soroban-env-macros
|
|
316
|
-
Compiling soroban-spec-rust
|
|
317
|
-
Compiling soroban-sdk-macros
|
|
318
|
-
Compiling soroban-env-guest
|
|
258
|
+
Compiling soroban-spec v25.0.1
|
|
259
|
+
Compiling soroban-env-macros v25.0.1
|
|
260
|
+
Compiling soroban-spec-rust v25.0.1
|
|
261
|
+
Compiling soroban-sdk-macros v25.0.1
|
|
262
|
+
Compiling soroban-env-guest v25.0.1
|
|
319
263
|
Compiling utils v0.0.1 (/workspace/contracts/protocol/stellar/contracts/utils)
|
|
320
264
|
Compiling endpoint-v2 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/endpoint-v2)
|
|
321
|
-
Finished `release` profile [optimized] target(s) in
|
|
322
|
-
ℹ️
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
265
|
+
Finished `release` profile [optimized] target(s) in 31.69s
|
|
266
|
+
ℹ️ Build Summary:
|
|
267
|
+
Wasm File: target/wasm32v1-none/release/endpoint_v2.wasm (59070 bytes)
|
|
268
|
+
Wasm Hash: f55501593e422dcad948d5bb9280623f3ecd937eb4e71071e64f9679946bebf0
|
|
269
|
+
Wasm Size: 59070 bytes
|
|
270
|
+
Exported Functions: 60 found
|
|
271
|
+
• __constructor
|
|
272
|
+
• accept_ownership
|
|
273
|
+
• authorizer
|
|
274
|
+
• burn
|
|
275
|
+
• clear
|
|
276
|
+
• clear_compose
|
|
277
|
+
• compose_queue
|
|
278
|
+
• default_receive_library
|
|
279
|
+
• default_receive_library_timeout
|
|
280
|
+
• default_send_library
|
|
281
|
+
• delegate
|
|
282
|
+
• eid
|
|
283
|
+
• extend_instance_ttl
|
|
284
|
+
• freeze_ttl_configs
|
|
285
|
+
• get_config
|
|
286
|
+
• get_library_index
|
|
287
|
+
• get_receive_library
|
|
288
|
+
• get_registered_libraries
|
|
289
|
+
• get_send_library
|
|
290
|
+
• inbound_nonce
|
|
291
|
+
• inbound_payload_hash
|
|
292
|
+
• initializable
|
|
293
|
+
• is_registered_library
|
|
294
|
+
• is_supported_eid
|
|
295
|
+
• is_ttl_configs_frozen
|
|
296
|
+
• is_valid_receive_library
|
|
297
|
+
• lazy_inbound_nonce
|
|
298
|
+
• lz_compose_alert
|
|
299
|
+
• lz_receive_alert
|
|
300
|
+
• native_token
|
|
301
|
+
• next_guid
|
|
302
|
+
• nilify
|
|
303
|
+
• outbound_nonce
|
|
304
|
+
• owner
|
|
305
|
+
• pending_owner
|
|
306
|
+
• propose_ownership_transfer
|
|
307
|
+
• quote
|
|
308
|
+
• receive_library_timeout
|
|
309
|
+
• recover_token
|
|
310
|
+
• register_library
|
|
311
|
+
• registered_libraries_count
|
|
312
|
+
• renounce_ownership
|
|
313
|
+
• send
|
|
314
|
+
• send_compose
|
|
315
|
+
• set_config
|
|
316
|
+
• set_default_receive_lib_timeout
|
|
317
|
+
• set_default_receive_library
|
|
318
|
+
• set_default_send_library
|
|
319
|
+
• set_delegate
|
|
320
|
+
• set_receive_library
|
|
321
|
+
• set_receive_library_timeout
|
|
322
|
+
• set_send_library
|
|
323
|
+
• set_ttl_configs
|
|
324
|
+
• set_zro
|
|
325
|
+
• skip
|
|
326
|
+
• transfer_ownership
|
|
327
|
+
• ttl_configs
|
|
328
|
+
• verifiable
|
|
329
|
+
• verify
|
|
330
|
+
• zro
|
|
386
331
|
✅ Build Complete
|
|
387
|
-
|
|
332
|
+
|
|
333
|
+
ℹ️ 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 --features=sandbox
|
|
388
334
|
Compiling escape-bytes v0.1.1
|
|
389
|
-
Compiling
|
|
335
|
+
Compiling byteorder v1.5.0
|
|
336
|
+
Compiling stable_deref_trait v1.2.1
|
|
390
337
|
Compiling ethnum v1.5.2
|
|
338
|
+
Compiling static_assertions v1.1.0
|
|
339
|
+
Compiling data-encoding v2.9.0
|
|
391
340
|
Compiling num-traits v0.2.19
|
|
392
341
|
Compiling cfg-if v1.0.4
|
|
393
|
-
Compiling stellar-xdr
|
|
394
|
-
Compiling
|
|
395
|
-
Compiling
|
|
396
|
-
Compiling
|
|
342
|
+
Compiling stellar-xdr v25.0.0
|
|
343
|
+
Compiling hash32 v0.3.1
|
|
344
|
+
Compiling heapless v0.8.0
|
|
345
|
+
Compiling stellar-strkey v0.0.16
|
|
346
|
+
Compiling soroban-env-common v25.0.1
|
|
347
|
+
Compiling soroban-env-guest v25.0.1
|
|
348
|
+
Compiling soroban-sdk v25.0.1
|
|
397
349
|
Compiling utils v0.0.1 (/workspace/contracts/protocol/stellar/contracts/utils)
|
|
398
350
|
Compiling endpoint-v2 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/endpoint-v2)
|
|
399
351
|
Compiling message-lib-common v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/message-lib-common)
|
|
400
352
|
Compiling uln302 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/uln-302)
|
|
401
353
|
Compiling layerzero-views v0.0.1 (/workspace/contracts/protocol/stellar/contracts/layerzero-views)
|
|
402
|
-
Finished `release` profile [optimized] target(s) in 8.
|
|
403
|
-
ℹ️
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
354
|
+
Finished `release` profile [optimized] target(s) in 8.42s
|
|
355
|
+
ℹ️ Build Summary:
|
|
356
|
+
Wasm File: target/wasm32v1-none/release/layerzero_views.wasm (34116 bytes)
|
|
357
|
+
Wasm Hash: f98131c421cf42155df337d9d65de113f3dcd82c9546edbb1cdc2aaa51a930f9
|
|
358
|
+
Wasm Size: 34116 bytes
|
|
359
|
+
Exported Functions: 24 found
|
|
360
|
+
• __constructor
|
|
361
|
+
• accept_ownership
|
|
362
|
+
• authorizer
|
|
363
|
+
• endpoint
|
|
364
|
+
• executable
|
|
365
|
+
• extend_instance_ttl
|
|
366
|
+
• freeze
|
|
367
|
+
• freeze_ttl_configs
|
|
368
|
+
• initializable
|
|
369
|
+
• is_frozen
|
|
370
|
+
• is_ttl_configs_frozen
|
|
371
|
+
• local_eid
|
|
372
|
+
• migrate
|
|
373
|
+
• owner
|
|
374
|
+
• pending_owner
|
|
375
|
+
• propose_ownership_transfer
|
|
376
|
+
• renounce_ownership
|
|
377
|
+
• set_ttl_configs
|
|
378
|
+
• transfer_ownership
|
|
379
|
+
• ttl_configs
|
|
380
|
+
• uln302
|
|
381
|
+
• uln_verifiable
|
|
382
|
+
• upgrade
|
|
383
|
+
• verifiable
|
|
431
384
|
✅ Build Complete
|
|
432
|
-
|
|
385
|
+
|
|
386
|
+
ℹ️ 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
|
|
433
387
|
Compiling message-lib-common v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/message-lib-common)
|
|
434
388
|
Compiling uln302 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/uln-302)
|
|
435
389
|
Finished `release` profile [optimized] target(s) in 1.11s
|
|
436
|
-
ℹ️
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
390
|
+
ℹ️ Build Summary:
|
|
391
|
+
Wasm File: target/wasm32v1-none/release/uln302.wasm (57445 bytes)
|
|
392
|
+
Wasm Hash: f93089924ff22ed0acf1296dfd2e865ed07d37e36de9074c3b61923a076df0b5
|
|
393
|
+
Wasm Size: 57445 bytes
|
|
394
|
+
Exported Functions: 38 found
|
|
395
|
+
• __constructor
|
|
396
|
+
• accept_ownership
|
|
397
|
+
• authorizer
|
|
398
|
+
• commit_verification
|
|
399
|
+
• confirmations
|
|
400
|
+
• default_executor_config
|
|
401
|
+
• default_receive_uln_config
|
|
402
|
+
• default_send_uln_config
|
|
403
|
+
• effective_executor_config
|
|
404
|
+
• effective_receive_uln_config
|
|
405
|
+
• effective_send_uln_config
|
|
406
|
+
• endpoint
|
|
407
|
+
• extend_instance_ttl
|
|
408
|
+
• freeze_ttl_configs
|
|
409
|
+
• get_config
|
|
410
|
+
• is_supported_eid
|
|
411
|
+
• is_ttl_configs_frozen
|
|
412
|
+
• message_lib_type
|
|
413
|
+
• oapp_executor_config
|
|
414
|
+
• oapp_receive_uln_config
|
|
415
|
+
• oapp_send_uln_config
|
|
416
|
+
• owner
|
|
417
|
+
• pending_owner
|
|
418
|
+
• propose_ownership_transfer
|
|
419
|
+
• quote
|
|
420
|
+
• renounce_ownership
|
|
421
|
+
• send
|
|
422
|
+
• set_config
|
|
423
|
+
• set_default_executor_configs
|
|
424
|
+
• set_default_receive_uln_configs
|
|
425
|
+
• set_default_send_uln_configs
|
|
426
|
+
• set_ttl_configs
|
|
427
|
+
• transfer_ownership
|
|
428
|
+
• treasury
|
|
429
|
+
• ttl_configs
|
|
430
|
+
• verifiable
|
|
431
|
+
• verify
|
|
432
|
+
• version
|
|
478
433
|
✅ Build Complete
|
|
479
|
-
|
|
434
|
+
|
|
435
|
+
ℹ️ 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
|
|
480
436
|
Compiling upgrader v0.0.1 (/workspace/contracts/protocol/stellar/contracts/upgrader)
|
|
481
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
482
|
-
ℹ️
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
437
|
+
Finished `release` profile [optimized] target(s) in 0.25s
|
|
438
|
+
ℹ️ Build Summary:
|
|
439
|
+
Wasm File: target/wasm32v1-none/release/upgrader.wasm (5053 bytes)
|
|
440
|
+
Wasm Hash: 298d3c3d596be9f28c28c7919c00bfba604b1f7a615b2930ac0e65a9eac84655
|
|
441
|
+
Wasm Size: 5053 bytes
|
|
442
|
+
Exported Functions: 2 found
|
|
443
|
+
• upgrade
|
|
444
|
+
• upgrade_and_migrate
|
|
488
445
|
✅ Build Complete
|
|
489
|
-
|
|
446
|
+
|
|
447
|
+
ℹ️ 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
|
|
490
448
|
Compiling blocked-message-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/blocked-message-lib)
|
|
491
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
492
|
-
ℹ️
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
449
|
+
Finished `release` profile [optimized] target(s) in 0.31s
|
|
450
|
+
ℹ️ Build Summary:
|
|
451
|
+
Wasm File: target/wasm32v1-none/release/blocked_message_lib.wasm (13810 bytes)
|
|
452
|
+
Wasm Hash: 59e02c6dd2b87f160f20ae3fb019887edb63ea82349fe05edc3a4eee1e56f79d
|
|
453
|
+
Wasm Size: 13810 bytes
|
|
454
|
+
Exported Functions: 7 found
|
|
455
|
+
• get_config
|
|
456
|
+
• is_supported_eid
|
|
457
|
+
• message_lib_type
|
|
458
|
+
• quote
|
|
459
|
+
• send
|
|
460
|
+
• set_config
|
|
461
|
+
• version
|
|
503
462
|
✅ Build Complete
|
|
504
|
-
|
|
463
|
+
|
|
464
|
+
ℹ️ 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
|
|
505
465
|
Compiling simple-message-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/simple-message-lib)
|
|
506
466
|
Finished `release` profile [optimized] target(s) in 0.49s
|
|
507
|
-
ℹ️
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
467
|
+
ℹ️ Build Summary:
|
|
468
|
+
Wasm File: target/wasm32v1-none/release/simple_message_lib.wasm (29284 bytes)
|
|
469
|
+
Wasm Hash: 50f95eceb29103f5c23981254e80a68d3c38a9837917b7e39bb951670c5ae19f
|
|
470
|
+
Wasm Size: 29284 bytes
|
|
471
|
+
Exported Functions: 31 found
|
|
472
|
+
• __constructor
|
|
473
|
+
• accept_ownership
|
|
474
|
+
• authorizer
|
|
475
|
+
• endpoint
|
|
476
|
+
• extend_instance_ttl
|
|
477
|
+
• fee_recipient
|
|
478
|
+
• freeze_ttl_configs
|
|
479
|
+
• get_config
|
|
480
|
+
• is_supported_eid
|
|
481
|
+
• is_ttl_configs_frozen
|
|
482
|
+
• local_eid
|
|
483
|
+
• message_lib_type
|
|
484
|
+
• native_fee
|
|
485
|
+
• owner
|
|
486
|
+
• pending_owner
|
|
487
|
+
• propose_ownership_transfer
|
|
488
|
+
• quote
|
|
489
|
+
• renounce_ownership
|
|
490
|
+
• send
|
|
491
|
+
• set_config
|
|
492
|
+
• set_fee_recipient
|
|
493
|
+
• set_native_fee
|
|
494
|
+
• set_ttl_configs
|
|
495
|
+
• set_whitelisted_caller
|
|
496
|
+
• set_zro_fee
|
|
497
|
+
• transfer_ownership
|
|
498
|
+
• ttl_configs
|
|
499
|
+
• validate_packet
|
|
500
|
+
• version
|
|
501
|
+
• whitelisted_caller
|
|
502
|
+
• zro_fee
|
|
542
503
|
✅ Build Complete
|
|
543
|
-
|
|
504
|
+
|
|
505
|
+
ℹ️ 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
|
|
544
506
|
Compiling treasury v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/treasury)
|
|
545
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
546
|
-
ℹ️
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
507
|
+
Finished `release` profile [optimized] target(s) in 0.45s
|
|
508
|
+
ℹ️ Build Summary:
|
|
509
|
+
Wasm File: target/wasm32v1-none/release/treasury.wasm (27461 bytes)
|
|
510
|
+
Wasm Hash: 1e88f3e179cb6dbabb6332b6b4279b5b04c3d10f361e12f084a3db2ec1872553
|
|
511
|
+
Wasm Size: 27461 bytes
|
|
512
|
+
Exported Functions: 21 found
|
|
513
|
+
• __constructor
|
|
514
|
+
• accept_ownership
|
|
515
|
+
• authorizer
|
|
516
|
+
• extend_instance_ttl
|
|
517
|
+
• fee_enabled
|
|
518
|
+
• freeze_ttl_configs
|
|
519
|
+
• get_fee
|
|
520
|
+
• is_ttl_configs_frozen
|
|
521
|
+
• native_fee_bp
|
|
522
|
+
• owner
|
|
523
|
+
• pending_owner
|
|
524
|
+
• propose_ownership_transfer
|
|
525
|
+
• renounce_ownership
|
|
526
|
+
• set_fee_enabled
|
|
527
|
+
• set_native_fee_bp
|
|
528
|
+
• set_ttl_configs
|
|
529
|
+
• set_zro_fee_lib
|
|
530
|
+
• transfer_ownership
|
|
531
|
+
• ttl_configs
|
|
532
|
+
• withdraw_token
|
|
533
|
+
• zro_fee_lib
|
|
571
534
|
✅ Build Complete
|
|
572
|
-
|
|
535
|
+
|
|
536
|
+
ℹ️ 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
|
|
573
537
|
Compiling oapp-macros v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp-macros)
|
|
574
538
|
Compiling oapp v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp)
|
|
575
539
|
Compiling counter v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/counter)
|
|
576
|
-
Finished `release` profile [optimized] target(s) in 1.
|
|
577
|
-
ℹ️
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
540
|
+
Finished `release` profile [optimized] target(s) in 1.22s
|
|
541
|
+
ℹ️ Build Summary:
|
|
542
|
+
Wasm File: target/wasm32v1-none/release/counter.wasm (40336 bytes)
|
|
543
|
+
Wasm Hash: 21be5b9ff062d6e92fce084fdb0a3b5b2281f4f79b292eb1e533528e9a394aac
|
|
544
|
+
Wasm Size: 40336 bytes
|
|
545
|
+
Exported Functions: 35 found
|
|
546
|
+
• __constructor
|
|
547
|
+
• accept_ownership
|
|
548
|
+
• allow_initialize_path
|
|
549
|
+
• authorizer
|
|
550
|
+
• combine_options
|
|
551
|
+
• composed_count
|
|
552
|
+
• count
|
|
553
|
+
• eid
|
|
554
|
+
• endpoint
|
|
555
|
+
• enforced_options
|
|
556
|
+
• extend_instance_ttl
|
|
557
|
+
• freeze_ttl_configs
|
|
558
|
+
• inbound_count
|
|
559
|
+
• increment
|
|
560
|
+
• is_compose_msg_sender
|
|
561
|
+
• is_ttl_configs_frozen
|
|
562
|
+
• lz_compose
|
|
563
|
+
• lz_receive
|
|
564
|
+
• next_nonce
|
|
565
|
+
• oapp_version
|
|
566
|
+
• outbound_count
|
|
567
|
+
• owner
|
|
568
|
+
• peer
|
|
569
|
+
• pending_owner
|
|
570
|
+
• propose_ownership_transfer
|
|
571
|
+
• quote
|
|
572
|
+
• renounce_ownership
|
|
573
|
+
• set_delegate
|
|
574
|
+
• set_enforced_options
|
|
575
|
+
• set_ordered_nonce
|
|
576
|
+
• set_peer
|
|
577
|
+
• set_ttl_configs
|
|
578
|
+
• skip_inbound_nonce
|
|
579
|
+
• transfer_ownership
|
|
580
|
+
• ttl_configs
|
|
616
581
|
✅ Build Complete
|
|
617
|
-
|
|
582
|
+
|
|
583
|
+
ℹ️ 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
|
|
618
584
|
Compiling fee-lib-interfaces v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/fee-lib-interfaces)
|
|
619
585
|
Compiling worker v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/worker)
|
|
620
586
|
Compiling dvn v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/dvn)
|
|
621
|
-
Finished `release` profile [optimized] target(s) in 1.
|
|
622
|
-
ℹ️
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
587
|
+
Finished `release` profile [optimized] target(s) in 1.21s
|
|
588
|
+
ℹ️ Build Summary:
|
|
589
|
+
Wasm File: target/wasm32v1-none/release/dvn.wasm (57505 bytes)
|
|
590
|
+
Wasm Hash: 58784606010f24b0342599b3f6f0da7c5a0ed3254c26bdc4d64b51e71c213368
|
|
591
|
+
Wasm Size: 57505 bytes
|
|
592
|
+
Exported Functions: 51 found
|
|
593
|
+
• __check_auth
|
|
594
|
+
• __constructor
|
|
595
|
+
• admins
|
|
596
|
+
• allowlist_size
|
|
597
|
+
• assign_job
|
|
598
|
+
• authorizer
|
|
599
|
+
• default_multiplier_bps
|
|
600
|
+
• deposit_address
|
|
601
|
+
• dst_config
|
|
602
|
+
• extend_instance_ttl
|
|
603
|
+
• freeze
|
|
604
|
+
• freeze_ttl_configs
|
|
605
|
+
• get_fee
|
|
606
|
+
• get_signers
|
|
607
|
+
• get_supported_option_types
|
|
608
|
+
• has_acl
|
|
609
|
+
• hash_call_data
|
|
610
|
+
• is_admin
|
|
611
|
+
• is_frozen
|
|
612
|
+
• is_on_allowlist
|
|
613
|
+
• is_on_denylist
|
|
614
|
+
• is_signer
|
|
615
|
+
• is_supported_message_lib
|
|
616
|
+
• is_ttl_configs_frozen
|
|
617
|
+
• message_libs
|
|
618
|
+
• migrate
|
|
619
|
+
• paused
|
|
620
|
+
• price_feed
|
|
621
|
+
• set_admin
|
|
622
|
+
• set_admin_by_admin
|
|
623
|
+
• set_allowlist
|
|
624
|
+
• set_default_multiplier_bps
|
|
625
|
+
• set_denylist
|
|
626
|
+
• set_deposit_address
|
|
627
|
+
• set_dst_config
|
|
628
|
+
• set_paused
|
|
629
|
+
• set_price_feed
|
|
630
|
+
• set_signer
|
|
631
|
+
• set_supported_message_lib
|
|
632
|
+
• set_supported_option_types
|
|
633
|
+
• set_threshold
|
|
634
|
+
• set_ttl_configs
|
|
635
|
+
• set_worker_fee_lib
|
|
636
|
+
• threshold
|
|
637
|
+
• total_signers
|
|
638
|
+
• ttl_configs
|
|
639
|
+
• upgrade
|
|
640
|
+
• verify_n_signatures
|
|
641
|
+
• verify_signatures
|
|
642
|
+
• vid
|
|
643
|
+
• worker_fee_lib
|
|
677
644
|
✅ Build Complete
|
|
678
|
-
|
|
645
|
+
|
|
646
|
+
ℹ️ 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
|
|
647
|
+
Compiling fee-lib-interfaces v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/fee-lib-interfaces)
|
|
679
648
|
Compiling dvn-fee-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/dvn-fee-lib)
|
|
680
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
681
|
-
ℹ️
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
649
|
+
Finished `release` profile [optimized] target(s) in 0.61s
|
|
650
|
+
ℹ️ Build Summary:
|
|
651
|
+
Wasm File: target/wasm32v1-none/release/dvn_fee_lib.wasm (22288 bytes)
|
|
652
|
+
Wasm Hash: 472a898aa11cb6faa417732d3365a9a4d69083cf978ec18a332571e5a2bc208e
|
|
653
|
+
Wasm Size: 22288 bytes
|
|
654
|
+
Exported Functions: 18 found
|
|
655
|
+
• __constructor
|
|
656
|
+
• accept_ownership
|
|
657
|
+
• authorizer
|
|
658
|
+
• extend_instance_ttl
|
|
659
|
+
• freeze
|
|
660
|
+
• freeze_ttl_configs
|
|
661
|
+
• get_fee
|
|
662
|
+
• is_frozen
|
|
663
|
+
• is_ttl_configs_frozen
|
|
664
|
+
• migrate
|
|
665
|
+
• owner
|
|
666
|
+
• pending_owner
|
|
667
|
+
• propose_ownership_transfer
|
|
668
|
+
• renounce_ownership
|
|
669
|
+
• set_ttl_configs
|
|
670
|
+
• transfer_ownership
|
|
671
|
+
• ttl_configs
|
|
672
|
+
• upgrade
|
|
703
673
|
✅ Build Complete
|
|
704
|
-
|
|
674
|
+
|
|
675
|
+
ℹ️ 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
|
|
705
676
|
Compiling executor v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor)
|
|
706
677
|
Finished `release` profile [optimized] target(s) in 0.76s
|
|
707
|
-
ℹ️
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
678
|
+
ℹ️ Build Summary:
|
|
679
|
+
Wasm File: target/wasm32v1-none/release/executor.wasm (57119 bytes)
|
|
680
|
+
Wasm Hash: 68df81efe2d090ace4a1802098c00dcdacaa4c9e4e21c329536c60d715da8bef
|
|
681
|
+
Wasm Size: 57119 bytes
|
|
682
|
+
Exported Functions: 49 found
|
|
683
|
+
• __check_auth
|
|
684
|
+
• __constructor
|
|
685
|
+
• accept_ownership
|
|
686
|
+
• admins
|
|
687
|
+
• allowlist_size
|
|
688
|
+
• assign_job
|
|
689
|
+
• authorizer
|
|
690
|
+
• default_multiplier_bps
|
|
691
|
+
• deposit_address
|
|
692
|
+
• dst_config
|
|
693
|
+
• endpoint
|
|
694
|
+
• extend_instance_ttl
|
|
695
|
+
• freeze
|
|
696
|
+
• freeze_ttl_configs
|
|
697
|
+
• get_fee
|
|
698
|
+
• get_supported_option_types
|
|
699
|
+
• has_acl
|
|
700
|
+
• is_admin
|
|
701
|
+
• is_frozen
|
|
702
|
+
• is_on_allowlist
|
|
703
|
+
• is_on_denylist
|
|
704
|
+
• is_supported_message_lib
|
|
705
|
+
• is_ttl_configs_frozen
|
|
706
|
+
• message_libs
|
|
707
|
+
• migrate
|
|
708
|
+
• native_drop
|
|
709
|
+
• owner
|
|
710
|
+
• paused
|
|
711
|
+
• pending_owner
|
|
712
|
+
• price_feed
|
|
713
|
+
• propose_ownership_transfer
|
|
714
|
+
• renounce_ownership
|
|
715
|
+
• set_admin
|
|
716
|
+
• set_allowlist
|
|
717
|
+
• set_default_multiplier_bps
|
|
718
|
+
• set_denylist
|
|
719
|
+
• set_deposit_address
|
|
720
|
+
• set_dst_config
|
|
721
|
+
• set_paused
|
|
722
|
+
• set_price_feed
|
|
723
|
+
• set_supported_message_lib
|
|
724
|
+
• set_supported_option_types
|
|
725
|
+
• set_ttl_configs
|
|
726
|
+
• set_worker_fee_lib
|
|
727
|
+
• transfer_ownership
|
|
728
|
+
• ttl_configs
|
|
729
|
+
• upgrade
|
|
730
|
+
• withdraw_token
|
|
731
|
+
• worker_fee_lib
|
|
760
732
|
✅ Build Complete
|
|
761
|
-
|
|
733
|
+
|
|
734
|
+
ℹ️ 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
|
|
762
735
|
Compiling executor-fee-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor-fee-lib)
|
|
763
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
764
|
-
ℹ️
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
736
|
+
Finished `release` profile [optimized] target(s) in 0.44s
|
|
737
|
+
ℹ️ Build Summary:
|
|
738
|
+
Wasm File: target/wasm32v1-none/release/executor_fee_lib.wasm (33966 bytes)
|
|
739
|
+
Wasm Hash: 05a18caf82faa48c7261039b061654cf831092422854a7c1d1b54fd32c459430
|
|
740
|
+
Wasm Size: 33966 bytes
|
|
741
|
+
Exported Functions: 19 found
|
|
742
|
+
• __constructor
|
|
743
|
+
• accept_ownership
|
|
744
|
+
• authorizer
|
|
745
|
+
• extend_instance_ttl
|
|
746
|
+
• freeze
|
|
747
|
+
• freeze_ttl_configs
|
|
748
|
+
• get_fee
|
|
749
|
+
• is_frozen
|
|
750
|
+
• is_ttl_configs_frozen
|
|
751
|
+
• migrate
|
|
752
|
+
• owner
|
|
753
|
+
• pending_owner
|
|
754
|
+
• propose_ownership_transfer
|
|
755
|
+
• renounce_ownership
|
|
756
|
+
• set_ttl_configs
|
|
757
|
+
• transfer_ownership
|
|
758
|
+
• ttl_configs
|
|
759
|
+
• upgrade
|
|
760
|
+
• version
|
|
787
761
|
✅ Build Complete
|
|
788
|
-
|
|
762
|
+
|
|
763
|
+
ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/workers/executor-helper/Cargo.toml --crate-type=cdylib --target=wasm32v1-none --release
|
|
789
764
|
Compiling fee-lib-interfaces v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/fee-lib-interfaces)
|
|
790
765
|
Compiling worker v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/worker)
|
|
791
766
|
Compiling executor v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor)
|
|
792
767
|
Compiling executor-helper v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor-helper)
|
|
793
|
-
Finished `release` profile [optimized] target(s) in
|
|
794
|
-
ℹ️
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
768
|
+
Finished `release` profile [optimized] target(s) in 1.01s
|
|
769
|
+
ℹ️ Build Summary:
|
|
770
|
+
Wasm File: target/wasm32v1-none/release/executor_helper.wasm (23493 bytes)
|
|
771
|
+
Wasm Hash: 721ef1dd97bb02a775a0ef4d1ce97b24f4625e3fd0c91181d77c483b68195503
|
|
772
|
+
Wasm Size: 23493 bytes
|
|
773
|
+
Exported Functions: 6 found
|
|
774
|
+
• compose
|
|
775
|
+
• execute
|
|
776
|
+
• lz_compose_alert
|
|
777
|
+
• lz_receive_alert
|
|
778
|
+
• native_drop
|
|
779
|
+
• native_drop_and_execute
|
|
804
780
|
✅ Build Complete
|
|
805
|
-
|
|
806
|
-
|
|
781
|
+
|
|
782
|
+
ℹ️ 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
|
|
807
783
|
Compiling price-feed v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/price-feed)
|
|
808
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
809
|
-
ℹ️
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
784
|
+
Finished `release` profile [optimized] target(s) in 0.61s
|
|
785
|
+
ℹ️ Build Summary:
|
|
786
|
+
Wasm File: target/wasm32v1-none/release/price_feed.wasm (33995 bytes)
|
|
787
|
+
Wasm Hash: dcf39d3b282fd9dc1b9b499e6d4a1833ad63ebcbaeac3611bb465f9e05abba24
|
|
788
|
+
Wasm Size: 33995 bytes
|
|
789
|
+
Exported Functions: 32 found
|
|
790
|
+
• __constructor
|
|
791
|
+
• accept_ownership
|
|
792
|
+
• arbitrum_compression_percent
|
|
793
|
+
• arbitrum_price_ext
|
|
794
|
+
• authorizer
|
|
795
|
+
• eid_to_model_type
|
|
796
|
+
• estimate_fee_by_eid
|
|
797
|
+
• extend_instance_ttl
|
|
798
|
+
• freeze
|
|
799
|
+
• freeze_ttl_configs
|
|
800
|
+
• get_price
|
|
801
|
+
• get_price_ratio_denominator
|
|
802
|
+
• is_frozen
|
|
803
|
+
• is_price_updater
|
|
804
|
+
• is_ttl_configs_frozen
|
|
805
|
+
• migrate
|
|
806
|
+
• native_token_price_usd
|
|
807
|
+
• owner
|
|
808
|
+
• pending_owner
|
|
809
|
+
• propose_ownership_transfer
|
|
810
|
+
• renounce_ownership
|
|
811
|
+
• set_arbitrum_compression_percent
|
|
812
|
+
• set_eid_to_model_type
|
|
813
|
+
• set_native_token_price_usd
|
|
814
|
+
• set_price
|
|
815
|
+
• set_price_for_arbitrum
|
|
816
|
+
• set_price_ratio_denominator
|
|
817
|
+
• set_price_updater
|
|
818
|
+
• set_ttl_configs
|
|
819
|
+
• transfer_ownership
|
|
820
|
+
• ttl_configs
|
|
821
|
+
• upgrade
|
|
845
822
|
✅ Build Complete
|
|
846
|
-
|
|
823
|
+
|
|
824
|
+
ℹ️ 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
|
|
847
825
|
Compiling oft-core v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft-core)
|
|
848
826
|
Compiling oft v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft)
|
|
849
|
-
Finished `release` profile [optimized] target(s) in 1.
|
|
850
|
-
ℹ️
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
827
|
+
Finished `release` profile [optimized] target(s) in 1.17s
|
|
828
|
+
ℹ️ Build Summary:
|
|
829
|
+
Wasm File: target/wasm32v1-none/release/oft.wasm (61037 bytes)
|
|
830
|
+
Wasm Hash: 6ded194b3d2189d1ab1b2bb0c877f3f758363aff666fbff8a67c25b545bad453
|
|
831
|
+
Wasm Size: 61037 bytes
|
|
832
|
+
Exported Functions: 49 found
|
|
833
|
+
• __constructor
|
|
834
|
+
• accept_ownership
|
|
835
|
+
• allow_initialize_path
|
|
836
|
+
• approval_required
|
|
837
|
+
• authorizer
|
|
838
|
+
• combine_options
|
|
839
|
+
• decimal_conversion_rate
|
|
840
|
+
• default_fee_bps
|
|
841
|
+
• effective_fee_bps
|
|
842
|
+
• endpoint
|
|
843
|
+
• enforced_options
|
|
844
|
+
• extend_instance_ttl
|
|
845
|
+
• fee_bps
|
|
846
|
+
• fee_deposit_address
|
|
847
|
+
• freeze_ttl_configs
|
|
848
|
+
• is_compose_msg_sender
|
|
849
|
+
• is_paused
|
|
850
|
+
• is_ttl_configs_frozen
|
|
851
|
+
• lz_receive
|
|
852
|
+
• msg_inspector
|
|
853
|
+
• next_nonce
|
|
854
|
+
• oapp_version
|
|
855
|
+
• oft_type
|
|
856
|
+
• oft_version
|
|
857
|
+
• owner
|
|
858
|
+
• peer
|
|
859
|
+
• pending_owner
|
|
860
|
+
• propose_ownership_transfer
|
|
861
|
+
• quote_oft
|
|
862
|
+
• quote_send
|
|
863
|
+
• rate_limit_capacity
|
|
864
|
+
• rate_limit_config
|
|
865
|
+
• rate_limit_in_flight
|
|
866
|
+
• renounce_ownership
|
|
867
|
+
• send
|
|
868
|
+
• set_default_fee_bps
|
|
869
|
+
• set_delegate
|
|
870
|
+
• set_enforced_options
|
|
871
|
+
• set_fee_bps
|
|
872
|
+
• set_fee_deposit_address
|
|
873
|
+
• set_msg_inspector
|
|
874
|
+
• set_paused
|
|
875
|
+
• set_peer
|
|
876
|
+
• set_rate_limit
|
|
877
|
+
• set_ttl_configs
|
|
878
|
+
• shared_decimals
|
|
879
|
+
• token
|
|
880
|
+
• transfer_ownership
|
|
881
|
+
• ttl_configs
|
|
904
882
|
✅ Build Complete
|
|
905
|
-
|
|
883
|
+
|
|
884
|
+
⏱️ stellar contract build --features sandbox: 1:04.333 (m:ss.mmm)
|
|
906
885
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
|
|
907
886
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-config
|
|
908
887
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup
|
|
@@ -913,81 +892,83 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
913
892
|
|
|
914
893
|
WARN Issue while reading "/home/runner/work/monorepo-internal/monorepo-internal/.npmrc". Failed to replace env in config: ${NPM_TOKEN}
|
|
915
894
|
📦 Using 4 default cache volume(s) for stellar
|
|
916
|
-
✅ stellar-
|
|
917
|
-
🔧 stellar version:
|
|
918
|
-
$ docker image inspect --format {{.Id}} 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:
|
|
919
|
-
sha256:
|
|
920
|
-
✅ Using cached Docker image: 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:
|
|
895
|
+
✅ stellar-25.0.0 (Latest stable release)
|
|
896
|
+
🔧 stellar version: 25.0.0
|
|
897
|
+
$ docker image inspect --format {{.Id}} 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.0.0
|
|
898
|
+
sha256:3b1e577a4303ad4a4df7bc898df7b4c89fa8e14faab5e73fc574869af49f9b3b
|
|
899
|
+
✅ Using cached Docker image: 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.0.0
|
|
921
900
|
👤 Running container as UID:GID 1001:1001
|
|
922
901
|
🌍 Using 5 default environment variable(s) for stellar
|
|
923
902
|
📜 Executing custom script: cargo run -p ts-bindings-gen
|
|
924
903
|
🔒 Acquired lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup
|
|
925
904
|
🔒 Acquired lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-config
|
|
926
905
|
🔒 Acquired lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
|
|
927
|
-
$ 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:
|
|
906
|
+
$ 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'
|
|
928
907
|
Downloading crates ...
|
|
929
|
-
Downloaded glob v0.3.3
|
|
930
|
-
Downloaded include_dir_macros v0.7.4
|
|
931
|
-
Downloaded block-buffer v0.9.0
|
|
932
|
-
Downloaded include_dir v0.7.4
|
|
933
|
-
Downloaded anyhow v1.0.100
|
|
934
|
-
Downloaded opaque-debug v0.3.1
|
|
935
|
-
Downloaded heck v0.4.1
|
|
936
908
|
Downloaded digest v0.9.0
|
|
937
909
|
Downloaded sha2 v0.9.9
|
|
910
|
+
Downloaded include_dir_macros v0.7.4
|
|
911
|
+
Downloaded opaque-debug v0.3.1
|
|
912
|
+
Downloaded soroban-spec v23.4.0
|
|
913
|
+
Downloaded include_dir v0.7.4
|
|
938
914
|
Downloaded soroban-spec-typescript v23.1.4
|
|
939
915
|
Downloaded base64 v0.21.7
|
|
916
|
+
Downloaded anyhow v1.0.100
|
|
917
|
+
Downloaded heck v0.4.1
|
|
918
|
+
Downloaded glob v0.3.3
|
|
919
|
+
Downloaded block-buffer v0.9.0
|
|
920
|
+
Downloaded stellar-xdr v23.0.0
|
|
940
921
|
Compiling proc-macro2 v1.0.103
|
|
941
|
-
Compiling unicode-ident v1.0.22
|
|
942
922
|
Compiling quote v1.0.41
|
|
923
|
+
Compiling unicode-ident v1.0.22
|
|
943
924
|
Compiling serde_json v1.0.145
|
|
944
|
-
Compiling typenum v1.19.0
|
|
945
|
-
Compiling version_check v0.9.5
|
|
946
925
|
Compiling serde_core v1.0.228
|
|
926
|
+
Compiling version_check v0.9.5
|
|
927
|
+
Compiling typenum v1.19.0
|
|
947
928
|
Compiling serde v1.0.228
|
|
929
|
+
Compiling ryu v1.0.20
|
|
948
930
|
Compiling memchr v2.7.6
|
|
949
931
|
Compiling itoa v1.0.15
|
|
950
|
-
Compiling ryu v1.0.20
|
|
951
|
-
Compiling strsim v0.11.1
|
|
952
932
|
Compiling ident_case v1.0.1
|
|
953
933
|
Compiling fnv v1.0.7
|
|
934
|
+
Compiling strsim v0.11.1
|
|
954
935
|
Compiling schemars v0.8.22
|
|
955
|
-
Compiling dyn-clone v1.0.20
|
|
956
936
|
Compiling cfg-if v1.0.4
|
|
937
|
+
Compiling dyn-clone v1.0.20
|
|
957
938
|
Compiling cpufeatures v0.2.17
|
|
939
|
+
Compiling hashbrown v0.16.0
|
|
940
|
+
Compiling data-encoding v2.9.0
|
|
958
941
|
Compiling equivalent v1.0.2
|
|
959
942
|
Compiling thiserror v1.0.69
|
|
960
|
-
Compiling
|
|
961
|
-
Compiling hashbrown v0.16.0
|
|
962
|
-
Compiling escape-bytes v0.1.1
|
|
963
|
-
Compiling ethnum v1.5.2
|
|
943
|
+
Compiling semver v1.0.27
|
|
964
944
|
Compiling base64 v0.22.1
|
|
965
945
|
Compiling generic-array v0.14.9
|
|
966
946
|
Compiling prettyplease v0.2.37
|
|
967
|
-
Compiling
|
|
947
|
+
Compiling escape-bytes v0.1.1
|
|
948
|
+
Compiling ethnum v1.5.2
|
|
968
949
|
Compiling anyhow v1.0.100
|
|
950
|
+
Compiling either v1.15.0
|
|
969
951
|
Compiling glob v0.3.3
|
|
970
952
|
Compiling opaque-debug v0.3.1
|
|
971
|
-
Compiling
|
|
953
|
+
Compiling itertools v0.10.5
|
|
972
954
|
Compiling heck v0.4.1
|
|
973
955
|
Compiling base64 v0.21.7
|
|
974
956
|
Compiling indexmap v2.12.0
|
|
975
|
-
Compiling itertools v0.10.5
|
|
976
957
|
Compiling syn v2.0.108
|
|
977
|
-
Compiling block-buffer v0.10.4
|
|
978
958
|
Compiling crypto-common v0.1.6
|
|
979
|
-
Compiling block-buffer v0.
|
|
959
|
+
Compiling block-buffer v0.10.4
|
|
980
960
|
Compiling digest v0.9.0
|
|
981
|
-
Compiling
|
|
961
|
+
Compiling block-buffer v0.9.0
|
|
982
962
|
Compiling wasmparser v0.116.1
|
|
983
963
|
Compiling digest v0.10.7
|
|
984
|
-
Compiling sha2 v0.
|
|
964
|
+
Compiling sha2 v0.9.9
|
|
985
965
|
Compiling include_dir_macros v0.7.4
|
|
966
|
+
Compiling sha2 v0.10.9
|
|
986
967
|
Compiling include_dir v0.7.4
|
|
987
968
|
Compiling darling_core v0.21.3
|
|
988
969
|
Compiling serde_derive v1.0.228
|
|
989
|
-
Compiling thiserror-impl v1.0.69
|
|
990
970
|
Compiling cfg_eval v0.1.2
|
|
971
|
+
Compiling thiserror-impl v1.0.69
|
|
991
972
|
Compiling crate-git-revision v0.0.6
|
|
992
973
|
Compiling darling_macro v0.21.3
|
|
993
974
|
Compiling stellar-strkey v0.0.13
|
|
@@ -999,98 +980,98 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
999
980
|
Compiling soroban-spec v23.4.0
|
|
1000
981
|
Compiling soroban-spec-typescript v23.1.4
|
|
1001
982
|
Compiling ts-bindings-gen v0.0.1 (/workspace/contracts/protocol/stellar/tools/ts-bindings-gen)
|
|
1002
|
-
Finished `dev` profile [unoptimized + debuginfo] target(s) in 43.
|
|
983
|
+
Finished `dev` profile [unoptimized + debuginfo] target(s) in 43.03s
|
|
1003
984
|
Running `target/debug/ts-bindings-gen`
|
|
1004
985
|
🚀 Generating TypeScript bindings for Stellar contracts...
|
|
1005
986
|
|
|
1006
987
|
📦 Processing contract: endpoint_v2
|
|
1007
988
|
WASM: target/wasm32v1-none/release/endpoint_v2.wasm
|
|
1008
989
|
Output: sdk/src/generated/endpoint.ts
|
|
1009
|
-
WASM size:
|
|
990
|
+
WASM size: 59070 bytes (57.69 KB)
|
|
1010
991
|
Generating bindings...
|
|
1011
992
|
✓ Generated: sdk/src/generated/endpoint.ts
|
|
1012
993
|
📦 Processing contract: simple_message_lib
|
|
1013
994
|
WASM: target/wasm32v1-none/release/simple_message_lib.wasm
|
|
1014
995
|
Output: sdk/src/generated/sml.ts
|
|
1015
|
-
WASM size:
|
|
996
|
+
WASM size: 29284 bytes (28.60 KB)
|
|
1016
997
|
Generating bindings...
|
|
1017
998
|
✓ Generated: sdk/src/generated/sml.ts
|
|
1018
999
|
📦 Processing contract: blocked_message_lib
|
|
1019
1000
|
WASM: target/wasm32v1-none/release/blocked_message_lib.wasm
|
|
1020
1001
|
Output: sdk/src/generated/bml.ts
|
|
1021
|
-
WASM size:
|
|
1002
|
+
WASM size: 13810 bytes (13.49 KB)
|
|
1022
1003
|
Generating bindings...
|
|
1023
1004
|
✓ Generated: sdk/src/generated/bml.ts
|
|
1024
1005
|
📦 Processing contract: uln302
|
|
1025
1006
|
WASM: target/wasm32v1-none/release/uln302.wasm
|
|
1026
1007
|
Output: sdk/src/generated/uln302.ts
|
|
1027
|
-
WASM size:
|
|
1008
|
+
WASM size: 57445 bytes (56.10 KB)
|
|
1028
1009
|
Generating bindings...
|
|
1029
1010
|
✓ Generated: sdk/src/generated/uln302.ts
|
|
1030
1011
|
📦 Processing contract: treasury
|
|
1031
1012
|
WASM: target/wasm32v1-none/release/treasury.wasm
|
|
1032
1013
|
Output: sdk/src/generated/treasury.ts
|
|
1033
|
-
WASM size:
|
|
1014
|
+
WASM size: 27461 bytes (26.82 KB)
|
|
1034
1015
|
Generating bindings...
|
|
1035
1016
|
✓ Generated: sdk/src/generated/treasury.ts
|
|
1036
1017
|
📦 Processing contract: upgrader
|
|
1037
1018
|
WASM: target/wasm32v1-none/release/upgrader.wasm
|
|
1038
1019
|
Output: sdk/src/generated/upgrader.ts
|
|
1039
|
-
WASM size:
|
|
1020
|
+
WASM size: 5053 bytes (4.93 KB)
|
|
1040
1021
|
Generating bindings...
|
|
1041
1022
|
✓ Generated: sdk/src/generated/upgrader.ts
|
|
1042
1023
|
📦 Processing contract: dvn
|
|
1043
1024
|
WASM: target/wasm32v1-none/release/dvn.wasm
|
|
1044
1025
|
Output: sdk/src/generated/dvn.ts
|
|
1045
|
-
WASM size:
|
|
1026
|
+
WASM size: 57505 bytes (56.16 KB)
|
|
1046
1027
|
Generating bindings...
|
|
1047
1028
|
✓ Generated: sdk/src/generated/dvn.ts
|
|
1048
1029
|
📦 Processing contract: dvn_fee_lib
|
|
1049
1030
|
WASM: target/wasm32v1-none/release/dvn_fee_lib.wasm
|
|
1050
1031
|
Output: sdk/src/generated/dvn_fee_lib.ts
|
|
1051
|
-
WASM size:
|
|
1032
|
+
WASM size: 22288 bytes (21.77 KB)
|
|
1052
1033
|
Generating bindings...
|
|
1053
1034
|
✓ Generated: sdk/src/generated/dvn_fee_lib.ts
|
|
1054
1035
|
📦 Processing contract: executor
|
|
1055
1036
|
WASM: target/wasm32v1-none/release/executor.wasm
|
|
1056
1037
|
Output: sdk/src/generated/executor.ts
|
|
1057
|
-
WASM size:
|
|
1038
|
+
WASM size: 57119 bytes (55.78 KB)
|
|
1058
1039
|
Generating bindings...
|
|
1059
1040
|
✓ Generated: sdk/src/generated/executor.ts
|
|
1060
1041
|
📦 Processing contract: executor_fee_lib
|
|
1061
1042
|
WASM: target/wasm32v1-none/release/executor_fee_lib.wasm
|
|
1062
1043
|
Output: sdk/src/generated/executor_fee_lib.ts
|
|
1063
|
-
WASM size:
|
|
1044
|
+
WASM size: 33966 bytes (33.17 KB)
|
|
1064
1045
|
Generating bindings...
|
|
1065
1046
|
✓ Generated: sdk/src/generated/executor_fee_lib.ts
|
|
1066
1047
|
📦 Processing contract: executor_helper
|
|
1067
1048
|
WASM: target/wasm32v1-none/release/executor_helper.wasm
|
|
1068
1049
|
Output: sdk/src/generated/executor_helper.ts
|
|
1069
|
-
WASM size:
|
|
1050
|
+
WASM size: 23493 bytes (22.94 KB)
|
|
1070
1051
|
Generating bindings...
|
|
1071
1052
|
✓ Generated: sdk/src/generated/executor_helper.ts
|
|
1072
1053
|
📦 Processing contract: price_feed
|
|
1073
1054
|
WASM: target/wasm32v1-none/release/price_feed.wasm
|
|
1074
1055
|
Output: sdk/src/generated/price_feed.ts
|
|
1075
|
-
WASM size:
|
|
1056
|
+
WASM size: 33995 bytes (33.20 KB)
|
|
1076
1057
|
Generating bindings...
|
|
1077
1058
|
✓ Generated: sdk/src/generated/price_feed.ts
|
|
1078
1059
|
📦 Processing contract: counter
|
|
1079
1060
|
WASM: target/wasm32v1-none/release/counter.wasm
|
|
1080
1061
|
Output: sdk/src/generated/counter.ts
|
|
1081
|
-
WASM size:
|
|
1062
|
+
WASM size: 40336 bytes (39.39 KB)
|
|
1082
1063
|
Generating bindings...
|
|
1083
1064
|
✓ Generated: sdk/src/generated/counter.ts
|
|
1084
1065
|
📦 Processing contract: oft
|
|
1085
1066
|
WASM: target/wasm32v1-none/release/oft.wasm
|
|
1086
1067
|
Output: sdk/src/generated/oft.ts
|
|
1087
|
-
WASM size:
|
|
1068
|
+
WASM size: 61037 bytes (59.61 KB)
|
|
1088
1069
|
Generating bindings...
|
|
1089
1070
|
✓ Generated: sdk/src/generated/oft.ts
|
|
1090
1071
|
📦 Processing contract: layerzero_views
|
|
1091
1072
|
WASM: target/wasm32v1-none/release/layerzero_views.wasm
|
|
1092
1073
|
Output: sdk/src/generated/layerzero_view.ts
|
|
1093
|
-
WASM size:
|
|
1074
|
+
WASM size: 34116 bytes (33.32 KB)
|
|
1094
1075
|
Generating bindings...
|
|
1095
1076
|
✓ Generated: sdk/src/generated/layerzero_view.ts
|
|
1096
1077
|
|
|
@@ -1113,7 +1094,7 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
1113
1094
|
- counter.ts
|
|
1114
1095
|
- oft.ts
|
|
1115
1096
|
- layerzero_view.ts
|
|
1116
|
-
⏱️ bash -c cargo run -p ts-bindings-gen: 43.
|
|
1097
|
+
⏱️ bash -c cargo run -p ts-bindings-gen: 43.429s
|
|
1117
1098
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
|
|
1118
1099
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-config
|
|
1119
1100
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup
|