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