@layerzerolabs/protocol-stellar-v2 0.2.15 → 0.2.19
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 +365 -297
- package/.turbo/turbo-lint.log +142 -110
- package/.turbo/turbo-test.log +1273 -1222
- package/Cargo.lock +20 -5
- package/Cargo.toml +4 -1
- 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 +24 -4
- 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/Cargo.toml +10 -7
- package/contracts/oapps/{oft-std → oft}/integration-tests/extensions/test_oft_fee.rs +3 -4
- package/contracts/oapps/{oft-std → oft}/integration-tests/extensions/test_pausable.rs +2 -3
- package/contracts/oapps/{oft-std → oft}/integration-tests/extensions/test_rate_limiter.rs +1 -1
- package/contracts/oapps/oft/integration-tests/mod.rs +1 -1
- package/contracts/oapps/oft/integration-tests/setup.rs +29 -110
- package/contracts/oapps/oft/integration-tests/utils.rs +254 -21
- package/contracts/oapps/oft/src/extensions/oft_fee.rs +13 -14
- 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 +11 -13
- package/contracts/oapps/oft/src/oft.rs +147 -225
- package/contracts/oapps/oft/src/oft_types/lock_unlock.rs +9 -13
- package/contracts/oapps/oft/src/oft_types/mint_burn.rs +31 -14
- package/contracts/oapps/oft/src/oft_types/mod.rs +13 -0
- package/contracts/oapps/{oft-std → oft-core}/Cargo.toml +6 -4
- package/contracts/oapps/{oft-std → oft-core}/integration-tests/mod.rs +1 -1
- package/contracts/oapps/{oft-std → oft-core}/integration-tests/setup.rs +129 -30
- package/contracts/oapps/{oft → oft-core}/integration-tests/test_with_sml.rs +3 -3
- package/contracts/oapps/oft-core/integration-tests/utils.rs +201 -0
- package/contracts/oapps/oft-core/src/errors.rs +13 -0
- package/contracts/oapps/oft-core/src/lib.rs +18 -0
- package/contracts/oapps/oft-core/src/oft_core.rs +439 -0
- package/contracts/oapps/{oft → oft-core}/src/storage.rs +2 -0
- package/contracts/oapps/{oft → oft-core}/src/tests/mod.rs +0 -2
- package/contracts/oapps/{oft → oft-core}/src/tests/test_decimals.rs +2 -2
- package/contracts/oapps/{oft → oft-core}/src/tests/test_lz_receive.rs +7 -7
- package/contracts/oapps/{oft → oft-core}/src/tests/test_oft_msg_codec.rs +4 -5
- package/contracts/oapps/{oft → oft-core}/src/tests/test_resolve_address.rs +3 -3
- package/contracts/oapps/{oft → oft-core}/src/tests/test_utils.rs +78 -37
- package/contracts/oapps/oft-core/src/types.rs +58 -0
- package/contracts/oapps/{oft → oft-core}/src/utils.rs +1 -1
- package/contracts/upgrader/src/lib.rs +4 -4
- package/contracts/utils/src/auth.rs +44 -0
- package/contracts/utils/src/errors.rs +31 -5
- package/contracts/utils/src/lib.rs +3 -0
- package/contracts/utils/src/multisig.rs +211 -0
- package/contracts/utils/src/ownable.rs +137 -13
- 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 +456 -7
- 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 +7 -5
- package/sdk/.turbo/turbo-build.log +1 -0
- package/sdk/.turbo/turbo-test.log +1019 -0
- package/sdk/dist/generated/bml.d.ts +95 -8
- package/sdk/dist/generated/bml.js +95 -36
- package/sdk/dist/generated/counter.d.ts +289 -44
- package/sdk/dist/generated/counter.js +119 -49
- package/sdk/dist/generated/dvn.d.ts +312 -229
- package/sdk/dist/generated/dvn.js +144 -83
- package/sdk/dist/generated/dvn_fee_lib.d.ts +258 -63
- package/sdk/dist/generated/dvn_fee_lib.js +95 -26
- package/sdk/dist/generated/endpoint.d.ts +219 -24
- package/sdk/dist/generated/endpoint.js +108 -41
- package/sdk/dist/generated/executor.d.ts +239 -87
- package/sdk/dist/generated/executor.js +135 -63
- package/sdk/dist/generated/executor_fee_lib.d.ts +278 -74
- package/sdk/dist/generated/executor_fee_lib.js +135 -59
- package/sdk/dist/generated/executor_helper.d.ts +163 -21
- package/sdk/dist/generated/executor_helper.js +124 -52
- package/sdk/dist/generated/oft.d.ts +1842 -0
- package/sdk/dist/generated/oft.js +345 -0
- package/sdk/dist/generated/price_feed.d.ts +258 -63
- package/sdk/dist/generated/price_feed.js +95 -26
- package/sdk/dist/generated/sml.d.ts +235 -34
- package/sdk/dist/generated/sml.js +126 -53
- package/sdk/dist/generated/treasury.d.ts +1016 -0
- package/sdk/dist/generated/treasury.js +248 -0
- package/sdk/dist/generated/uln302.d.ts +235 -34
- package/sdk/dist/generated/uln302.js +126 -53
- package/sdk/dist/generated/upgrader.d.ts +17 -2
- package/sdk/dist/generated/upgrader.js +19 -1
- package/sdk/dist/index.d.ts +2 -1
- package/sdk/dist/index.js +2 -1
- package/sdk/package.json +6 -3
- package/sdk/src/index.ts +2 -1
- 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} +196 -321
- 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/turbo.json +8 -0
- package/sdk/vitest.config.ts +21 -0
- package/tools/ts-bindings-gen/Cargo.toml +2 -0
- package/tools/ts-bindings-gen/src/main.rs +52 -4
- 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/oapps/oft/src/errors.rs +0 -8
- package/contracts/oapps/oft/src/interfaces/mint_burn_token.rs +0 -23
- package/contracts/oapps/oft/src/interfaces/mod.rs +0 -3
- package/contracts/oapps/oft/src/tests/extensions/mod.rs +0 -11
- package/contracts/oapps/oft/src/tests/extensions/setup.rs +0 -903
- package/contracts/oapps/oft/src/tests/extensions/test_oft_fee.rs +0 -749
- package/contracts/oapps/oft/src/tests/extensions/test_pausable.rs +0 -432
- package/contracts/oapps/oft/src/tests/extensions/test_rate_limiter.rs +0 -1078
- package/contracts/oapps/oft/src/types.rs +0 -38
- package/contracts/oapps/oft-std/integration-tests/utils.rs +0 -427
- package/contracts/oapps/oft-std/src/lib.rs +0 -16
- package/contracts/oapps/oft-std/src/oft.rs +0 -156
- package/contracts/workers/dvn/src/interfaces/multisig.rs +0 -56
- package/contracts/workers/dvn/src/multisig.rs +0 -157
- package/sdk/dist/generated/oft_std.d.ts +0 -1544
- package/sdk/dist/generated/oft_std.js +0 -271
- package/sdk/test/index.test.ts +0 -375
- /package/contracts/oapps/{oft-std → oft}/integration-tests/extensions/mod.rs +0 -0
- /package/contracts/oapps/{oft → oft-core}/src/codec/mod.rs +0 -0
- /package/contracts/oapps/{oft → oft-core}/src/codec/oft_compose_msg_codec.rs +0 -0
- /package/contracts/oapps/{oft → oft-core}/src/codec/oft_msg_codec.rs +0 -0
- /package/contracts/oapps/{oft → oft-core}/src/events.rs +0 -0
- /package/contracts/oapps/{oft → oft-core}/src/tests/test_oft_compose_msg_codec.rs +0 -0
- /package/contracts/oapps/{oft → oft-core}/src/tests/test_oft_version.rs +0 -0
- /package/contracts/oapps/{oft → oft-core}/src/tests/test_quote_oft.rs +0 -0
- /package/contracts/oapps/{oft → oft-core}/src/tests/test_quote_send.rs +0 -0
- /package/contracts/oapps/{oft → oft-core}/src/tests/test_send.rs +0 -0
- /package/contracts/oapps/{oft → oft-core}/src/tests/test_token.rs +0 -0
- /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
|
|
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,16 +31,16 @@ f83e34e44849: Pulling fs layer
|
|
|
28
31
|
8bc2eeec2bb3: Pulling fs layer
|
|
29
32
|
2965c99ac5df: Pulling fs layer
|
|
30
33
|
66f4137c2c7c: Pulling fs layer
|
|
31
|
-
|
|
34
|
+
a7d3f750d5ec: Waiting
|
|
32
35
|
8a4f031cd7ce: Waiting
|
|
36
|
+
2ff845d4f468: Waiting
|
|
33
37
|
2c1ce468d9f3: Waiting
|
|
34
|
-
f83e34e44849: Waiting
|
|
35
38
|
1b86cc28e881: Waiting
|
|
39
|
+
f83e34e44849: Waiting
|
|
36
40
|
8bc2eeec2bb3: Waiting
|
|
37
|
-
889cdda75b95: Waiting
|
|
38
|
-
a7d3f750d5ec: Waiting
|
|
39
41
|
2965c99ac5df: Waiting
|
|
40
42
|
66f4137c2c7c: Waiting
|
|
43
|
+
889cdda75b95: Waiting
|
|
41
44
|
f6bd9104d248: Verifying Checksum
|
|
42
45
|
f6bd9104d248: Download complete
|
|
43
46
|
889cdda75b95: Verifying Checksum
|
|
@@ -45,24 +48,22 @@ f6bd9104d248: Download complete
|
|
|
45
48
|
f6bd9104d248: Pull complete
|
|
46
49
|
a7d3f750d5ec: Verifying Checksum
|
|
47
50
|
a7d3f750d5ec: Download complete
|
|
48
|
-
8a4f031cd7ce: Verifying Checksum
|
|
49
|
-
8a4f031cd7ce: Download complete
|
|
50
51
|
e9886d99af76: Verifying Checksum
|
|
51
52
|
e9886d99af76: Download complete
|
|
52
|
-
|
|
53
|
-
2c1ce468d9f3: Download complete
|
|
54
|
-
4617420e017b: Verifying Checksum
|
|
53
|
+
8a4f031cd7ce: Download complete
|
|
55
54
|
4617420e017b: Download complete
|
|
55
|
+
2c1ce468d9f3: Download complete
|
|
56
56
|
f83e34e44849: Verifying Checksum
|
|
57
57
|
f83e34e44849: Download complete
|
|
58
|
+
8bc2eeec2bb3: Verifying Checksum
|
|
58
59
|
8bc2eeec2bb3: Download complete
|
|
60
|
+
1b86cc28e881: Verifying Checksum
|
|
59
61
|
1b86cc28e881: Download complete
|
|
60
|
-
2ff845d4f468: Verifying Checksum
|
|
61
|
-
2ff845d4f468: Download complete
|
|
62
|
-
2965c99ac5df: Verifying Checksum
|
|
63
62
|
2965c99ac5df: Download complete
|
|
64
63
|
66f4137c2c7c: Verifying Checksum
|
|
65
64
|
66f4137c2c7c: Download complete
|
|
65
|
+
2ff845d4f468: Verifying Checksum
|
|
66
|
+
2ff845d4f468: Download complete
|
|
66
67
|
4617420e017b: Pull complete
|
|
67
68
|
e9886d99af76: Pull complete
|
|
68
69
|
889cdda75b95: Pull complete
|
|
@@ -84,164 +85,164 @@ Status: Downloaded newer image for 438003944538.dkr.ecr.us-east-1.amazonaws.com/
|
|
|
84
85
|
🔒 Acquired lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup
|
|
85
86
|
🔒 Acquired lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-config
|
|
86
87
|
🔒 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
|
|
88
|
+
$ 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
|
|
89
|
+
ℹ️ 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
90
|
Updating crates.io index
|
|
90
91
|
Updating git repository `https://github.com/OpenZeppelin/stellar-contracts.git`
|
|
91
92
|
Downloading crates ...
|
|
92
93
|
Downloaded ark-serialize v0.4.2
|
|
93
|
-
Downloaded ark-ff-macros v0.4.2
|
|
94
|
-
Downloaded ark-poly v0.4.2
|
|
95
94
|
Downloaded ark-ec v0.4.2
|
|
96
95
|
Downloaded ark-ff-asm v0.4.2
|
|
97
|
-
Downloaded
|
|
96
|
+
Downloaded ark-ff-macros v0.4.2
|
|
97
|
+
Downloaded curve25519-dalek-derive v0.1.1
|
|
98
98
|
Downloaded ahash v0.8.12
|
|
99
|
-
Downloaded ark-std v0.4.0
|
|
100
99
|
Downloaded rustc_version v0.4.1
|
|
100
|
+
Downloaded powerfmt v0.2.0
|
|
101
|
+
Downloaded hex-literal v0.4.1
|
|
101
102
|
Downloaded either v1.15.0
|
|
102
|
-
Downloaded
|
|
103
|
-
Downloaded
|
|
104
|
-
Downloaded hmac v0.12.1
|
|
105
|
-
Downloaded downcast-rs v1.2.1
|
|
106
|
-
Downloaded const-oid v0.9.6
|
|
107
|
-
Downloaded rand_chacha v0.3.1
|
|
103
|
+
Downloaded ark-poly v0.4.2
|
|
104
|
+
Downloaded derivative v2.2.0
|
|
108
105
|
Downloaded ref-cast-impl v1.0.25
|
|
109
|
-
Downloaded
|
|
106
|
+
Downloaded rfc6979 v0.4.0
|
|
110
107
|
Downloaded rand_core v0.6.4
|
|
111
|
-
Downloaded
|
|
112
|
-
Downloaded
|
|
113
|
-
Downloaded schemars v0.8.22
|
|
108
|
+
Downloaded hmac v0.12.1
|
|
109
|
+
Downloaded quote v1.0.41
|
|
114
110
|
Downloaded zeroize_derive v1.4.2
|
|
115
|
-
Downloaded
|
|
116
|
-
Downloaded
|
|
117
|
-
Downloaded k256 v0.13.4
|
|
118
|
-
Downloaded itertools v0.10.5
|
|
111
|
+
Downloaded hashbrown v0.13.2
|
|
112
|
+
Downloaded soroban-ledger-snapshot v23.4.0
|
|
119
113
|
Downloaded zeroize v1.8.2
|
|
114
|
+
Downloaded wasmi_arena v0.4.1
|
|
120
115
|
Downloaded thiserror v1.0.69
|
|
121
|
-
Downloaded
|
|
116
|
+
Downloaded wasmi_core v0.13.0
|
|
117
|
+
Downloaded unicode-ident v1.0.22
|
|
118
|
+
Downloaded spin v0.9.8
|
|
122
119
|
Downloaded typenum v1.19.0
|
|
123
|
-
Downloaded
|
|
120
|
+
Downloaded soroban-env-common v23.0.1
|
|
121
|
+
Downloaded serde_json v1.0.145
|
|
124
122
|
Downloaded wasmparser-nostd v0.100.2
|
|
125
123
|
Downloaded time v0.3.44
|
|
126
124
|
Downloaded wasmparser v0.116.1
|
|
127
|
-
Downloaded
|
|
125
|
+
Downloaded curve25519-dalek v4.1.3
|
|
128
126
|
Downloaded serde_with v3.15.1
|
|
129
|
-
Downloaded soroban-
|
|
127
|
+
Downloaded soroban-wasmi v0.31.1-soroban.20.0.1
|
|
130
128
|
Downloaded zerocopy v0.8.27
|
|
131
129
|
Downloaded syn v1.0.109
|
|
132
|
-
Downloaded serde_json v1.0.145
|
|
133
130
|
Downloaded syn v2.0.108
|
|
134
|
-
Downloaded
|
|
135
|
-
Downloaded
|
|
131
|
+
Downloaded soroban-sdk v23.4.0
|
|
132
|
+
Downloaded schemars v1.0.5
|
|
133
|
+
Downloaded serde_derive v1.0.228
|
|
134
|
+
Downloaded serde_core v1.0.228
|
|
135
|
+
Downloaded schemars v0.9.0
|
|
136
|
+
Downloaded libm v0.2.15
|
|
137
|
+
Downloaded hashbrown v0.16.0
|
|
138
|
+
Downloaded serde v1.0.228
|
|
139
|
+
Downloaded soroban-env-host v23.0.1
|
|
136
140
|
Downloaded soroban-sdk-macros v23.4.0
|
|
137
|
-
Downloaded soroban-env-common v23.0.1
|
|
138
141
|
Downloaded smallvec v1.15.1
|
|
139
|
-
Downloaded sha2 v0.10.9
|
|
140
|
-
Downloaded soroban-env-host v23.0.1
|
|
141
142
|
Downloaded serde_with_macros v3.15.1
|
|
142
|
-
Downloaded schemars v0.9.0
|
|
143
143
|
Downloaded itertools v0.14.0
|
|
144
|
-
Downloaded
|
|
145
|
-
Downloaded unicode-ident v1.0.22
|
|
144
|
+
Downloaded itertools v0.10.5
|
|
146
145
|
Downloaded time-macros v0.2.24
|
|
147
|
-
Downloaded
|
|
146
|
+
Downloaded time-core v0.1.6
|
|
147
|
+
Downloaded stellar-strkey v0.0.13
|
|
148
|
+
Downloaded static_assertions v1.1.0
|
|
148
149
|
Downloaded spki v0.7.3
|
|
149
|
-
Downloaded
|
|
150
|
-
Downloaded
|
|
151
|
-
Downloaded
|
|
152
|
-
Downloaded
|
|
153
|
-
Downloaded indexmap v2.12.0
|
|
154
|
-
Downloaded hashbrown v0.16.0
|
|
155
|
-
Downloaded crypto-bigint v0.5.5
|
|
150
|
+
Downloaded sha2 v0.10.9
|
|
151
|
+
Downloaded der v0.7.10
|
|
152
|
+
Downloaded strsim v0.11.1
|
|
153
|
+
Downloaded thiserror-impl v1.0.69
|
|
156
154
|
Downloaded soroban-env-macros v23.0.1
|
|
157
|
-
Downloaded
|
|
155
|
+
Downloaded soroban-env-guest v23.0.1
|
|
156
|
+
Downloaded libc v0.2.177
|
|
157
|
+
Downloaded soroban-builtin-sdk-macros v23.0.1
|
|
158
|
+
Downloaded rand v0.8.5
|
|
159
|
+
Downloaded num-bigint v0.4.6
|
|
160
|
+
Downloaded chrono v0.4.42
|
|
161
|
+
Downloaded soroban-spec-rust v23.4.0
|
|
158
162
|
Downloaded semver v1.0.27
|
|
159
|
-
Downloaded
|
|
160
|
-
Downloaded
|
|
163
|
+
Downloaded sha3 v0.10.8
|
|
164
|
+
Downloaded sec1 v0.7.3
|
|
165
|
+
Downloaded darling_core v0.21.3
|
|
166
|
+
Downloaded ark-bls12-381 v0.4.0
|
|
167
|
+
Downloaded signature v2.2.0
|
|
168
|
+
Downloaded prettyplease v0.2.37
|
|
169
|
+
Downloaded hashbrown v0.12.3
|
|
170
|
+
Downloaded ed25519-dalek v2.2.0
|
|
171
|
+
Downloaded darling v0.20.11
|
|
161
172
|
Downloaded visibility v0.1.1
|
|
162
|
-
Downloaded libc v0.2.177
|
|
163
173
|
Downloaded version_check v0.9.5
|
|
164
|
-
Downloaded time-core v0.1.6
|
|
165
|
-
Downloaded sha3 v0.10.8
|
|
166
174
|
Downloaded subtle v2.6.1
|
|
167
|
-
Downloaded
|
|
168
|
-
Downloaded
|
|
169
|
-
Downloaded
|
|
170
|
-
Downloaded
|
|
171
|
-
Downloaded proc-macro2 v1.0.103
|
|
172
|
-
Downloaded memchr v2.7.6
|
|
173
|
-
Downloaded libm v0.2.15
|
|
175
|
+
Downloaded soroban-spec v23.4.0
|
|
176
|
+
Downloaded schemars v0.8.22
|
|
177
|
+
Downloaded ryu v1.0.20
|
|
178
|
+
Downloaded p256 v0.13.2
|
|
174
179
|
Downloaded indexmap v1.9.3
|
|
175
|
-
Downloaded
|
|
176
|
-
Downloaded
|
|
177
|
-
Downloaded
|
|
180
|
+
Downloaded getrandom v0.2.16
|
|
181
|
+
Downloaded ethnum v1.5.2
|
|
182
|
+
Downloaded elliptic-curve v0.13.8
|
|
183
|
+
Downloaded darling_core v0.20.11
|
|
184
|
+
Downloaded darling v0.21.3
|
|
185
|
+
Downloaded ark-std v0.4.0
|
|
178
186
|
Downloaded once_cell v1.21.3
|
|
179
|
-
Downloaded
|
|
180
|
-
Downloaded
|
|
181
|
-
Downloaded
|
|
187
|
+
Downloaded memchr v2.7.6
|
|
188
|
+
Downloaded k256 v0.13.4
|
|
189
|
+
Downloaded indexmap v2.12.0
|
|
190
|
+
Downloaded iana-time-zone v0.1.64
|
|
191
|
+
Downloaded group v0.13.0
|
|
182
192
|
Downloaded generic-array v0.14.9
|
|
183
193
|
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
|
|
193
|
-
Downloaded soroban-env-guest v23.0.1
|
|
194
|
-
Downloaded soroban-builtin-sdk-macros v23.0.1
|
|
195
|
-
Downloaded schemars v1.0.5
|
|
196
|
-
Downloaded rfc6979 v0.4.0
|
|
197
|
-
Downloaded ref-cast v1.0.25
|
|
198
|
-
Downloaded prettyplease v0.2.37
|
|
199
|
-
Downloaded paste v1.0.15
|
|
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
|
|
206
|
-
Downloaded iana-time-zone v0.1.64
|
|
207
|
-
Downloaded fnv v1.0.7
|
|
208
|
-
Downloaded escape-bytes v0.1.1
|
|
209
194
|
Downloaded equivalent v1.0.2
|
|
210
|
-
Downloaded
|
|
211
|
-
Downloaded
|
|
212
|
-
Downloaded
|
|
213
|
-
Downloaded p256 v0.13.2
|
|
195
|
+
Downloaded ed25519 v2.2.3
|
|
196
|
+
Downloaded ecdsa v0.16.9
|
|
197
|
+
Downloaded downcast-rs v1.2.1
|
|
214
198
|
Downloaded digest v0.10.7
|
|
215
|
-
Downloaded
|
|
216
|
-
Downloaded itoa v1.0.15
|
|
217
|
-
Downloaded ident_case v1.0.1
|
|
218
|
-
Downloaded hex-literal v0.4.1
|
|
219
|
-
Downloaded dtor v0.1.1
|
|
220
|
-
Downloaded darling v0.21.3
|
|
221
|
-
Downloaded cfg_eval v0.1.2
|
|
222
|
-
Downloaded cfg-if v1.0.4
|
|
223
|
-
Downloaded base16ct v0.2.0
|
|
224
|
-
Downloaded ark-serialize-derive v0.4.2
|
|
225
|
-
Downloaded indexmap-nostd v0.4.0
|
|
226
|
-
Downloaded getrandom v0.2.16
|
|
227
|
-
Downloaded darling_macro v0.21.3
|
|
199
|
+
Downloaded ctor-proc-macro v0.0.6
|
|
228
200
|
Downloaded crypto-common v0.1.6
|
|
201
|
+
Downloaded crypto-bigint v0.5.5
|
|
202
|
+
Downloaded const-oid v0.9.6
|
|
229
203
|
Downloaded base64ct v1.8.0
|
|
230
|
-
Downloaded
|
|
204
|
+
Downloaded rand_chacha v0.3.1
|
|
205
|
+
Downloaded primeorder v0.13.6
|
|
206
|
+
Downloaded ppv-lite86 v0.2.21
|
|
231
207
|
Downloaded pkcs8 v0.10.2
|
|
208
|
+
Downloaded paste v1.0.15
|
|
232
209
|
Downloaded num-integer v0.1.46
|
|
210
|
+
Downloaded indexmap-nostd v0.4.0
|
|
211
|
+
Downloaded dyn-clone v1.0.20
|
|
212
|
+
Downloaded dtor v0.1.1
|
|
213
|
+
Downloaded cpufeatures v0.2.17
|
|
214
|
+
Downloaded base64 v0.22.1
|
|
233
215
|
Downloaded num-conv v0.1.0
|
|
234
|
-
Downloaded
|
|
235
|
-
Downloaded
|
|
236
|
-
Downloaded
|
|
237
|
-
Downloaded
|
|
238
|
-
Downloaded derive_arbitrary v1.3.2
|
|
216
|
+
Downloaded ident_case v1.0.1
|
|
217
|
+
Downloaded hex v0.4.3
|
|
218
|
+
Downloaded heck v0.5.0
|
|
219
|
+
Downloaded fnv v1.0.7
|
|
239
220
|
Downloaded deranged v0.5.5
|
|
240
|
-
Downloaded ed25519 v2.2.3
|
|
241
221
|
Downloaded ctor v0.5.0
|
|
222
|
+
Downloaded crate-git-revision v0.0.6
|
|
223
|
+
Downloaded block-buffer v0.10.4
|
|
224
|
+
Downloaded autocfg v1.5.0
|
|
225
|
+
Downloaded ark-serialize-derive v0.4.2
|
|
242
226
|
Downloaded ark-ff v0.4.2
|
|
243
|
-
Downloaded
|
|
227
|
+
Downloaded proc-macro2 v1.0.103
|
|
228
|
+
Downloaded num-traits v0.2.19
|
|
229
|
+
Downloaded num-derive v0.4.2
|
|
230
|
+
Downloaded macro-string v0.1.4
|
|
231
|
+
Downloaded keccak v0.1.5
|
|
232
|
+
Downloaded itoa v1.0.15
|
|
233
|
+
Downloaded escape-bytes v0.1.1
|
|
234
|
+
Downloaded derive_arbitrary v1.3.2
|
|
235
|
+
Downloaded data-encoding v2.9.0
|
|
236
|
+
Downloaded darling_macro v0.21.3
|
|
237
|
+
Downloaded cfg-if v1.0.4
|
|
238
|
+
Downloaded bytes-lit v0.0.5
|
|
239
|
+
Downloaded base16ct v0.2.0
|
|
240
|
+
Downloaded arbitrary v1.3.2
|
|
241
|
+
Downloaded darling_macro v0.20.11
|
|
242
|
+
Downloaded dtor-proc-macro v0.0.6
|
|
243
|
+
Downloaded ref-cast v1.0.25
|
|
244
244
|
Downloaded stellar-xdr v23.0.0
|
|
245
|
+
Downloaded cfg_eval v0.1.2
|
|
245
246
|
Compiling proc-macro2 v1.0.103
|
|
246
247
|
Compiling quote v1.0.41
|
|
247
248
|
Compiling unicode-ident v1.0.22
|
|
@@ -251,38 +252,38 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
251
252
|
Compiling ryu v1.0.20
|
|
252
253
|
Compiling itoa v1.0.15
|
|
253
254
|
Compiling memchr v2.7.6
|
|
254
|
-
Compiling ident_case v1.0.1
|
|
255
255
|
Compiling strsim v0.11.1
|
|
256
|
+
Compiling ident_case v1.0.1
|
|
256
257
|
Compiling fnv v1.0.7
|
|
257
258
|
Compiling version_check v0.9.5
|
|
258
259
|
Compiling typenum v1.19.0
|
|
259
260
|
Compiling autocfg v1.5.0
|
|
260
261
|
Compiling schemars v0.8.22
|
|
261
262
|
Compiling dyn-clone v1.0.20
|
|
262
|
-
Compiling data-encoding v2.9.0
|
|
263
263
|
Compiling cfg-if v1.0.4
|
|
264
|
+
Compiling data-encoding v2.9.0
|
|
264
265
|
Compiling cpufeatures v0.2.17
|
|
265
|
-
Compiling either v1.15.0
|
|
266
|
-
Compiling ethnum v1.5.2
|
|
267
266
|
Compiling escape-bytes v0.1.1
|
|
267
|
+
Compiling ethnum v1.5.2
|
|
268
|
+
Compiling either v1.15.0
|
|
268
269
|
Compiling semver v1.0.27
|
|
269
270
|
Compiling prettyplease v0.2.37
|
|
270
271
|
Compiling hashbrown v0.16.0
|
|
271
|
-
Compiling generic-array v0.14.9
|
|
272
|
-
Compiling thiserror v1.0.69
|
|
273
272
|
Compiling equivalent v1.0.2
|
|
274
|
-
Compiling
|
|
273
|
+
Compiling thiserror v1.0.69
|
|
275
274
|
Compiling base64 v0.22.1
|
|
276
|
-
Compiling
|
|
275
|
+
Compiling num-traits v0.2.19
|
|
276
|
+
Compiling generic-array v0.14.9
|
|
277
277
|
Compiling static_assertions v1.1.0
|
|
278
|
-
Compiling
|
|
278
|
+
Compiling itertools v0.10.5
|
|
279
279
|
Compiling rustc_version v0.4.1
|
|
280
|
+
Compiling heck v0.5.0
|
|
280
281
|
Compiling itertools v0.14.0
|
|
281
282
|
Compiling indexmap v2.12.0
|
|
282
283
|
Compiling syn v2.0.108
|
|
283
|
-
Compiling wasmparser v0.116.1
|
|
284
|
-
Compiling crypto-common v0.1.6
|
|
285
284
|
Compiling block-buffer v0.10.4
|
|
285
|
+
Compiling crypto-common v0.1.6
|
|
286
|
+
Compiling wasmparser v0.116.1
|
|
286
287
|
Compiling num-integer v0.1.46
|
|
287
288
|
Compiling digest v0.10.7
|
|
288
289
|
Compiling sha2 v0.10.9
|
|
@@ -294,8 +295,8 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
294
295
|
Compiling cfg_eval v0.1.2
|
|
295
296
|
Compiling thiserror-impl v1.0.69
|
|
296
297
|
Compiling num-derive v0.4.2
|
|
297
|
-
Compiling visibility v0.1.1
|
|
298
298
|
Compiling bytes-lit v0.0.5
|
|
299
|
+
Compiling visibility v0.1.1
|
|
299
300
|
Compiling common-macros v0.0.1 (/workspace/contracts/protocol/stellar/contracts/common-macros)
|
|
300
301
|
Compiling darling_macro v0.20.11
|
|
301
302
|
Compiling darling_macro v0.21.3
|
|
@@ -312,16 +313,18 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
312
313
|
Compiling soroban-spec v23.4.0
|
|
313
314
|
Compiling soroban-env-macros v23.0.1
|
|
314
315
|
Compiling soroban-spec-rust v23.4.0
|
|
315
|
-
Compiling soroban-sdk-macros v23.4.0
|
|
316
316
|
Compiling soroban-env-guest v23.0.1
|
|
317
|
+
Compiling soroban-sdk-macros v23.4.0
|
|
317
318
|
Compiling utils v0.0.1 (/workspace/contracts/protocol/stellar/contracts/utils)
|
|
318
319
|
Compiling endpoint-v2 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/endpoint-v2)
|
|
319
|
-
Finished `release` profile [optimized] target(s) in
|
|
320
|
+
Finished `release` profile [optimized] target(s) in 58.19s
|
|
320
321
|
ℹ️ Build Summary:
|
|
321
322
|
Wasm File: target/wasm32v1-none/release/endpoint_v2.wasm
|
|
322
|
-
Wasm Hash:
|
|
323
|
-
Exported Functions:
|
|
323
|
+
Wasm Hash: d7c15e83a1ac049aa09b98bdf584d2eee06cbc273de60ec732ab08f67f5a9b9d
|
|
324
|
+
Exported Functions: 60 found
|
|
324
325
|
• __constructor
|
|
326
|
+
• accept_ownership
|
|
327
|
+
• authorizer
|
|
325
328
|
• burn
|
|
326
329
|
• clear
|
|
327
330
|
• clear_compose
|
|
@@ -353,6 +356,8 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
353
356
|
• nilify
|
|
354
357
|
• outbound_nonce
|
|
355
358
|
• owner
|
|
359
|
+
• pending_owner
|
|
360
|
+
• propose_ownership_transfer
|
|
356
361
|
• quote
|
|
357
362
|
• receive_library_timeout
|
|
358
363
|
• recover_token
|
|
@@ -378,7 +383,7 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
378
383
|
• verify
|
|
379
384
|
• zro
|
|
380
385
|
✅ 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
|
|
386
|
+
ℹ️ 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
387
|
Compiling escape-bytes v0.1.1
|
|
383
388
|
Compiling ethnum v1.5.2
|
|
384
389
|
Compiling static_assertions v1.1.0
|
|
@@ -393,12 +398,14 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
393
398
|
Compiling message-lib-common v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/message-lib-common)
|
|
394
399
|
Compiling uln302 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/uln-302)
|
|
395
400
|
Compiling layerzero-views v0.0.1 (/workspace/contracts/protocol/stellar/contracts/layerzero-views)
|
|
396
|
-
Finished `release` profile [optimized] target(s) in
|
|
401
|
+
Finished `release` profile [optimized] target(s) in 12.83s
|
|
397
402
|
ℹ️ Build Summary:
|
|
398
403
|
Wasm File: target/wasm32v1-none/release/layerzero_views.wasm
|
|
399
|
-
Wasm Hash:
|
|
400
|
-
Exported Functions:
|
|
404
|
+
Wasm Hash: 813cc288e30574997eb9fd9a6a8d18449ef406ee2957ee7a83f967ea0846b931
|
|
405
|
+
Exported Functions: 22 found
|
|
401
406
|
• __constructor
|
|
407
|
+
• accept_ownership
|
|
408
|
+
• authorizer
|
|
402
409
|
• endpoint
|
|
403
410
|
• executable
|
|
404
411
|
• extend_instance_ttl
|
|
@@ -408,6 +415,8 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
408
415
|
• local_eid
|
|
409
416
|
• migrate
|
|
410
417
|
• owner
|
|
418
|
+
• pending_owner
|
|
419
|
+
• propose_ownership_transfer
|
|
411
420
|
• renounce_ownership
|
|
412
421
|
• set_ttl_configs
|
|
413
422
|
• transfer_ownership
|
|
@@ -420,12 +429,14 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
420
429
|
ℹ️ 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
430
|
Compiling message-lib-common v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/message-lib-common)
|
|
422
431
|
Compiling uln302 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/uln-302)
|
|
423
|
-
Finished `release` profile [optimized] target(s) in 1.
|
|
432
|
+
Finished `release` profile [optimized] target(s) in 1.68s
|
|
424
433
|
ℹ️ Build Summary:
|
|
425
434
|
Wasm File: target/wasm32v1-none/release/uln302.wasm
|
|
426
|
-
Wasm Hash:
|
|
427
|
-
Exported Functions:
|
|
435
|
+
Wasm Hash: c672ec2924162d976095c4cf9d6ea67a02d68d1c8fce2367338f46ccd3265268
|
|
436
|
+
Exported Functions: 38 found
|
|
428
437
|
• __constructor
|
|
438
|
+
• accept_ownership
|
|
439
|
+
• authorizer
|
|
429
440
|
• commit_verification
|
|
430
441
|
• confirmations
|
|
431
442
|
• default_executor_config
|
|
@@ -445,6 +456,8 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
445
456
|
• oapp_receive_uln_config
|
|
446
457
|
• oapp_send_uln_config
|
|
447
458
|
• owner
|
|
459
|
+
• pending_owner
|
|
460
|
+
• propose_ownership_transfer
|
|
448
461
|
• quote
|
|
449
462
|
• renounce_ownership
|
|
450
463
|
• send
|
|
@@ -462,19 +475,19 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
462
475
|
✅ Build Complete
|
|
463
476
|
ℹ️ 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
|
|
464
477
|
Compiling upgrader v0.0.1 (/workspace/contracts/protocol/stellar/contracts/upgrader)
|
|
465
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
478
|
+
Finished `release` profile [optimized] target(s) in 0.27s
|
|
466
479
|
ℹ️ Build Summary:
|
|
467
480
|
Wasm File: target/wasm32v1-none/release/upgrader.wasm
|
|
468
|
-
Wasm Hash:
|
|
481
|
+
Wasm Hash: 250cba854264d9d437c960e9f8ed838dbf39876947b4fb84c5a209a39b794da6
|
|
469
482
|
Exported Functions: 1 found
|
|
470
483
|
• upgrade_and_migrate
|
|
471
484
|
✅ Build Complete
|
|
472
485
|
ℹ️ 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
|
|
473
486
|
Compiling blocked-message-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/blocked-message-lib)
|
|
474
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
487
|
+
Finished `release` profile [optimized] target(s) in 0.41s
|
|
475
488
|
ℹ️ Build Summary:
|
|
476
489
|
Wasm File: target/wasm32v1-none/release/blocked_message_lib.wasm
|
|
477
|
-
Wasm Hash:
|
|
490
|
+
Wasm Hash: 7e0b2d0ec3b884665c5ccf4b3b2f289a8d3ae3575dce19a0f016a3aa9fe82a31
|
|
478
491
|
Exported Functions: 7 found
|
|
479
492
|
• get_config
|
|
480
493
|
• is_supported_eid
|
|
@@ -486,12 +499,14 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
486
499
|
✅ Build Complete
|
|
487
500
|
ℹ️ 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
501
|
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.
|
|
502
|
+
Finished `release` profile [optimized] target(s) in 0.72s
|
|
490
503
|
ℹ️ Build Summary:
|
|
491
504
|
Wasm File: target/wasm32v1-none/release/simple_message_lib.wasm
|
|
492
|
-
Wasm Hash:
|
|
493
|
-
Exported Functions:
|
|
505
|
+
Wasm Hash: 00d120a82635e4e4497d07d1233a432efc4301a890ce92b159b977a8b5275462
|
|
506
|
+
Exported Functions: 31 found
|
|
494
507
|
• __constructor
|
|
508
|
+
• accept_ownership
|
|
509
|
+
• authorizer
|
|
495
510
|
• endpoint
|
|
496
511
|
• extend_instance_ttl
|
|
497
512
|
• fee_recipient
|
|
@@ -503,6 +518,8 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
503
518
|
• message_lib_type
|
|
504
519
|
• native_fee
|
|
505
520
|
• owner
|
|
521
|
+
• pending_owner
|
|
522
|
+
• propose_ownership_transfer
|
|
506
523
|
• quote
|
|
507
524
|
• renounce_ownership
|
|
508
525
|
• send
|
|
@@ -521,12 +538,14 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
521
538
|
✅ Build Complete
|
|
522
539
|
ℹ️ 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
540
|
Compiling treasury v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/treasury)
|
|
524
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
541
|
+
Finished `release` profile [optimized] target(s) in 0.59s
|
|
525
542
|
ℹ️ Build Summary:
|
|
526
543
|
Wasm File: target/wasm32v1-none/release/treasury.wasm
|
|
527
|
-
Wasm Hash:
|
|
528
|
-
Exported Functions:
|
|
544
|
+
Wasm Hash: 1bfeb72123ffa91ac90e056f03dc8b2370a5d6563e5cedc9495b175d1e8caf20
|
|
545
|
+
Exported Functions: 21 found
|
|
529
546
|
• __constructor
|
|
547
|
+
• accept_ownership
|
|
548
|
+
• authorizer
|
|
530
549
|
• extend_instance_ttl
|
|
531
550
|
• fee_enabled
|
|
532
551
|
• freeze_ttl_configs
|
|
@@ -534,6 +553,8 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
534
553
|
• is_ttl_configs_frozen
|
|
535
554
|
• native_fee_bp
|
|
536
555
|
• owner
|
|
556
|
+
• pending_owner
|
|
557
|
+
• propose_ownership_transfer
|
|
537
558
|
• renounce_ownership
|
|
538
559
|
• set_fee_enabled
|
|
539
560
|
• set_native_fee_bp
|
|
@@ -548,13 +569,15 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
548
569
|
Compiling oapp-macros v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp-macros)
|
|
549
570
|
Compiling oapp v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp)
|
|
550
571
|
Compiling counter v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/counter)
|
|
551
|
-
Finished `release` profile [optimized] target(s) in 1.
|
|
572
|
+
Finished `release` profile [optimized] target(s) in 1.99s
|
|
552
573
|
ℹ️ Build Summary:
|
|
553
574
|
Wasm File: target/wasm32v1-none/release/counter.wasm
|
|
554
|
-
Wasm Hash:
|
|
555
|
-
Exported Functions:
|
|
575
|
+
Wasm Hash: 85427aebe5a3f0a70bb9c3c4b5ea70ffd885c17e9fec536cfa04b4d48230b605
|
|
576
|
+
Exported Functions: 35 found
|
|
556
577
|
• __constructor
|
|
578
|
+
• accept_ownership
|
|
557
579
|
• allow_initialize_path
|
|
580
|
+
• authorizer
|
|
558
581
|
• combine_options
|
|
559
582
|
• composed_count
|
|
560
583
|
• count
|
|
@@ -574,6 +597,8 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
574
597
|
• outbound_count
|
|
575
598
|
• owner
|
|
576
599
|
• peer
|
|
600
|
+
• pending_owner
|
|
601
|
+
• propose_ownership_transfer
|
|
577
602
|
• quote
|
|
578
603
|
• renounce_ownership
|
|
579
604
|
• set_delegate
|
|
@@ -585,41 +610,41 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
585
610
|
• transfer_ownership
|
|
586
611
|
• ttl_configs
|
|
587
612
|
✅ Build Complete
|
|
588
|
-
ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/workers/
|
|
613
|
+
ℹ️ 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
614
|
Compiling worker v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/worker)
|
|
590
|
-
Compiling
|
|
591
|
-
Finished `release` profile [optimized] target(s) in
|
|
615
|
+
Compiling dvn v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/dvn)
|
|
616
|
+
Finished `release` profile [optimized] target(s) in 2.34s
|
|
592
617
|
ℹ️ Build Summary:
|
|
593
|
-
Wasm File: target/wasm32v1-none/release/
|
|
594
|
-
Wasm Hash:
|
|
595
|
-
Exported Functions:
|
|
618
|
+
Wasm File: target/wasm32v1-none/release/dvn.wasm
|
|
619
|
+
Wasm Hash: 5c52cac1c298d768f8af85192d911b1f33f3885278ff4ae8f05b251c068d02a2
|
|
620
|
+
Exported Functions: 49 found
|
|
596
621
|
• __check_auth
|
|
597
622
|
• __constructor
|
|
598
623
|
• admins
|
|
599
624
|
• allowlist_size
|
|
600
625
|
• assign_job
|
|
626
|
+
• authorizer
|
|
601
627
|
• default_multiplier_bps
|
|
602
628
|
• deposit_address
|
|
603
629
|
• dst_config
|
|
604
|
-
• endpoint
|
|
605
630
|
• extend_instance_ttl
|
|
606
631
|
• freeze_ttl_configs
|
|
607
632
|
• get_fee
|
|
633
|
+
• get_signers
|
|
608
634
|
• get_supported_option_types
|
|
609
635
|
• has_acl
|
|
636
|
+
• hash_call_data
|
|
610
637
|
• is_admin
|
|
611
638
|
• is_on_allowlist
|
|
612
639
|
• is_on_denylist
|
|
640
|
+
• is_signer
|
|
613
641
|
• is_supported_message_lib
|
|
614
642
|
• is_ttl_configs_frozen
|
|
615
|
-
• is_whitelisted_fn
|
|
616
643
|
• message_libs
|
|
617
644
|
• migrate
|
|
618
|
-
• native_drop
|
|
619
|
-
• owner
|
|
620
645
|
• paused
|
|
621
646
|
• price_feed
|
|
622
|
-
•
|
|
647
|
+
• quorum_change_admin
|
|
623
648
|
• set_admin
|
|
624
649
|
• set_allowlist
|
|
625
650
|
• set_default_multiplier_bps
|
|
@@ -628,105 +653,82 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
628
653
|
• set_dst_config
|
|
629
654
|
• set_paused
|
|
630
655
|
• set_price_feed
|
|
656
|
+
• set_signer
|
|
631
657
|
• set_supported_message_lib
|
|
632
658
|
• set_supported_option_types
|
|
659
|
+
• set_threshold
|
|
633
660
|
• set_ttl_configs
|
|
634
|
-
• set_whitelisted_fn
|
|
635
661
|
• set_worker_fee_lib
|
|
636
|
-
•
|
|
662
|
+
• threshold
|
|
663
|
+
• total_signers
|
|
637
664
|
• ttl_configs
|
|
638
665
|
• upgrade
|
|
639
|
-
•
|
|
666
|
+
• verify_n_signatures
|
|
667
|
+
• verify_signatures
|
|
668
|
+
• vid
|
|
640
669
|
• worker_fee_lib
|
|
641
670
|
✅ 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
|
|
671
|
+
ℹ️ 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
|
|
672
|
+
Compiling dvn-fee-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/dvn-fee-lib)
|
|
673
|
+
Finished `release` profile [optimized] target(s) in 0.68s
|
|
646
674
|
ℹ️ Build Summary:
|
|
647
|
-
Wasm File: target/wasm32v1-none/release/
|
|
648
|
-
Wasm Hash:
|
|
649
|
-
Exported Functions:
|
|
675
|
+
Wasm File: target/wasm32v1-none/release/dvn_fee_lib.wasm
|
|
676
|
+
Wasm Hash: bc0c5db74d86951e8ef2edf14feb273b5a4eb8d038b3f0d191981161ba98d5dd
|
|
677
|
+
Exported Functions: 16 found
|
|
650
678
|
• __constructor
|
|
651
|
-
•
|
|
652
|
-
•
|
|
653
|
-
• combine_options
|
|
654
|
-
• decimal_conversion_rate
|
|
655
|
-
• default_fee_bps
|
|
656
|
-
• effective_fee_bps
|
|
657
|
-
• endpoint
|
|
658
|
-
• enforced_options
|
|
679
|
+
• accept_ownership
|
|
680
|
+
• authorizer
|
|
659
681
|
• extend_instance_ttl
|
|
660
|
-
• fee_bps
|
|
661
|
-
• fee_deposit_address
|
|
662
682
|
• freeze_ttl_configs
|
|
663
|
-
•
|
|
664
|
-
• is_compose_msg_sender
|
|
665
|
-
• is_paused
|
|
683
|
+
• get_fee
|
|
666
684
|
• is_ttl_configs_frozen
|
|
667
|
-
•
|
|
668
|
-
• mode
|
|
669
|
-
• next_nonce
|
|
670
|
-
• oapp_version
|
|
671
|
-
• oft_version
|
|
685
|
+
• migrate
|
|
672
686
|
• owner
|
|
673
|
-
•
|
|
674
|
-
•
|
|
675
|
-
• quote_send
|
|
676
|
-
• rate_limit_capacity
|
|
677
|
-
• rate_limit_config
|
|
678
|
-
• rate_limit_in_flight
|
|
687
|
+
• pending_owner
|
|
688
|
+
• propose_ownership_transfer
|
|
679
689
|
• 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
690
|
• set_ttl_configs
|
|
690
|
-
• shared_decimals
|
|
691
|
-
• token
|
|
692
691
|
• transfer_ownership
|
|
693
692
|
• ttl_configs
|
|
694
|
-
•
|
|
695
|
-
• unset_rate_limit
|
|
693
|
+
• upgrade
|
|
696
694
|
✅ 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
|
|
695
|
+
ℹ️ 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
|
|
696
|
+
Compiling executor v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor)
|
|
697
|
+
Finished `release` profile [optimized] target(s) in 1.53s
|
|
700
698
|
ℹ️ Build Summary:
|
|
701
|
-
Wasm File: target/wasm32v1-none/release/
|
|
702
|
-
Wasm Hash:
|
|
703
|
-
Exported Functions:
|
|
699
|
+
Wasm File: target/wasm32v1-none/release/executor.wasm
|
|
700
|
+
Wasm Hash: 8292af76dd7a2983d4ba9b224c35ec25fdf9e43803307e90ff50529a63afdf04
|
|
701
|
+
Exported Functions: 47 found
|
|
704
702
|
• __check_auth
|
|
705
703
|
• __constructor
|
|
704
|
+
• accept_ownership
|
|
706
705
|
• admins
|
|
707
706
|
• allowlist_size
|
|
708
707
|
• assign_job
|
|
708
|
+
• authorizer
|
|
709
709
|
• default_multiplier_bps
|
|
710
710
|
• deposit_address
|
|
711
711
|
• dst_config
|
|
712
|
+
• endpoint
|
|
712
713
|
• extend_instance_ttl
|
|
713
714
|
• freeze_ttl_configs
|
|
714
715
|
• get_fee
|
|
715
|
-
• get_signers
|
|
716
716
|
• get_supported_option_types
|
|
717
717
|
• has_acl
|
|
718
|
-
• hash_call_data
|
|
719
718
|
• is_admin
|
|
720
719
|
• is_on_allowlist
|
|
721
720
|
• is_on_denylist
|
|
722
|
-
• is_signer
|
|
723
721
|
• is_supported_message_lib
|
|
724
722
|
• is_ttl_configs_frozen
|
|
725
723
|
• message_libs
|
|
726
724
|
• migrate
|
|
725
|
+
• native_drop
|
|
726
|
+
• owner
|
|
727
727
|
• paused
|
|
728
|
+
• pending_owner
|
|
728
729
|
• price_feed
|
|
729
|
-
•
|
|
730
|
+
• propose_ownership_transfer
|
|
731
|
+
• renounce_ownership
|
|
730
732
|
• set_admin
|
|
731
733
|
• set_allowlist
|
|
732
734
|
• set_default_multiplier_bps
|
|
@@ -735,55 +737,34 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
735
737
|
• set_dst_config
|
|
736
738
|
• set_paused
|
|
737
739
|
• set_price_feed
|
|
738
|
-
• set_signer
|
|
739
740
|
• set_supported_message_lib
|
|
740
741
|
• set_supported_option_types
|
|
741
|
-
• set_threshold
|
|
742
742
|
• set_ttl_configs
|
|
743
743
|
• 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
744
|
• transfer_ownership
|
|
770
745
|
• ttl_configs
|
|
771
746
|
• upgrade
|
|
747
|
+
• withdraw_token
|
|
748
|
+
• worker_fee_lib
|
|
772
749
|
✅ Build Complete
|
|
773
750
|
ℹ️ 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
751
|
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.
|
|
752
|
+
Finished `release` profile [optimized] target(s) in 0.91s
|
|
776
753
|
ℹ️ Build Summary:
|
|
777
754
|
Wasm File: target/wasm32v1-none/release/executor_fee_lib.wasm
|
|
778
|
-
Wasm Hash:
|
|
779
|
-
Exported Functions:
|
|
755
|
+
Wasm Hash: 78a68782035118b045c5980b4b7045158774d4469e103175216969efa8b589ba
|
|
756
|
+
Exported Functions: 17 found
|
|
780
757
|
• __constructor
|
|
758
|
+
• accept_ownership
|
|
759
|
+
• authorizer
|
|
781
760
|
• extend_instance_ttl
|
|
782
761
|
• freeze_ttl_configs
|
|
783
762
|
• get_fee
|
|
784
763
|
• is_ttl_configs_frozen
|
|
785
764
|
• migrate
|
|
786
765
|
• owner
|
|
766
|
+
• pending_owner
|
|
767
|
+
• propose_ownership_transfer
|
|
787
768
|
• renounce_ownership
|
|
788
769
|
• set_ttl_configs
|
|
789
770
|
• transfer_ownership
|
|
@@ -795,27 +776,31 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
795
776
|
Compiling worker v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/worker)
|
|
796
777
|
Compiling executor v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor)
|
|
797
778
|
Compiling executor-helper v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor-helper)
|
|
798
|
-
Finished `release` profile [optimized] target(s) in
|
|
779
|
+
Finished `release` profile [optimized] target(s) in 2.13s
|
|
799
780
|
ℹ️ Build Summary:
|
|
800
781
|
Wasm File: target/wasm32v1-none/release/executor_helper.wasm
|
|
801
|
-
Wasm Hash:
|
|
802
|
-
Exported Functions:
|
|
782
|
+
Wasm Hash: 5103971ef8c9ef09d1add5a8471f46323505ab6a40f02656f2b3f6012a7ccf9e
|
|
783
|
+
Exported Functions: 6 found
|
|
803
784
|
• compose
|
|
804
785
|
• execute
|
|
786
|
+
• lz_compose_alert
|
|
787
|
+
• lz_receive_alert
|
|
805
788
|
• native_drop
|
|
806
789
|
• native_drop_and_execute
|
|
807
790
|
✅ Build Complete
|
|
808
791
|
ℹ️ 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
792
|
Compiling worker v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/worker)
|
|
810
793
|
Compiling price-feed v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/price-feed)
|
|
811
|
-
Finished `release` profile [optimized] target(s) in
|
|
794
|
+
Finished `release` profile [optimized] target(s) in 2.14s
|
|
812
795
|
ℹ️ Build Summary:
|
|
813
796
|
Wasm File: target/wasm32v1-none/release/price_feed.wasm
|
|
814
|
-
Wasm Hash:
|
|
815
|
-
Exported Functions:
|
|
797
|
+
Wasm Hash: cfc1615712a9510f7edc8a62ea2a39bf33e6f9d6717342400e93a23775b55abe
|
|
798
|
+
Exported Functions: 30 found
|
|
816
799
|
• __constructor
|
|
800
|
+
• accept_ownership
|
|
817
801
|
• arbitrum_compression_percent
|
|
818
802
|
• arbitrum_price_ext
|
|
803
|
+
• authorizer
|
|
819
804
|
• eid_to_model_type
|
|
820
805
|
• estimate_fee_by_eid
|
|
821
806
|
• extend_instance_ttl
|
|
@@ -827,6 +812,8 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
827
812
|
• migrate
|
|
828
813
|
• native_token_price_usd
|
|
829
814
|
• owner
|
|
815
|
+
• pending_owner
|
|
816
|
+
• propose_ownership_transfer
|
|
830
817
|
• renounce_ownership
|
|
831
818
|
• set_arbitrum_compression_percent
|
|
832
819
|
• set_eid_to_model_type
|
|
@@ -840,14 +827,75 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
840
827
|
• ttl_configs
|
|
841
828
|
• upgrade
|
|
842
829
|
✅ Build Complete
|
|
843
|
-
|
|
830
|
+
ℹ️ 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
|
|
831
|
+
Compiling oft-core v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft-core)
|
|
832
|
+
Compiling oft v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft)
|
|
833
|
+
Finished `release` profile [optimized] target(s) in 2.41s
|
|
834
|
+
ℹ️ Build Summary:
|
|
835
|
+
Wasm File: target/wasm32v1-none/release/oft.wasm
|
|
836
|
+
Wasm Hash: 1b2ae0ec201aefddd7d1aadd4c9fdafa9addc742333490b509be519b5e01869b
|
|
837
|
+
Exported Functions: 50 found
|
|
838
|
+
• __constructor
|
|
839
|
+
• accept_ownership
|
|
840
|
+
• allow_initialize_path
|
|
841
|
+
• approval_required
|
|
842
|
+
• authorizer
|
|
843
|
+
• combine_options
|
|
844
|
+
• decimal_conversion_rate
|
|
845
|
+
• default_fee_bps
|
|
846
|
+
• effective_fee_bps
|
|
847
|
+
• endpoint
|
|
848
|
+
• enforced_options
|
|
849
|
+
• extend_instance_ttl
|
|
850
|
+
• fee_bps
|
|
851
|
+
• fee_deposit_address
|
|
852
|
+
• freeze_ttl_configs
|
|
853
|
+
• has_fee_bps
|
|
854
|
+
• is_compose_msg_sender
|
|
855
|
+
• is_paused
|
|
856
|
+
• is_ttl_configs_frozen
|
|
857
|
+
• lz_receive
|
|
858
|
+
• next_nonce
|
|
859
|
+
• oapp_version
|
|
860
|
+
• oft_type
|
|
861
|
+
• oft_version
|
|
862
|
+
• owner
|
|
863
|
+
• peer
|
|
864
|
+
• pending_owner
|
|
865
|
+
• propose_ownership_transfer
|
|
866
|
+
• quote_oft
|
|
867
|
+
• quote_send
|
|
868
|
+
• rate_limit_capacity
|
|
869
|
+
• rate_limit_config
|
|
870
|
+
• rate_limit_in_flight
|
|
871
|
+
• renounce_ownership
|
|
872
|
+
• send
|
|
873
|
+
• set_default_fee_bps
|
|
874
|
+
• set_delegate
|
|
875
|
+
• set_enforced_options
|
|
876
|
+
• set_fee_bps
|
|
877
|
+
• set_fee_deposit_address
|
|
878
|
+
• set_paused
|
|
879
|
+
• set_peer
|
|
880
|
+
• set_rate_limit
|
|
881
|
+
• set_ttl_configs
|
|
882
|
+
• shared_decimals
|
|
883
|
+
• token
|
|
884
|
+
• transfer_ownership
|
|
885
|
+
• ttl_configs
|
|
886
|
+
• unset_fee_bps
|
|
887
|
+
• unset_rate_limit
|
|
888
|
+
✅ Build Complete
|
|
889
|
+
⏱️ stellar contract build --features sandbox: 1:52.621 (m:ss.mmm)
|
|
844
890
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
|
|
845
891
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-config
|
|
846
892
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup
|
|
893
|
+
WARN Issue while reading "/home/runner/work/monorepo-internal/monorepo-internal/.npmrc". Failed to replace env in config: ${NPM_TOKEN}
|
|
847
894
|
|
|
848
895
|
> @layerzerolabs/protocol-stellar-v2@0.0.1 generate:sdk /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar
|
|
849
896
|
> pnpm exec lz-tool --script "cargo run -p ts-bindings-gen" stellar
|
|
850
897
|
|
|
898
|
+
WARN Issue while reading "/home/runner/work/monorepo-internal/monorepo-internal/.npmrc". Failed to replace env in config: ${NPM_TOKEN}
|
|
851
899
|
📦 Using 4 default cache volume(s) for stellar
|
|
852
900
|
✅ stellar-23.1.4 (Stellar CLI with UID/GID support for permission fixes)
|
|
853
901
|
🔧 stellar version: 23.1.4
|
|
@@ -862,72 +910,72 @@ sha256:2477334a514bfb7b9dd6b51d49e5c2ef2ca47d8f4fca31ca4209be570fec6423
|
|
|
862
910
|
🔒 Acquired lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
|
|
863
911
|
$ 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
912
|
Downloading crates ...
|
|
913
|
+
Downloaded heck v0.4.1
|
|
865
914
|
Downloaded digest v0.9.0
|
|
866
|
-
Downloaded include_dir v0.7.4
|
|
867
915
|
Downloaded opaque-debug v0.3.1
|
|
868
|
-
Downloaded block-buffer v0.9.0
|
|
869
|
-
Downloaded anyhow v1.0.100
|
|
870
916
|
Downloaded include_dir_macros v0.7.4
|
|
871
|
-
Downloaded
|
|
872
|
-
Downloaded
|
|
917
|
+
Downloaded include_dir v0.7.4
|
|
918
|
+
Downloaded anyhow v1.0.100
|
|
919
|
+
Downloaded block-buffer v0.9.0
|
|
873
920
|
Downloaded sha2 v0.9.9
|
|
921
|
+
Downloaded glob v0.3.3
|
|
874
922
|
Downloaded base64 v0.21.7
|
|
875
923
|
Downloaded soroban-spec-typescript v23.1.4
|
|
876
924
|
Compiling proc-macro2 v1.0.103
|
|
877
|
-
Compiling unicode-ident v1.0.22
|
|
878
925
|
Compiling quote v1.0.41
|
|
926
|
+
Compiling unicode-ident v1.0.22
|
|
879
927
|
Compiling serde_json v1.0.145
|
|
880
928
|
Compiling typenum v1.19.0
|
|
881
929
|
Compiling version_check v0.9.5
|
|
882
930
|
Compiling serde_core v1.0.228
|
|
883
931
|
Compiling serde v1.0.228
|
|
884
932
|
Compiling ryu v1.0.20
|
|
885
|
-
Compiling memchr v2.7.6
|
|
886
933
|
Compiling itoa v1.0.15
|
|
934
|
+
Compiling memchr v2.7.6
|
|
935
|
+
Compiling fnv v1.0.7
|
|
887
936
|
Compiling strsim v0.11.1
|
|
888
937
|
Compiling ident_case v1.0.1
|
|
889
|
-
Compiling fnv v1.0.7
|
|
890
938
|
Compiling schemars v0.8.22
|
|
891
|
-
Compiling dyn-clone v1.0.20
|
|
892
|
-
Compiling cfg-if v1.0.4
|
|
893
939
|
Compiling cpufeatures v0.2.17
|
|
940
|
+
Compiling cfg-if v1.0.4
|
|
941
|
+
Compiling dyn-clone v1.0.20
|
|
942
|
+
Compiling equivalent v1.0.2
|
|
943
|
+
Compiling thiserror v1.0.69
|
|
894
944
|
Compiling hashbrown v0.16.0
|
|
895
945
|
Compiling data-encoding v2.9.0
|
|
896
|
-
Compiling
|
|
897
|
-
Compiling
|
|
946
|
+
Compiling semver v1.0.27
|
|
947
|
+
Compiling prettyplease v0.2.37
|
|
948
|
+
Compiling escape-bytes v0.1.1
|
|
898
949
|
Compiling ethnum v1.5.2
|
|
899
950
|
Compiling base64 v0.22.1
|
|
900
|
-
Compiling
|
|
951
|
+
Compiling glob v0.3.3
|
|
952
|
+
Compiling anyhow v1.0.100
|
|
901
953
|
Compiling generic-array v0.14.9
|
|
902
|
-
Compiling escape-bytes v0.1.1
|
|
903
|
-
Compiling semver v1.0.27
|
|
904
954
|
Compiling opaque-debug v0.3.1
|
|
905
955
|
Compiling either v1.15.0
|
|
906
|
-
Compiling anyhow v1.0.100
|
|
907
|
-
Compiling glob v0.3.3
|
|
908
956
|
Compiling base64 v0.21.7
|
|
909
|
-
Compiling itertools v0.10.5
|
|
910
957
|
Compiling heck v0.4.1
|
|
911
958
|
Compiling indexmap v2.12.0
|
|
959
|
+
Compiling itertools v0.10.5
|
|
912
960
|
Compiling syn v2.0.108
|
|
913
|
-
Compiling
|
|
961
|
+
Compiling wasmparser v0.116.1
|
|
914
962
|
Compiling crypto-common v0.1.6
|
|
963
|
+
Compiling block-buffer v0.10.4
|
|
915
964
|
Compiling block-buffer v0.9.0
|
|
916
965
|
Compiling digest v0.9.0
|
|
917
|
-
Compiling digest v0.10.7
|
|
918
|
-
Compiling wasmparser v0.116.1
|
|
919
966
|
Compiling sha2 v0.9.9
|
|
967
|
+
Compiling digest v0.10.7
|
|
920
968
|
Compiling sha2 v0.10.9
|
|
921
969
|
Compiling include_dir_macros v0.7.4
|
|
922
970
|
Compiling include_dir v0.7.4
|
|
923
971
|
Compiling darling_core v0.21.3
|
|
924
972
|
Compiling serde_derive v1.0.228
|
|
925
|
-
Compiling thiserror-impl v1.0.69
|
|
926
973
|
Compiling cfg_eval v0.1.2
|
|
974
|
+
Compiling thiserror-impl v1.0.69
|
|
975
|
+
Compiling darling_macro v0.21.3
|
|
927
976
|
Compiling crate-git-revision v0.0.6
|
|
928
977
|
Compiling stellar-strkey v0.0.13
|
|
929
978
|
Compiling stellar-xdr v23.0.0
|
|
930
|
-
Compiling darling_macro v0.21.3
|
|
931
979
|
Compiling hex v0.4.3
|
|
932
980
|
Compiling darling v0.21.3
|
|
933
981
|
Compiling serde_with_macros v3.15.1
|
|
@@ -935,84 +983,104 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
935
983
|
Compiling soroban-spec v23.4.0
|
|
936
984
|
Compiling soroban-spec-typescript v23.1.4
|
|
937
985
|
Compiling ts-bindings-gen v0.0.1 (/workspace/contracts/protocol/stellar/tools/ts-bindings-gen)
|
|
938
|
-
Finished `dev` profile [unoptimized + debuginfo] target(s) in
|
|
986
|
+
Finished `dev` profile [unoptimized + debuginfo] target(s) in 1m 20s
|
|
939
987
|
Running `target/debug/ts-bindings-gen`
|
|
940
988
|
🚀 Generating TypeScript bindings for Stellar contracts...
|
|
941
989
|
|
|
942
990
|
📦 Processing contract: endpoint_v2
|
|
943
991
|
WASM: target/wasm32v1-none/release/endpoint_v2.wasm
|
|
944
992
|
Output: sdk/src/generated/endpoint.ts
|
|
993
|
+
WASM size: 58849 bytes (57.47 KB)
|
|
945
994
|
Generating bindings...
|
|
946
995
|
✓ Generated: sdk/src/generated/endpoint.ts
|
|
947
996
|
📦 Processing contract: simple_message_lib
|
|
948
997
|
WASM: target/wasm32v1-none/release/simple_message_lib.wasm
|
|
949
998
|
Output: sdk/src/generated/sml.ts
|
|
999
|
+
WASM size: 29063 bytes (28.38 KB)
|
|
950
1000
|
Generating bindings...
|
|
951
1001
|
✓ Generated: sdk/src/generated/sml.ts
|
|
952
1002
|
📦 Processing contract: blocked_message_lib
|
|
953
1003
|
WASM: target/wasm32v1-none/release/blocked_message_lib.wasm
|
|
954
1004
|
Output: sdk/src/generated/bml.ts
|
|
1005
|
+
WASM size: 13645 bytes (13.33 KB)
|
|
955
1006
|
Generating bindings...
|
|
956
1007
|
✓ Generated: sdk/src/generated/bml.ts
|
|
957
1008
|
📦 Processing contract: uln302
|
|
958
1009
|
WASM: target/wasm32v1-none/release/uln302.wasm
|
|
959
1010
|
Output: sdk/src/generated/uln302.ts
|
|
1011
|
+
WASM size: 57134 bytes (55.79 KB)
|
|
960
1012
|
Generating bindings...
|
|
961
1013
|
✓ Generated: sdk/src/generated/uln302.ts
|
|
1014
|
+
📦 Processing contract: treasury
|
|
1015
|
+
WASM: target/wasm32v1-none/release/treasury.wasm
|
|
1016
|
+
Output: sdk/src/generated/treasury.ts
|
|
1017
|
+
WASM size: 27240 bytes (26.60 KB)
|
|
1018
|
+
Generating bindings...
|
|
1019
|
+
✓ Generated: sdk/src/generated/treasury.ts
|
|
962
1020
|
📦 Processing contract: upgrader
|
|
963
1021
|
WASM: target/wasm32v1-none/release/upgrader.wasm
|
|
964
1022
|
Output: sdk/src/generated/upgrader.ts
|
|
1023
|
+
WASM size: 1597 bytes (1.56 KB)
|
|
965
1024
|
Generating bindings...
|
|
966
1025
|
✓ Generated: sdk/src/generated/upgrader.ts
|
|
967
1026
|
📦 Processing contract: dvn
|
|
968
1027
|
WASM: target/wasm32v1-none/release/dvn.wasm
|
|
969
1028
|
Output: sdk/src/generated/dvn.ts
|
|
1029
|
+
WASM size: 56667 bytes (55.34 KB)
|
|
970
1030
|
Generating bindings...
|
|
971
1031
|
✓ Generated: sdk/src/generated/dvn.ts
|
|
972
1032
|
📦 Processing contract: dvn_fee_lib
|
|
973
1033
|
WASM: target/wasm32v1-none/release/dvn_fee_lib.wasm
|
|
974
1034
|
Output: sdk/src/generated/dvn_fee_lib.ts
|
|
1035
|
+
WASM size: 23312 bytes (22.77 KB)
|
|
975
1036
|
Generating bindings...
|
|
976
1037
|
✓ Generated: sdk/src/generated/dvn_fee_lib.ts
|
|
977
1038
|
📦 Processing contract: executor
|
|
978
1039
|
WASM: target/wasm32v1-none/release/executor.wasm
|
|
979
1040
|
Output: sdk/src/generated/executor.ts
|
|
1041
|
+
WASM size: 56028 bytes (54.71 KB)
|
|
980
1042
|
Generating bindings...
|
|
981
1043
|
✓ Generated: sdk/src/generated/executor.ts
|
|
982
1044
|
📦 Processing contract: executor_fee_lib
|
|
983
1045
|
WASM: target/wasm32v1-none/release/executor_fee_lib.wasm
|
|
984
1046
|
Output: sdk/src/generated/executor_fee_lib.ts
|
|
1047
|
+
WASM size: 35000 bytes (34.18 KB)
|
|
985
1048
|
Generating bindings...
|
|
986
1049
|
✓ Generated: sdk/src/generated/executor_fee_lib.ts
|
|
987
1050
|
📦 Processing contract: executor_helper
|
|
988
1051
|
WASM: target/wasm32v1-none/release/executor_helper.wasm
|
|
989
1052
|
Output: sdk/src/generated/executor_helper.ts
|
|
1053
|
+
WASM size: 27792 bytes (27.14 KB)
|
|
990
1054
|
Generating bindings...
|
|
991
1055
|
✓ Generated: sdk/src/generated/executor_helper.ts
|
|
992
1056
|
📦 Processing contract: price_feed
|
|
993
1057
|
WASM: target/wasm32v1-none/release/price_feed.wasm
|
|
994
1058
|
Output: sdk/src/generated/price_feed.ts
|
|
1059
|
+
WASM size: 34996 bytes (34.18 KB)
|
|
995
1060
|
Generating bindings...
|
|
996
1061
|
✓ Generated: sdk/src/generated/price_feed.ts
|
|
997
1062
|
📦 Processing contract: counter
|
|
998
1063
|
WASM: target/wasm32v1-none/release/counter.wasm
|
|
999
1064
|
Output: sdk/src/generated/counter.ts
|
|
1065
|
+
WASM size: 40111 bytes (39.17 KB)
|
|
1000
1066
|
Generating bindings...
|
|
1001
1067
|
✓ Generated: sdk/src/generated/counter.ts
|
|
1002
|
-
📦 Processing contract:
|
|
1003
|
-
WASM: target/wasm32v1-none/release/
|
|
1004
|
-
Output: sdk/src/generated/
|
|
1068
|
+
📦 Processing contract: oft
|
|
1069
|
+
WASM: target/wasm32v1-none/release/oft.wasm
|
|
1070
|
+
Output: sdk/src/generated/oft.ts
|
|
1071
|
+
WASM size: 59520 bytes (58.12 KB)
|
|
1005
1072
|
Generating bindings...
|
|
1006
|
-
✓ Generated: sdk/src/generated/
|
|
1073
|
+
✓ Generated: sdk/src/generated/oft.ts
|
|
1007
1074
|
|
|
1008
1075
|
✅ TypeScript binding generation complete!
|
|
1009
|
-
Generated
|
|
1076
|
+
Generated 14 contract(s) with embedded WASM
|
|
1010
1077
|
|
|
1011
1078
|
📦 Generated files in sdk/src/generated/:
|
|
1012
1079
|
- endpoint.ts
|
|
1013
1080
|
- sml.ts
|
|
1014
1081
|
- bml.ts
|
|
1015
1082
|
- uln302.ts
|
|
1083
|
+
- treasury.ts
|
|
1016
1084
|
- upgrader.ts
|
|
1017
1085
|
- dvn.ts
|
|
1018
1086
|
- dvn_fee_lib.ts
|
|
@@ -1021,8 +1089,8 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
1021
1089
|
- executor_helper.ts
|
|
1022
1090
|
- price_feed.ts
|
|
1023
1091
|
- counter.ts
|
|
1024
|
-
-
|
|
1025
|
-
⏱️ bash -c cargo run -p ts-bindings-gen:
|
|
1092
|
+
- oft.ts
|
|
1093
|
+
⏱️ bash -c cargo run -p ts-bindings-gen: 1:21.334 (m:ss.mmm)
|
|
1026
1094
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
|
|
1027
1095
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-config
|
|
1028
1096
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup
|