@layerzerolabs/protocol-stellar-v2 0.2.15 → 0.2.18
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 +350 -309
- package/.turbo/turbo-lint.log +146 -108
- package/.turbo/turbo-test.log +1423 -1238
- package/Cargo.lock +12 -0
- package/Cargo.toml +3 -0
- package/contracts/ERROR_SPEC.md +44 -0
- package/contracts/common-macros/src/auth.rs +113 -0
- package/contracts/common-macros/src/contract_ttl.rs +84 -0
- package/contracts/common-macros/src/lib.rs +181 -30
- package/contracts/common-macros/src/lz_contract.rs +83 -0
- package/contracts/common-macros/src/tests/{ownable.rs → auth.rs} +48 -15
- package/contracts/common-macros/src/tests/contract_ttl.rs +662 -0
- package/contracts/common-macros/src/tests/mod.rs +2 -2
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__auth__snapshot_generated_multisig_code.snap +20 -0
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__auth__snapshot_generated_ownable_code.snap +24 -0
- package/contracts/common-macros/src/tests/snapshots/{common_macros__tests__ownable__snapshot_only_owner_preserves_function_signature.snap → common_macros__tests__auth__snapshot_only_auth_preserves_function_signature.snap} +4 -4
- package/contracts/common-macros/src/tests/snapshots/{common_macros__tests__contract_impl__snapshot_generated_contract_impl_code.snap → common_macros__tests__contract_ttl__snapshot_generated_contractimpl_code.snap} +3 -3
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__contract_ttl__snapshot_generated_contracttrait_code.snap +69 -0
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__ttl_configurable__snapshot_generated_ttl_configurable_code.snap +7 -21
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__upgradeable__snapshot_generated_upgradeable_code.snap +2 -2
- package/contracts/common-macros/src/ttl_configurable.rs +19 -34
- package/contracts/common-macros/src/ttl_extendable.rs +36 -0
- package/contracts/common-macros/src/upgradeable.rs +5 -5
- package/contracts/common-macros/src/utils.rs +9 -0
- package/contracts/endpoint-v2/src/constants.rs +4 -4
- package/contracts/endpoint-v2/src/endpoint_v2.rs +38 -40
- package/contracts/endpoint-v2/src/errors.rs +4 -3
- package/contracts/endpoint-v2/src/events.rs +1 -1
- package/contracts/endpoint-v2/src/message_lib_manager.rs +18 -5
- package/contracts/endpoint-v2/src/messaging_channel.rs +11 -1
- package/contracts/endpoint-v2/src/messaging_composer.rs +11 -1
- package/contracts/endpoint-v2/src/storage.rs +1 -1
- package/contracts/endpoint-v2/src/tests/endpoint_v2/pay_messaging_fees.rs +3 -3
- package/contracts/endpoint-v2/src/tests/endpoint_v2/quote.rs +1 -1
- package/contracts/endpoint-v2/src/tests/endpoint_v2/require_oapp_auth.rs +2 -2
- package/contracts/endpoint-v2/src/tests/endpoint_v2/send.rs +3 -3
- package/contracts/endpoint-v2/src/tests/endpoint_v2/set_zro.rs +4 -4
- package/contracts/endpoint-v2/src/tests/message_lib_manager/require_receive_lib_for_eid.rs +3 -3
- package/contracts/endpoint-v2/src/tests/message_lib_manager/require_registered.rs +1 -1
- package/contracts/endpoint-v2/src/tests/message_lib_manager/require_send_lib_for_eid.rs +3 -3
- package/contracts/endpoint-v2/src/tests/message_lib_manager/require_supported_eid.rs +1 -1
- package/contracts/endpoint-v2/src/tests/messaging_channel/clear_payload.rs +4 -4
- package/contracts/endpoint-v2/src/tests/messaging_channel/inbound.rs +1 -1
- package/contracts/layerzero-views/src/layerzero_view.rs +3 -6
- package/contracts/macro-integration-tests/tests/runtime/ownable/mod.rs +2 -2
- package/contracts/macro-integration-tests/tests/runtime/ownable/{only_owner_guard.rs → only_auth_guard.rs} +1 -1
- package/contracts/macro-integration-tests/tests/runtime/ttl_configurable/configuration.rs +1 -1
- package/contracts/macro-integration-tests/tests/runtime/ttl_configurable/freeze.rs +1 -1
- package/contracts/macro-integration-tests/tests/runtime/ttl_configurable/mod.rs +0 -1
- package/contracts/macro-integration-tests/tests/ui/ownable/fail/{only_owner_missing_env.rs → only_auth_missing_env.rs} +3 -3
- package/contracts/macro-integration-tests/tests/ui/ownable/fail/{only_owner_missing_env.stderr → only_auth_missing_env.stderr} +4 -4
- package/contracts/macro-integration-tests/tests/ui/ownable/pass/namespacing_and_imports.rs +2 -3
- package/contracts/macro-integration-tests/tests/ui/ownable/pass/{only_owner_env_param_variants.rs → only_auth_env_param_variants.rs} +9 -9
- package/contracts/macro-integration-tests/tests/ui/ttl_configurable/pass/minimal_contract.rs +6 -6
- package/contracts/message-libs/message-lib-common/src/errors.rs +7 -2
- package/contracts/message-libs/message-lib-common/src/tests/packet_codec_v1/decode_packet_header.rs +3 -3
- package/contracts/message-libs/message-lib-common/src/tests/worker_options/append_lz_receive_option.rs +1 -2
- package/contracts/message-libs/message-lib-common/src/tests/worker_options/append_native_drop_option.rs +1 -2
- package/contracts/message-libs/message-lib-common/src/tests/worker_options/convert_legacy_options.rs +9 -9
- package/contracts/message-libs/message-lib-common/src/tests/worker_options/extract_type_3_options.rs +1 -1
- package/contracts/message-libs/message-lib-common/src/tests/worker_options/left_pad_to_bytes32.rs +1 -1
- package/contracts/message-libs/message-lib-common/src/tests/worker_options/split_worker_options.rs +2 -2
- package/contracts/message-libs/simple-message-lib/src/simple_message_lib.rs +7 -9
- package/contracts/message-libs/treasury/src/errors.rs +2 -2
- package/contracts/message-libs/treasury/src/events.rs +1 -1
- package/contracts/message-libs/treasury/src/interfaces/zro_fee_lib.rs +2 -2
- package/contracts/message-libs/treasury/src/storage.rs +1 -1
- package/contracts/message-libs/treasury/src/tests/treasury_tests.rs +1 -1
- package/contracts/message-libs/treasury/src/treasury.rs +14 -16
- package/contracts/message-libs/uln-302/src/receive_uln.rs +13 -2
- package/contracts/message-libs/uln-302/src/send_uln.rs +23 -3
- package/contracts/message-libs/uln-302/src/uln302.rs +6 -24
- package/contracts/oapps/counter/Cargo.toml +14 -1
- package/contracts/oapps/counter/integration_tests/mod.rs +4 -1
- package/contracts/oapps/counter/integration_tests/{setup.rs → setup_sml.rs} +48 -80
- package/contracts/oapps/counter/integration_tests/setup_uln.rs +997 -0
- package/contracts/oapps/counter/integration_tests/signing.rs +62 -0
- package/contracts/oapps/counter/integration_tests/test_with_sml.rs +24 -55
- package/contracts/oapps/counter/integration_tests/test_with_uln.rs +314 -0
- package/contracts/oapps/counter/integration_tests/utils.rs +196 -53
- package/contracts/oapps/counter/src/counter.rs +67 -43
- package/contracts/oapps/counter/src/tests/mod.rs +0 -13
- package/contracts/oapps/counter/src/tests/test_counter.rs +5 -7
- package/contracts/oapps/oapp/src/errors.rs +5 -1
- package/contracts/oapps/oapp/src/macro_tests/test_macros.rs +93 -78
- package/contracts/oapps/oapp/src/oapp_core.rs +36 -21
- package/contracts/oapps/oapp/src/oapp_options_type3.rs +48 -12
- package/contracts/oapps/oapp/src/oapp_receiver.rs +106 -41
- package/contracts/oapps/oapp/src/oapp_sender.rs +26 -34
- package/contracts/oapps/oapp/src/tests/test_oapp_core.rs +9 -8
- package/contracts/oapps/oapp/src/tests/test_oapp_options_type3.rs +25 -17
- package/contracts/oapps/oapp/src/tests/test_oapp_receiver.rs +7 -7
- package/contracts/oapps/oapp/src/tests/test_oapp_sender.rs +14 -15
- package/contracts/oapps/oapp-macros/src/generators.rs +128 -0
- package/contracts/oapps/oapp-macros/src/lib.rs +113 -56
- package/contracts/oapps/oft/integration-tests/setup.rs +25 -7
- package/contracts/oapps/oft/src/errors.rs +6 -1
- package/contracts/oapps/oft/src/extensions/oft_fee.rs +8 -8
- package/contracts/oapps/oft/src/extensions/pausable.rs +4 -4
- package/contracts/oapps/oft/src/extensions/rate_limiter.rs +5 -5
- package/contracts/oapps/oft/src/lib.rs +4 -2
- package/contracts/oapps/oft/src/oft.rs +24 -64
- package/contracts/oapps/oft/src/oft_impl.rs +201 -0
- package/contracts/oapps/oft/src/oft_types/lock_unlock.rs +1 -3
- package/contracts/oapps/oft/src/oft_types/mint_burn.rs +1 -4
- package/contracts/oapps/oft/src/storage.rs +2 -0
- package/contracts/oapps/oft/src/tests/extensions/setup.rs +36 -22
- package/contracts/oapps/oft/src/tests/extensions/test_oft_fee.rs +5 -3
- package/contracts/oapps/oft/src/tests/extensions/test_pausable.rs +5 -3
- package/contracts/oapps/oft/src/tests/extensions/test_rate_limiter.rs +5 -3
- package/contracts/oapps/oft/src/tests/test_decimals.rs +2 -2
- package/contracts/oapps/oft/src/tests/test_oft_msg_codec.rs +1 -2
- package/contracts/oapps/oft/src/tests/test_utils.rs +45 -23
- package/contracts/oapps/oft/src/types.rs +20 -0
- package/contracts/oapps/oft-std/integration-tests/setup.rs +4 -2
- package/contracts/oapps/oft-std/src/oft.rs +24 -6
- package/contracts/upgrader/src/lib.rs +4 -4
- package/contracts/utils/src/auth.rs +44 -0
- package/contracts/utils/src/errors.rs +27 -5
- package/contracts/utils/src/lib.rs +3 -0
- package/contracts/utils/src/multisig.rs +211 -0
- package/contracts/utils/src/ownable.rs +12 -10
- package/contracts/utils/src/tests/buffer_reader.rs +6 -6
- package/contracts/utils/src/tests/buffer_writer.rs +6 -6
- package/contracts/utils/src/tests/bytes_ext.rs +2 -4
- package/contracts/utils/src/tests/mod.rs +1 -0
- package/contracts/utils/src/tests/multisig.rs +731 -0
- package/contracts/utils/src/tests/option_ext.rs +2 -5
- package/contracts/utils/src/tests/ownable.rs +16 -5
- package/contracts/utils/src/tests/ttl_configurable.rs +27 -16
- package/contracts/utils/src/tests/upgradeable.rs +4 -2
- package/contracts/utils/src/ttl_configurable.rs +23 -8
- package/contracts/utils/src/ttl_extendable.rs +27 -0
- package/contracts/utils/src/upgradeable.rs +2 -0
- package/contracts/workers/dvn/Cargo.toml +1 -1
- package/contracts/workers/dvn/src/auth.rs +7 -7
- package/contracts/workers/dvn/src/dvn.rs +10 -38
- package/contracts/workers/dvn/src/errors.rs +0 -7
- package/contracts/workers/dvn/src/events.rs +1 -14
- package/contracts/workers/dvn/src/interfaces/dvn.rs +2 -2
- package/contracts/workers/dvn/src/interfaces/mod.rs +0 -2
- package/contracts/workers/dvn/src/storage.rs +3 -13
- package/contracts/workers/dvn/src/tests/auth.rs +4 -4
- package/contracts/workers/dvn/src/tests/dvn.rs +1 -2
- package/contracts/workers/dvn/src/tests/multisig/set_signer.rs +7 -8
- package/contracts/workers/dvn/src/tests/multisig/set_threshold.rs +11 -8
- package/contracts/workers/dvn/src/tests/multisig/verify_signatures.rs +11 -12
- package/contracts/workers/dvn/src/tests/setup.rs +5 -5
- package/contracts/workers/dvn-fee-lib/Cargo.toml +1 -1
- package/contracts/workers/dvn-fee-lib/src/dvn_fee_lib.rs +3 -6
- package/contracts/workers/executor/src/auth.rs +80 -16
- package/contracts/workers/executor/src/executor.rs +5 -31
- package/contracts/workers/executor/src/storage.rs +2 -9
- package/contracts/workers/executor-fee-lib/Cargo.toml +1 -1
- package/contracts/workers/executor-fee-lib/src/executor_fee_lib.rs +3 -6
- package/contracts/workers/executor-helper/Cargo.toml +1 -1
- package/contracts/workers/executor-helper/src/executor_helper.rs +53 -73
- package/contracts/workers/price-feed/Cargo.toml +1 -1
- package/contracts/workers/price-feed/src/price_feed.rs +7 -10
- package/contracts/workers/worker/src/errors.rs +4 -0
- package/contracts/workers/worker/src/tests/worker.rs +7 -6
- package/contracts/workers/worker/src/worker.rs +20 -16
- package/package.json +8 -5
- package/sdk/.turbo/turbo-build.log +1 -0
- package/sdk/.turbo/turbo-test.log +1009 -0
- package/sdk/dist/generated/bml.d.ts +65 -8
- package/sdk/dist/generated/bml.js +70 -34
- package/sdk/dist/generated/counter.d.ts +167 -42
- package/sdk/dist/generated/counter.js +86 -45
- package/sdk/dist/generated/dvn.d.ts +282 -229
- package/sdk/dist/generated/dvn.js +119 -81
- package/sdk/dist/generated/dvn_fee_lib.d.ts +142 -67
- package/sdk/dist/generated/dvn_fee_lib.js +64 -24
- package/sdk/dist/generated/endpoint.d.ts +97 -22
- package/sdk/dist/generated/endpoint.js +75 -37
- package/sdk/dist/generated/executor.d.ts +117 -85
- package/sdk/dist/generated/executor.js +102 -59
- package/sdk/dist/generated/executor_fee_lib.d.ts +162 -78
- package/sdk/dist/generated/executor_fee_lib.js +104 -57
- package/sdk/dist/generated/executor_helper.d.ts +133 -21
- package/sdk/dist/generated/executor_helper.js +99 -50
- package/sdk/dist/generated/oft_std.d.ts +233 -55
- package/sdk/dist/generated/oft_std.js +99 -54
- package/sdk/dist/generated/price_feed.d.ts +142 -67
- package/sdk/dist/generated/price_feed.js +64 -24
- package/sdk/dist/generated/sml.d.ts +113 -32
- package/sdk/dist/generated/sml.js +93 -49
- package/sdk/dist/generated/treasury.d.ts +896 -0
- package/sdk/dist/generated/treasury.js +219 -0
- package/sdk/dist/generated/uln302.d.ts +113 -32
- package/sdk/dist/generated/uln302.js +93 -49
- package/sdk/dist/generated/upgrader.d.ts +2 -2
- package/sdk/dist/generated/upgrader.js +1 -1
- package/sdk/dist/index.d.ts +2 -0
- package/sdk/dist/index.js +3 -0
- package/sdk/dist/wasm/blocked-message-lib.d.ts +1 -0
- package/sdk/dist/wasm/blocked-message-lib.js +2 -0
- package/sdk/dist/wasm/counter.d.ts +1 -0
- package/sdk/dist/wasm/counter.js +2 -0
- package/sdk/dist/wasm/dvn-fee-lib.d.ts +1 -0
- package/sdk/dist/wasm/dvn-fee-lib.js +2 -0
- package/sdk/dist/wasm/dvn.d.ts +1 -0
- package/sdk/dist/wasm/dvn.js +2 -0
- package/sdk/dist/wasm/endpoint-v2.d.ts +1 -0
- package/sdk/dist/wasm/endpoint-v2.js +2 -0
- package/sdk/dist/wasm/executor-fee-lib.d.ts +1 -0
- package/sdk/dist/wasm/executor-fee-lib.js +2 -0
- package/sdk/dist/wasm/executor-helper.d.ts +1 -0
- package/sdk/dist/wasm/executor-helper.js +2 -0
- package/sdk/dist/wasm/executor.d.ts +1 -0
- package/sdk/dist/wasm/executor.js +2 -0
- package/sdk/dist/wasm/layerzero-views.d.ts +1 -0
- package/sdk/dist/wasm/layerzero-views.js +2 -0
- package/sdk/dist/wasm/oft-std.d.ts +1 -0
- package/sdk/dist/wasm/oft-std.js +2 -0
- package/sdk/dist/wasm/price-feed.d.ts +1 -0
- package/sdk/dist/wasm/price-feed.js +2 -0
- package/sdk/dist/wasm/simple-message-lib.d.ts +1 -0
- package/sdk/dist/wasm/simple-message-lib.js +2 -0
- package/sdk/dist/wasm/treasury.d.ts +1 -0
- package/sdk/dist/wasm/treasury.js +2 -0
- package/sdk/dist/wasm/uln302.d.ts +1 -0
- package/sdk/dist/wasm/uln302.js +2 -0
- package/sdk/dist/wasm/upgrader.d.ts +1 -0
- package/sdk/dist/wasm/upgrader.js +2 -0
- package/sdk/dist/wasm.d.ts +15 -0
- package/sdk/dist/wasm.js +15 -0
- package/sdk/package.json +4 -2
- package/sdk/src/index.ts +4 -0
- package/sdk/test/counter-sml.test.ts +376 -0
- package/sdk/test/counter-uln.test.ts +493 -0
- package/sdk/test/{oft.test.ts → oft-sml.test.ts} +185 -310
- package/sdk/test/suites/constants.ts +22 -2
- package/sdk/test/suites/globalSetup.ts +450 -0
- package/sdk/test/suites/localnet.ts +23 -6
- package/sdk/test/upgrader.test.ts +7 -16
- package/sdk/test/utils.ts +558 -85
- package/sdk/vitest.config.ts +21 -0
- package/tools/ts-bindings-gen/src/main.rs +1 -0
- package/turbo.json +2 -0
- package/contracts/common-macros/src/contract_impl.rs +0 -52
- package/contracts/common-macros/src/ownable.rs +0 -41
- package/contracts/common-macros/src/tests/contract_impl.rs +0 -386
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__ownable__snapshot_generated_ownable_code.snap +0 -12
- package/contracts/macro-integration-tests/tests/runtime/ttl_configurable/extend_instance_ttl.rs +0 -50
- package/contracts/oapps/oapp-macros/src/oapp_core.rs +0 -41
- package/contracts/oapps/oapp-macros/src/oapp_full.rs +0 -21
- package/contracts/oapps/oapp-macros/src/oapp_options_type3.rs +0 -31
- package/contracts/oapps/oapp-macros/src/oapp_receiver.rs +0 -48
- package/contracts/oapps/oapp-macros/src/oapp_sender.rs +0 -21
- package/contracts/oapps/oapp-macros/src/util.rs +0 -107
- package/contracts/oapps/oft/src/constants.rs +0 -5
- package/contracts/oapps/oft/src/default_oft_impl.rs +0 -152
- package/contracts/workers/dvn/src/interfaces/multisig.rs +0 -56
- package/contracts/workers/dvn/src/multisig.rs +0 -157
- package/sdk/test/index.test.ts +0 -375
- /package/sdk/test/suites/{testUpgradeable.ts → dummyContractClient.ts} +0 -0
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,11 +1,14 @@
|
|
|
1
|
+
WARN Issue while reading "/home/runner/work/monorepo-internal/monorepo-internal/.npmrc". Failed to replace env in config: ${NPM_TOKEN}
|
|
1
2
|
|
|
2
3
|
> @layerzerolabs/protocol-stellar-v2@0.0.1 build /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar
|
|
3
|
-
> pnpm build:contracts && pnpm generate:sdk
|
|
4
|
+
> pnpm build:contracts:sandbox && pnpm generate:sdk && pnpm build:wasm
|
|
4
5
|
|
|
6
|
+
WARN Issue while reading "/home/runner/work/monorepo-internal/monorepo-internal/.npmrc". Failed to replace env in config: ${NPM_TOKEN}
|
|
5
7
|
|
|
6
|
-
> @layerzerolabs/protocol-stellar-v2@0.0.1 build:contracts /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar
|
|
7
|
-
> pnpm exec lz-tool stellar contract build
|
|
8
|
+
> @layerzerolabs/protocol-stellar-v2@0.0.1 build:contracts:sandbox /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar
|
|
9
|
+
> pnpm exec lz-tool stellar contract build --features sandbox
|
|
8
10
|
|
|
11
|
+
WARN Issue while reading "/home/runner/work/monorepo-internal/monorepo-internal/.npmrc". Failed to replace env in config: ${NPM_TOKEN}
|
|
9
12
|
📦 Using 4 default cache volume(s) for stellar
|
|
10
13
|
✅ stellar-23.1.4 (Stellar CLI with UID/GID support for permission fixes)
|
|
11
14
|
🔧 stellar version: 23.1.4
|
|
@@ -28,13 +31,12 @@ f83e34e44849: Pulling fs layer
|
|
|
28
31
|
8bc2eeec2bb3: Pulling fs layer
|
|
29
32
|
2965c99ac5df: Pulling fs layer
|
|
30
33
|
66f4137c2c7c: Pulling fs layer
|
|
31
|
-
|
|
32
|
-
|
|
34
|
+
889cdda75b95: Waiting
|
|
35
|
+
1b86cc28e881: Waiting
|
|
33
36
|
2c1ce468d9f3: Waiting
|
|
34
37
|
f83e34e44849: Waiting
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
889cdda75b95: Waiting
|
|
38
|
+
2ff845d4f468: Waiting
|
|
39
|
+
8a4f031cd7ce: Waiting
|
|
38
40
|
a7d3f750d5ec: Waiting
|
|
39
41
|
2965c99ac5df: Waiting
|
|
40
42
|
66f4137c2c7c: Waiting
|
|
@@ -49,20 +51,18 @@ a7d3f750d5ec: Download complete
|
|
|
49
51
|
8a4f031cd7ce: Download complete
|
|
50
52
|
e9886d99af76: Verifying Checksum
|
|
51
53
|
e9886d99af76: Download complete
|
|
52
|
-
2c1ce468d9f3: Verifying Checksum
|
|
53
54
|
2c1ce468d9f3: Download complete
|
|
54
55
|
4617420e017b: Verifying Checksum
|
|
55
56
|
4617420e017b: Download complete
|
|
57
|
+
2ff845d4f468: Download complete
|
|
58
|
+
8bc2eeec2bb3: Download complete
|
|
56
59
|
f83e34e44849: Verifying Checksum
|
|
57
60
|
f83e34e44849: Download complete
|
|
58
|
-
8bc2eeec2bb3: Download complete
|
|
59
|
-
1b86cc28e881: Download complete
|
|
60
|
-
2ff845d4f468: Verifying Checksum
|
|
61
|
-
2ff845d4f468: Download complete
|
|
62
61
|
2965c99ac5df: Verifying Checksum
|
|
63
62
|
2965c99ac5df: Download complete
|
|
64
|
-
66f4137c2c7c: Verifying Checksum
|
|
65
63
|
66f4137c2c7c: Download complete
|
|
64
|
+
1b86cc28e881: Verifying Checksum
|
|
65
|
+
1b86cc28e881: Download complete
|
|
66
66
|
4617420e017b: Pull complete
|
|
67
67
|
e9886d99af76: Pull complete
|
|
68
68
|
889cdda75b95: Pull complete
|
|
@@ -84,163 +84,163 @@ Status: Downloaded newer image for 438003944538.dkr.ecr.us-east-1.amazonaws.com/
|
|
|
84
84
|
🔒 Acquired lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup
|
|
85
85
|
🔒 Acquired lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-config
|
|
86
86
|
🔒 Acquired lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
|
|
87
|
-
$ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_LINKER=clang -e CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER=clang -e $'CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUSTFLAGS=-C link-arg=-fuse-ld=mold' -e $'CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_RUSTFLAGS=-C link-arg=-fuse-ld=mold' -e LOCAL_UID=1001 -e LOCAL_GID=1001 -v /home/runner/work/monorepo-internal/monorepo-internal:/workspace -w /workspace/contracts/protocol/stellar -v lz-tooling-cache-stellar-config:/cache/stellar -v lz-tooling-cache-stellar-cargo:/cache/cargo -v lz-tooling-cache-stellar-rustup:/cache/rustup -v /home/runner/.sccache:/cache/sccache 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_23.1.4_patch_6 stellar contract build
|
|
88
|
-
ℹ️ 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
|
|
87
|
+
$ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_LINKER=clang -e CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER=clang -e $'CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUSTFLAGS=-C link-arg=-fuse-ld=mold' -e $'CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_RUSTFLAGS=-C link-arg=-fuse-ld=mold' -e LOCAL_UID=1001 -e LOCAL_GID=1001 -v /home/runner/work/monorepo-internal/monorepo-internal:/workspace -w /workspace/contracts/protocol/stellar -v lz-tooling-cache-stellar-config:/cache/stellar -v lz-tooling-cache-stellar-cargo:/cache/cargo -v lz-tooling-cache-stellar-rustup:/cache/rustup -v /home/runner/.sccache:/cache/sccache 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_23.1.4_patch_6 stellar contract build --features sandbox
|
|
88
|
+
ℹ️ 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
|
|
89
89
|
Updating crates.io index
|
|
90
90
|
Updating git repository `https://github.com/OpenZeppelin/stellar-contracts.git`
|
|
91
91
|
Downloading crates ...
|
|
92
|
-
Downloaded ark-serialize v0.4.2
|
|
93
92
|
Downloaded ark-ff-macros v0.4.2
|
|
94
|
-
Downloaded ark-poly v0.4.2
|
|
95
|
-
Downloaded ark-ec v0.4.2
|
|
96
|
-
Downloaded ark-ff-asm v0.4.2
|
|
97
|
-
Downloaded arbitrary v1.3.2
|
|
98
|
-
Downloaded ahash v0.8.12
|
|
99
|
-
Downloaded ark-std v0.4.0
|
|
100
93
|
Downloaded rustc_version v0.4.1
|
|
101
|
-
Downloaded
|
|
102
|
-
Downloaded
|
|
103
|
-
Downloaded
|
|
94
|
+
Downloaded ark-serialize v0.4.2
|
|
95
|
+
Downloaded ark-ff-asm v0.4.2
|
|
96
|
+
Downloaded ark-poly v0.4.2
|
|
97
|
+
Downloaded darling_macro v0.20.11
|
|
98
|
+
Downloaded ark-ff v0.4.2
|
|
104
99
|
Downloaded hmac v0.12.1
|
|
105
|
-
Downloaded
|
|
106
|
-
Downloaded
|
|
107
|
-
Downloaded
|
|
108
|
-
Downloaded ref-cast-impl v1.0.25
|
|
109
|
-
Downloaded sec1 v0.7.3
|
|
110
|
-
Downloaded rand_core v0.6.4
|
|
111
|
-
Downloaded ryu v1.0.20
|
|
112
|
-
Downloaded soroban-spec v23.4.0
|
|
113
|
-
Downloaded schemars v0.8.22
|
|
114
|
-
Downloaded zeroize_derive v1.4.2
|
|
115
|
-
Downloaded stellar-strkey v0.0.13
|
|
100
|
+
Downloaded base64 v0.22.1
|
|
101
|
+
Downloaded hashbrown v0.13.2
|
|
102
|
+
Downloaded semver v1.0.27
|
|
116
103
|
Downloaded static_assertions v1.1.0
|
|
117
|
-
Downloaded k256 v0.13.4
|
|
118
|
-
Downloaded itertools v0.10.5
|
|
119
|
-
Downloaded zeroize v1.8.2
|
|
120
|
-
Downloaded thiserror v1.0.69
|
|
121
104
|
Downloaded serde_core v1.0.228
|
|
122
|
-
Downloaded
|
|
123
|
-
Downloaded
|
|
124
|
-
Downloaded
|
|
125
|
-
Downloaded time v0.3.44
|
|
126
|
-
Downloaded wasmparser v0.116.1
|
|
105
|
+
Downloaded thiserror-impl v1.0.69
|
|
106
|
+
Downloaded zeroize v1.8.2
|
|
107
|
+
Downloaded wasmi_core v0.13.0
|
|
127
108
|
Downloaded soroban-wasmi v0.31.1-soroban.20.0.1
|
|
128
|
-
Downloaded
|
|
129
|
-
Downloaded
|
|
130
|
-
Downloaded zerocopy v0.8.27
|
|
131
|
-
Downloaded syn v1.0.109
|
|
132
|
-
Downloaded serde_json v1.0.145
|
|
133
|
-
Downloaded syn v2.0.108
|
|
134
|
-
Downloaded ed25519-dalek v2.2.0
|
|
135
|
-
Downloaded hashbrown v0.12.3
|
|
136
|
-
Downloaded soroban-sdk-macros v23.4.0
|
|
137
|
-
Downloaded soroban-env-common v23.0.1
|
|
138
|
-
Downloaded smallvec v1.15.1
|
|
139
|
-
Downloaded sha2 v0.10.9
|
|
140
|
-
Downloaded soroban-env-host v23.0.1
|
|
109
|
+
Downloaded zeroize_derive v1.4.2
|
|
110
|
+
Downloaded visibility v0.1.1
|
|
141
111
|
Downloaded serde_with_macros v3.15.1
|
|
142
|
-
Downloaded schemars v0.9.0
|
|
143
|
-
Downloaded itertools v0.14.0
|
|
144
|
-
Downloaded wasmi_core v0.13.0
|
|
145
|
-
Downloaded unicode-ident v1.0.22
|
|
146
|
-
Downloaded time-macros v0.2.24
|
|
147
|
-
Downloaded thiserror-impl v1.0.69
|
|
148
|
-
Downloaded spki v0.7.3
|
|
149
|
-
Downloaded spin v0.9.8
|
|
150
|
-
Downloaded darling_core v0.20.11
|
|
151
|
-
Downloaded curve25519-dalek v4.1.3
|
|
152
|
-
Downloaded chrono v0.4.42
|
|
153
|
-
Downloaded indexmap v2.12.0
|
|
154
|
-
Downloaded hashbrown v0.16.0
|
|
155
|
-
Downloaded crypto-bigint v0.5.5
|
|
156
112
|
Downloaded soroban-env-macros v23.0.1
|
|
157
|
-
Downloaded
|
|
158
|
-
Downloaded semver v1.0.27
|
|
159
|
-
Downloaded hashbrown v0.13.2
|
|
113
|
+
Downloaded stellar-strkey v0.0.13
|
|
160
114
|
Downloaded wasmi_arena v0.4.1
|
|
161
|
-
Downloaded
|
|
162
|
-
Downloaded
|
|
163
|
-
Downloaded
|
|
164
|
-
Downloaded
|
|
165
|
-
Downloaded sha3 v0.10.8
|
|
166
|
-
Downloaded subtle v2.6.1
|
|
167
|
-
Downloaded strsim v0.11.1
|
|
115
|
+
Downloaded time-macros v0.2.24
|
|
116
|
+
Downloaded soroban-sdk-macros v23.4.0
|
|
117
|
+
Downloaded syn v2.0.108
|
|
118
|
+
Downloaded syn v1.0.109
|
|
168
119
|
Downloaded soroban-spec-rust v23.4.0
|
|
169
|
-
Downloaded
|
|
170
|
-
Downloaded rand v0.8.5
|
|
171
|
-
Downloaded proc-macro2 v1.0.103
|
|
172
|
-
Downloaded memchr v2.7.6
|
|
173
|
-
Downloaded libm v0.2.15
|
|
174
|
-
Downloaded indexmap v1.9.3
|
|
175
|
-
Downloaded autocfg v1.5.0
|
|
176
|
-
Downloaded primeorder v0.13.6
|
|
177
|
-
Downloaded powerfmt v0.2.0
|
|
178
|
-
Downloaded once_cell v1.21.3
|
|
179
|
-
Downloaded num-traits v0.2.19
|
|
180
|
-
Downloaded num-derive v0.4.2
|
|
181
|
-
Downloaded num-bigint v0.4.6
|
|
182
|
-
Downloaded generic-array v0.14.9
|
|
183
|
-
Downloaded ff v0.13.1
|
|
184
|
-
Downloaded ethnum v1.5.2
|
|
185
|
-
Downloaded ecdsa v0.16.9
|
|
186
|
-
Downloaded der v0.7.10
|
|
187
|
-
Downloaded data-encoding v2.9.0
|
|
188
|
-
Downloaded darling_core v0.21.3
|
|
189
|
-
Downloaded cpufeatures v0.2.17
|
|
190
|
-
Downloaded bytes-lit v0.0.5
|
|
191
|
-
Downloaded base64 v0.22.1
|
|
192
|
-
Downloaded soroban-ledger-snapshot v23.4.0
|
|
120
|
+
Downloaded typenum v1.19.0
|
|
193
121
|
Downloaded soroban-env-guest v23.0.1
|
|
194
|
-
Downloaded
|
|
195
|
-
Downloaded
|
|
196
|
-
Downloaded
|
|
197
|
-
Downloaded
|
|
198
|
-
Downloaded
|
|
199
|
-
Downloaded
|
|
200
|
-
Downloaded keccak v0.1.5
|
|
201
|
-
Downloaded hex v0.4.3
|
|
202
|
-
Downloaded heck v0.5.0
|
|
203
|
-
Downloaded derivative v2.2.0
|
|
204
|
-
Downloaded ctor-proc-macro v0.0.6
|
|
205
|
-
Downloaded macro-string v0.1.4
|
|
122
|
+
Downloaded unicode-ident v1.0.22
|
|
123
|
+
Downloaded group v0.13.0
|
|
124
|
+
Downloaded wasmparser-nostd v0.100.2
|
|
125
|
+
Downloaded wasmparser v0.116.1
|
|
126
|
+
Downloaded time v0.3.44
|
|
127
|
+
Downloaded num-conv v0.1.0
|
|
206
128
|
Downloaded iana-time-zone v0.1.64
|
|
207
|
-
Downloaded
|
|
129
|
+
Downloaded ethnum v1.5.2
|
|
208
130
|
Downloaded escape-bytes v0.1.1
|
|
209
|
-
Downloaded equivalent v1.0.2
|
|
210
131
|
Downloaded elliptic-curve v0.13.8
|
|
211
|
-
Downloaded
|
|
212
|
-
Downloaded dtor-proc-macro v0.0.6
|
|
213
|
-
Downloaded p256 v0.13.2
|
|
214
|
-
Downloaded digest v0.10.7
|
|
215
|
-
Downloaded darling_macro v0.20.11
|
|
216
|
-
Downloaded itoa v1.0.15
|
|
132
|
+
Downloaded sha3 v0.10.8
|
|
217
133
|
Downloaded ident_case v1.0.1
|
|
218
|
-
Downloaded
|
|
219
|
-
Downloaded dtor v0.1.1
|
|
220
|
-
Downloaded darling v0.21.3
|
|
134
|
+
Downloaded derive_arbitrary v1.3.2
|
|
221
135
|
Downloaded cfg_eval v0.1.2
|
|
222
|
-
Downloaded
|
|
223
|
-
Downloaded
|
|
224
|
-
Downloaded
|
|
225
|
-
Downloaded
|
|
226
|
-
Downloaded
|
|
136
|
+
Downloaded ed25519 v2.2.3
|
|
137
|
+
Downloaded ecdsa v0.16.9
|
|
138
|
+
Downloaded ref-cast v1.0.25
|
|
139
|
+
Downloaded block-buffer v0.10.4
|
|
140
|
+
Downloaded dyn-clone v1.0.20
|
|
227
141
|
Downloaded darling_macro v0.21.3
|
|
228
|
-
Downloaded
|
|
229
|
-
Downloaded
|
|
142
|
+
Downloaded hex-literal v0.4.1
|
|
143
|
+
Downloaded rfc6979 v0.4.0
|
|
144
|
+
Downloaded num-derive v0.4.2
|
|
145
|
+
Downloaded ref-cast-impl v1.0.25
|
|
146
|
+
Downloaded macro-string v0.1.4
|
|
147
|
+
Downloaded rand_chacha v0.3.1
|
|
230
148
|
Downloaded quote v1.0.41
|
|
149
|
+
Downloaded getrandom v0.2.16
|
|
150
|
+
Downloaded proc-macro2 v1.0.103
|
|
151
|
+
Downloaded rand_core v0.6.4
|
|
152
|
+
Downloaded rand v0.8.5
|
|
153
|
+
Downloaded num-bigint v0.4.6
|
|
154
|
+
Downloaded zerocopy v0.8.27
|
|
155
|
+
Downloaded libm v0.2.15
|
|
156
|
+
Downloaded itertools v0.14.0
|
|
157
|
+
Downloaded hashbrown v0.16.0
|
|
158
|
+
Downloaded itertools v0.10.5
|
|
159
|
+
Downloaded memchr v2.7.6
|
|
160
|
+
Downloaded k256 v0.13.4
|
|
161
|
+
Downloaded chrono v0.4.42
|
|
162
|
+
Downloaded indexmap v2.12.0
|
|
163
|
+
Downloaded ed25519-dalek v2.2.0
|
|
164
|
+
Downloaded curve25519-dalek v4.1.3
|
|
165
|
+
Downloaded der v0.7.10
|
|
166
|
+
Downloaded darling_core v0.21.3
|
|
167
|
+
Downloaded darling_core v0.20.11
|
|
168
|
+
Downloaded prettyplease v0.2.37
|
|
169
|
+
Downloaded p256 v0.13.2
|
|
170
|
+
Downloaded indexmap v1.9.3
|
|
171
|
+
Downloaded once_cell v1.21.3
|
|
172
|
+
Downloaded num-traits v0.2.19
|
|
173
|
+
Downloaded hashbrown v0.12.3
|
|
174
|
+
Downloaded derivative v2.2.0
|
|
175
|
+
Downloaded darling v0.21.3
|
|
176
|
+
Downloaded const-oid v0.9.6
|
|
177
|
+
Downloaded darling v0.20.11
|
|
178
|
+
Downloaded crypto-common v0.1.6
|
|
179
|
+
Downloaded ark-std v0.4.0
|
|
180
|
+
Downloaded primeorder v0.13.6
|
|
181
|
+
Downloaded ppv-lite86 v0.2.21
|
|
231
182
|
Downloaded pkcs8 v0.10.2
|
|
232
183
|
Downloaded num-integer v0.1.46
|
|
233
|
-
Downloaded
|
|
234
|
-
Downloaded
|
|
184
|
+
Downloaded dtor v0.1.1
|
|
185
|
+
Downloaded digest v0.10.7
|
|
186
|
+
Downloaded deranged v0.5.5
|
|
187
|
+
Downloaded data-encoding v2.9.0
|
|
188
|
+
Downloaded libc v0.2.177
|
|
189
|
+
Downloaded ctor-proc-macro v0.0.6
|
|
190
|
+
Downloaded base64ct v1.8.0
|
|
191
|
+
Downloaded autocfg v1.5.0
|
|
192
|
+
Downloaded powerfmt v0.2.0
|
|
193
|
+
Downloaded paste v1.0.15
|
|
194
|
+
Downloaded indexmap-nostd v0.4.0
|
|
195
|
+
Downloaded hex v0.4.3
|
|
196
|
+
Downloaded ark-serialize-derive v0.4.2
|
|
197
|
+
Downloaded itoa v1.0.15
|
|
235
198
|
Downloaded curve25519-dalek-derive v0.1.1
|
|
236
199
|
Downloaded crate-git-revision v0.0.6
|
|
237
|
-
Downloaded
|
|
238
|
-
Downloaded
|
|
239
|
-
Downloaded
|
|
240
|
-
Downloaded
|
|
200
|
+
Downloaded cpufeatures v0.2.17
|
|
201
|
+
Downloaded base16ct v0.2.0
|
|
202
|
+
Downloaded keccak v0.1.5
|
|
203
|
+
Downloaded cfg-if v1.0.4
|
|
204
|
+
Downloaded downcast-rs v1.2.1
|
|
205
|
+
Downloaded bytes-lit v0.0.5
|
|
206
|
+
Downloaded heck v0.5.0
|
|
207
|
+
Downloaded generic-array v0.14.9
|
|
208
|
+
Downloaded fnv v1.0.7
|
|
209
|
+
Downloaded equivalent v1.0.2
|
|
241
210
|
Downloaded ctor v0.5.0
|
|
242
|
-
Downloaded
|
|
211
|
+
Downloaded ff v0.13.1
|
|
212
|
+
Downloaded either v1.15.0
|
|
213
|
+
Downloaded dtor-proc-macro v0.0.6
|
|
214
|
+
Downloaded subtle v2.6.1
|
|
215
|
+
Downloaded spin v0.9.8
|
|
216
|
+
Downloaded soroban-env-host v23.0.1
|
|
217
|
+
Downloaded soroban-builtin-sdk-macros v23.0.1
|
|
218
|
+
Downloaded serde_with v3.15.1
|
|
219
|
+
Downloaded serde_json v1.0.145
|
|
220
|
+
Downloaded soroban-sdk v23.4.0
|
|
221
|
+
Downloaded soroban-env-common v23.0.1
|
|
222
|
+
Downloaded smallvec v1.15.1
|
|
223
|
+
Downloaded sha2 v0.10.9
|
|
224
|
+
Downloaded time-core v0.1.6
|
|
225
|
+
Downloaded thiserror v1.0.69
|
|
226
|
+
Downloaded strsim v0.11.1
|
|
227
|
+
Downloaded spki v0.7.3
|
|
228
|
+
Downloaded soroban-ledger-snapshot v23.4.0
|
|
229
|
+
Downloaded signature v2.2.0
|
|
230
|
+
Downloaded version_check v0.9.5
|
|
231
|
+
Downloaded soroban-spec v23.4.0
|
|
232
|
+
Downloaded schemars v0.9.0
|
|
233
|
+
Downloaded serde_derive v1.0.228
|
|
234
|
+
Downloaded serde v1.0.228
|
|
235
|
+
Downloaded schemars v1.0.5
|
|
236
|
+
Downloaded ryu v1.0.20
|
|
237
|
+
Downloaded schemars v0.8.22
|
|
238
|
+
Downloaded sec1 v0.7.3
|
|
243
239
|
Downloaded ark-bls12-381 v0.4.0
|
|
240
|
+
Downloaded crypto-bigint v0.5.5
|
|
241
|
+
Downloaded ark-ec v0.4.2
|
|
242
|
+
Downloaded arbitrary v1.3.2
|
|
243
|
+
Downloaded ahash v0.8.12
|
|
244
244
|
Downloaded stellar-xdr v23.0.0
|
|
245
245
|
Compiling proc-macro2 v1.0.103
|
|
246
246
|
Compiling quote v1.0.41
|
|
@@ -248,52 +248,52 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
248
248
|
Compiling serde_core v1.0.228
|
|
249
249
|
Compiling serde v1.0.228
|
|
250
250
|
Compiling serde_json v1.0.145
|
|
251
|
-
Compiling ryu v1.0.20
|
|
252
251
|
Compiling itoa v1.0.15
|
|
253
252
|
Compiling memchr v2.7.6
|
|
253
|
+
Compiling ryu v1.0.20
|
|
254
254
|
Compiling ident_case v1.0.1
|
|
255
255
|
Compiling strsim v0.11.1
|
|
256
256
|
Compiling fnv v1.0.7
|
|
257
|
-
Compiling version_check v0.9.5
|
|
258
257
|
Compiling typenum v1.19.0
|
|
258
|
+
Compiling version_check v0.9.5
|
|
259
259
|
Compiling autocfg v1.5.0
|
|
260
260
|
Compiling schemars v0.8.22
|
|
261
261
|
Compiling dyn-clone v1.0.20
|
|
262
|
-
Compiling data-encoding v2.9.0
|
|
263
262
|
Compiling cfg-if v1.0.4
|
|
263
|
+
Compiling data-encoding v2.9.0
|
|
264
264
|
Compiling cpufeatures v0.2.17
|
|
265
|
-
Compiling either v1.15.0
|
|
266
|
-
Compiling ethnum v1.5.2
|
|
267
265
|
Compiling escape-bytes v0.1.1
|
|
266
|
+
Compiling ethnum v1.5.2
|
|
267
|
+
Compiling either v1.15.0
|
|
268
268
|
Compiling semver v1.0.27
|
|
269
|
-
Compiling prettyplease v0.2.37
|
|
270
269
|
Compiling hashbrown v0.16.0
|
|
271
|
-
Compiling
|
|
270
|
+
Compiling prettyplease v0.2.37
|
|
272
271
|
Compiling thiserror v1.0.69
|
|
273
272
|
Compiling equivalent v1.0.2
|
|
274
|
-
Compiling
|
|
273
|
+
Compiling generic-array v0.14.9
|
|
275
274
|
Compiling base64 v0.22.1
|
|
275
|
+
Compiling num-traits v0.2.19
|
|
276
276
|
Compiling itertools v0.10.5
|
|
277
|
-
Compiling static_assertions v1.1.0
|
|
278
277
|
Compiling heck v0.5.0
|
|
278
|
+
Compiling static_assertions v1.1.0
|
|
279
279
|
Compiling rustc_version v0.4.1
|
|
280
280
|
Compiling itertools v0.14.0
|
|
281
281
|
Compiling indexmap v2.12.0
|
|
282
282
|
Compiling syn v2.0.108
|
|
283
|
+
Compiling num-integer v0.1.46
|
|
283
284
|
Compiling wasmparser v0.116.1
|
|
284
|
-
Compiling crypto-common v0.1.6
|
|
285
285
|
Compiling block-buffer v0.10.4
|
|
286
|
-
Compiling
|
|
286
|
+
Compiling crypto-common v0.1.6
|
|
287
|
+
Compiling num-bigint v0.4.6
|
|
287
288
|
Compiling digest v0.10.7
|
|
288
289
|
Compiling sha2 v0.10.9
|
|
289
|
-
Compiling num-bigint v0.4.6
|
|
290
290
|
Compiling darling_core v0.21.3
|
|
291
291
|
Compiling darling_core v0.20.11
|
|
292
292
|
Compiling macro-string v0.1.4
|
|
293
293
|
Compiling serde_derive v1.0.228
|
|
294
294
|
Compiling cfg_eval v0.1.2
|
|
295
|
-
Compiling thiserror-impl v1.0.69
|
|
296
295
|
Compiling num-derive v0.4.2
|
|
296
|
+
Compiling thiserror-impl v1.0.69
|
|
297
297
|
Compiling visibility v0.1.1
|
|
298
298
|
Compiling bytes-lit v0.0.5
|
|
299
299
|
Compiling common-macros v0.0.1 (/workspace/contracts/protocol/stellar/contracts/common-macros)
|
|
@@ -316,12 +316,13 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
316
316
|
Compiling soroban-env-guest v23.0.1
|
|
317
317
|
Compiling utils v0.0.1 (/workspace/contracts/protocol/stellar/contracts/utils)
|
|
318
318
|
Compiling endpoint-v2 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/endpoint-v2)
|
|
319
|
-
Finished `release` profile [optimized] target(s) in
|
|
319
|
+
Finished `release` profile [optimized] target(s) in 33.23s
|
|
320
320
|
ℹ️ Build Summary:
|
|
321
321
|
Wasm File: target/wasm32v1-none/release/endpoint_v2.wasm
|
|
322
|
-
Wasm Hash:
|
|
323
|
-
Exported Functions:
|
|
322
|
+
Wasm Hash: b86e25337989703e3702f05c14078ed60d3d82510f8a9335204aef32a849c9cb
|
|
323
|
+
Exported Functions: 57 found
|
|
324
324
|
• __constructor
|
|
325
|
+
• authorizer
|
|
325
326
|
• burn
|
|
326
327
|
• clear
|
|
327
328
|
• clear_compose
|
|
@@ -378,12 +379,12 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
378
379
|
• verify
|
|
379
380
|
• zro
|
|
380
381
|
✅ Build Complete
|
|
381
|
-
ℹ️ 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
|
|
382
|
+
ℹ️ 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
|
|
382
383
|
Compiling escape-bytes v0.1.1
|
|
383
384
|
Compiling ethnum v1.5.2
|
|
384
385
|
Compiling static_assertions v1.1.0
|
|
385
|
-
Compiling cfg-if v1.0.4
|
|
386
386
|
Compiling num-traits v0.2.19
|
|
387
|
+
Compiling cfg-if v1.0.4
|
|
387
388
|
Compiling stellar-xdr v23.0.0
|
|
388
389
|
Compiling soroban-env-common v23.0.1
|
|
389
390
|
Compiling soroban-env-guest v23.0.1
|
|
@@ -393,12 +394,13 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
393
394
|
Compiling message-lib-common v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/message-lib-common)
|
|
394
395
|
Compiling uln302 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/uln-302)
|
|
395
396
|
Compiling layerzero-views v0.0.1 (/workspace/contracts/protocol/stellar/contracts/layerzero-views)
|
|
396
|
-
Finished `release` profile [optimized] target(s) in
|
|
397
|
+
Finished `release` profile [optimized] target(s) in 8.08s
|
|
397
398
|
ℹ️ Build Summary:
|
|
398
399
|
Wasm File: target/wasm32v1-none/release/layerzero_views.wasm
|
|
399
|
-
Wasm Hash:
|
|
400
|
-
Exported Functions:
|
|
400
|
+
Wasm Hash: 6ec38542b4a5517275b53185085722098e1965a9bbdbd6497d6cca444634f819
|
|
401
|
+
Exported Functions: 19 found
|
|
401
402
|
• __constructor
|
|
403
|
+
• authorizer
|
|
402
404
|
• endpoint
|
|
403
405
|
• executable
|
|
404
406
|
• extend_instance_ttl
|
|
@@ -420,12 +422,13 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
420
422
|
ℹ️ 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
|
|
421
423
|
Compiling message-lib-common v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/message-lib-common)
|
|
422
424
|
Compiling uln302 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/uln-302)
|
|
423
|
-
Finished `release` profile [optimized] target(s) in 1.
|
|
425
|
+
Finished `release` profile [optimized] target(s) in 1.09s
|
|
424
426
|
ℹ️ Build Summary:
|
|
425
427
|
Wasm File: target/wasm32v1-none/release/uln302.wasm
|
|
426
|
-
Wasm Hash:
|
|
427
|
-
Exported Functions:
|
|
428
|
+
Wasm Hash: dd27c711128d08f43737043bad6cd149fea952c166c50878a023906eed6984e4
|
|
429
|
+
Exported Functions: 35 found
|
|
428
430
|
• __constructor
|
|
431
|
+
• authorizer
|
|
429
432
|
• commit_verification
|
|
430
433
|
• confirmations
|
|
431
434
|
• default_executor_config
|
|
@@ -465,7 +468,7 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
465
468
|
Finished `release` profile [optimized] target(s) in 0.23s
|
|
466
469
|
ℹ️ Build Summary:
|
|
467
470
|
Wasm File: target/wasm32v1-none/release/upgrader.wasm
|
|
468
|
-
Wasm Hash:
|
|
471
|
+
Wasm Hash: 250cba854264d9d437c960e9f8ed838dbf39876947b4fb84c5a209a39b794da6
|
|
469
472
|
Exported Functions: 1 found
|
|
470
473
|
• upgrade_and_migrate
|
|
471
474
|
✅ Build Complete
|
|
@@ -474,7 +477,7 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
474
477
|
Finished `release` profile [optimized] target(s) in 0.29s
|
|
475
478
|
ℹ️ Build Summary:
|
|
476
479
|
Wasm File: target/wasm32v1-none/release/blocked_message_lib.wasm
|
|
477
|
-
Wasm Hash:
|
|
480
|
+
Wasm Hash: b32e570b435389080032458c4d985fe3ad064bcd5b08113b3c7a1e52e09c21b6
|
|
478
481
|
Exported Functions: 7 found
|
|
479
482
|
• get_config
|
|
480
483
|
• is_supported_eid
|
|
@@ -486,12 +489,13 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
486
489
|
✅ Build Complete
|
|
487
490
|
ℹ️ 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
|
|
488
491
|
Compiling simple-message-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/simple-message-lib)
|
|
489
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
492
|
+
Finished `release` profile [optimized] target(s) in 0.47s
|
|
490
493
|
ℹ️ Build Summary:
|
|
491
494
|
Wasm File: target/wasm32v1-none/release/simple_message_lib.wasm
|
|
492
|
-
Wasm Hash:
|
|
493
|
-
Exported Functions:
|
|
495
|
+
Wasm Hash: fc3c7cd3f0249916cff4c361a1930507c61b1de4f84c0c591481323285589e70
|
|
496
|
+
Exported Functions: 28 found
|
|
494
497
|
• __constructor
|
|
498
|
+
• authorizer
|
|
495
499
|
• endpoint
|
|
496
500
|
• extend_instance_ttl
|
|
497
501
|
• fee_recipient
|
|
@@ -521,12 +525,13 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
521
525
|
✅ Build Complete
|
|
522
526
|
ℹ️ 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
|
|
523
527
|
Compiling treasury v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/treasury)
|
|
524
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
528
|
+
Finished `release` profile [optimized] target(s) in 0.42s
|
|
525
529
|
ℹ️ Build Summary:
|
|
526
530
|
Wasm File: target/wasm32v1-none/release/treasury.wasm
|
|
527
|
-
Wasm Hash:
|
|
528
|
-
Exported Functions:
|
|
531
|
+
Wasm Hash: 9586e202580ed2950991a997af897a2ca73b85e373120fd0ec6bb6d2a7b2a8d9
|
|
532
|
+
Exported Functions: 18 found
|
|
529
533
|
• __constructor
|
|
534
|
+
• authorizer
|
|
530
535
|
• extend_instance_ttl
|
|
531
536
|
• fee_enabled
|
|
532
537
|
• freeze_ttl_configs
|
|
@@ -548,13 +553,14 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
548
553
|
Compiling oapp-macros v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp-macros)
|
|
549
554
|
Compiling oapp v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp)
|
|
550
555
|
Compiling counter v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/counter)
|
|
551
|
-
Finished `release` profile [optimized] target(s) in 1.
|
|
556
|
+
Finished `release` profile [optimized] target(s) in 1.18s
|
|
552
557
|
ℹ️ Build Summary:
|
|
553
558
|
Wasm File: target/wasm32v1-none/release/counter.wasm
|
|
554
|
-
Wasm Hash:
|
|
555
|
-
Exported Functions:
|
|
559
|
+
Wasm Hash: 18404f479f5466a66b07e3a44c751b3cb012dd185874584c98603a7974d3d8af
|
|
560
|
+
Exported Functions: 32 found
|
|
556
561
|
• __constructor
|
|
557
562
|
• allow_initialize_path
|
|
563
|
+
• authorizer
|
|
558
564
|
• combine_options
|
|
559
565
|
• composed_count
|
|
560
566
|
• count
|
|
@@ -585,41 +591,41 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
585
591
|
• transfer_ownership
|
|
586
592
|
• ttl_configs
|
|
587
593
|
✅ Build Complete
|
|
588
|
-
ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/workers/
|
|
594
|
+
ℹ️ 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
|
|
589
595
|
Compiling worker v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/worker)
|
|
590
|
-
Compiling
|
|
591
|
-
Finished `release` profile [optimized] target(s) in 1.
|
|
596
|
+
Compiling dvn v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/dvn)
|
|
597
|
+
Finished `release` profile [optimized] target(s) in 1.30s
|
|
592
598
|
ℹ️ Build Summary:
|
|
593
|
-
Wasm File: target/wasm32v1-none/release/
|
|
594
|
-
Wasm Hash:
|
|
595
|
-
Exported Functions:
|
|
599
|
+
Wasm File: target/wasm32v1-none/release/dvn.wasm
|
|
600
|
+
Wasm Hash: e3856e8f0951e48af74ef84c83633161642b910fc82093e6b611b55c58033e5e
|
|
601
|
+
Exported Functions: 49 found
|
|
596
602
|
• __check_auth
|
|
597
603
|
• __constructor
|
|
598
604
|
• admins
|
|
599
605
|
• allowlist_size
|
|
600
606
|
• assign_job
|
|
607
|
+
• authorizer
|
|
601
608
|
• default_multiplier_bps
|
|
602
609
|
• deposit_address
|
|
603
610
|
• dst_config
|
|
604
|
-
• endpoint
|
|
605
611
|
• extend_instance_ttl
|
|
606
612
|
• freeze_ttl_configs
|
|
607
613
|
• get_fee
|
|
614
|
+
• get_signers
|
|
608
615
|
• get_supported_option_types
|
|
609
616
|
• has_acl
|
|
617
|
+
• hash_call_data
|
|
610
618
|
• is_admin
|
|
611
619
|
• is_on_allowlist
|
|
612
620
|
• is_on_denylist
|
|
621
|
+
• is_signer
|
|
613
622
|
• is_supported_message_lib
|
|
614
623
|
• is_ttl_configs_frozen
|
|
615
|
-
• is_whitelisted_fn
|
|
616
624
|
• message_libs
|
|
617
625
|
• migrate
|
|
618
|
-
• native_drop
|
|
619
|
-
• owner
|
|
620
626
|
• paused
|
|
621
627
|
• price_feed
|
|
622
|
-
•
|
|
628
|
+
• quorum_change_admin
|
|
623
629
|
• set_admin
|
|
624
630
|
• set_allowlist
|
|
625
631
|
• set_default_multiplier_bps
|
|
@@ -628,105 +634,76 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
628
634
|
• set_dst_config
|
|
629
635
|
• set_paused
|
|
630
636
|
• set_price_feed
|
|
637
|
+
• set_signer
|
|
631
638
|
• set_supported_message_lib
|
|
632
639
|
• set_supported_option_types
|
|
640
|
+
• set_threshold
|
|
633
641
|
• set_ttl_configs
|
|
634
|
-
• set_whitelisted_fn
|
|
635
642
|
• set_worker_fee_lib
|
|
636
|
-
•
|
|
643
|
+
• threshold
|
|
644
|
+
• total_signers
|
|
637
645
|
• ttl_configs
|
|
638
646
|
• upgrade
|
|
639
|
-
•
|
|
647
|
+
• verify_n_signatures
|
|
648
|
+
• verify_signatures
|
|
649
|
+
• vid
|
|
640
650
|
• worker_fee_lib
|
|
641
651
|
✅ Build Complete
|
|
642
|
-
ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/
|
|
643
|
-
Compiling
|
|
644
|
-
|
|
645
|
-
Finished `release` profile [optimized] target(s) in 1.16s
|
|
652
|
+
ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/workers/dvn-fee-lib/Cargo.toml --crate-type=cdylib --target=wasm32v1-none --release
|
|
653
|
+
Compiling dvn-fee-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/dvn-fee-lib)
|
|
654
|
+
Finished `release` profile [optimized] target(s) in 0.35s
|
|
646
655
|
ℹ️ Build Summary:
|
|
647
|
-
Wasm File: target/wasm32v1-none/release/
|
|
648
|
-
Wasm Hash:
|
|
649
|
-
Exported Functions:
|
|
656
|
+
Wasm File: target/wasm32v1-none/release/dvn_fee_lib.wasm
|
|
657
|
+
Wasm Hash: 67aedc35b7d2dbf1e84011a2b7e6faf9dfecd5d187e6ccfcd3950b2d45fc71a9
|
|
658
|
+
Exported Functions: 13 found
|
|
650
659
|
• __constructor
|
|
651
|
-
•
|
|
652
|
-
• approval_required
|
|
653
|
-
• combine_options
|
|
654
|
-
• decimal_conversion_rate
|
|
655
|
-
• default_fee_bps
|
|
656
|
-
• effective_fee_bps
|
|
657
|
-
• endpoint
|
|
658
|
-
• enforced_options
|
|
660
|
+
• authorizer
|
|
659
661
|
• extend_instance_ttl
|
|
660
|
-
• fee_bps
|
|
661
|
-
• fee_deposit_address
|
|
662
662
|
• freeze_ttl_configs
|
|
663
|
-
•
|
|
664
|
-
• is_compose_msg_sender
|
|
665
|
-
• is_paused
|
|
663
|
+
• get_fee
|
|
666
664
|
• is_ttl_configs_frozen
|
|
667
|
-
•
|
|
668
|
-
• mode
|
|
669
|
-
• next_nonce
|
|
670
|
-
• oapp_version
|
|
671
|
-
• oft_version
|
|
665
|
+
• migrate
|
|
672
666
|
• owner
|
|
673
|
-
• peer
|
|
674
|
-
• quote_oft
|
|
675
|
-
• quote_send
|
|
676
|
-
• rate_limit_capacity
|
|
677
|
-
• rate_limit_config
|
|
678
|
-
• rate_limit_in_flight
|
|
679
667
|
• renounce_ownership
|
|
680
|
-
• send
|
|
681
|
-
• set_default_fee_bps
|
|
682
|
-
• set_delegate
|
|
683
|
-
• set_enforced_options
|
|
684
|
-
• set_fee_bps
|
|
685
|
-
• set_fee_deposit_address
|
|
686
|
-
• set_paused
|
|
687
|
-
• set_peer
|
|
688
|
-
• set_rate_limit
|
|
689
668
|
• set_ttl_configs
|
|
690
|
-
• shared_decimals
|
|
691
|
-
• token
|
|
692
669
|
• transfer_ownership
|
|
693
670
|
• ttl_configs
|
|
694
|
-
•
|
|
695
|
-
• unset_rate_limit
|
|
671
|
+
• upgrade
|
|
696
672
|
✅ Build Complete
|
|
697
|
-
ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/workers/
|
|
698
|
-
Compiling
|
|
699
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
673
|
+
ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/workers/executor/Cargo.toml --crate-type=cdylib --target=wasm32v1-none --release
|
|
674
|
+
Compiling executor v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor)
|
|
675
|
+
Finished `release` profile [optimized] target(s) in 0.72s
|
|
700
676
|
ℹ️ Build Summary:
|
|
701
|
-
Wasm File: target/wasm32v1-none/release/
|
|
702
|
-
Wasm Hash:
|
|
703
|
-
Exported Functions:
|
|
677
|
+
Wasm File: target/wasm32v1-none/release/executor.wasm
|
|
678
|
+
Wasm Hash: 46bd394defe8fcacaffa8d09f6e546ca85c414d67a399584799bde1c33b98bc9
|
|
679
|
+
Exported Functions: 44 found
|
|
704
680
|
• __check_auth
|
|
705
681
|
• __constructor
|
|
706
682
|
• admins
|
|
707
683
|
• allowlist_size
|
|
708
684
|
• assign_job
|
|
685
|
+
• authorizer
|
|
709
686
|
• default_multiplier_bps
|
|
710
687
|
• deposit_address
|
|
711
688
|
• dst_config
|
|
689
|
+
• endpoint
|
|
712
690
|
• extend_instance_ttl
|
|
713
691
|
• freeze_ttl_configs
|
|
714
692
|
• get_fee
|
|
715
|
-
• get_signers
|
|
716
693
|
• get_supported_option_types
|
|
717
694
|
• has_acl
|
|
718
|
-
• hash_call_data
|
|
719
695
|
• is_admin
|
|
720
696
|
• is_on_allowlist
|
|
721
697
|
• is_on_denylist
|
|
722
|
-
• is_signer
|
|
723
698
|
• is_supported_message_lib
|
|
724
699
|
• is_ttl_configs_frozen
|
|
725
700
|
• message_libs
|
|
726
701
|
• migrate
|
|
702
|
+
• native_drop
|
|
703
|
+
• owner
|
|
727
704
|
• paused
|
|
728
705
|
• price_feed
|
|
729
|
-
•
|
|
706
|
+
• renounce_ownership
|
|
730
707
|
• set_admin
|
|
731
708
|
• set_allowlist
|
|
732
709
|
• set_default_multiplier_bps
|
|
@@ -735,49 +712,25 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
735
712
|
• set_dst_config
|
|
736
713
|
• set_paused
|
|
737
714
|
• set_price_feed
|
|
738
|
-
• set_signer
|
|
739
715
|
• set_supported_message_lib
|
|
740
716
|
• set_supported_option_types
|
|
741
|
-
• set_threshold
|
|
742
717
|
• set_ttl_configs
|
|
743
718
|
• set_worker_fee_lib
|
|
744
|
-
• threshold
|
|
745
|
-
• total_signers
|
|
746
|
-
• ttl_configs
|
|
747
|
-
• upgrade
|
|
748
|
-
• verify_n_signatures
|
|
749
|
-
• verify_signatures
|
|
750
|
-
• vid
|
|
751
|
-
• worker_fee_lib
|
|
752
|
-
✅ Build Complete
|
|
753
|
-
ℹ️ 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
|
|
754
|
-
Compiling dvn-fee-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/dvn-fee-lib)
|
|
755
|
-
Finished `release` profile [optimized] target(s) in 0.34s
|
|
756
|
-
ℹ️ Build Summary:
|
|
757
|
-
Wasm File: target/wasm32v1-none/release/dvn_fee_lib.wasm
|
|
758
|
-
Wasm Hash: 42850a5252e9b46b61809b616c5daa6497ddd2a4adf4043b3f2d7a986e0df07a
|
|
759
|
-
Exported Functions: 12 found
|
|
760
|
-
• __constructor
|
|
761
|
-
• extend_instance_ttl
|
|
762
|
-
• freeze_ttl_configs
|
|
763
|
-
• get_fee
|
|
764
|
-
• is_ttl_configs_frozen
|
|
765
|
-
• migrate
|
|
766
|
-
• owner
|
|
767
|
-
• renounce_ownership
|
|
768
|
-
• set_ttl_configs
|
|
769
719
|
• transfer_ownership
|
|
770
720
|
• ttl_configs
|
|
771
721
|
• upgrade
|
|
722
|
+
• withdraw_token
|
|
723
|
+
• worker_fee_lib
|
|
772
724
|
✅ Build Complete
|
|
773
725
|
ℹ️ 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
|
|
774
726
|
Compiling executor-fee-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor-fee-lib)
|
|
775
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
727
|
+
Finished `release` profile [optimized] target(s) in 0.40s
|
|
776
728
|
ℹ️ Build Summary:
|
|
777
729
|
Wasm File: target/wasm32v1-none/release/executor_fee_lib.wasm
|
|
778
|
-
Wasm Hash:
|
|
779
|
-
Exported Functions:
|
|
730
|
+
Wasm Hash: 37b458810f6efd38c4e7a568f64b9e4bff8542360def48b7bb3de7352b2c3a41
|
|
731
|
+
Exported Functions: 14 found
|
|
780
732
|
• __constructor
|
|
733
|
+
• authorizer
|
|
781
734
|
• extend_instance_ttl
|
|
782
735
|
• freeze_ttl_configs
|
|
783
736
|
• get_fee
|
|
@@ -795,27 +748,30 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
795
748
|
Compiling worker v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/worker)
|
|
796
749
|
Compiling executor v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor)
|
|
797
750
|
Compiling executor-helper v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor-helper)
|
|
798
|
-
Finished `release` profile [optimized] target(s) in 1.
|
|
751
|
+
Finished `release` profile [optimized] target(s) in 1.11s
|
|
799
752
|
ℹ️ Build Summary:
|
|
800
753
|
Wasm File: target/wasm32v1-none/release/executor_helper.wasm
|
|
801
|
-
Wasm Hash:
|
|
802
|
-
Exported Functions:
|
|
754
|
+
Wasm Hash: 5dd035ee62d871f20d7ef66dfacb38a9207f05d406f9504d05983442a5499e15
|
|
755
|
+
Exported Functions: 6 found
|
|
803
756
|
• compose
|
|
804
757
|
• execute
|
|
758
|
+
• lz_compose_alert
|
|
759
|
+
• lz_receive_alert
|
|
805
760
|
• native_drop
|
|
806
761
|
• native_drop_and_execute
|
|
807
762
|
✅ Build Complete
|
|
808
763
|
ℹ️ 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
|
|
809
764
|
Compiling worker v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/worker)
|
|
810
765
|
Compiling price-feed v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/price-feed)
|
|
811
|
-
Finished `release` profile [optimized] target(s) in 1.
|
|
766
|
+
Finished `release` profile [optimized] target(s) in 1.09s
|
|
812
767
|
ℹ️ Build Summary:
|
|
813
768
|
Wasm File: target/wasm32v1-none/release/price_feed.wasm
|
|
814
|
-
Wasm Hash:
|
|
815
|
-
Exported Functions:
|
|
769
|
+
Wasm Hash: f7d079796608eeafd46070b4a73ebaa8327d7f73cd9aa826dd9699b497976381
|
|
770
|
+
Exported Functions: 27 found
|
|
816
771
|
• __constructor
|
|
817
772
|
• arbitrum_compression_percent
|
|
818
773
|
• arbitrum_price_ext
|
|
774
|
+
• authorizer
|
|
819
775
|
• eid_to_model_type
|
|
820
776
|
• estimate_fee_by_eid
|
|
821
777
|
• extend_instance_ttl
|
|
@@ -840,14 +796,72 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
840
796
|
• ttl_configs
|
|
841
797
|
• upgrade
|
|
842
798
|
✅ Build Complete
|
|
843
|
-
|
|
799
|
+
ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/oapps/oft-std/Cargo.toml --crate-type=cdylib --target=wasm32v1-none --release
|
|
800
|
+
Compiling oft v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft)
|
|
801
|
+
Compiling oft-std v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft-std)
|
|
802
|
+
Finished `release` profile [optimized] target(s) in 1.22s
|
|
803
|
+
ℹ️ Build Summary:
|
|
804
|
+
Wasm File: target/wasm32v1-none/release/oft_std.wasm
|
|
805
|
+
Wasm Hash: 1755d6982c64bd05dab4882627748c1d0808dd4ea177bc53ef6cbbed3f4aa08b
|
|
806
|
+
Exported Functions: 47 found
|
|
807
|
+
• __constructor
|
|
808
|
+
• allow_initialize_path
|
|
809
|
+
• approval_required
|
|
810
|
+
• authorizer
|
|
811
|
+
• combine_options
|
|
812
|
+
• decimal_conversion_rate
|
|
813
|
+
• default_fee_bps
|
|
814
|
+
• effective_fee_bps
|
|
815
|
+
• endpoint
|
|
816
|
+
• enforced_options
|
|
817
|
+
• extend_instance_ttl
|
|
818
|
+
• fee_bps
|
|
819
|
+
• fee_deposit_address
|
|
820
|
+
• freeze_ttl_configs
|
|
821
|
+
• has_fee_bps
|
|
822
|
+
• is_compose_msg_sender
|
|
823
|
+
• is_paused
|
|
824
|
+
• is_ttl_configs_frozen
|
|
825
|
+
• lz_receive
|
|
826
|
+
• mode
|
|
827
|
+
• next_nonce
|
|
828
|
+
• oapp_version
|
|
829
|
+
• oft_version
|
|
830
|
+
• owner
|
|
831
|
+
• peer
|
|
832
|
+
• quote_oft
|
|
833
|
+
• quote_send
|
|
834
|
+
• rate_limit_capacity
|
|
835
|
+
• rate_limit_config
|
|
836
|
+
• rate_limit_in_flight
|
|
837
|
+
• renounce_ownership
|
|
838
|
+
• send
|
|
839
|
+
• set_default_fee_bps
|
|
840
|
+
• set_delegate
|
|
841
|
+
• set_enforced_options
|
|
842
|
+
• set_fee_bps
|
|
843
|
+
• set_fee_deposit_address
|
|
844
|
+
• set_paused
|
|
845
|
+
• set_peer
|
|
846
|
+
• set_rate_limit
|
|
847
|
+
• set_ttl_configs
|
|
848
|
+
• shared_decimals
|
|
849
|
+
• token
|
|
850
|
+
• transfer_ownership
|
|
851
|
+
• ttl_configs
|
|
852
|
+
• unset_fee_bps
|
|
853
|
+
• unset_rate_limit
|
|
854
|
+
✅ Build Complete
|
|
855
|
+
⏱️ stellar contract build --features sandbox: 1:05.190 (m:ss.mmm)
|
|
844
856
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
|
|
845
857
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-config
|
|
846
858
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup
|
|
859
|
+
WARN Issue while reading "/home/runner/work/monorepo-internal/monorepo-internal/.npmrc". Failed to replace env in config: ${NPM_TOKEN}
|
|
847
860
|
|
|
848
861
|
> @layerzerolabs/protocol-stellar-v2@0.0.1 generate:sdk /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar
|
|
849
862
|
> pnpm exec lz-tool --script "cargo run -p ts-bindings-gen" stellar
|
|
850
863
|
|
|
864
|
+
WARN Issue while reading "/home/runner/work/monorepo-internal/monorepo-internal/.npmrc". Failed to replace env in config: ${NPM_TOKEN}
|
|
851
865
|
📦 Using 4 default cache volume(s) for stellar
|
|
852
866
|
✅ stellar-23.1.4 (Stellar CLI with UID/GID support for permission fixes)
|
|
853
867
|
🔧 stellar version: 23.1.4
|
|
@@ -862,72 +876,72 @@ sha256:2477334a514bfb7b9dd6b51d49e5c2ef2ca47d8f4fca31ca4209be570fec6423
|
|
|
862
876
|
🔒 Acquired lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
|
|
863
877
|
$ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_LINKER=clang -e CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER=clang -e $'CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUSTFLAGS=-C link-arg=-fuse-ld=mold' -e $'CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_RUSTFLAGS=-C link-arg=-fuse-ld=mold' -e LOCAL_UID=1001 -e LOCAL_GID=1001 -v /home/runner/work/monorepo-internal/monorepo-internal:/workspace -w /workspace/contracts/protocol/stellar -v lz-tooling-cache-stellar-config:/cache/stellar -v lz-tooling-cache-stellar-cargo:/cache/cargo -v lz-tooling-cache-stellar-rustup:/cache/rustup -v /home/runner/.sccache:/cache/sccache 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_23.1.4_patch_6 bash -c $'cargo run -p ts-bindings-gen'
|
|
864
878
|
Downloading crates ...
|
|
865
|
-
Downloaded digest v0.9.0
|
|
866
|
-
Downloaded include_dir v0.7.4
|
|
867
879
|
Downloaded opaque-debug v0.3.1
|
|
880
|
+
Downloaded digest v0.9.0
|
|
881
|
+
Downloaded glob v0.3.3
|
|
882
|
+
Downloaded sha2 v0.9.9
|
|
868
883
|
Downloaded block-buffer v0.9.0
|
|
869
884
|
Downloaded anyhow v1.0.100
|
|
870
885
|
Downloaded include_dir_macros v0.7.4
|
|
871
|
-
Downloaded glob v0.3.3
|
|
872
886
|
Downloaded heck v0.4.1
|
|
873
|
-
Downloaded sha2 v0.9.9
|
|
874
887
|
Downloaded base64 v0.21.7
|
|
875
888
|
Downloaded soroban-spec-typescript v23.1.4
|
|
889
|
+
Downloaded include_dir v0.7.4
|
|
876
890
|
Compiling proc-macro2 v1.0.103
|
|
877
|
-
Compiling unicode-ident v1.0.22
|
|
878
891
|
Compiling quote v1.0.41
|
|
892
|
+
Compiling unicode-ident v1.0.22
|
|
879
893
|
Compiling serde_json v1.0.145
|
|
880
|
-
Compiling typenum v1.19.0
|
|
881
|
-
Compiling version_check v0.9.5
|
|
882
894
|
Compiling serde_core v1.0.228
|
|
895
|
+
Compiling version_check v0.9.5
|
|
896
|
+
Compiling typenum v1.19.0
|
|
883
897
|
Compiling serde v1.0.228
|
|
884
|
-
Compiling ryu v1.0.20
|
|
885
898
|
Compiling memchr v2.7.6
|
|
899
|
+
Compiling ryu v1.0.20
|
|
886
900
|
Compiling itoa v1.0.15
|
|
887
|
-
Compiling strsim v0.11.1
|
|
888
|
-
Compiling ident_case v1.0.1
|
|
889
901
|
Compiling fnv v1.0.7
|
|
902
|
+
Compiling ident_case v1.0.1
|
|
903
|
+
Compiling strsim v0.11.1
|
|
890
904
|
Compiling schemars v0.8.22
|
|
891
|
-
Compiling dyn-clone v1.0.20
|
|
892
|
-
Compiling cfg-if v1.0.4
|
|
893
905
|
Compiling cpufeatures v0.2.17
|
|
894
|
-
Compiling
|
|
895
|
-
Compiling
|
|
906
|
+
Compiling cfg-if v1.0.4
|
|
907
|
+
Compiling dyn-clone v1.0.20
|
|
896
908
|
Compiling thiserror v1.0.69
|
|
897
909
|
Compiling equivalent v1.0.2
|
|
910
|
+
Compiling hashbrown v0.16.0
|
|
911
|
+
Compiling data-encoding v2.9.0
|
|
912
|
+
Compiling escape-bytes v0.1.1
|
|
913
|
+
Compiling generic-array v0.14.9
|
|
898
914
|
Compiling ethnum v1.5.2
|
|
899
|
-
Compiling base64 v0.22.1
|
|
900
915
|
Compiling prettyplease v0.2.37
|
|
901
|
-
Compiling generic-array v0.14.9
|
|
902
|
-
Compiling escape-bytes v0.1.1
|
|
903
916
|
Compiling semver v1.0.27
|
|
917
|
+
Compiling base64 v0.22.1
|
|
904
918
|
Compiling opaque-debug v0.3.1
|
|
905
|
-
Compiling either v1.15.0
|
|
906
919
|
Compiling anyhow v1.0.100
|
|
920
|
+
Compiling either v1.15.0
|
|
907
921
|
Compiling glob v0.3.3
|
|
908
922
|
Compiling base64 v0.21.7
|
|
909
923
|
Compiling itertools v0.10.5
|
|
910
|
-
Compiling heck v0.4.1
|
|
911
924
|
Compiling indexmap v2.12.0
|
|
925
|
+
Compiling heck v0.4.1
|
|
912
926
|
Compiling syn v2.0.108
|
|
913
927
|
Compiling block-buffer v0.10.4
|
|
914
928
|
Compiling crypto-common v0.1.6
|
|
915
929
|
Compiling block-buffer v0.9.0
|
|
916
930
|
Compiling digest v0.9.0
|
|
917
931
|
Compiling digest v0.10.7
|
|
918
|
-
Compiling wasmparser v0.116.1
|
|
919
932
|
Compiling sha2 v0.9.9
|
|
920
|
-
Compiling
|
|
933
|
+
Compiling wasmparser v0.116.1
|
|
921
934
|
Compiling include_dir_macros v0.7.4
|
|
935
|
+
Compiling sha2 v0.10.9
|
|
922
936
|
Compiling include_dir v0.7.4
|
|
923
937
|
Compiling darling_core v0.21.3
|
|
924
938
|
Compiling serde_derive v1.0.228
|
|
925
939
|
Compiling thiserror-impl v1.0.69
|
|
926
940
|
Compiling cfg_eval v0.1.2
|
|
927
941
|
Compiling crate-git-revision v0.0.6
|
|
942
|
+
Compiling darling_macro v0.21.3
|
|
928
943
|
Compiling stellar-strkey v0.0.13
|
|
929
944
|
Compiling stellar-xdr v23.0.0
|
|
930
|
-
Compiling darling_macro v0.21.3
|
|
931
945
|
Compiling hex v0.4.3
|
|
932
946
|
Compiling darling v0.21.3
|
|
933
947
|
Compiling serde_with_macros v3.15.1
|
|
@@ -935,7 +949,7 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
935
949
|
Compiling soroban-spec v23.4.0
|
|
936
950
|
Compiling soroban-spec-typescript v23.1.4
|
|
937
951
|
Compiling ts-bindings-gen v0.0.1 (/workspace/contracts/protocol/stellar/tools/ts-bindings-gen)
|
|
938
|
-
Finished `dev` profile [unoptimized + debuginfo] target(s) in 42.
|
|
952
|
+
Finished `dev` profile [unoptimized + debuginfo] target(s) in 42.89s
|
|
939
953
|
Running `target/debug/ts-bindings-gen`
|
|
940
954
|
🚀 Generating TypeScript bindings for Stellar contracts...
|
|
941
955
|
|
|
@@ -959,6 +973,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
959
973
|
Output: sdk/src/generated/uln302.ts
|
|
960
974
|
Generating bindings...
|
|
961
975
|
✓ Generated: sdk/src/generated/uln302.ts
|
|
976
|
+
📦 Processing contract: treasury
|
|
977
|
+
WASM: target/wasm32v1-none/release/treasury.wasm
|
|
978
|
+
Output: sdk/src/generated/treasury.ts
|
|
979
|
+
Generating bindings...
|
|
980
|
+
✓ Generated: sdk/src/generated/treasury.ts
|
|
962
981
|
📦 Processing contract: upgrader
|
|
963
982
|
WASM: target/wasm32v1-none/release/upgrader.wasm
|
|
964
983
|
Output: sdk/src/generated/upgrader.ts
|
|
@@ -1006,13 +1025,14 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
1006
1025
|
✓ Generated: sdk/src/generated/oft_std.ts
|
|
1007
1026
|
|
|
1008
1027
|
✅ TypeScript binding generation complete!
|
|
1009
|
-
Generated
|
|
1028
|
+
Generated 14 contract(s)
|
|
1010
1029
|
|
|
1011
1030
|
📦 Generated files in sdk/src/generated/:
|
|
1012
1031
|
- endpoint.ts
|
|
1013
1032
|
- sml.ts
|
|
1014
1033
|
- bml.ts
|
|
1015
1034
|
- uln302.ts
|
|
1035
|
+
- treasury.ts
|
|
1016
1036
|
- upgrader.ts
|
|
1017
1037
|
- dvn.ts
|
|
1018
1038
|
- dvn_fee_lib.ts
|
|
@@ -1022,7 +1042,28 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
1022
1042
|
- price_feed.ts
|
|
1023
1043
|
- counter.ts
|
|
1024
1044
|
- oft_std.ts
|
|
1025
|
-
⏱️ bash -c cargo run -p ts-bindings-gen: 43.
|
|
1045
|
+
⏱️ bash -c cargo run -p ts-bindings-gen: 43.284s
|
|
1026
1046
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
|
|
1027
1047
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-config
|
|
1028
1048
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup
|
|
1049
|
+
WARN Issue while reading "/home/runner/work/monorepo-internal/monorepo-internal/.npmrc". Failed to replace env in config: ${NPM_TOKEN}
|
|
1050
|
+
|
|
1051
|
+
> @layerzerolabs/protocol-stellar-v2@0.0.1 build:wasm /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar
|
|
1052
|
+
> lz-tool extra stellar build-typescript-sdk target sdk/src
|
|
1053
|
+
|
|
1054
|
+
✅ blocked_message_lib.wasm -> wasm/blocked-message-lib.ts (13241 bytes)
|
|
1055
|
+
✅ counter.wasm -> wasm/counter.ts (37218 bytes)
|
|
1056
|
+
✅ dvn.wasm -> wasm/dvn.ts (56263 bytes)
|
|
1057
|
+
✅ dvn_fee_lib.wasm -> wasm/dvn-fee-lib.ts (20368 bytes)
|
|
1058
|
+
✅ endpoint_v2.wasm -> wasm/endpoint-v2.ts (55941 bytes)
|
|
1059
|
+
✅ executor.wasm -> wasm/executor.ts (53108 bytes)
|
|
1060
|
+
✅ executor_fee_lib.wasm -> wasm/executor-fee-lib.ts (32063 bytes)
|
|
1061
|
+
✅ executor_helper.wasm -> wasm/executor-helper.ts (27388 bytes)
|
|
1062
|
+
✅ layerzero_views.wasm -> wasm/layerzero-views.ts (30051 bytes)
|
|
1063
|
+
✅ oft_std.wasm -> wasm/oft-std.ts (56449 bytes)
|
|
1064
|
+
✅ price_feed.wasm -> wasm/price-feed.ts (32046 bytes)
|
|
1065
|
+
✅ simple_message_lib.wasm -> wasm/simple-message-lib.ts (26121 bytes)
|
|
1066
|
+
✅ treasury.wasm -> wasm/treasury.ts (24293 bytes)
|
|
1067
|
+
✅ uln302.wasm -> wasm/uln302.ts (54211 bytes)
|
|
1068
|
+
✅ upgrader.wasm -> wasm/upgrader.ts (1597 bytes)
|
|
1069
|
+
✅ Generated wasm.ts (15 contracts)
|