@layerzerolabs/protocol-stellar-v2 0.2.8 → 0.2.9
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 +443 -302
- package/.turbo/turbo-lint.log +118 -96
- package/.turbo/turbo-test.log +853 -731
- package/Cargo.lock +120 -37
- package/Cargo.toml +8 -5
- package/contracts/common-macros/src/contract_impl.rs +44 -0
- package/contracts/common-macros/src/lib.rs +86 -40
- package/contracts/common-macros/src/ownable.rs +24 -32
- package/contracts/common-macros/src/storage.rs +95 -120
- package/contracts/common-macros/src/tests/contract_impl.rs +289 -0
- package/contracts/common-macros/src/tests/mod.rs +9 -0
- package/contracts/common-macros/src/tests/ownable.rs +151 -0
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__contract_impl__snapshot_generated_contract_impl_code.snap +85 -0
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__ownable__snapshot_generated_ownable_code.snap +30 -0
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__ownable__snapshot_only_owner_preserves_function_signature.snap +9 -0
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__storage__snapshot_generated_storage_code.snap +1072 -0
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__ttl_configurable__snapshot_generated_ttl_configurable_code.snap +45 -0
- package/contracts/common-macros/src/tests/storage.rs +485 -0
- package/contracts/common-macros/src/tests/test_helpers.rs +93 -0
- package/contracts/common-macros/src/tests/ttl_configurable.rs +34 -0
- package/contracts/common-macros/src/ttl_configurable.rs +31 -14
- package/contracts/common-macros/src/utils.rs +27 -0
- package/contracts/endpoint-v2/ARCHITECTURE.md +4 -4
- package/contracts/endpoint-v2/src/endpoint_v2.rs +18 -15
- package/contracts/endpoint-v2/src/interfaces/message_lib.rs +2 -3
- package/contracts/endpoint-v2/src/interfaces/message_lib_manager.rs +5 -3
- package/contracts/endpoint-v2/src/interfaces/messaging_channel.rs +2 -2
- package/contracts/endpoint-v2/src/interfaces/messaging_composer.rs +2 -2
- package/contracts/endpoint-v2/src/interfaces/send_lib.rs +4 -4
- package/contracts/endpoint-v2/src/lib.rs +6 -5
- package/contracts/endpoint-v2/src/message_lib_manager.rs +14 -6
- package/contracts/endpoint-v2/src/messaging_channel.rs +6 -2
- package/contracts/endpoint-v2/src/messaging_composer.rs +6 -2
- package/contracts/endpoint-v2/src/storage.rs +10 -7
- package/contracts/endpoint-v2/src/tests/endpoint_v2/pay_messaging_fees.rs +16 -16
- package/contracts/endpoint-v2/src/tests/endpoint_v2/ttl_config.rs +46 -46
- package/contracts/endpoint-v2/src/tests/mock.rs +2 -2
- package/contracts/endpoint-v2/src/util.rs +8 -2
- package/contracts/message-libs/block-message-lib/Cargo.toml +1 -0
- package/contracts/message-libs/block-message-lib/src/lib.rs +5 -5
- package/contracts/message-libs/message-lib-common/src/errors.rs +8 -8
- package/contracts/message-libs/message-lib-common/src/interfaces/dvn.rs +0 -1
- package/contracts/message-libs/message-lib-common/src/interfaces/mod.rs +3 -3
- package/contracts/message-libs/message-lib-common/src/lib.rs +0 -2
- package/contracts/message-libs/message-lib-common/src/packet_codec_v1.rs +4 -6
- package/contracts/message-libs/message-lib-common/src/tests/packet_codec_v1.rs +2 -2
- package/contracts/message-libs/message-lib-common/src/tests/worker_options.rs +11 -11
- package/contracts/message-libs/message-lib-common/src/worker_options.rs +10 -16
- package/contracts/message-libs/simple-message-lib/src/errors.rs +0 -4
- package/contracts/message-libs/simple-message-lib/src/simple_message_lib.rs +49 -34
- package/contracts/message-libs/simple-message-lib/src/storage.rs +3 -7
- package/contracts/message-libs/simple-message-lib/src/test.rs +3 -3
- package/contracts/message-libs/treasury/src/storage.rs +1 -2
- package/contracts/message-libs/treasury/src/tests/setup.rs +3 -2
- package/contracts/message-libs/treasury/src/tests/treasury_tests.rs +0 -13
- package/contracts/message-libs/treasury/src/treasury.rs +18 -21
- package/contracts/message-libs/uln-302/Cargo.toml +1 -0
- package/contracts/message-libs/uln-302/src/interfaces/mod.rs +4 -4
- package/contracts/message-libs/uln-302/src/interfaces/{receive.rs → receive_uln.rs} +3 -3
- package/contracts/message-libs/uln-302/src/interfaces/{send.rs → send_uln.rs} +8 -80
- package/contracts/message-libs/uln-302/src/lib.rs +5 -4
- package/contracts/message-libs/uln-302/src/{receive.rs → receive_uln.rs} +20 -12
- package/contracts/message-libs/uln-302/src/{send.rs → send_uln.rs} +19 -13
- package/contracts/message-libs/uln-302/src/storage.rs +1 -2
- package/contracts/message-libs/uln-302/src/tests/config/uln_config.rs +3 -2
- package/contracts/message-libs/uln-302/src/tests/send_uln302/send.rs +30 -30
- package/contracts/message-libs/uln-302/src/tests/setup.rs +12 -11
- package/contracts/message-libs/uln-302/src/tests/uln302/set_config.rs +1 -1
- package/contracts/message-libs/uln-302/src/{config_validation.rs → types.rs} +79 -11
- package/contracts/message-libs/uln-302/src/uln302.rs +15 -10
- package/contracts/oapp-macros/Cargo.toml +2 -8
- package/contracts/oapp-macros/src/lib.rs +57 -311
- package/contracts/oapp-macros/src/oapp_core.rs +23 -32
- package/contracts/oapp-macros/src/oapp_full.rs +8 -2
- package/contracts/oapp-macros/src/oapp_options_type3.rs +21 -36
- package/contracts/oapp-macros/src/oapp_receiver.rs +38 -57
- package/contracts/oapp-macros/src/oapp_sender.rs +12 -14
- package/contracts/oapp-macros/src/util.rs +14 -10
- package/contracts/oapps/counter/Cargo.toml +2 -1
- package/contracts/oapps/counter/integration_tests/utils.rs +4 -4
- package/contracts/oapps/counter/src/codec.rs +8 -9
- package/contracts/oapps/counter/src/counter.rs +156 -147
- package/contracts/oapps/counter/src/storage.rs +1 -2
- package/contracts/oapps/counter/src/tests/test_codec.rs +5 -5
- package/contracts/oapps/counter/src/tests/test_counter.rs +11 -13
- package/contracts/oapps/oapp/Cargo.toml +1 -0
- package/contracts/oapps/oapp/src/errors.rs +1 -1
- package/contracts/oapps/oapp/src/lib.rs +3 -0
- package/contracts/oapps/oapp/src/macro_tests/mod.rs +1 -0
- package/contracts/oapps/oapp/src/macro_tests/test_macros.rs +312 -0
- package/contracts/oapps/oapp/src/oapp_core.rs +52 -53
- package/contracts/oapps/oapp/src/oapp_options_type3.rs +18 -28
- package/contracts/oapps/oapp/src/oapp_receiver.rs +82 -31
- package/contracts/oapps/oapp/src/oapp_sender.rs +55 -13
- package/contracts/oapps/oapp/src/tests/test_oapp_core.rs +16 -3
- package/contracts/oapps/oapp/src/tests/test_oapp_options_type3.rs +33 -8
- package/contracts/oapps/oapp/src/tests/test_oapp_receiver.rs +6 -9
- package/contracts/oapps/oapp/src/tests/test_oapp_sender.rs +28 -15
- package/contracts/oapps/oft/Cargo.toml +27 -0
- package/contracts/oapps/oft/integration-tests/mod.rs +3 -0
- package/contracts/oapps/oft/integration-tests/setup.rs +320 -0
- package/contracts/oapps/oft/integration-tests/test_with_sml.rs +155 -0
- package/contracts/oapps/oft/integration-tests/utils.rs +201 -0
- package/contracts/oapps/oft/src/codec/mod.rs +2 -0
- package/contracts/oapps/oft/src/codec/oft_compose_msg_codec.rs +55 -0
- package/contracts/oapps/oft/src/codec/oft_msg_codec.rs +62 -0
- package/contracts/oapps/oft/src/constants.rs +5 -0
- package/contracts/oapps/oft/src/errors.rs +8 -0
- package/contracts/oapps/oft/src/events.rs +19 -0
- package/contracts/oapps/oft/src/interfaces/mint_burn_token.rs +23 -0
- package/contracts/oapps/oft/src/interfaces/mod.rs +3 -0
- package/contracts/oapps/oft/src/lib.rs +22 -0
- package/contracts/oapps/oft/src/macro_tests/mod.rs +2 -0
- package/contracts/oapps/oft/src/macro_tests/test_all_default.rs +41 -0
- package/contracts/oapps/oft/src/macro_tests/test_override.rs +83 -0
- package/contracts/oapps/oft/src/oft.rs +320 -0
- package/contracts/oapps/oft/src/oft_types/lock_unlock.rs +50 -0
- package/contracts/oapps/oft/src/oft_types/mint_burn.rs +50 -0
- package/contracts/oapps/oft/src/oft_types/mod.rs +10 -0
- package/contracts/oapps/oft/src/storage.rs +11 -0
- package/contracts/oapps/oft/src/tests/mod.rs +13 -0
- package/contracts/oapps/oft/src/tests/test_decimals.rs +89 -0
- package/contracts/oapps/oft/src/tests/test_lz_receive.rs +282 -0
- package/contracts/oapps/oft/src/tests/test_oft_compose_msg_codec.rs +68 -0
- package/contracts/oapps/oft/src/tests/test_oft_msg_codec.rs +136 -0
- package/contracts/oapps/oft/src/tests/test_oft_version.rs +13 -0
- package/contracts/oapps/oft/src/tests/test_quote_oft.rs +159 -0
- package/contracts/oapps/oft/src/tests/test_quote_send.rs +195 -0
- package/contracts/oapps/oft/src/tests/test_resolve_address.rs +37 -0
- package/contracts/oapps/oft/src/tests/test_send.rs +915 -0
- package/contracts/oapps/oft/src/tests/test_token.rs +47 -0
- package/contracts/oapps/oft/src/tests/test_utils.rs +789 -0
- package/contracts/oapps/oft/src/types.rs +38 -0
- package/contracts/oapps/oft/src/utils.rs +67 -0
- package/contracts/oapps/oft-mint-burn/Cargo.toml +26 -0
- package/contracts/oapps/oft-mint-burn/src/lib.rs +3 -0
- package/contracts/oapps/oft-mint-burn/src/oft.rs +28 -0
- package/contracts/oapps/oft-mint-burn/src/tests/mod.rs +1 -0
- package/contracts/utils/src/buffer_reader.rs +8 -9
- package/contracts/utils/src/buffer_writer.rs +11 -5
- package/contracts/utils/src/errors.rs +5 -5
- package/contracts/utils/src/ownable.rs +14 -6
- package/contracts/utils/src/testing_utils.rs +11 -1
- package/contracts/utils/src/tests/buffer_reader.rs +491 -730
- package/contracts/utils/src/tests/buffer_writer.rs +336 -148
- package/contracts/utils/src/tests/bytes_ext.rs +125 -40
- package/contracts/utils/src/tests/mod.rs +3 -0
- package/contracts/utils/src/tests/ownable.rs +379 -27
- package/contracts/utils/src/tests/test_helper.rs +47 -0
- package/contracts/utils/src/tests/testing_utils.rs +555 -0
- package/contracts/utils/src/tests/ttl.rs +421 -0
- package/contracts/utils/src/ttl.rs +29 -89
- package/contracts/workers/dvn/Cargo.toml +31 -0
- package/contracts/workers/dvn/src/auth.rs +66 -0
- package/contracts/workers/dvn/src/dvn.rs +143 -0
- package/contracts/workers/dvn/src/errors.rs +21 -0
- package/contracts/workers/dvn/src/events.rs +19 -0
- package/contracts/workers/dvn/src/interfaces/dvn.rs +12 -0
- package/contracts/workers/dvn/src/interfaces/mod.rs +5 -0
- package/contracts/workers/dvn/src/interfaces/multisig.rs +15 -0
- package/contracts/workers/dvn/src/lib.rs +24 -0
- package/contracts/workers/dvn/src/multisig.rs +127 -0
- package/contracts/workers/dvn/src/storage.rs +35 -0
- package/contracts/workers/dvn/src/tests/auth.rs +237 -0
- package/contracts/workers/dvn/src/tests/dvn.rs +349 -0
- package/contracts/workers/dvn/src/tests/key_pair.rs +66 -0
- package/contracts/workers/dvn/src/tests/mod.rs +5 -0
- package/contracts/workers/dvn/src/tests/multisig/mod.rs +3 -0
- package/contracts/workers/dvn/src/tests/multisig/set_signer.rs +133 -0
- package/contracts/workers/dvn/src/tests/multisig/set_threshold.rs +108 -0
- package/contracts/workers/dvn/src/tests/multisig/verify_signatures.rs +109 -0
- package/contracts/workers/dvn/src/tests/setup.rs +109 -0
- package/contracts/workers/dvn/src/types.rs +26 -0
- package/contracts/workers/dvn-fee-lib/Cargo.toml +24 -0
- package/contracts/workers/dvn-fee-lib/src/dvn_fee_lib.rs +113 -0
- package/contracts/workers/dvn-fee-lib/src/errors.rs +8 -0
- package/contracts/workers/dvn-fee-lib/src/lib.rs +17 -0
- package/contracts/workers/dvn-fee-lib/src/tests/dvn_fee_lib.rs +282 -0
- package/contracts/workers/dvn-fee-lib/src/tests/mod.rs +1 -0
- package/contracts/workers/executor/Cargo.toml +10 -7
- package/contracts/workers/executor/src/errors.rs +8 -0
- package/contracts/workers/executor/src/events.rs +4 -7
- package/contracts/workers/executor/src/interfaces/executor.rs +72 -22
- package/contracts/workers/executor/src/interfaces/mod.rs +0 -2
- package/contracts/workers/executor/src/lib.rs +16 -7
- package/contracts/workers/executor/src/lz_executor.rs +308 -0
- package/contracts/workers/executor/src/storage.rs +24 -16
- package/contracts/workers/executor-fee-lib/Cargo.toml +22 -0
- package/contracts/workers/executor-fee-lib/src/errors.rs +15 -0
- package/contracts/workers/executor-fee-lib/src/executor_fee_lib.rs +215 -0
- package/contracts/workers/executor-fee-lib/src/executor_option.rs +203 -0
- package/contracts/workers/executor-fee-lib/src/lib.rs +7 -0
- package/contracts/workers/executor-helper/Cargo.toml +29 -0
- package/contracts/workers/executor-helper/src/executor_helper.rs +161 -0
- package/contracts/workers/executor-helper/src/lib.rs +11 -0
- package/contracts/workers/{worker-common → worker}/Cargo.toml +1 -4
- package/contracts/workers/worker/src/errors.rs +24 -0
- package/contracts/workers/worker/src/events.rs +62 -0
- package/contracts/workers/worker/src/interfaces/dvn_fee_lib.rs +75 -0
- package/contracts/workers/worker/src/interfaces/executor_fee_lib.rs +84 -0
- package/contracts/workers/{worker-common → worker}/src/interfaces/mod.rs +2 -2
- package/contracts/workers/worker/src/interfaces/price_feed.rs +85 -0
- package/contracts/workers/worker/src/lib.rs +14 -0
- package/contracts/workers/worker/src/storage.rs +63 -0
- package/contracts/workers/worker/src/worker.rs +459 -0
- package/package.json +3 -3
- package/sdk/dist/generated/bml.d.ts +88 -17
- package/sdk/dist/generated/bml.js +62 -16
- package/sdk/dist/generated/counter.d.ts +281 -102
- package/sdk/dist/generated/counter.js +93 -41
- package/sdk/dist/generated/endpoint.d.ts +128 -105
- package/sdk/dist/generated/endpoint.js +47 -45
- package/sdk/dist/generated/sml.d.ts +212 -69
- package/sdk/dist/generated/sml.js +103 -53
- package/sdk/dist/generated/uln302.d.ts +270 -173
- package/sdk/dist/generated/uln302.js +112 -64
- package/sdk/package.json +11 -11
- package/sdk/test/index.test.ts +147 -42
- package/sdk/test/suites/constants.ts +7 -3
- package/sdk/test/suites/deploy.ts +65 -42
- package/sdk/test/suites/localnet.ts +2 -2
- package/sdk/test/suites/scan.ts +28 -25
- package/sdk/test/utils.ts +199 -0
- package/sdk/tsconfig.json +93 -95
- package/tools/ts-bindings-gen/src/main.rs +2 -0
- package/contracts/common-macros/src/snapshots/common_macros__tests__tests__snapshot_generated_storage_code.snap +0 -310
- package/contracts/common-macros/src/tests.rs +0 -287
- package/contracts/oapp-macros/tests/test_macros.rs +0 -522
- package/contracts/workers/executor/src/executor.rs +0 -347
- package/contracts/workers/executor/src/interfaces/types.rs +0 -51
- package/contracts/workers/worker-common/src/constants.rs +0 -17
- package/contracts/workers/worker-common/src/errors.rs +0 -6
- package/contracts/workers/worker-common/src/events.rs +0 -34
- package/contracts/workers/worker-common/src/interfaces/executor_fee_lib.rs +0 -35
- package/contracts/workers/worker-common/src/interfaces/price_feed.rs +0 -40
- package/contracts/workers/worker-common/src/interfaces/worker.rs +0 -60
- package/contracts/workers/worker-common/src/lib.rs +0 -19
- package/contracts/workers/worker-common/src/storage.rs +0 -32
- package/contracts/workers/worker-common/src/worker_common.rs +0 -166
package/.turbo/turbo-build.log
CHANGED
|
@@ -9,290 +9,291 @@
|
|
|
9
9
|
📦 Using 4 default cache volume(s) for stellar
|
|
10
10
|
✅ stellar-23.1.4 (Stellar CLI with UID/GID support for permission fixes)
|
|
11
11
|
🔧 stellar version: 23.1.4
|
|
12
|
-
$ docker image
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
12
|
+
$ docker image inspect --format {{.Id}} 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_23.1.4_patch_6
|
|
13
|
+
Error response from daemon: No such image: 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_23.1.4_patch_6
|
|
14
|
+
|
|
15
|
+
📥 Pulling Docker image from ECR: 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_23.1.4_patch_6
|
|
16
|
+
$ docker pull 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_23.1.4_patch_6
|
|
17
|
+
stellar_23.1.4_patch_6: Pulling from layerzerolabs/stellar-tooling
|
|
17
18
|
f6bd9104d248: Pulling fs layer
|
|
18
19
|
4617420e017b: Pulling fs layer
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
20
|
+
e9886d99af76: Pulling fs layer
|
|
21
|
+
889cdda75b95: Pulling fs layer
|
|
22
|
+
a7d3f750d5ec: Pulling fs layer
|
|
23
|
+
8a4f031cd7ce: Pulling fs layer
|
|
24
|
+
2ff845d4f468: Pulling fs layer
|
|
24
25
|
2c1ce468d9f3: Pulling fs layer
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
27d4682ae6d1: Waiting
|
|
36
|
-
1c5248229166: Waiting
|
|
37
|
-
4eaa7a13cac0: Waiting
|
|
26
|
+
1b86cc28e881: Pulling fs layer
|
|
27
|
+
f83e34e44849: Pulling fs layer
|
|
28
|
+
8bc2eeec2bb3: Pulling fs layer
|
|
29
|
+
2965c99ac5df: Pulling fs layer
|
|
30
|
+
66f4137c2c7c: Pulling fs layer
|
|
31
|
+
f83e34e44849: Waiting
|
|
32
|
+
a7d3f750d5ec: Waiting
|
|
33
|
+
8bc2eeec2bb3: Waiting
|
|
34
|
+
8a4f031cd7ce: Waiting
|
|
35
|
+
1b86cc28e881: Waiting
|
|
38
36
|
2c1ce468d9f3: Waiting
|
|
39
|
-
|
|
37
|
+
2965c99ac5df: Waiting
|
|
38
|
+
2ff845d4f468: Waiting
|
|
39
|
+
66f4137c2c7c: Waiting
|
|
40
|
+
889cdda75b95: Waiting
|
|
40
41
|
f6bd9104d248: Verifying Checksum
|
|
41
42
|
f6bd9104d248: Download complete
|
|
43
|
+
889cdda75b95: Verifying Checksum
|
|
44
|
+
889cdda75b95: Download complete
|
|
42
45
|
f6bd9104d248: Pull complete
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
46
|
+
a7d3f750d5ec: Verifying Checksum
|
|
47
|
+
a7d3f750d5ec: Download complete
|
|
48
|
+
8a4f031cd7ce: Verifying Checksum
|
|
49
|
+
8a4f031cd7ce: Download complete
|
|
50
|
+
e9886d99af76: Verifying Checksum
|
|
51
|
+
e9886d99af76: Download complete
|
|
52
|
+
2c1ce468d9f3: Download complete
|
|
49
53
|
4617420e017b: Verifying Checksum
|
|
50
54
|
4617420e017b: Download complete
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
4eaa7a13cac0: Verifying Checksum
|
|
61
|
-
4eaa7a13cac0: Download complete
|
|
62
|
-
2bca9fcfcba2: Verifying Checksum
|
|
63
|
-
2bca9fcfcba2: Download complete
|
|
55
|
+
f83e34e44849: Verifying Checksum
|
|
56
|
+
f83e34e44849: Download complete
|
|
57
|
+
2ff845d4f468: Verifying Checksum
|
|
58
|
+
2ff845d4f468: Download complete
|
|
59
|
+
2965c99ac5df: Verifying Checksum
|
|
60
|
+
2965c99ac5df: Download complete
|
|
61
|
+
66f4137c2c7c: Download complete
|
|
62
|
+
1b86cc28e881: Verifying Checksum
|
|
63
|
+
1b86cc28e881: Download complete
|
|
64
64
|
4617420e017b: Pull complete
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
65
|
+
e9886d99af76: Pull complete
|
|
66
|
+
889cdda75b95: Pull complete
|
|
67
|
+
a7d3f750d5ec: Pull complete
|
|
68
|
+
8a4f031cd7ce: Pull complete
|
|
69
|
+
2ff845d4f468: Pull complete
|
|
70
70
|
2c1ce468d9f3: Pull complete
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
Digest: sha256:
|
|
77
|
-
Status: Downloaded newer image for 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_23.1.
|
|
78
|
-
438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_23.1.
|
|
79
|
-
✅ Successfully pulled: 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_23.1.
|
|
71
|
+
1b86cc28e881: Pull complete
|
|
72
|
+
f83e34e44849: Pull complete
|
|
73
|
+
8bc2eeec2bb3: Pull complete
|
|
74
|
+
2965c99ac5df: Pull complete
|
|
75
|
+
66f4137c2c7c: Pull complete
|
|
76
|
+
Digest: sha256:635ca108241d5962b99bfce73582af12fbeea76e530b326fdcfc7224fa2ca257
|
|
77
|
+
Status: Downloaded newer image for 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_23.1.4_patch_6
|
|
78
|
+
438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_23.1.4_patch_6
|
|
79
|
+
✅ Successfully pulled: 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_23.1.4_patch_6
|
|
80
80
|
👤 Running container as UID:GID 1001:1001
|
|
81
81
|
🌍 Using 5 default environment variable(s) for stellar
|
|
82
82
|
🔒 Acquired lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup
|
|
83
83
|
🔒 Acquired lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-config
|
|
84
84
|
🔒 Acquired lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
|
|
85
|
-
$ 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.
|
|
85
|
+
$ 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
|
|
86
86
|
ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/endpoint-v2/Cargo.toml --crate-type=cdylib --target=wasm32v1-none --release
|
|
87
87
|
Updating crates.io index
|
|
88
|
+
Updating git repository `https://github.com/OpenZeppelin/stellar-contracts.git`
|
|
88
89
|
Downloading crates ...
|
|
89
|
-
Downloaded ark-
|
|
90
|
+
Downloaded ark-serialize v0.4.2
|
|
90
91
|
Downloaded ark-ff-asm v0.4.2
|
|
91
|
-
Downloaded
|
|
92
|
+
Downloaded arbitrary v1.3.2
|
|
93
|
+
Downloaded ark-poly v0.4.2
|
|
94
|
+
Downloaded dtor-proc-macro v0.0.6
|
|
95
|
+
Downloaded curve25519-dalek-derive v0.1.1
|
|
96
|
+
Downloaded darling_macro v0.20.11
|
|
97
|
+
Downloaded cfg-if v1.0.4
|
|
98
|
+
Downloaded schemars v0.8.22
|
|
99
|
+
Downloaded rfc6979 v0.4.0
|
|
100
|
+
Downloaded serde_derive v1.0.228
|
|
92
101
|
Downloaded rand_chacha v0.3.1
|
|
93
|
-
Downloaded
|
|
94
|
-
Downloaded
|
|
95
|
-
Downloaded
|
|
96
|
-
Downloaded
|
|
97
|
-
Downloaded serde v1.0.228
|
|
98
|
-
Downloaded soroban-spec-rust v23.3.0
|
|
102
|
+
Downloaded serde_with_macros v3.15.1
|
|
103
|
+
Downloaded visibility v0.1.1
|
|
104
|
+
Downloaded signature v2.2.0
|
|
105
|
+
Downloaded wasmi_arena v0.4.1
|
|
99
106
|
Downloaded zeroize_derive v1.4.2
|
|
100
|
-
Downloaded
|
|
101
|
-
Downloaded subtle v2.6.1
|
|
107
|
+
Downloaded thiserror-impl v1.0.69
|
|
102
108
|
Downloaded zeroize v1.8.2
|
|
103
|
-
Downloaded
|
|
104
|
-
Downloaded
|
|
105
|
-
Downloaded
|
|
106
|
-
Downloaded
|
|
107
|
-
Downloaded version_check v0.9.5
|
|
109
|
+
Downloaded soroban-sdk-macros v23.4.0
|
|
110
|
+
Downloaded typenum v1.19.0
|
|
111
|
+
Downloaded chrono v0.4.42
|
|
112
|
+
Downloaded serde_json v1.0.145
|
|
108
113
|
Downloaded wasmparser-nostd v0.100.2
|
|
109
|
-
Downloaded
|
|
110
|
-
Downloaded
|
|
111
|
-
Downloaded
|
|
114
|
+
Downloaded time v0.3.44
|
|
115
|
+
Downloaded wasmparser v0.116.1
|
|
116
|
+
Downloaded serde_with v3.15.1
|
|
117
|
+
Downloaded soroban-wasmi v0.31.1-soroban.20.0.1
|
|
118
|
+
Downloaded syn v1.0.109
|
|
119
|
+
Downloaded libc v0.2.177
|
|
112
120
|
Downloaded syn v2.0.108
|
|
113
|
-
Downloaded
|
|
121
|
+
Downloaded ed25519-dalek v2.2.0
|
|
114
122
|
Downloaded zerocopy v0.8.27
|
|
115
|
-
Downloaded hashbrown v0.12.3
|
|
116
|
-
Downloaded num-traits v0.2.19
|
|
117
|
-
Downloaded soroban-builtin-sdk-macros v23.0.1
|
|
118
|
-
Downloaded macro-string v0.1.4
|
|
119
|
-
Downloaded syn v1.0.109
|
|
120
|
-
Downloaded once_cell v1.21.3
|
|
121
|
-
Downloaded rand v0.8.5
|
|
122
|
-
Downloaded memchr v2.7.6
|
|
123
|
-
Downloaded proc-macro2 v1.0.103
|
|
124
|
-
Downloaded prettyplease v0.2.37
|
|
125
|
-
Downloaded k256 v0.13.4
|
|
126
|
-
Downloaded libm v0.2.15
|
|
127
|
-
Downloaded itertools v0.14.0
|
|
128
|
-
Downloaded itertools v0.10.5
|
|
129
123
|
Downloaded hashbrown v0.16.0
|
|
130
|
-
Downloaded
|
|
124
|
+
Downloaded libm v0.2.15
|
|
131
125
|
Downloaded der v0.7.10
|
|
126
|
+
Downloaded soroban-sdk v23.4.0
|
|
127
|
+
Downloaded curve25519-dalek v4.1.3
|
|
128
|
+
Downloaded soroban-env-common v23.0.1
|
|
129
|
+
Downloaded smallvec v1.15.1
|
|
130
|
+
Downloaded hashbrown v0.12.3
|
|
131
|
+
Downloaded soroban-env-host v23.0.1
|
|
132
|
+
Downloaded unicode-ident v1.0.22
|
|
132
133
|
Downloaded num-bigint v0.4.6
|
|
133
|
-
Downloaded
|
|
134
|
-
Downloaded
|
|
134
|
+
Downloaded itertools v0.14.0
|
|
135
|
+
Downloaded thiserror v1.0.69
|
|
136
|
+
Downloaded stellar-strkey v0.0.13
|
|
137
|
+
Downloaded spki v0.7.3
|
|
138
|
+
Downloaded spin v0.9.8
|
|
139
|
+
Downloaded soroban-env-macros v23.0.1
|
|
140
|
+
Downloaded sha2 v0.10.9
|
|
141
|
+
Downloaded data-encoding v2.9.0
|
|
142
|
+
Downloaded darling_core v0.20.11
|
|
143
|
+
Downloaded wasmi_core v0.13.0
|
|
144
|
+
Downloaded version_check v0.9.5
|
|
145
|
+
Downloaded time-macros v0.2.24
|
|
146
|
+
Downloaded static_assertions v1.1.0
|
|
147
|
+
Downloaded soroban-ledger-snapshot v23.4.0
|
|
148
|
+
Downloaded proc-macro2 v1.0.103
|
|
149
|
+
Downloaded memchr v2.7.6
|
|
150
|
+
Downloaded sha3 v0.10.8
|
|
151
|
+
Downloaded crypto-bigint v0.5.5
|
|
152
|
+
Downloaded time-core v0.1.6
|
|
153
|
+
Downloaded subtle v2.6.1
|
|
154
|
+
Downloaded soroban-spec-rust v23.4.0
|
|
155
|
+
Downloaded soroban-spec v23.4.0
|
|
156
|
+
Downloaded soroban-env-guest v23.0.1
|
|
157
|
+
Downloaded soroban-builtin-sdk-macros v23.0.1
|
|
158
|
+
Downloaded rand_core v0.6.4
|
|
135
159
|
Downloaded p256 v0.13.2
|
|
160
|
+
Downloaded once_cell v1.21.3
|
|
161
|
+
Downloaded iana-time-zone v0.1.64
|
|
136
162
|
Downloaded hmac v0.12.1
|
|
137
|
-
Downloaded
|
|
138
|
-
Downloaded
|
|
139
|
-
Downloaded
|
|
140
|
-
Downloaded
|
|
141
|
-
Downloaded
|
|
142
|
-
Downloaded
|
|
143
|
-
Downloaded paste v1.0.15
|
|
144
|
-
Downloaded num-conv v0.1.0
|
|
145
|
-
Downloaded keccak v0.1.5
|
|
146
|
-
Downloaded rfc6979 v0.4.0
|
|
147
|
-
Downloaded ref-cast v1.0.25
|
|
148
|
-
Downloaded ident_case v1.0.1
|
|
149
|
-
Downloaded heck v0.5.0
|
|
150
|
-
Downloaded equivalent v1.0.2
|
|
151
|
-
Downloaded curve25519-dalek-derive v0.1.1
|
|
152
|
-
Downloaded crypto-common v0.1.6
|
|
153
|
-
Downloaded dyn-clone v1.0.20
|
|
154
|
-
Downloaded darling_macro v0.20.11
|
|
155
|
-
Downloaded rand_core v0.6.4
|
|
156
|
-
Downloaded quote v1.0.41
|
|
163
|
+
Downloaded hashbrown v0.13.2
|
|
164
|
+
Downloaded group v0.13.0
|
|
165
|
+
Downloaded ethnum v1.5.2
|
|
166
|
+
Downloaded darling v0.20.11
|
|
167
|
+
Downloaded cfg_eval v0.1.2
|
|
168
|
+
Downloaded rand v0.8.5
|
|
157
169
|
Downloaded ppv-lite86 v0.2.21
|
|
158
|
-
Downloaded
|
|
159
|
-
Downloaded
|
|
160
|
-
Downloaded
|
|
161
|
-
Downloaded
|
|
170
|
+
Downloaded num-integer v0.1.46
|
|
171
|
+
Downloaded num-derive v0.4.2
|
|
172
|
+
Downloaded keccak v0.1.5
|
|
173
|
+
Downloaded itertools v0.10.5
|
|
162
174
|
Downloaded indexmap-nostd v0.4.0
|
|
163
|
-
Downloaded
|
|
164
|
-
Downloaded darling v0.20.11
|
|
165
|
-
Downloaded group v0.13.0
|
|
175
|
+
Downloaded indexmap v2.12.0
|
|
166
176
|
Downloaded fnv v1.0.7
|
|
167
|
-
Downloaded
|
|
168
|
-
Downloaded
|
|
177
|
+
Downloaded bytes-lit v0.0.5
|
|
178
|
+
Downloaded strsim v0.11.1
|
|
179
|
+
Downloaded schemars v1.0.5
|
|
180
|
+
Downloaded schemars v0.9.0
|
|
169
181
|
Downloaded ref-cast-impl v1.0.25
|
|
170
|
-
Downloaded
|
|
171
|
-
Downloaded
|
|
172
|
-
Downloaded
|
|
173
|
-
Downloaded
|
|
182
|
+
Downloaded ref-cast v1.0.25
|
|
183
|
+
Downloaded macro-string v0.1.4
|
|
184
|
+
Downloaded k256 v0.13.4
|
|
185
|
+
Downloaded itoa v1.0.15
|
|
186
|
+
Downloaded hex-literal v0.4.1
|
|
187
|
+
Downloaded heck v0.5.0
|
|
188
|
+
Downloaded indexmap v1.9.3
|
|
174
189
|
Downloaded escape-bytes v0.1.1
|
|
175
|
-
Downloaded generic-array v0.14.9
|
|
176
|
-
Downloaded ff v0.13.1
|
|
177
190
|
Downloaded elliptic-curve v0.13.8
|
|
178
191
|
Downloaded either v1.15.0
|
|
179
|
-
Downloaded dtor-proc-macro v0.0.6
|
|
180
|
-
Downloaded downcast-rs v1.2.1
|
|
181
|
-
Downloaded deranged v0.5.5
|
|
182
|
-
Downloaded darling_macro v0.21.3
|
|
183
|
-
Downloaded static_assertions v1.1.0
|
|
184
|
-
Downloaded spki v0.7.3
|
|
185
|
-
Downloaded soroban-wasmi v0.31.1-soroban.20.0.1
|
|
186
|
-
Downloaded ctor-proc-macro v0.0.6
|
|
187
|
-
Downloaded time v0.3.44
|
|
188
|
-
Downloaded sha2 v0.10.9
|
|
189
|
-
Downloaded ctor v0.5.0
|
|
190
|
-
Downloaded wasmi_arena v0.4.1
|
|
191
|
-
Downloaded thiserror v1.0.69
|
|
192
|
-
Downloaded spin v0.9.8
|
|
193
|
-
Downloaded indexmap v1.9.3
|
|
194
|
-
Downloaded stellar-xdr v23.0.0
|
|
195
|
-
Downloaded hex v0.4.3
|
|
196
|
-
Downloaded data-encoding v2.9.0
|
|
197
|
-
Downloaded visibility v0.1.1
|
|
198
|
-
Downloaded time-core v0.1.6
|
|
199
|
-
Downloaded serde_derive v1.0.228
|
|
200
192
|
Downloaded ecdsa v0.16.9
|
|
201
|
-
Downloaded
|
|
202
|
-
Downloaded
|
|
193
|
+
Downloaded digest v0.10.7
|
|
194
|
+
Downloaded derive_arbitrary v1.3.2
|
|
195
|
+
Downloaded derivative v2.2.0
|
|
203
196
|
Downloaded darling v0.21.3
|
|
204
|
-
Downloaded
|
|
205
|
-
Downloaded
|
|
206
|
-
Downloaded
|
|
207
|
-
Downloaded
|
|
208
|
-
Downloaded
|
|
209
|
-
Downloaded
|
|
210
|
-
Downloaded
|
|
211
|
-
Downloaded
|
|
212
|
-
Downloaded
|
|
213
|
-
Downloaded
|
|
214
|
-
Downloaded soroban-sdk v23.3.0
|
|
215
|
-
Downloaded soroban-ledger-snapshot v23.3.0
|
|
216
|
-
Downloaded soroban-env-macros v23.0.1
|
|
217
|
-
Downloaded schemars v1.0.5
|
|
218
|
-
Downloaded schemars v0.9.0
|
|
219
|
-
Downloaded ark-bls12-381 v0.4.0
|
|
197
|
+
Downloaded base64 v0.22.1
|
|
198
|
+
Downloaded base16ct v0.2.0
|
|
199
|
+
Downloaded quote v1.0.41
|
|
200
|
+
Downloaded primeorder v0.13.6
|
|
201
|
+
Downloaded num-traits v0.2.19
|
|
202
|
+
Downloaded hex v0.4.3
|
|
203
|
+
Downloaded dtor v0.1.1
|
|
204
|
+
Downloaded serde_core v1.0.228
|
|
205
|
+
Downloaded serde v1.0.228
|
|
206
|
+
Downloaded semver v1.0.27
|
|
220
207
|
Downloaded sec1 v0.7.3
|
|
221
|
-
Downloaded soroban-sdk-macros v23.3.0
|
|
222
|
-
Downloaded chrono v0.4.42
|
|
223
208
|
Downloaded ryu v1.0.20
|
|
224
|
-
Downloaded ark-ff-macros v0.4.2
|
|
225
|
-
Downloaded serde_json v1.0.145
|
|
226
209
|
Downloaded rustc_version v0.4.1
|
|
210
|
+
Downloaded generic-array v0.14.9
|
|
211
|
+
Downloaded equivalent v1.0.2
|
|
212
|
+
Downloaded dyn-clone v1.0.20
|
|
213
|
+
Downloaded darling_macro v0.21.3
|
|
214
|
+
Downloaded ctor-proc-macro v0.0.6
|
|
215
|
+
Downloaded ctor v0.5.0
|
|
216
|
+
Downloaded crypto-common v0.1.6
|
|
217
|
+
Downloaded crate-git-revision v0.0.6
|
|
218
|
+
Downloaded cpufeatures v0.2.17
|
|
227
219
|
Downloaded const-oid v0.9.6
|
|
228
|
-
Downloaded
|
|
229
|
-
Downloaded ark-
|
|
230
|
-
Downloaded ark-
|
|
231
|
-
Downloaded
|
|
220
|
+
Downloaded block-buffer v0.10.4
|
|
221
|
+
Downloaded ark-std v0.4.0
|
|
222
|
+
Downloaded ark-bls12-381 v0.4.0
|
|
223
|
+
Downloaded prettyplease v0.2.37
|
|
224
|
+
Downloaded powerfmt v0.2.0
|
|
225
|
+
Downloaded pkcs8 v0.10.2
|
|
226
|
+
Downloaded paste v1.0.15
|
|
227
|
+
Downloaded num-conv v0.1.0
|
|
228
|
+
Downloaded ident_case v1.0.1
|
|
229
|
+
Downloaded getrandom v0.2.16
|
|
230
|
+
Downloaded ed25519 v2.2.3
|
|
231
|
+
Downloaded downcast-rs v1.2.1
|
|
232
|
+
Downloaded deranged v0.5.5
|
|
233
|
+
Downloaded darling_core v0.21.3
|
|
234
|
+
Downloaded ff v0.13.1
|
|
232
235
|
Downloaded autocfg v1.5.0
|
|
233
|
-
Downloaded
|
|
234
|
-
Downloaded cpufeatures v0.2.17
|
|
235
|
-
Downloaded cfg-if v1.0.4
|
|
236
|
-
Downloaded bytes-lit v0.0.5
|
|
237
|
-
Downloaded base64ct v1.8.0
|
|
236
|
+
Downloaded ark-ff-macros v0.4.2
|
|
238
237
|
Downloaded ahash v0.8.12
|
|
238
|
+
Downloaded base64ct v1.8.0
|
|
239
239
|
Downloaded ark-serialize-derive v0.4.2
|
|
240
|
-
Downloaded
|
|
241
|
-
Downloaded
|
|
240
|
+
Downloaded stellar-xdr v23.0.0
|
|
241
|
+
Downloaded ark-ec v0.4.2
|
|
242
|
+
Downloaded ark-ff v0.4.2
|
|
242
243
|
Compiling proc-macro2 v1.0.103
|
|
243
|
-
Compiling quote v1.0.41
|
|
244
244
|
Compiling unicode-ident v1.0.22
|
|
245
|
+
Compiling quote v1.0.41
|
|
245
246
|
Compiling serde_core v1.0.228
|
|
246
247
|
Compiling serde v1.0.228
|
|
247
248
|
Compiling serde_json v1.0.145
|
|
248
|
-
Compiling ryu v1.0.20
|
|
249
249
|
Compiling itoa v1.0.15
|
|
250
|
+
Compiling ryu v1.0.20
|
|
250
251
|
Compiling memchr v2.7.6
|
|
251
|
-
Compiling ident_case v1.0.1
|
|
252
252
|
Compiling fnv v1.0.7
|
|
253
|
+
Compiling ident_case v1.0.1
|
|
253
254
|
Compiling strsim v0.11.1
|
|
254
|
-
Compiling version_check v0.9.5
|
|
255
255
|
Compiling typenum v1.19.0
|
|
256
|
+
Compiling version_check v0.9.5
|
|
256
257
|
Compiling autocfg v1.5.0
|
|
257
258
|
Compiling schemars v0.8.22
|
|
258
259
|
Compiling dyn-clone v1.0.20
|
|
259
|
-
Compiling cpufeatures v0.2.17
|
|
260
260
|
Compiling cfg-if v1.0.4
|
|
261
261
|
Compiling data-encoding v2.9.0
|
|
262
|
-
Compiling
|
|
262
|
+
Compiling cpufeatures v0.2.17
|
|
263
263
|
Compiling escape-bytes v0.1.1
|
|
264
|
+
Compiling ethnum v1.5.2
|
|
264
265
|
Compiling either v1.15.0
|
|
265
266
|
Compiling semver v1.0.27
|
|
266
267
|
Compiling equivalent v1.0.2
|
|
267
268
|
Compiling thiserror v1.0.69
|
|
268
269
|
Compiling prettyplease v0.2.37
|
|
269
|
-
Compiling hashbrown v0.16.0
|
|
270
270
|
Compiling generic-array v0.14.9
|
|
271
|
+
Compiling hashbrown v0.16.0
|
|
271
272
|
Compiling base64 v0.22.1
|
|
272
273
|
Compiling num-traits v0.2.19
|
|
273
|
-
Compiling heck v0.5.0
|
|
274
|
-
Compiling itertools v0.10.5
|
|
275
274
|
Compiling static_assertions v1.1.0
|
|
275
|
+
Compiling itertools v0.10.5
|
|
276
|
+
Compiling heck v0.5.0
|
|
276
277
|
Compiling rustc_version v0.4.1
|
|
277
278
|
Compiling itertools v0.14.0
|
|
278
279
|
Compiling indexmap v2.12.0
|
|
279
|
-
Compiling num-integer v0.1.46
|
|
280
280
|
Compiling syn v2.0.108
|
|
281
|
-
Compiling
|
|
282
|
-
Compiling num-bigint v0.4.6
|
|
283
|
-
Compiling block-buffer v0.10.4
|
|
281
|
+
Compiling num-integer v0.1.46
|
|
284
282
|
Compiling crypto-common v0.1.6
|
|
283
|
+
Compiling block-buffer v0.10.4
|
|
284
|
+
Compiling wasmparser v0.116.1
|
|
285
285
|
Compiling digest v0.10.7
|
|
286
|
+
Compiling num-bigint v0.4.6
|
|
286
287
|
Compiling sha2 v0.10.9
|
|
287
288
|
Compiling darling_core v0.21.3
|
|
288
289
|
Compiling darling_core v0.20.11
|
|
289
290
|
Compiling macro-string v0.1.4
|
|
290
291
|
Compiling serde_derive v1.0.228
|
|
291
292
|
Compiling cfg_eval v0.1.2
|
|
292
|
-
Compiling num-derive v0.4.2
|
|
293
293
|
Compiling thiserror-impl v1.0.69
|
|
294
|
-
Compiling
|
|
294
|
+
Compiling num-derive v0.4.2
|
|
295
295
|
Compiling visibility v0.1.1
|
|
296
|
+
Compiling bytes-lit v0.0.5
|
|
296
297
|
Compiling common-macros v0.0.1 (/workspace/contracts/protocol/stellar/contracts/common-macros)
|
|
297
298
|
Compiling darling_macro v0.20.11
|
|
298
299
|
Compiling darling_macro v0.21.3
|
|
@@ -304,20 +305,20 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
304
305
|
Compiling stellar-strkey v0.0.13
|
|
305
306
|
Compiling stellar-xdr v23.0.0
|
|
306
307
|
Compiling soroban-env-common v23.0.1
|
|
307
|
-
Compiling soroban-sdk v23.
|
|
308
|
+
Compiling soroban-sdk v23.4.0
|
|
308
309
|
Compiling serde_with v3.15.1
|
|
309
|
-
Compiling soroban-spec v23.
|
|
310
|
+
Compiling soroban-spec v23.4.0
|
|
310
311
|
Compiling soroban-env-macros v23.0.1
|
|
311
|
-
Compiling soroban-spec-rust v23.
|
|
312
|
-
Compiling soroban-sdk-macros v23.
|
|
312
|
+
Compiling soroban-spec-rust v23.4.0
|
|
313
|
+
Compiling soroban-sdk-macros v23.4.0
|
|
313
314
|
Compiling soroban-env-guest v23.0.1
|
|
314
315
|
Compiling utils v0.0.1 (/workspace/contracts/protocol/stellar/contracts/utils)
|
|
315
316
|
Compiling endpoint-v2 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/endpoint-v2)
|
|
316
|
-
Finished `release` profile [optimized] target(s) in
|
|
317
|
+
Finished `release` profile [optimized] target(s) in 33.48s
|
|
317
318
|
ℹ️ Build Summary:
|
|
318
319
|
Wasm File: target/wasm32v1-none/release/endpoint_v2.wasm
|
|
319
|
-
Wasm Hash:
|
|
320
|
-
Exported Functions:
|
|
320
|
+
Wasm Hash: 922eb977d1a6001c65e0553f27ce7833a7c30bda3d9cbe60832b906b75fb4cf1
|
|
321
|
+
Exported Functions: 56 found
|
|
321
322
|
• __constructor
|
|
322
323
|
• burn
|
|
323
324
|
• clear
|
|
@@ -328,7 +329,8 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
328
329
|
• default_send_library
|
|
329
330
|
• delegate
|
|
330
331
|
• eid
|
|
331
|
-
•
|
|
332
|
+
• extend_instance_ttl
|
|
333
|
+
• freeze_ttl_configs
|
|
332
334
|
• get_config
|
|
333
335
|
• get_library_index
|
|
334
336
|
• get_receive_library
|
|
@@ -339,7 +341,7 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
339
341
|
• initializable
|
|
340
342
|
• is_registered_library
|
|
341
343
|
• is_supported_eid
|
|
342
|
-
•
|
|
344
|
+
• is_ttl_configs_frozen
|
|
343
345
|
• is_valid_receive_library
|
|
344
346
|
• lazy_inbound_nonce
|
|
345
347
|
• lz_compose_alert
|
|
@@ -365,32 +367,32 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
365
367
|
• set_receive_library
|
|
366
368
|
• set_receive_library_timeout
|
|
367
369
|
• set_send_library
|
|
368
|
-
•
|
|
370
|
+
• set_ttl_configs
|
|
369
371
|
• set_zro
|
|
370
372
|
• skip
|
|
371
373
|
• transfer_ownership
|
|
372
|
-
•
|
|
374
|
+
• ttl_configs
|
|
373
375
|
• verifiable
|
|
374
376
|
• verify
|
|
375
377
|
• zro
|
|
376
378
|
✅ Build Complete
|
|
377
379
|
ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/message-libs/block-message-lib/Cargo.toml --crate-type=cdylib --target=wasm32v1-none --release
|
|
378
380
|
Compiling escape-bytes v0.1.1
|
|
379
|
-
Compiling ethnum v1.5.2
|
|
380
381
|
Compiling static_assertions v1.1.0
|
|
381
|
-
Compiling
|
|
382
|
+
Compiling ethnum v1.5.2
|
|
382
383
|
Compiling cfg-if v1.0.4
|
|
384
|
+
Compiling num-traits v0.2.19
|
|
383
385
|
Compiling stellar-xdr v23.0.0
|
|
384
386
|
Compiling soroban-env-common v23.0.1
|
|
385
387
|
Compiling soroban-env-guest v23.0.1
|
|
386
|
-
Compiling soroban-sdk v23.
|
|
388
|
+
Compiling soroban-sdk v23.4.0
|
|
387
389
|
Compiling utils v0.0.1 (/workspace/contracts/protocol/stellar/contracts/utils)
|
|
388
390
|
Compiling endpoint-v2 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/endpoint-v2)
|
|
389
391
|
Compiling block-message-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/block-message-lib)
|
|
390
|
-
Finished `release` profile [optimized] target(s) in
|
|
392
|
+
Finished `release` profile [optimized] target(s) in 7.83s
|
|
391
393
|
ℹ️ Build Summary:
|
|
392
394
|
Wasm File: target/wasm32v1-none/release/block_message_lib.wasm
|
|
393
|
-
Wasm Hash:
|
|
395
|
+
Wasm Hash: 1274f9056e27c5d8839c07cb0d1622a251525fdf764e3ec498efbba3199c7d6e
|
|
394
396
|
Exported Functions: 7 found
|
|
395
397
|
• get_config
|
|
396
398
|
• is_supported_eid
|
|
@@ -403,19 +405,20 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
403
405
|
ℹ️ 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
|
|
404
406
|
Compiling message-lib-common v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/message-lib-common)
|
|
405
407
|
Compiling simple-message-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/simple-message-lib)
|
|
406
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
408
|
+
Finished `release` profile [optimized] target(s) in 0.65s
|
|
407
409
|
ℹ️ Build Summary:
|
|
408
410
|
Wasm File: target/wasm32v1-none/release/simple_message_lib.wasm
|
|
409
|
-
Wasm Hash:
|
|
410
|
-
Exported Functions:
|
|
411
|
+
Wasm Hash: a254308e31b6d1068e4767196fa325c91fc1b557d7df60de0912601867d8bb5e
|
|
412
|
+
Exported Functions: 27 found
|
|
411
413
|
• __constructor
|
|
412
|
-
• eid
|
|
413
414
|
• endpoint
|
|
415
|
+
• extend_instance_ttl
|
|
414
416
|
• fee_recipient
|
|
415
|
-
•
|
|
417
|
+
• freeze_ttl_configs
|
|
416
418
|
• get_config
|
|
417
419
|
• is_supported_eid
|
|
418
|
-
•
|
|
420
|
+
• is_ttl_configs_frozen
|
|
421
|
+
• local_eid
|
|
419
422
|
• message_lib_type
|
|
420
423
|
• native_fee
|
|
421
424
|
• owner
|
|
@@ -423,10 +426,13 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
423
426
|
• renounce_ownership
|
|
424
427
|
• send
|
|
425
428
|
• set_config
|
|
426
|
-
•
|
|
429
|
+
• set_fee_recipient
|
|
430
|
+
• set_native_fee
|
|
431
|
+
• set_ttl_configs
|
|
432
|
+
• set_whitelisted_caller
|
|
433
|
+
• set_zro_fee
|
|
427
434
|
• transfer_ownership
|
|
428
|
-
•
|
|
429
|
-
• ttl_config
|
|
435
|
+
• ttl_configs
|
|
430
436
|
• validate_packet
|
|
431
437
|
• version
|
|
432
438
|
• whitelisted_caller
|
|
@@ -434,35 +440,36 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
434
440
|
✅ Build Complete
|
|
435
441
|
ℹ️ 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
|
|
436
442
|
Compiling treasury v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/treasury)
|
|
437
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
443
|
+
Finished `release` profile [optimized] target(s) in 0.42s
|
|
438
444
|
ℹ️ Build Summary:
|
|
439
445
|
Wasm File: target/wasm32v1-none/release/treasury.wasm
|
|
440
|
-
Wasm Hash:
|
|
441
|
-
Exported Functions:
|
|
446
|
+
Wasm Hash: 8d7fe3e18b19c5b4f1b6b14a0ca5d2ec23206c00f667c8803914893d3c359a81
|
|
447
|
+
Exported Functions: 17 found
|
|
442
448
|
• __constructor
|
|
449
|
+
• extend_instance_ttl
|
|
443
450
|
• fee_enabled
|
|
444
|
-
•
|
|
451
|
+
• freeze_ttl_configs
|
|
445
452
|
• get_fee
|
|
446
|
-
•
|
|
453
|
+
• is_ttl_configs_frozen
|
|
447
454
|
• native_fee_bp
|
|
448
455
|
• owner
|
|
449
456
|
• renounce_ownership
|
|
450
457
|
• set_fee_enabled
|
|
451
458
|
• set_native_fee_bp
|
|
452
|
-
•
|
|
459
|
+
• set_ttl_configs
|
|
453
460
|
• set_zro_fee_lib
|
|
454
461
|
• transfer_ownership
|
|
455
|
-
•
|
|
462
|
+
• ttl_configs
|
|
456
463
|
• withdraw_token
|
|
457
464
|
• zro_fee_lib
|
|
458
465
|
✅ Build Complete
|
|
459
466
|
ℹ️ 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
|
|
460
467
|
Compiling uln302 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/uln-302)
|
|
461
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
468
|
+
Finished `release` profile [optimized] target(s) in 0.93s
|
|
462
469
|
ℹ️ Build Summary:
|
|
463
470
|
Wasm File: target/wasm32v1-none/release/uln302.wasm
|
|
464
|
-
Wasm Hash:
|
|
465
|
-
Exported Functions:
|
|
471
|
+
Wasm Hash: 1142295acc5b2ed6c028cc463b2e8faf10b9040d43f0aea02d8fe2406d272406
|
|
472
|
+
Exported Functions: 34 found
|
|
466
473
|
• __constructor
|
|
467
474
|
• commit_verification
|
|
468
475
|
• confirmations
|
|
@@ -473,10 +480,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
473
480
|
• effective_receive_uln_config
|
|
474
481
|
• effective_send_uln_config
|
|
475
482
|
• endpoint
|
|
476
|
-
•
|
|
483
|
+
• extend_instance_ttl
|
|
484
|
+
• freeze_ttl_configs
|
|
477
485
|
• get_config
|
|
478
486
|
• is_supported_eid
|
|
479
|
-
•
|
|
487
|
+
• is_ttl_configs_frozen
|
|
480
488
|
• message_lib_type
|
|
481
489
|
• oapp_executor_config
|
|
482
490
|
• oapp_receive_uln_config
|
|
@@ -489,10 +497,10 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
489
497
|
• set_default_executor_configs
|
|
490
498
|
• set_default_receive_uln_configs
|
|
491
499
|
• set_default_send_uln_configs
|
|
492
|
-
•
|
|
500
|
+
• set_ttl_configs
|
|
493
501
|
• transfer_ownership
|
|
494
502
|
• treasury
|
|
495
|
-
•
|
|
503
|
+
• ttl_configs
|
|
496
504
|
• verifiable
|
|
497
505
|
• verify
|
|
498
506
|
• version
|
|
@@ -501,17 +509,19 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
501
509
|
Compiling oapp-macros v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapp-macros)
|
|
502
510
|
Compiling oapp v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp)
|
|
503
511
|
Compiling counter v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/counter)
|
|
504
|
-
Finished `release` profile [optimized] target(s) in 1.
|
|
512
|
+
Finished `release` profile [optimized] target(s) in 1.17s
|
|
505
513
|
ℹ️ Build Summary:
|
|
506
514
|
Wasm File: target/wasm32v1-none/release/counter.wasm
|
|
507
|
-
Wasm Hash:
|
|
508
|
-
Exported Functions:
|
|
515
|
+
Wasm Hash: 123a6b4c7ef9bb2174b093304cf48ec096d39ae79aad9ba62e1720bf38a437ab
|
|
516
|
+
Exported Functions: 26 found
|
|
509
517
|
• __constructor
|
|
510
518
|
• allow_initialize_path
|
|
519
|
+
• combine_options
|
|
511
520
|
• composed_count
|
|
512
521
|
• count
|
|
513
522
|
• eid
|
|
514
523
|
• endpoint
|
|
524
|
+
• enforced_options
|
|
515
525
|
• inbound_count
|
|
516
526
|
• increment
|
|
517
527
|
• is_compose_msg_sender
|
|
@@ -525,62 +535,188 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
525
535
|
• quote
|
|
526
536
|
• renounce_ownership
|
|
527
537
|
• set_delegate
|
|
538
|
+
• set_enforced_options
|
|
528
539
|
• set_ordered_nonce
|
|
529
540
|
• set_peer
|
|
530
541
|
• skip_inbound_nonce
|
|
531
542
|
• transfer_ownership
|
|
532
543
|
✅ Build Complete
|
|
533
544
|
ℹ️ 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
|
|
534
|
-
|
|
535
|
-
Downloaded stellar-contract-utils v0.5.0
|
|
536
|
-
Downloaded stellar-macros v0.5.0
|
|
537
|
-
Downloaded stellar-access v0.5.0
|
|
538
|
-
Compiling stellar-macros v0.5.0
|
|
539
|
-
Compiling stellar-access v0.5.0
|
|
540
|
-
Compiling stellar-contract-utils v0.5.0
|
|
541
|
-
Compiling worker-common v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/worker-common)
|
|
545
|
+
Compiling worker v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/worker)
|
|
542
546
|
Compiling executor v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor)
|
|
543
|
-
Finished `release` profile [optimized] target(s) in 1.
|
|
547
|
+
Finished `release` profile [optimized] target(s) in 1.23s
|
|
544
548
|
ℹ️ Build Summary:
|
|
545
549
|
Wasm File: target/wasm32v1-none/release/executor.wasm
|
|
546
|
-
Wasm Hash:
|
|
547
|
-
Exported Functions:
|
|
550
|
+
Wasm Hash: f73bf0e80fc6ccf05883c03bbe90c7a329472b71b056c414b5fc39c6610b7b6f
|
|
551
|
+
Exported Functions: 43 found
|
|
552
|
+
• __check_auth
|
|
548
553
|
• __constructor
|
|
549
|
-
•
|
|
554
|
+
• admins
|
|
550
555
|
• allowlist_size
|
|
551
556
|
• assign_job
|
|
552
|
-
• compose
|
|
553
557
|
• default_multiplier_bps
|
|
554
558
|
• deposit_address
|
|
555
559
|
• dst_config
|
|
556
|
-
•
|
|
557
|
-
•
|
|
560
|
+
• endpoint
|
|
561
|
+
• extend_instance_ttl
|
|
562
|
+
• freeze_ttl_configs
|
|
558
563
|
• get_fee
|
|
559
|
-
• get_role_admin
|
|
560
|
-
• get_role_member
|
|
561
|
-
• get_role_member_count
|
|
562
564
|
• get_supported_option_types
|
|
563
|
-
• grant_role
|
|
564
565
|
• has_acl
|
|
565
|
-
•
|
|
566
|
+
• is_admin
|
|
567
|
+
• is_on_allowlist
|
|
568
|
+
• is_on_denylist
|
|
569
|
+
• is_supported_message_lib
|
|
570
|
+
• is_ttl_configs_frozen
|
|
571
|
+
• is_whitelisted_fn
|
|
572
|
+
• message_libs
|
|
566
573
|
• native_drop
|
|
574
|
+
• owner
|
|
567
575
|
• paused
|
|
568
576
|
• price_feed
|
|
569
|
-
•
|
|
570
|
-
•
|
|
571
|
-
•
|
|
577
|
+
• renounce_ownership
|
|
578
|
+
• set_admin
|
|
579
|
+
• set_allowlist
|
|
572
580
|
• set_default_multiplier_bps
|
|
581
|
+
• set_denylist
|
|
573
582
|
• set_deposit_address
|
|
574
583
|
• set_dst_config
|
|
575
584
|
• set_paused
|
|
576
585
|
• set_price_feed
|
|
577
|
-
•
|
|
586
|
+
• set_supported_message_lib
|
|
578
587
|
• set_supported_option_types
|
|
588
|
+
• set_ttl_configs
|
|
589
|
+
• set_whitelisted_fn
|
|
579
590
|
• set_worker_fee_lib
|
|
580
|
-
•
|
|
591
|
+
• transfer_ownership
|
|
592
|
+
• ttl_configs
|
|
593
|
+
• withdraw_token
|
|
581
594
|
• worker_fee_lib
|
|
582
595
|
✅ Build Complete
|
|
583
|
-
|
|
596
|
+
ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/oapps/oft-mint-burn/Cargo.toml --crate-type=cdylib --target=wasm32v1-none --release
|
|
597
|
+
Compiling oft v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft)
|
|
598
|
+
Compiling oft-mint-burn v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft-mint-burn)
|
|
599
|
+
Finished `release` profile [optimized] target(s) in 0.77s
|
|
600
|
+
ℹ️ Build Summary:
|
|
601
|
+
Wasm File: target/wasm32v1-none/release/oft_mint_burn.wasm
|
|
602
|
+
Wasm Hash: a17822960d26867a2872e67ccb237fb0b03c59e96b7660d02009346f4dce7c81
|
|
603
|
+
Exported Functions: 24 found
|
|
604
|
+
• __constructor
|
|
605
|
+
• allow_initialize_path
|
|
606
|
+
• approval_required
|
|
607
|
+
• combine_options
|
|
608
|
+
• decimal_conversion_rate
|
|
609
|
+
• endpoint
|
|
610
|
+
• enforced_options
|
|
611
|
+
• is_compose_msg_sender
|
|
612
|
+
• lz_receive
|
|
613
|
+
• next_nonce
|
|
614
|
+
• oapp_version
|
|
615
|
+
• oft_version
|
|
616
|
+
• owner
|
|
617
|
+
• peer
|
|
618
|
+
• quote_oft
|
|
619
|
+
• quote_send
|
|
620
|
+
• renounce_ownership
|
|
621
|
+
• send
|
|
622
|
+
• set_delegate
|
|
623
|
+
• set_enforced_options
|
|
624
|
+
• set_peer
|
|
625
|
+
• shared_decimals
|
|
626
|
+
• token
|
|
627
|
+
• transfer_ownership
|
|
628
|
+
✅ Build Complete
|
|
629
|
+
ℹ️ 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
|
|
630
|
+
Compiling dvn v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/dvn)
|
|
631
|
+
Finished `release` profile [optimized] target(s) in 0.76s
|
|
632
|
+
ℹ️ Build Summary:
|
|
633
|
+
Wasm File: target/wasm32v1-none/release/dvn.wasm
|
|
634
|
+
Wasm Hash: 957fea7e5512ce0ad3ca9bb4db2666f2e203552c4d8ba7d16f8de0fcb5025900
|
|
635
|
+
Exported Functions: 48 found
|
|
636
|
+
• __check_auth
|
|
637
|
+
• __constructor
|
|
638
|
+
• admins
|
|
639
|
+
• allowlist_size
|
|
640
|
+
• assign_job
|
|
641
|
+
• default_multiplier_bps
|
|
642
|
+
• deposit_address
|
|
643
|
+
• dst_config
|
|
644
|
+
• extend_instance_ttl
|
|
645
|
+
• freeze_ttl_configs
|
|
646
|
+
• get_fee
|
|
647
|
+
• get_signers
|
|
648
|
+
• get_supported_option_types
|
|
649
|
+
• has_acl
|
|
650
|
+
• is_admin
|
|
651
|
+
• is_on_allowlist
|
|
652
|
+
• is_on_denylist
|
|
653
|
+
• is_signer
|
|
654
|
+
• is_supported_message_lib
|
|
655
|
+
• is_ttl_configs_frozen
|
|
656
|
+
• message_libs
|
|
657
|
+
• owner
|
|
658
|
+
• paused
|
|
659
|
+
• price_feed
|
|
660
|
+
• quorum_change_admin
|
|
661
|
+
• renounce_ownership
|
|
662
|
+
• set_admin
|
|
663
|
+
• set_allowlist
|
|
664
|
+
• set_default_multiplier_bps
|
|
665
|
+
• set_denylist
|
|
666
|
+
• set_deposit_address
|
|
667
|
+
• set_dst_config
|
|
668
|
+
• set_paused
|
|
669
|
+
• set_price_feed
|
|
670
|
+
• set_signer
|
|
671
|
+
• set_supported_message_lib
|
|
672
|
+
• set_supported_option_types
|
|
673
|
+
• set_threshold
|
|
674
|
+
• set_ttl_configs
|
|
675
|
+
• set_worker_fee_lib
|
|
676
|
+
• threshold
|
|
677
|
+
• total_signers
|
|
678
|
+
• transfer_ownership
|
|
679
|
+
• ttl_configs
|
|
680
|
+
• verify_n_signatures
|
|
681
|
+
• verify_signatures
|
|
682
|
+
• vid
|
|
683
|
+
• worker_fee_lib
|
|
684
|
+
✅ Build Complete
|
|
685
|
+
ℹ️ 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
|
|
686
|
+
Compiling dvn-fee-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/dvn-fee-lib)
|
|
687
|
+
Finished `release` profile [optimized] target(s) in 0.28s
|
|
688
|
+
ℹ️ Build Summary:
|
|
689
|
+
Wasm File: target/wasm32v1-none/release/dvn_fee_lib.wasm
|
|
690
|
+
Wasm Hash: 34e41693e40404d2c79b734de30297e6af7804da87f663e8bdd2bdbb1c52cc01
|
|
691
|
+
Exported Functions: 1 found
|
|
692
|
+
• get_fee
|
|
693
|
+
✅ Build Complete
|
|
694
|
+
ℹ️ 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
|
|
695
|
+
Compiling executor-fee-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor-fee-lib)
|
|
696
|
+
Finished `release` profile [optimized] target(s) in 0.34s
|
|
697
|
+
ℹ️ Build Summary:
|
|
698
|
+
Wasm File: target/wasm32v1-none/release/executor_fee_lib.wasm
|
|
699
|
+
Wasm Hash: 57a91a94bc29c2eb4f76aa1e01f8dfa5def8817015b943eaf6049f29babfaa8b
|
|
700
|
+
Exported Functions: 2 found
|
|
701
|
+
• get_fee
|
|
702
|
+
• version
|
|
703
|
+
✅ Build Complete
|
|
704
|
+
ℹ️ 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
|
|
705
|
+
Compiling worker v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/worker)
|
|
706
|
+
Compiling message-lib-common v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/message-lib-common)
|
|
707
|
+
Compiling executor v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor)
|
|
708
|
+
Compiling executor-helper v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor-helper)
|
|
709
|
+
Finished `release` profile [optimized] target(s) in 1.11s
|
|
710
|
+
ℹ️ Build Summary:
|
|
711
|
+
Wasm File: target/wasm32v1-none/release/executor_helper.wasm
|
|
712
|
+
Wasm Hash: faa5d9f073f7f189430e018534cc27775abea014d5cb304d832bfe025a5166c1
|
|
713
|
+
Exported Functions: 4 found
|
|
714
|
+
• compose
|
|
715
|
+
• execute
|
|
716
|
+
• native_drop
|
|
717
|
+
• native_drop_and_execute
|
|
718
|
+
✅ Build Complete
|
|
719
|
+
⏱️ stellar contract build: 1:03.143 (m:ss.mmm)
|
|
584
720
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
|
|
585
721
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-config
|
|
586
722
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup
|
|
@@ -591,98 +727,91 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
591
727
|
📦 Using 4 default cache volume(s) for stellar
|
|
592
728
|
✅ stellar-23.1.4 (Stellar CLI with UID/GID support for permission fixes)
|
|
593
729
|
🔧 stellar version: 23.1.4
|
|
594
|
-
$ docker image
|
|
595
|
-
|
|
596
|
-
438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling
|
|
597
|
-
📥 Pulling Docker image from ECR: 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_23.1.4_patch_3
|
|
598
|
-
$ docker pull 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_23.1.4_patch_3
|
|
599
|
-
stellar_23.1.4_patch_3: Pulling from layerzerolabs/stellar-tooling
|
|
600
|
-
Digest: sha256:edade6ced372eda8f2b8795237da166323936fbb4247ba40bcf34ac019acb955
|
|
601
|
-
Status: Image is up to date for 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_23.1.4_patch_3
|
|
602
|
-
438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_23.1.4_patch_3
|
|
603
|
-
✅ Successfully pulled: 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_23.1.4_patch_3
|
|
730
|
+
$ docker image inspect --format {{.Id}} 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_23.1.4_patch_6
|
|
731
|
+
sha256:2477334a514bfb7b9dd6b51d49e5c2ef2ca47d8f4fca31ca4209be570fec6423
|
|
732
|
+
✅ Using cached Docker image: 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_23.1.4_patch_6
|
|
604
733
|
👤 Running container as UID:GID 1001:1001
|
|
605
734
|
🌍 Using 5 default environment variable(s) for stellar
|
|
606
735
|
📜 Executing custom script: cargo run -p ts-bindings-gen
|
|
607
736
|
🔒 Acquired lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup
|
|
608
737
|
🔒 Acquired lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-config
|
|
609
738
|
🔒 Acquired lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
|
|
610
|
-
$ 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.
|
|
739
|
+
$ 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'
|
|
611
740
|
Downloading crates ...
|
|
741
|
+
Downloaded block-buffer v0.9.0
|
|
612
742
|
Downloaded include_dir v0.7.4
|
|
613
|
-
Downloaded
|
|
743
|
+
Downloaded anyhow v1.0.100
|
|
614
744
|
Downloaded opaque-debug v0.3.1
|
|
745
|
+
Downloaded glob v0.3.3
|
|
746
|
+
Downloaded sha2 v0.9.9
|
|
747
|
+
Downloaded digest v0.9.0
|
|
615
748
|
Downloaded include_dir_macros v0.7.4
|
|
749
|
+
Downloaded soroban-spec-typescript v23.1.4
|
|
616
750
|
Downloaded base64 v0.21.7
|
|
617
751
|
Downloaded heck v0.4.1
|
|
618
|
-
Downloaded sha2 v0.9.9
|
|
619
|
-
Downloaded glob v0.3.3
|
|
620
|
-
Downloaded anyhow v1.0.100
|
|
621
|
-
Downloaded block-buffer v0.9.0
|
|
622
|
-
Downloaded soroban-spec-typescript v23.1.4
|
|
623
752
|
Compiling proc-macro2 v1.0.103
|
|
624
|
-
Compiling unicode-ident v1.0.22
|
|
625
753
|
Compiling quote v1.0.41
|
|
754
|
+
Compiling unicode-ident v1.0.22
|
|
626
755
|
Compiling serde_json v1.0.145
|
|
627
|
-
Compiling serde_core v1.0.228
|
|
628
756
|
Compiling typenum v1.19.0
|
|
629
757
|
Compiling version_check v0.9.5
|
|
758
|
+
Compiling serde_core v1.0.228
|
|
630
759
|
Compiling serde v1.0.228
|
|
631
|
-
Compiling ryu v1.0.20
|
|
632
760
|
Compiling itoa v1.0.15
|
|
761
|
+
Compiling ryu v1.0.20
|
|
633
762
|
Compiling memchr v2.7.6
|
|
634
|
-
Compiling strsim v0.11.1
|
|
635
763
|
Compiling fnv v1.0.7
|
|
636
764
|
Compiling ident_case v1.0.1
|
|
765
|
+
Compiling strsim v0.11.1
|
|
637
766
|
Compiling schemars v0.8.22
|
|
638
767
|
Compiling cfg-if v1.0.4
|
|
639
768
|
Compiling cpufeatures v0.2.17
|
|
640
769
|
Compiling dyn-clone v1.0.20
|
|
641
770
|
Compiling hashbrown v0.16.0
|
|
642
|
-
Compiling thiserror v1.0.69
|
|
643
|
-
Compiling equivalent v1.0.2
|
|
644
771
|
Compiling data-encoding v2.9.0
|
|
772
|
+
Compiling equivalent v1.0.2
|
|
773
|
+
Compiling thiserror v1.0.69
|
|
774
|
+
Compiling prettyplease v0.2.37
|
|
645
775
|
Compiling generic-array v0.14.9
|
|
646
776
|
Compiling ethnum v1.5.2
|
|
647
777
|
Compiling semver v1.0.27
|
|
648
778
|
Compiling escape-bytes v0.1.1
|
|
649
|
-
Compiling prettyplease v0.2.37
|
|
650
779
|
Compiling base64 v0.22.1
|
|
651
|
-
Compiling glob v0.3.3
|
|
652
780
|
Compiling anyhow v1.0.100
|
|
653
|
-
Compiling
|
|
781
|
+
Compiling glob v0.3.3
|
|
654
782
|
Compiling either v1.15.0
|
|
783
|
+
Compiling opaque-debug v0.3.1
|
|
784
|
+
Compiling itertools v0.10.5
|
|
655
785
|
Compiling heck v0.4.1
|
|
656
786
|
Compiling indexmap v2.12.0
|
|
657
787
|
Compiling base64 v0.21.7
|
|
658
|
-
Compiling itertools v0.10.5
|
|
659
788
|
Compiling syn v2.0.108
|
|
660
|
-
Compiling crypto-common v0.1.6
|
|
661
789
|
Compiling block-buffer v0.10.4
|
|
662
|
-
Compiling
|
|
790
|
+
Compiling crypto-common v0.1.6
|
|
663
791
|
Compiling digest v0.9.0
|
|
664
|
-
Compiling
|
|
792
|
+
Compiling block-buffer v0.9.0
|
|
665
793
|
Compiling digest v0.10.7
|
|
666
794
|
Compiling sha2 v0.9.9
|
|
795
|
+
Compiling wasmparser v0.116.1
|
|
667
796
|
Compiling include_dir_macros v0.7.4
|
|
668
797
|
Compiling sha2 v0.10.9
|
|
669
798
|
Compiling include_dir v0.7.4
|
|
670
799
|
Compiling darling_core v0.21.3
|
|
671
800
|
Compiling serde_derive v1.0.228
|
|
672
|
-
Compiling thiserror-impl v1.0.69
|
|
673
801
|
Compiling cfg_eval v0.1.2
|
|
802
|
+
Compiling thiserror-impl v1.0.69
|
|
674
803
|
Compiling crate-git-revision v0.0.6
|
|
675
|
-
Compiling darling_macro v0.21.3
|
|
676
804
|
Compiling stellar-strkey v0.0.13
|
|
677
805
|
Compiling stellar-xdr v23.0.0
|
|
678
806
|
Compiling hex v0.4.3
|
|
807
|
+
Compiling darling_macro v0.21.3
|
|
679
808
|
Compiling darling v0.21.3
|
|
680
809
|
Compiling serde_with_macros v3.15.1
|
|
681
810
|
Compiling serde_with v3.15.1
|
|
682
|
-
Compiling soroban-spec v23.
|
|
811
|
+
Compiling soroban-spec v23.4.0
|
|
683
812
|
Compiling soroban-spec-typescript v23.1.4
|
|
684
813
|
Compiling ts-bindings-gen v0.0.1 (/workspace/contracts/protocol/stellar/tools/ts-bindings-gen)
|
|
685
|
-
Finished `dev` profile [unoptimized + debuginfo] target(s) in
|
|
814
|
+
Finished `dev` profile [unoptimized + debuginfo] target(s) in 44.78s
|
|
686
815
|
Running `target/debug/ts-bindings-gen`
|
|
687
816
|
🚀 Generating TypeScript bindings for Stellar contracts...
|
|
688
817
|
|
|
@@ -711,9 +840,19 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
711
840
|
Output: sdk/src/generated/counter.ts
|
|
712
841
|
Generating bindings...
|
|
713
842
|
✓ Generated: sdk/src/generated/counter.ts
|
|
843
|
+
📦 Processing contract: executor
|
|
844
|
+
WASM: target/wasm32v1-none/release/executor.wasm
|
|
845
|
+
Output: sdk/src/generated/executor.ts
|
|
846
|
+
Generating bindings...
|
|
847
|
+
✓ Generated: sdk/src/generated/executor.ts
|
|
848
|
+
📦 Processing contract: executor_helper
|
|
849
|
+
WASM: target/wasm32v1-none/release/executor_helper.wasm
|
|
850
|
+
Output: sdk/src/generated/executor_helper.ts
|
|
851
|
+
Generating bindings...
|
|
852
|
+
✓ Generated: sdk/src/generated/executor_helper.ts
|
|
714
853
|
|
|
715
854
|
✅ TypeScript binding generation complete!
|
|
716
|
-
Generated
|
|
855
|
+
Generated 7 contract(s)
|
|
717
856
|
|
|
718
857
|
📦 Generated files in sdk/src/generated/:
|
|
719
858
|
- endpoint.ts
|
|
@@ -721,7 +860,9 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
721
860
|
- bml.ts
|
|
722
861
|
- uln302.ts
|
|
723
862
|
- counter.ts
|
|
724
|
-
|
|
863
|
+
- executor.ts
|
|
864
|
+
- executor_helper.ts
|
|
865
|
+
⏱️ bash -c cargo run -p ts-bindings-gen: 45.170s
|
|
725
866
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
|
|
726
867
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-config
|
|
727
868
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup
|