@layerzerolabs/protocol-stellar-v2 0.2.29 → 0.2.30
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 +371 -321
- package/.turbo/turbo-lint.log +211 -202
- package/.turbo/turbo-test.log +1766 -1673
- package/Cargo.lock +11 -1
- package/contracts/common-macros/src/lib.rs +0 -2
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__upgradeable__snapshot_generated_upgradeable_code.snap +1 -0
- package/contracts/endpoint-v2/src/messaging_channel.rs +32 -3
- package/contracts/endpoint-v2/src/tests/endpoint_setup.rs +1 -1
- package/contracts/endpoint-v2/src/tests/messaging_channel/clear_payload.rs +1 -1
- package/contracts/endpoint-v2/src/tests/messaging_channel/inbound.rs +6 -6
- package/contracts/endpoint-v2/src/tests/messaging_channel/inbound_payload_hash.rs +1 -1
- package/contracts/endpoint-v2/src/tests/messaging_channel/outbound.rs +16 -10
- package/contracts/macro-integration-tests/tests/runtime/oapp/options_type3.rs +10 -10
- package/contracts/macro-integration-tests/tests/runtime/oapp/receiver.rs +3 -3
- package/contracts/macro-integration-tests/tests/runtime/oapp/sender.rs +4 -3
- package/contracts/macro-integration-tests/tests/runtime/upgradeable/migrate_guard_and_state.rs +1 -57
- package/contracts/macro-integration-tests/tests/ui/lz_contract/fail/upgradeable_missing_internal.stderr +0 -30
- package/contracts/macro-integration-tests/tests/ui/oapp/fail/custom_wrong_value.stderr +5 -3
- package/contracts/macro-integration-tests/tests/ui/oapp/fail/non_struct_input.stderr +6 -4
- package/contracts/macro-integration-tests/tests/ui/oapp/fail/unknown_custom_option.stderr +5 -3
- package/contracts/macro-integration-tests/tests/ui/oapp/fail/wrong_key.stderr +5 -3
- package/contracts/macro-integration-tests/tests/ui/upgradeable/fail/missing_auth_trait.stderr +0 -30
- package/contracts/macro-integration-tests/tests/ui/upgradeable/fail/missing_upgradeable_internal.stderr +0 -30
- package/contracts/macro-integration-tests/tests/ui/upgradeable/pass/basic.rs +0 -2
- package/contracts/macro-integration-tests/tests/ui/upgradeable/pass/multisig_contract.rs +0 -2
- package/contracts/macro-integration-tests/tests/ui/upgradeable/pass/no_migration.rs +0 -2
- package/contracts/macro-integration-tests/tests/ui/upgradeable/pass/no_user_contractimpl.rs +1 -3
- package/contracts/message-libs/message-lib-common/src/packet_codec_v1.rs +3 -6
- package/contracts/message-libs/message-lib-common/src/tests/worker_options/extract_type_3_options.rs +10 -0
- package/contracts/message-libs/message-lib-common/src/worker_options.rs +6 -2
- package/contracts/message-libs/treasury/src/interfaces/zro_fee_lib.rs +3 -3
- package/contracts/message-libs/treasury/src/lib.rs +2 -1
- package/contracts/message-libs/treasury/src/tests/setup.rs +1 -1
- package/contracts/message-libs/treasury/src/treasury.rs +5 -2
- package/contracts/message-libs/uln-302/src/errors.rs +2 -0
- package/contracts/message-libs/uln-302/src/events.rs +3 -3
- package/contracts/message-libs/uln-302/src/interfaces/receive_uln.rs +8 -0
- package/contracts/message-libs/uln-302/src/lib.rs +2 -1
- package/contracts/message-libs/uln-302/src/receive_uln.rs +16 -13
- package/contracts/message-libs/uln-302/src/send_uln.rs +51 -24
- package/contracts/message-libs/uln-302/src/storage.rs +2 -2
- package/contracts/message-libs/uln-302/src/tests/receive_uln302/effective_receive_uln_config.rs +45 -1
- package/contracts/message-libs/uln-302/src/tests/receive_uln302/verifiable.rs +63 -0
- package/contracts/message-libs/uln-302/src/tests/send_uln302/effective_executor_config.rs +47 -2
- package/contracts/message-libs/uln-302/src/tests/send_uln302/effective_send_uln_config.rs +50 -1
- package/contracts/message-libs/uln-302/src/uln302.rs +0 -8
- package/contracts/oapps/counter/Cargo.toml +4 -4
- package/contracts/oapps/counter/integration_tests/setup_uln.rs +22 -2
- package/contracts/oapps/counter/src/counter.rs +8 -8
- package/contracts/oapps/oapp/src/interfaces/oapp_msg_inspector.rs +33 -10
- package/contracts/oapps/oapp/src/lib.rs +6 -2
- package/contracts/oapps/oapp/src/oapp_core.rs +49 -24
- package/contracts/oapps/oapp/src/oapp_options_type3.rs +21 -14
- package/contracts/oapps/oapp/src/oapp_receiver.rs +17 -16
- package/contracts/oapps/oapp/src/oapp_sender.rs +66 -15
- package/contracts/oapps/oapp/src/tests/oapp_core.rs +5 -5
- package/contracts/oapps/oapp/src/tests/oapp_options_type3.rs +18 -18
- package/contracts/oapps/oapp/src/tests/oapp_receiver.rs +4 -4
- package/contracts/oapps/oapp/src/tests/oapp_sender.rs +3 -3
- package/contracts/oapps/oapp-macros/Cargo.toml +0 -1
- package/contracts/oapps/oapp-macros/src/generators.rs +87 -46
- package/contracts/oapps/oapp-macros/src/lib.rs +3 -61
- package/contracts/oapps/oapp-macros/src/tests/oapp.rs +9 -23
- package/contracts/oapps/oapp-macros/src/tests/parse_custom_impls.rs +15 -11
- package/contracts/oapps/oft/Cargo.toml +1 -1
- package/contracts/oapps/oft/integration-tests/extensions/test_oft_fee.rs +3 -3
- package/contracts/oapps/oft/integration-tests/extensions/test_pausable.rs +4 -4
- package/contracts/oapps/oft/integration-tests/extensions/test_rate_limiter.rs +144 -8
- package/contracts/oapps/oft/integration-tests/setup.rs +4 -2
- package/contracts/oapps/oft/integration-tests/utils.rs +25 -11
- package/contracts/oapps/oft/src/extensions/oft_fee.rs +65 -63
- package/contracts/oapps/oft/src/extensions/pausable.rs +2 -3
- package/contracts/oapps/oft/src/extensions/rate_limiter.rs +22 -5
- package/contracts/oapps/oft/src/interfaces/mint_burnable.rs +18 -0
- package/contracts/oapps/oft/src/interfaces/mod.rs +3 -0
- package/contracts/oapps/oft/src/lib.rs +4 -2
- package/contracts/oapps/oft/src/oft.rs +35 -36
- package/contracts/oapps/oft/src/oft_types/lock_unlock.rs +13 -9
- package/contracts/oapps/oft/src/oft_types/mint_burn.rs +14 -9
- package/contracts/oapps/oft/src/oft_types/mod.rs +14 -12
- package/contracts/oapps/oft/src/tests/extensions/oft_fee.rs +28 -20
- package/contracts/oapps/oft/src/tests/extensions/rate_limiter.rs +136 -2
- package/contracts/oapps/oft/src/tests/oft_types/lock_unlock.rs +12 -8
- package/contracts/oapps/oft-core/integration-tests/setup.rs +8 -9
- package/contracts/oapps/oft-core/integration-tests/test_with_sml.rs +7 -6
- package/contracts/oapps/oft-core/integration-tests/utils.rs +5 -4
- package/contracts/oapps/oft-core/src/codec/oft_compose_msg_codec.rs +2 -2
- package/contracts/oapps/oft-core/src/codec/oft_msg_codec.rs +33 -37
- package/contracts/oapps/oft-core/src/errors.rs +2 -1
- package/contracts/oapps/oft-core/src/events.rs +6 -0
- package/contracts/oapps/oft-core/src/lib.rs +8 -4
- package/contracts/oapps/oft-core/src/oft_core.rs +205 -148
- package/contracts/oapps/oft-core/src/storage.rs +4 -2
- package/contracts/oapps/oft-core/src/tests/test_decimals.rs +2 -2
- package/contracts/oapps/oft-core/src/tests/test_lz_receive.rs +6 -6
- package/contracts/oapps/oft-core/src/tests/test_msg_inspector.rs +7 -6
- package/contracts/oapps/oft-core/src/tests/test_oft_msg_codec.rs +11 -82
- package/contracts/oapps/oft-core/src/tests/test_quote_oft.rs +13 -13
- package/contracts/oapps/oft-core/src/tests/test_quote_send.rs +1 -1
- package/contracts/oapps/oft-core/src/tests/test_resolve_address.rs +2 -2
- package/contracts/oapps/oft-core/src/tests/test_send.rs +22 -22
- package/contracts/oapps/oft-core/src/tests/test_utils.rs +20 -22
- package/contracts/oapps/oft-core/src/utils.rs +12 -8
- package/contracts/sac-manager/Cargo.toml +25 -0
- package/contracts/sac-manager/src/errors.rs +18 -0
- package/contracts/sac-manager/src/extensions/mod.rs +6 -0
- package/contracts/sac-manager/src/extensions/redistribution.rs +109 -0
- package/contracts/sac-manager/src/extensions/supply_control/mod.rs +488 -0
- package/contracts/sac-manager/src/extensions/supply_control/rate_limit.rs +126 -0
- package/contracts/sac-manager/src/interfaces/mod.rs +3 -0
- package/contracts/sac-manager/src/interfaces/sac_manager.rs +52 -0
- package/contracts/sac-manager/src/lib.rs +23 -0
- package/contracts/sac-manager/src/sac_manager.rs +193 -0
- package/contracts/sac-manager/src/storage.rs +20 -0
- package/contracts/sac-manager/src/tests/mod.rs +14 -0
- package/contracts/sac-manager/src/tests/redistribution/mod.rs +1 -0
- package/contracts/sac-manager/src/tests/redistribution/redistribute_funds.rs +82 -0
- package/contracts/sac-manager/src/tests/sac_manager/admin_mint.rs +206 -0
- package/contracts/sac-manager/src/tests/sac_manager/burn.rs +215 -0
- package/contracts/sac-manager/src/tests/sac_manager/clawback.rs +209 -0
- package/contracts/sac-manager/src/tests/sac_manager/mint.rs +252 -0
- package/contracts/sac-manager/src/tests/sac_manager/mod.rs +9 -0
- package/contracts/sac-manager/src/tests/sac_manager/set_admin.rs +36 -0
- package/contracts/sac-manager/src/tests/sac_manager/set_authorized.rs +43 -0
- package/contracts/sac-manager/src/tests/sac_manager/set_oft_address.rs +47 -0
- package/contracts/sac-manager/src/tests/sac_manager/test_helper.rs +75 -0
- package/contracts/sac-manager/src/tests/sac_manager/view_functions.rs +60 -0
- package/contracts/sac-manager/src/tests/supply_control/enumerable_set.rs +256 -0
- package/contracts/sac-manager/src/tests/supply_control/mod.rs +8 -0
- package/contracts/sac-manager/src/tests/supply_control/refill.rs +90 -0
- package/contracts/sac-manager/src/tests/supply_control/set_mint_whitelist.rs +245 -0
- package/contracts/sac-manager/src/tests/supply_control/set_supply_controller.rs +267 -0
- package/contracts/sac-manager/src/tests/supply_control/set_supply_controller_manager.rs +122 -0
- package/contracts/sac-manager/src/tests/supply_control/test_helper.rs +38 -0
- package/contracts/sac-manager/src/tests/supply_control/update_allow_any_mint_burn.rs +114 -0
- package/contracts/sac-manager/src/tests/supply_control/update_limit_config.rs +257 -0
- package/contracts/sac-manager/src/tests/test_helper.rs +190 -0
- package/contracts/upgrader/src/lib.rs +2 -1
- package/contracts/utils/src/errors.rs +0 -1
- package/contracts/utils/src/tests/upgradeable.rs +0 -66
- package/contracts/utils/src/upgradeable.rs +0 -18
- package/contracts/workers/dvn/src/dvn.rs +2 -2
- package/contracts/workers/dvn/src/interfaces/dvn.rs +2 -2
- package/contracts/workers/dvn/src/lib.rs +2 -1
- package/contracts/workers/dvn-fee-lib/src/lib.rs +3 -1
- package/contracts/workers/executor/src/auth.rs +42 -26
- package/contracts/workers/executor/src/executor.rs +28 -3
- package/contracts/workers/executor/src/lib.rs +4 -2
- package/contracts/workers/executor/src/storage.rs +21 -1
- package/contracts/workers/executor/src/tests/auth.rs +64 -20
- package/contracts/workers/executor/src/tests/executor.rs +1 -1
- package/contracts/workers/executor/src/tests/setup.rs +18 -0
- package/contracts/workers/executor-fee-lib/src/lib.rs +4 -1
- package/contracts/workers/executor-helper/src/executor_helper.rs +24 -10
- package/contracts/workers/executor-helper/src/tests/setup.rs +147 -34
- package/contracts/workers/price-feed/src/lib.rs +3 -1
- package/contracts/workers/worker/src/lib.rs +2 -1
- package/contracts/workers/worker/src/worker.rs +31 -17
- package/docs/oapp-guide.md +17 -8
- package/docs/oft-guide.md +3 -3
- package/package.json +3 -3
- package/sdk/.turbo/turbo-test.log +512 -351
- package/sdk/dist/generated/bml.d.ts +3 -9
- package/sdk/dist/generated/bml.js +6 -7
- package/sdk/dist/generated/counter.d.ts +22 -28
- package/sdk/dist/generated/counter.js +11 -12
- package/sdk/dist/generated/dvn.d.ts +36 -54
- package/sdk/dist/generated/dvn.js +10 -15
- package/sdk/dist/generated/dvn_fee_lib.d.ts +3 -21
- package/sdk/dist/generated/dvn_fee_lib.js +6 -11
- package/sdk/dist/generated/endpoint.d.ts +3 -9
- package/sdk/dist/generated/endpoint.js +6 -7
- package/sdk/dist/generated/executor.d.ts +80 -54
- package/sdk/dist/generated/executor.js +16 -16
- package/sdk/dist/generated/executor_fee_lib.d.ts +3 -21
- package/sdk/dist/generated/executor_fee_lib.js +6 -11
- package/sdk/dist/generated/executor_helper.d.ts +36 -42
- package/sdk/dist/generated/executor_helper.js +9 -10
- package/sdk/dist/generated/layerzero_view.d.ts +20 -32
- package/sdk/dist/generated/layerzero_view.js +25 -26
- package/sdk/dist/generated/oft.d.ts +147 -79
- package/sdk/dist/generated/oft.js +47 -54
- package/sdk/dist/generated/price_feed.d.ts +20 -38
- package/sdk/dist/generated/price_feed.js +15 -20
- package/sdk/dist/generated/sac_manager.d.ts +1309 -0
- package/sdk/dist/generated/sac_manager.js +484 -0
- package/sdk/dist/generated/sml.d.ts +3 -9
- package/sdk/dist/generated/sml.js +6 -7
- package/sdk/dist/generated/treasury.d.ts +3 -9
- package/sdk/dist/generated/treasury.js +8 -9
- package/sdk/dist/generated/uln302.d.ts +20 -20
- package/sdk/dist/generated/uln302.js +25 -22
- package/sdk/dist/generated/upgrader.d.ts +3 -9
- package/sdk/dist/generated/upgrader.js +6 -7
- package/sdk/dist/index.d.ts +1 -0
- package/sdk/dist/index.js +1 -0
- package/sdk/package.json +1 -1
- package/sdk/src/index.ts +1 -0
- package/sdk/test/oft-sml.test.ts +7 -5
- package/sdk/test/sac-manager-redistribution.test.ts +578 -0
- package/sdk/test/suites/globalSetup.ts +11 -6
- package/sdk/test/test_data/test_upgradeable_dvn.wasm +0 -0
- package/sdk/test/upgrader.test.ts +75 -202
- package/sdk/test/utils.ts +40 -0
- package/tools/ts-bindings-gen/src/main.rs +1 -0
package/.turbo/turbo-build.log
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
📦 Using 4 default cache volume(s) for stellar
|
|
13
13
|
✅ stellar-25.0.0 (Latest stable release)
|
|
14
14
|
🔧 stellar version: 25.0.0
|
|
15
|
-
(node:
|
|
15
|
+
(node:15627) [MODULE_TYPELESS_PACKAGE_JSON] Warning: Module type of file:///home/runner/work/monorepo-internal/monorepo-internal/configs/vm-tooling/values/docker-image-repo.ts is not specified and it doesn't parse as CommonJS.
|
|
16
16
|
Reparsing as ES module because module syntax was detected. This incurs a performance overhead.
|
|
17
17
|
To eliminate this warning, add "type": "module" to /home/runner/work/monorepo-internal/monorepo-internal/package.json.
|
|
18
18
|
(Use `node --trace-warnings ...` to show where the warning was created)
|
|
@@ -35,40 +35,41 @@ f6bd9104d248: Pulling fs layer
|
|
|
35
35
|
73ca50fa4809: Pulling fs layer
|
|
36
36
|
f5a85bd7a844: Pulling fs layer
|
|
37
37
|
c132a28172a5: Pulling fs layer
|
|
38
|
-
4617420e017b: Waiting
|
|
39
|
-
4e430a9db1a3: Waiting
|
|
40
|
-
67ce8fb56745: Waiting
|
|
41
38
|
6ba0ba49c87d: Waiting
|
|
42
|
-
1cfd9ed002d2: Waiting
|
|
43
39
|
43dc8d96fd20: Waiting
|
|
40
|
+
1cfd9ed002d2: Waiting
|
|
44
41
|
2c1ce468d9f3: Waiting
|
|
45
|
-
|
|
46
|
-
1d4a870e3b66: Waiting
|
|
42
|
+
67ce8fb56745: Waiting
|
|
47
43
|
f5a85bd7a844: Waiting
|
|
48
|
-
1b2c4c00c303: Waiting
|
|
49
44
|
c132a28172a5: Waiting
|
|
45
|
+
1d4a870e3b66: Waiting
|
|
46
|
+
73ca50fa4809: Waiting
|
|
50
47
|
f6bd9104d248: Verifying Checksum
|
|
51
48
|
f6bd9104d248: Download complete
|
|
49
|
+
67ce8fb56745: Verifying Checksum
|
|
52
50
|
67ce8fb56745: Download complete
|
|
53
51
|
f6bd9104d248: Pull complete
|
|
52
|
+
6ba0ba49c87d: Verifying Checksum
|
|
54
53
|
6ba0ba49c87d: Download complete
|
|
54
|
+
1cfd9ed002d2: Verifying Checksum
|
|
55
55
|
1cfd9ed002d2: Download complete
|
|
56
56
|
4e430a9db1a3: Verifying Checksum
|
|
57
57
|
4e430a9db1a3: Download complete
|
|
58
|
+
2c1ce468d9f3: Verifying Checksum
|
|
59
|
+
2c1ce468d9f3: Download complete
|
|
58
60
|
4617420e017b: Verifying Checksum
|
|
59
61
|
4617420e017b: Download complete
|
|
60
|
-
|
|
62
|
+
43dc8d96fd20: Verifying Checksum
|
|
63
|
+
43dc8d96fd20: Download complete
|
|
61
64
|
1b2c4c00c303: Verifying Checksum
|
|
62
65
|
1b2c4c00c303: Download complete
|
|
66
|
+
73ca50fa4809: Verifying Checksum
|
|
63
67
|
73ca50fa4809: Download complete
|
|
64
68
|
1d4a870e3b66: Verifying Checksum
|
|
65
69
|
1d4a870e3b66: Download complete
|
|
66
70
|
f5a85bd7a844: Verifying Checksum
|
|
67
71
|
f5a85bd7a844: Download complete
|
|
68
|
-
c132a28172a5: Verifying Checksum
|
|
69
72
|
c132a28172a5: Download complete
|
|
70
|
-
43dc8d96fd20: Verifying Checksum
|
|
71
|
-
43dc8d96fd20: Download complete
|
|
72
73
|
4617420e017b: Pull complete
|
|
73
74
|
4e430a9db1a3: Pull complete
|
|
74
75
|
67ce8fb56745: Pull complete
|
|
@@ -94,177 +95,177 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
94
95
|
ℹ️ 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
|
|
95
96
|
Updating crates.io index
|
|
96
97
|
Downloading crates ...
|
|
97
|
-
Downloaded ahash v0.8.12
|
|
98
|
-
Downloaded ark-bn254 v0.4.0
|
|
99
98
|
Downloaded ark-ff-macros v0.4.2
|
|
99
|
+
Downloaded ark-bn254 v0.4.0
|
|
100
100
|
Downloaded ark-ff-asm v0.4.2
|
|
101
|
-
Downloaded arbitrary v1.3.2
|
|
102
101
|
Downloaded ark-poly v0.4.2
|
|
103
|
-
Downloaded
|
|
104
|
-
Downloaded
|
|
105
|
-
Downloaded
|
|
106
|
-
Downloaded
|
|
102
|
+
Downloaded ref-cast-impl v1.0.25
|
|
103
|
+
Downloaded dyn-clone v1.0.20
|
|
104
|
+
Downloaded keccak v0.1.5
|
|
105
|
+
Downloaded rustc_version v0.4.1
|
|
107
106
|
Downloaded rfc6979 v0.4.0
|
|
108
|
-
Downloaded
|
|
109
|
-
Downloaded macro-string v0.1.4
|
|
107
|
+
Downloaded ref-cast v1.0.25
|
|
110
108
|
Downloaded rand_chacha v0.3.1
|
|
111
109
|
Downloaded version_check v0.9.5
|
|
112
|
-
Downloaded ref-cast v1.0.25
|
|
113
|
-
Downloaded subtle v2.6.1
|
|
114
|
-
Downloaded wasmi_arena v0.4.1
|
|
115
|
-
Downloaded rand v0.8.5
|
|
116
|
-
Downloaded visibility v0.1.1
|
|
117
|
-
Downloaded soroban-env-guest v25.0.1
|
|
118
|
-
Downloaded libm v0.2.15
|
|
119
110
|
Downloaded zeroize_derive v1.4.2
|
|
111
|
+
Downloaded strsim v0.11.1
|
|
112
|
+
Downloaded visibility v0.1.1
|
|
120
113
|
Downloaded wasmi_core v0.13.0
|
|
121
|
-
Downloaded
|
|
114
|
+
Downloaded thiserror v1.0.69
|
|
115
|
+
Downloaded zeroize v1.8.2
|
|
122
116
|
Downloaded typenum v1.19.0
|
|
123
|
-
Downloaded
|
|
117
|
+
Downloaded soroban-env-common v25.0.1
|
|
124
118
|
Downloaded wasmparser-nostd v0.100.2
|
|
119
|
+
Downloaded serde_derive v1.0.228
|
|
120
|
+
Downloaded wasmparser v0.116.1
|
|
125
121
|
Downloaded time v0.3.44
|
|
126
|
-
Downloaded soroban-wasmi v0.31.1-soroban.20.0.1
|
|
127
|
-
Downloaded soroban-sdk v25.1.0
|
|
128
122
|
Downloaded serde_with v3.15.1
|
|
129
|
-
Downloaded wasmparser v0.116.1
|
|
130
|
-
Downloaded serde_json v1.0.145
|
|
131
|
-
Downloaded itertools v0.10.5
|
|
132
123
|
Downloaded zerocopy v0.8.27
|
|
133
|
-
Downloaded
|
|
124
|
+
Downloaded num-bigint v0.4.6
|
|
125
|
+
Downloaded ed25519-dalek v2.2.0
|
|
126
|
+
Downloaded memchr v2.7.6
|
|
134
127
|
Downloaded syn v1.0.109
|
|
128
|
+
Downloaded libc v0.2.177
|
|
129
|
+
Downloaded soroban-wasmi v0.31.1-soroban.20.0.1
|
|
130
|
+
Downloaded syn v2.0.108
|
|
131
|
+
Downloaded soroban-sdk v25.1.0
|
|
132
|
+
Downloaded serde_json v1.0.145
|
|
135
133
|
Downloaded serde_core v1.0.228
|
|
136
|
-
Downloaded
|
|
137
|
-
Downloaded
|
|
138
|
-
Downloaded serde_derive v1.0.228
|
|
139
|
-
Downloaded schemars v0.8.22
|
|
134
|
+
Downloaded serde v1.0.228
|
|
135
|
+
Downloaded schemars v0.9.0
|
|
140
136
|
Downloaded unicode-ident v1.0.22
|
|
141
|
-
Downloaded thiserror-impl v1.0.69
|
|
142
|
-
Downloaded stellar-strkey v0.0.16
|
|
143
137
|
Downloaded soroban-sdk-macros v25.1.0
|
|
144
|
-
Downloaded
|
|
138
|
+
Downloaded semver v1.0.27
|
|
139
|
+
Downloaded libm v0.2.15
|
|
140
|
+
Downloaded soroban-env-host v25.0.1
|
|
141
|
+
Downloaded curve25519-dalek v4.1.3
|
|
142
|
+
Downloaded chrono v0.4.42
|
|
143
|
+
Downloaded base64 v0.22.1
|
|
144
|
+
Downloaded stellar-strkey v0.0.16
|
|
145
|
+
Downloaded spin v0.9.8
|
|
146
|
+
Downloaded soroban-env-macros v25.0.1
|
|
145
147
|
Downloaded smallvec v1.15.1
|
|
148
|
+
Downloaded signature v2.2.0
|
|
146
149
|
Downloaded sha2 v0.10.9
|
|
147
150
|
Downloaded serde_with_macros v3.15.1
|
|
148
|
-
Downloaded semver v1.0.27
|
|
149
151
|
Downloaded sec1 v0.7.3
|
|
150
|
-
Downloaded
|
|
151
|
-
Downloaded itertools v0.14.0
|
|
152
|
-
Downloaded indexmap v2.12.0
|
|
152
|
+
Downloaded schemars v1.0.5
|
|
153
153
|
Downloaded hashbrown v0.12.3
|
|
154
|
-
Downloaded
|
|
154
|
+
Downloaded ark-bls12-381 v0.4.0
|
|
155
155
|
Downloaded time-macros v0.2.24
|
|
156
|
-
Downloaded
|
|
157
|
-
Downloaded thiserror v1.0.69
|
|
156
|
+
Downloaded thiserror-impl v1.0.69
|
|
158
157
|
Downloaded stellar-strkey v0.0.13
|
|
159
|
-
Downloaded spki v0.7.3
|
|
160
|
-
Downloaded libc v0.2.177
|
|
161
|
-
Downloaded soroban-env-macros v25.0.1
|
|
162
|
-
Downloaded memchr v2.7.6
|
|
163
|
-
Downloaded hashbrown v0.13.2
|
|
164
|
-
Downloaded ark-bls12-381 v0.4.0
|
|
165
|
-
Downloaded schemars v0.9.0
|
|
166
158
|
Downloaded sha3 v0.10.8
|
|
167
|
-
Downloaded k256 v0.13.4
|
|
168
|
-
Downloaded heapless v0.8.0
|
|
169
|
-
Downloaded curve25519-dalek v4.1.3
|
|
170
|
-
Downloaded strsim v0.11.1
|
|
171
159
|
Downloaded static_assertions v1.1.0
|
|
172
|
-
Downloaded soroban-
|
|
173
|
-
Downloaded
|
|
160
|
+
Downloaded soroban-ledger-snapshot v25.1.0
|
|
161
|
+
Downloaded itertools v0.14.0
|
|
162
|
+
Downloaded itertools v0.10.5
|
|
163
|
+
Downloaded heapless v0.8.0
|
|
164
|
+
Downloaded indexmap v2.12.0
|
|
174
165
|
Downloaded hashbrown v0.16.0
|
|
175
|
-
Downloaded
|
|
176
|
-
Downloaded num-bigint v0.4.6
|
|
177
|
-
Downloaded ed25519-dalek v2.2.0
|
|
178
|
-
Downloaded crypto-bigint v0.5.5
|
|
166
|
+
Downloaded hashbrown v0.13.2
|
|
179
167
|
Downloaded stable_deref_trait v1.2.1
|
|
180
|
-
Downloaded soroban-spec
|
|
181
|
-
Downloaded
|
|
168
|
+
Downloaded soroban-spec v25.1.0
|
|
169
|
+
Downloaded soroban-builtin-sdk-macros v25.0.1
|
|
170
|
+
Downloaded schemars v0.8.22
|
|
182
171
|
Downloaded proc-macro2 v1.0.103
|
|
172
|
+
Downloaded getrandom v0.2.16
|
|
173
|
+
Downloaded derivative v2.2.0
|
|
174
|
+
Downloaded wasmi_arena v0.4.1
|
|
175
|
+
Downloaded subtle v2.6.1
|
|
176
|
+
Downloaded spki v0.7.3
|
|
177
|
+
Downloaded soroban-spec-rust v25.1.0
|
|
178
|
+
Downloaded p256 v0.13.2
|
|
179
|
+
Downloaded once_cell v1.21.3
|
|
180
|
+
Downloaded iana-time-zone v0.1.64
|
|
181
|
+
Downloaded elliptic-curve v0.13.8
|
|
182
|
+
Downloaded darling v0.21.3
|
|
183
|
+
Downloaded crypto-bigint v0.5.5
|
|
184
|
+
Downloaded const-oid v0.9.6
|
|
185
|
+
Downloaded autocfg v1.5.0
|
|
186
|
+
Downloaded time-core v0.1.6
|
|
187
|
+
Downloaded soroban-env-guest v25.0.1
|
|
188
|
+
Downloaded ryu v1.0.20
|
|
189
|
+
Downloaded rand_core v0.6.4
|
|
183
190
|
Downloaded prettyplease v0.2.37
|
|
191
|
+
Downloaded paste v1.0.15
|
|
192
|
+
Downloaded macro-string v0.1.4
|
|
184
193
|
Downloaded indexmap v1.9.3
|
|
194
|
+
Downloaded hmac v0.12.1
|
|
195
|
+
Downloaded generic-array v0.14.9
|
|
185
196
|
Downloaded ethnum v1.5.2
|
|
186
197
|
Downloaded darling_core v0.21.3
|
|
187
|
-
Downloaded
|
|
188
|
-
Downloaded base64 v0.22.1
|
|
189
|
-
Downloaded soroban-builtin-sdk-macros v25.0.1
|
|
190
|
-
Downloaded ryu v1.0.20
|
|
191
|
-
Downloaded quote v1.0.41
|
|
192
|
-
Downloaded num-traits v0.2.19
|
|
193
|
-
Downloaded iana-time-zone v0.1.64
|
|
194
|
-
Downloaded hmac v0.12.1
|
|
195
|
-
Downloaded group v0.13.0
|
|
196
|
-
Downloaded elliptic-curve v0.13.8
|
|
197
|
-
Downloaded crate-git-revision v0.0.6
|
|
198
|
+
Downloaded block-buffer v0.10.4
|
|
198
199
|
Downloaded base64ct v1.8.0
|
|
199
|
-
Downloaded
|
|
200
|
-
Downloaded
|
|
201
|
-
Downloaded
|
|
202
|
-
Downloaded
|
|
203
|
-
Downloaded
|
|
204
|
-
Downloaded
|
|
200
|
+
Downloaded base16ct v0.2.0
|
|
201
|
+
Downloaded ark-std v0.4.0
|
|
202
|
+
Downloaded rand v0.8.5
|
|
203
|
+
Downloaded num-derive v0.4.2
|
|
204
|
+
Downloaded k256 v0.13.4
|
|
205
|
+
Downloaded hex-literal v0.4.1
|
|
205
206
|
Downloaded der v0.7.10
|
|
206
207
|
Downloaded darling_core v0.20.11
|
|
207
|
-
Downloaded
|
|
208
|
-
Downloaded crypto-common v0.1.6
|
|
209
|
-
Downloaded cfg-if v1.0.4
|
|
208
|
+
Downloaded curve25519-dalek-derive v0.1.1
|
|
210
209
|
Downloaded bytes-lit v0.0.5
|
|
211
210
|
Downloaded ark-serialize-derive v0.4.2
|
|
212
|
-
Downloaded
|
|
213
|
-
Downloaded
|
|
211
|
+
Downloaded ark-serialize v0.4.2
|
|
212
|
+
Downloaded quote v1.0.41
|
|
214
213
|
Downloaded ppv-lite86 v0.2.21
|
|
215
214
|
Downloaded powerfmt v0.2.0
|
|
216
|
-
Downloaded num-
|
|
217
|
-
Downloaded
|
|
215
|
+
Downloaded num-integer v0.1.46
|
|
216
|
+
Downloaded indexmap-nostd v0.4.0
|
|
218
217
|
Downloaded ident_case v1.0.1
|
|
219
|
-
Downloaded hex
|
|
218
|
+
Downloaded hex v0.4.3
|
|
219
|
+
Downloaded heck v0.5.0
|
|
220
|
+
Downloaded hash32 v0.3.1
|
|
221
|
+
Downloaded escape-bytes v0.1.1
|
|
220
222
|
Downloaded either v1.15.0
|
|
223
|
+
Downloaded downcast-rs v1.2.1
|
|
221
224
|
Downloaded derive_arbitrary v1.3.2
|
|
225
|
+
Downloaded darling_macro v0.21.3
|
|
226
|
+
Downloaded cfg-if v1.0.4
|
|
227
|
+
Downloaded primeorder v0.13.6
|
|
228
|
+
Downloaded pkcs8 v0.10.2
|
|
229
|
+
Downloaded num-traits v0.2.19
|
|
230
|
+
Downloaded num-conv v0.1.0
|
|
231
|
+
Downloaded itoa v1.0.15
|
|
232
|
+
Downloaded ed25519 v2.2.3
|
|
233
|
+
Downloaded digest v0.10.7
|
|
234
|
+
Downloaded deranged v0.5.5
|
|
235
|
+
Downloaded darling_macro v0.20.11
|
|
222
236
|
Downloaded ctor v0.5.0
|
|
237
|
+
Downloaded group v0.13.0
|
|
238
|
+
Downloaded fnv v1.0.7
|
|
239
|
+
Downloaded ff v0.13.1
|
|
240
|
+
Downloaded ecdsa v0.16.9
|
|
223
241
|
Downloaded cpufeatures v0.2.17
|
|
224
242
|
Downloaded cfg_eval v0.1.2
|
|
225
|
-
Downloaded keccak v0.1.5
|
|
226
|
-
Downloaded heck v0.5.0
|
|
227
|
-
Downloaded data-encoding v2.9.0
|
|
228
|
-
Downloaded darling v0.20.11
|
|
229
|
-
Downloaded ark-std v0.4.0
|
|
230
|
-
Downloaded hash32 v0.3.1
|
|
231
|
-
Downloaded generic-array v0.14.9
|
|
232
|
-
Downloaded fnv v1.0.7
|
|
233
243
|
Downloaded byteorder v1.5.0
|
|
234
|
-
Downloaded block-buffer v0.10.4
|
|
235
|
-
Downloaded base16ct v0.2.0
|
|
236
|
-
Downloaded autocfg v1.5.0
|
|
237
|
-
Downloaded hex v0.4.3
|
|
238
244
|
Downloaded equivalent v1.0.2
|
|
239
|
-
Downloaded
|
|
245
|
+
Downloaded crypto-common v0.1.6
|
|
246
|
+
Downloaded crate-git-revision v0.0.6
|
|
240
247
|
Downloaded dtor-proc-macro v0.0.6
|
|
241
|
-
Downloaded downcast-rs v1.2.1
|
|
242
|
-
Downloaded derivative v2.2.0
|
|
243
|
-
Downloaded darling_macro v0.21.3
|
|
244
|
-
Downloaded once_cell v1.21.3
|
|
245
|
-
Downloaded escape-bytes v0.1.1
|
|
246
|
-
Downloaded stellar-xdr v25.0.0
|
|
247
|
-
Downloaded ed25519 v2.2.3
|
|
248
|
-
Downloaded ecdsa v0.16.9
|
|
249
248
|
Downloaded dtor v0.1.1
|
|
250
|
-
Downloaded
|
|
251
|
-
Downloaded deranged v0.5.5
|
|
252
|
-
Downloaded darling_macro v0.20.11
|
|
253
|
-
Downloaded ark-ff v0.4.2
|
|
249
|
+
Downloaded darling v0.20.11
|
|
254
250
|
Downloaded ctor-proc-macro v0.0.6
|
|
251
|
+
Downloaded ark-ff v0.4.2
|
|
252
|
+
Downloaded data-encoding v2.9.0
|
|
255
253
|
Downloaded ark-ec v0.4.2
|
|
254
|
+
Downloaded stellar-xdr v25.0.0
|
|
255
|
+
Downloaded arbitrary v1.3.2
|
|
256
|
+
Downloaded ahash v0.8.12
|
|
256
257
|
Compiling proc-macro2 v1.0.103
|
|
257
|
-
Compiling unicode-ident v1.0.22
|
|
258
258
|
Compiling quote v1.0.41
|
|
259
|
+
Compiling unicode-ident v1.0.22
|
|
259
260
|
Compiling serde_core v1.0.228
|
|
260
261
|
Compiling serde v1.0.228
|
|
261
262
|
Compiling serde_json v1.0.145
|
|
263
|
+
Compiling ryu v1.0.20
|
|
262
264
|
Compiling itoa v1.0.15
|
|
263
265
|
Compiling memchr v2.7.6
|
|
264
|
-
Compiling ryu v1.0.20
|
|
265
|
-
Compiling fnv v1.0.7
|
|
266
|
-
Compiling strsim v0.11.1
|
|
267
266
|
Compiling ident_case v1.0.1
|
|
267
|
+
Compiling strsim v0.11.1
|
|
268
|
+
Compiling fnv v1.0.7
|
|
268
269
|
Compiling typenum v1.19.0
|
|
269
270
|
Compiling version_check v0.9.5
|
|
270
271
|
Compiling autocfg v1.5.0
|
|
@@ -273,44 +274,44 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
273
274
|
Compiling cfg-if v1.0.4
|
|
274
275
|
Compiling data-encoding v2.9.0
|
|
275
276
|
Compiling cpufeatures v0.2.17
|
|
276
|
-
Compiling escape-bytes v0.1.1
|
|
277
|
-
Compiling either v1.15.0
|
|
278
277
|
Compiling ethnum v1.5.2
|
|
278
|
+
Compiling either v1.15.0
|
|
279
|
+
Compiling escape-bytes v0.1.1
|
|
279
280
|
Compiling semver v1.0.27
|
|
280
281
|
Compiling equivalent v1.0.2
|
|
281
282
|
Compiling thiserror v1.0.69
|
|
282
283
|
Compiling hashbrown v0.16.0
|
|
283
|
-
Compiling num-traits v0.2.19
|
|
284
284
|
Compiling prettyplease v0.2.37
|
|
285
285
|
Compiling heapless v0.8.0
|
|
286
|
-
Compiling itertools v0.10.5
|
|
287
|
-
Compiling base64 v0.22.1
|
|
288
286
|
Compiling generic-array v0.14.9
|
|
287
|
+
Compiling base64 v0.22.1
|
|
288
|
+
Compiling num-traits v0.2.19
|
|
289
|
+
Compiling itertools v0.10.5
|
|
289
290
|
Compiling byteorder v1.5.0
|
|
290
|
-
Compiling rustc_version v0.4.1
|
|
291
291
|
Compiling static_assertions v1.1.0
|
|
292
|
+
Compiling rustc_version v0.4.1
|
|
292
293
|
Compiling heck v0.5.0
|
|
293
294
|
Compiling stable_deref_trait v1.2.1
|
|
294
295
|
Compiling hash32 v0.3.1
|
|
295
296
|
Compiling itertools v0.14.0
|
|
296
297
|
Compiling indexmap v2.12.0
|
|
297
|
-
Compiling num-integer v0.1.46
|
|
298
298
|
Compiling syn v2.0.108
|
|
299
|
-
Compiling wasmparser v0.116.1
|
|
300
299
|
Compiling block-buffer v0.10.4
|
|
301
300
|
Compiling crypto-common v0.1.6
|
|
302
|
-
Compiling num-
|
|
301
|
+
Compiling num-integer v0.1.46
|
|
302
|
+
Compiling wasmparser v0.116.1
|
|
303
303
|
Compiling digest v0.10.7
|
|
304
304
|
Compiling sha2 v0.10.9
|
|
305
|
+
Compiling num-bigint v0.4.6
|
|
305
306
|
Compiling darling_core v0.21.3
|
|
306
307
|
Compiling darling_core v0.20.11
|
|
307
308
|
Compiling macro-string v0.1.4
|
|
308
309
|
Compiling serde_derive v1.0.228
|
|
309
310
|
Compiling cfg_eval v0.1.2
|
|
310
|
-
Compiling num-derive v0.4.2
|
|
311
311
|
Compiling thiserror-impl v1.0.69
|
|
312
|
-
Compiling
|
|
312
|
+
Compiling num-derive v0.4.2
|
|
313
313
|
Compiling bytes-lit v0.0.5
|
|
314
|
+
Compiling visibility v0.1.1
|
|
314
315
|
Compiling common-macros v0.0.1 (/workspace/contracts/protocol/stellar/contracts/common-macros)
|
|
315
316
|
Compiling darling_macro v0.20.11
|
|
316
317
|
Compiling darling_macro v0.21.3
|
|
@@ -332,11 +333,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
332
333
|
Compiling soroban-env-guest v25.0.1
|
|
333
334
|
Compiling utils v0.0.1 (/workspace/contracts/protocol/stellar/contracts/utils)
|
|
334
335
|
Compiling endpoint-v2 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/endpoint-v2)
|
|
335
|
-
Finished `release` profile [optimized] target(s) in
|
|
336
|
+
Finished `release` profile [optimized] target(s) in 33.15s
|
|
336
337
|
ℹ️ Build Summary:
|
|
337
|
-
Wasm File: target/wasm32v1-none/release/endpoint_v2.wasm (
|
|
338
|
-
Wasm Hash:
|
|
339
|
-
Wasm Size:
|
|
338
|
+
Wasm File: target/wasm32v1-none/release/endpoint_v2.wasm (57964 bytes)
|
|
339
|
+
Wasm Hash: c824544e1262d9b1b8fbe1454782087d4ab39884e5e332145477a46600ba3b45
|
|
340
|
+
Wasm Size: 57964 bytes
|
|
340
341
|
Exported Functions: 60 found
|
|
341
342
|
• __constructor
|
|
342
343
|
• accept_ownership
|
|
@@ -403,11 +404,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
403
404
|
ℹ️ 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
|
|
404
405
|
Compiling byteorder v1.5.0
|
|
405
406
|
Compiling escape-bytes v0.1.1
|
|
406
|
-
Compiling static_assertions v1.1.0
|
|
407
407
|
Compiling ethnum v1.5.2
|
|
408
|
-
Compiling num-traits v0.2.19
|
|
409
408
|
Compiling stable_deref_trait v1.2.1
|
|
409
|
+
Compiling static_assertions v1.1.0
|
|
410
410
|
Compiling data-encoding v2.9.0
|
|
411
|
+
Compiling num-traits v0.2.19
|
|
411
412
|
Compiling cfg-if v1.0.4
|
|
412
413
|
Compiling stellar-xdr v25.0.0
|
|
413
414
|
Compiling hash32 v0.3.1
|
|
@@ -421,22 +422,20 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
421
422
|
Compiling message-lib-common v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/message-lib-common)
|
|
422
423
|
Compiling uln302 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/uln-302)
|
|
423
424
|
Compiling layerzero-views v0.0.1 (/workspace/contracts/protocol/stellar/contracts/layerzero-views)
|
|
424
|
-
Finished `release` profile [optimized] target(s) in
|
|
425
|
+
Finished `release` profile [optimized] target(s) in 8.66s
|
|
425
426
|
ℹ️ Build Summary:
|
|
426
|
-
Wasm File: target/wasm32v1-none/release/layerzero_views.wasm (
|
|
427
|
-
Wasm Hash:
|
|
428
|
-
Wasm Size:
|
|
429
|
-
Exported Functions:
|
|
427
|
+
Wasm File: target/wasm32v1-none/release/layerzero_views.wasm (35715 bytes)
|
|
428
|
+
Wasm Hash: 06acbdd68500eed2d515633af50c53a29f7b492811c930c61b618ce22a3772bd
|
|
429
|
+
Wasm Size: 35715 bytes
|
|
430
|
+
Exported Functions: 22 found
|
|
430
431
|
• __constructor
|
|
431
432
|
• accept_ownership
|
|
432
433
|
• authorizer
|
|
433
434
|
• endpoint
|
|
434
435
|
• executable
|
|
435
436
|
• extend_instance_ttl
|
|
436
|
-
• freeze
|
|
437
437
|
• freeze_ttl_configs
|
|
438
438
|
• initializable
|
|
439
|
-
• is_frozen
|
|
440
439
|
• is_ttl_configs_frozen
|
|
441
440
|
• local_eid
|
|
442
441
|
• migrate
|
|
@@ -456,11 +455,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
456
455
|
ℹ️ 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
|
|
457
456
|
Compiling message-lib-common v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/message-lib-common)
|
|
458
457
|
Compiling uln302 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/uln-302)
|
|
459
|
-
Finished `release` profile [optimized] target(s) in 1.
|
|
458
|
+
Finished `release` profile [optimized] target(s) in 1.11s
|
|
460
459
|
ℹ️ Build Summary:
|
|
461
|
-
Wasm File: target/wasm32v1-none/release/uln302.wasm (
|
|
462
|
-
Wasm Hash:
|
|
463
|
-
Wasm Size:
|
|
460
|
+
Wasm File: target/wasm32v1-none/release/uln302.wasm (59413 bytes)
|
|
461
|
+
Wasm Hash: 30c73aa82b858c5193bba531e61e85f6a45e1bceebfe392a33ddf066c3c73d10
|
|
462
|
+
Wasm Size: 59413 bytes
|
|
464
463
|
Exported Functions: 38 found
|
|
465
464
|
• __constructor
|
|
466
465
|
• accept_ownership
|
|
@@ -502,42 +501,127 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
502
501
|
• version
|
|
503
502
|
✅ Build Complete
|
|
504
503
|
|
|
505
|
-
ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/
|
|
506
|
-
Compiling
|
|
507
|
-
|
|
504
|
+
ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/sac-manager/Cargo.toml --crate-type=cdylib --target=wasm32v1-none --release
|
|
505
|
+
Compiling oapp-macros v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp-macros)
|
|
506
|
+
Compiling oapp v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp)
|
|
507
|
+
Compiling oft-core v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft-core)
|
|
508
|
+
Compiling oft v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft)
|
|
509
|
+
Compiling sac-manager v0.0.1 (/workspace/contracts/protocol/stellar/contracts/sac-manager)
|
|
510
|
+
Finished `release` profile [optimized] target(s) in 2.09s
|
|
508
511
|
ℹ️ Build Summary:
|
|
509
|
-
Wasm File: target/wasm32v1-none/release/
|
|
510
|
-
Wasm Hash:
|
|
511
|
-
Wasm Size:
|
|
512
|
-
Exported Functions:
|
|
512
|
+
Wasm File: target/wasm32v1-none/release/sac_manager.wasm (47427 bytes)
|
|
513
|
+
Wasm Hash: ce6445fdd02b7265220c941427d212a57b696bd4c044f5ec41463ec1f1f2fea6
|
|
514
|
+
Wasm Size: 47427 bytes
|
|
515
|
+
Exported Functions: 39 found
|
|
516
|
+
• __constructor
|
|
517
|
+
• accept_ownership
|
|
518
|
+
• allow_any_mint_burn
|
|
519
|
+
• authorized_mint
|
|
520
|
+
• authorizer
|
|
521
|
+
• burn
|
|
522
|
+
• clawback
|
|
523
|
+
• extend_instance_ttl
|
|
524
|
+
• freeze_ttl_configs
|
|
525
|
+
• get_remaining_mint_amount
|
|
526
|
+
• get_supply_controller_config
|
|
527
|
+
• get_supply_controller_managers
|
|
528
|
+
• get_supply_controllers
|
|
529
|
+
• is_address_whitelisted
|
|
530
|
+
• is_supply_controller_manager
|
|
531
|
+
• is_ttl_configs_frozen
|
|
532
|
+
• migrate
|
|
533
|
+
• mint
|
|
534
|
+
• oft_address
|
|
535
|
+
• owner
|
|
536
|
+
• pending_owner
|
|
537
|
+
• propose_ownership_transfer
|
|
538
|
+
• redistribute_blacklisted_funds
|
|
539
|
+
• redistribution_enabled
|
|
540
|
+
• release_sac_admin
|
|
541
|
+
• renounce_ownership
|
|
542
|
+
• set_authorized
|
|
543
|
+
• set_mint_whitelist
|
|
544
|
+
• set_oft_address
|
|
545
|
+
• set_supply_controller
|
|
546
|
+
• set_supply_controller_manager
|
|
547
|
+
• set_ttl_configs
|
|
548
|
+
• supply_control_enabled
|
|
549
|
+
• transfer_ownership
|
|
550
|
+
• ttl_configs
|
|
551
|
+
• underlying_sac
|
|
552
|
+
• update_allow_any_mint_burn
|
|
553
|
+
• update_limit_config
|
|
513
554
|
• upgrade
|
|
514
|
-
• upgrade_and_migrate
|
|
515
555
|
✅ Build Complete
|
|
516
556
|
|
|
517
|
-
ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/
|
|
518
|
-
Compiling
|
|
519
|
-
|
|
557
|
+
ℹ️ 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
|
|
558
|
+
Compiling oapp v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp)
|
|
559
|
+
Compiling oft-core v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft-core)
|
|
560
|
+
Compiling oft v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft)
|
|
561
|
+
Finished `release` profile [optimized] target(s) in 1.56s
|
|
520
562
|
ℹ️ Build Summary:
|
|
521
|
-
Wasm File: target/wasm32v1-none/release/
|
|
522
|
-
Wasm Hash:
|
|
523
|
-
Wasm Size:
|
|
524
|
-
Exported Functions:
|
|
525
|
-
•
|
|
526
|
-
•
|
|
527
|
-
•
|
|
528
|
-
•
|
|
563
|
+
Wasm File: target/wasm32v1-none/release/oft.wasm (65694 bytes)
|
|
564
|
+
Wasm Hash: cbad91160b3b4214d9ea371c2f4b961835fe45dfe8c1e9779c3a63e6c2ce38af
|
|
565
|
+
Wasm Size: 65694 bytes
|
|
566
|
+
Exported Functions: 49 found
|
|
567
|
+
• __constructor
|
|
568
|
+
• accept_ownership
|
|
569
|
+
• allow_initialize_path
|
|
570
|
+
• approval_required
|
|
571
|
+
• authorizer
|
|
572
|
+
• combine_options
|
|
573
|
+
• decimal_conversion_rate
|
|
574
|
+
• default_fee_bps
|
|
575
|
+
• effective_fee_bps
|
|
576
|
+
• endpoint
|
|
577
|
+
• enforced_options
|
|
578
|
+
• extend_instance_ttl
|
|
579
|
+
• fee_bps
|
|
580
|
+
• fee_deposit_address
|
|
581
|
+
• freeze_ttl_configs
|
|
582
|
+
• is_compose_msg_sender
|
|
583
|
+
• is_paused
|
|
584
|
+
• is_ttl_configs_frozen
|
|
585
|
+
• lz_receive
|
|
586
|
+
• msg_inspector
|
|
587
|
+
• next_nonce
|
|
588
|
+
• oapp_version
|
|
589
|
+
• oft_type
|
|
590
|
+
• oft_version
|
|
591
|
+
• owner
|
|
592
|
+
• peer
|
|
593
|
+
• pending_owner
|
|
594
|
+
• propose_ownership_transfer
|
|
595
|
+
• quote_oft
|
|
596
|
+
• quote_send
|
|
597
|
+
• rate_limit_capacity
|
|
598
|
+
• rate_limit_config
|
|
599
|
+
• rate_limit_in_flight
|
|
600
|
+
• renounce_ownership
|
|
529
601
|
• send
|
|
530
|
-
•
|
|
531
|
-
•
|
|
602
|
+
• set_default_fee_bps
|
|
603
|
+
• set_delegate
|
|
604
|
+
• set_enforced_options
|
|
605
|
+
• set_fee_bps
|
|
606
|
+
• set_fee_deposit_address
|
|
607
|
+
• set_msg_inspector
|
|
608
|
+
• set_paused
|
|
609
|
+
• set_peer
|
|
610
|
+
• set_rate_limit
|
|
611
|
+
• set_ttl_configs
|
|
612
|
+
• shared_decimals
|
|
613
|
+
• token
|
|
614
|
+
• transfer_ownership
|
|
615
|
+
• ttl_configs
|
|
532
616
|
✅ Build Complete
|
|
533
617
|
|
|
534
618
|
ℹ️ 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
|
|
535
619
|
Compiling simple-message-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/simple-message-lib)
|
|
536
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
620
|
+
Finished `release` profile [optimized] target(s) in 0.49s
|
|
537
621
|
ℹ️ Build Summary:
|
|
538
|
-
Wasm File: target/wasm32v1-none/release/simple_message_lib.wasm (
|
|
539
|
-
Wasm Hash:
|
|
540
|
-
Wasm Size:
|
|
622
|
+
Wasm File: target/wasm32v1-none/release/simple_message_lib.wasm (29777 bytes)
|
|
623
|
+
Wasm Hash: 642d224fb11c748d1ee77d8806b37179d1ecb0d015c287846cbe67d06fc7a234
|
|
624
|
+
Wasm Size: 29777 bytes
|
|
541
625
|
Exported Functions: 31 found
|
|
542
626
|
• __constructor
|
|
543
627
|
• accept_ownership
|
|
@@ -572,13 +656,42 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
572
656
|
• zro_fee
|
|
573
657
|
✅ Build Complete
|
|
574
658
|
|
|
659
|
+
ℹ️ 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
|
|
660
|
+
Compiling upgrader v0.0.1 (/workspace/contracts/protocol/stellar/contracts/upgrader)
|
|
661
|
+
Finished `release` profile [optimized] target(s) in 0.26s
|
|
662
|
+
ℹ️ Build Summary:
|
|
663
|
+
Wasm File: target/wasm32v1-none/release/upgrader.wasm (5385 bytes)
|
|
664
|
+
Wasm Hash: b1a7ef0631e7b4bf9569dcdc0525ba6a8669f7450a363c7052b16d14dd881771
|
|
665
|
+
Wasm Size: 5385 bytes
|
|
666
|
+
Exported Functions: 2 found
|
|
667
|
+
• upgrade
|
|
668
|
+
• upgrade_and_migrate
|
|
669
|
+
✅ Build Complete
|
|
670
|
+
|
|
671
|
+
ℹ️ 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
|
|
672
|
+
Compiling blocked-message-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/blocked-message-lib)
|
|
673
|
+
Finished `release` profile [optimized] target(s) in 0.31s
|
|
674
|
+
ℹ️ Build Summary:
|
|
675
|
+
Wasm File: target/wasm32v1-none/release/blocked_message_lib.wasm (15029 bytes)
|
|
676
|
+
Wasm Hash: bc7bee1f03e82d7cf2f2208f3084e8eb997b45a5ceecf10d2b832cf8c6f9611d
|
|
677
|
+
Wasm Size: 15029 bytes
|
|
678
|
+
Exported Functions: 7 found
|
|
679
|
+
• get_config
|
|
680
|
+
• is_supported_eid
|
|
681
|
+
• message_lib_type
|
|
682
|
+
• quote
|
|
683
|
+
• send
|
|
684
|
+
• set_config
|
|
685
|
+
• version
|
|
686
|
+
✅ Build Complete
|
|
687
|
+
|
|
575
688
|
ℹ️ 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
|
|
576
689
|
Compiling treasury v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/treasury)
|
|
577
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
690
|
+
Finished `release` profile [optimized] target(s) in 0.44s
|
|
578
691
|
ℹ️ Build Summary:
|
|
579
|
-
Wasm File: target/wasm32v1-none/release/treasury.wasm (
|
|
580
|
-
Wasm Hash:
|
|
581
|
-
Wasm Size:
|
|
692
|
+
Wasm File: target/wasm32v1-none/release/treasury.wasm (28356 bytes)
|
|
693
|
+
Wasm Hash: 66d8646f66f024da9a44979f73a2100ccca2b52e25ed69b0241b8d96d95e32a2
|
|
694
|
+
Wasm Size: 28356 bytes
|
|
582
695
|
Exported Functions: 21 found
|
|
583
696
|
• __constructor
|
|
584
697
|
• accept_ownership
|
|
@@ -604,14 +717,12 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
604
717
|
✅ Build Complete
|
|
605
718
|
|
|
606
719
|
ℹ️ 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
|
|
607
|
-
Compiling oapp-macros v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp-macros)
|
|
608
|
-
Compiling oapp v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp)
|
|
609
720
|
Compiling counter v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/counter)
|
|
610
|
-
Finished `release` profile [optimized] target(s) in
|
|
721
|
+
Finished `release` profile [optimized] target(s) in 0.63s
|
|
611
722
|
ℹ️ Build Summary:
|
|
612
|
-
Wasm File: target/wasm32v1-none/release/counter.wasm (
|
|
613
|
-
Wasm Hash:
|
|
614
|
-
Wasm Size:
|
|
723
|
+
Wasm File: target/wasm32v1-none/release/counter.wasm (40767 bytes)
|
|
724
|
+
Wasm Hash: ad0c1fad9f1a1d41626541cb1bd500587f143838f7a0a8fa47d8d162f6f1eaf7
|
|
725
|
+
Wasm Size: 40767 bytes
|
|
615
726
|
Exported Functions: 35 found
|
|
616
727
|
• __constructor
|
|
617
728
|
• accept_ownership
|
|
@@ -654,12 +765,12 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
654
765
|
Compiling fee-lib-interfaces v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/fee-lib-interfaces)
|
|
655
766
|
Compiling worker v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/worker)
|
|
656
767
|
Compiling dvn v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/dvn)
|
|
657
|
-
Finished `release` profile [optimized] target(s) in 1.
|
|
768
|
+
Finished `release` profile [optimized] target(s) in 1.17s
|
|
658
769
|
ℹ️ Build Summary:
|
|
659
|
-
Wasm File: target/wasm32v1-none/release/dvn.wasm (
|
|
660
|
-
Wasm Hash:
|
|
661
|
-
Wasm Size:
|
|
662
|
-
Exported Functions:
|
|
770
|
+
Wasm File: target/wasm32v1-none/release/dvn.wasm (55851 bytes)
|
|
771
|
+
Wasm Hash: 26bd42a59769e8449b65fe65b5ca636489be375c923f19a5943211834c592008
|
|
772
|
+
Wasm Size: 55851 bytes
|
|
773
|
+
Exported Functions: 49 found
|
|
663
774
|
• __check_auth
|
|
664
775
|
• __constructor
|
|
665
776
|
• admins
|
|
@@ -670,7 +781,6 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
670
781
|
• deposit_address
|
|
671
782
|
• dst_config
|
|
672
783
|
• extend_instance_ttl
|
|
673
|
-
• freeze
|
|
674
784
|
• freeze_ttl_configs
|
|
675
785
|
• get_fee
|
|
676
786
|
• get_signers
|
|
@@ -678,7 +788,6 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
678
788
|
• has_acl
|
|
679
789
|
• hash_call_data
|
|
680
790
|
• is_admin
|
|
681
|
-
• is_frozen
|
|
682
791
|
• is_on_allowlist
|
|
683
792
|
• is_on_denylist
|
|
684
793
|
• is_signer
|
|
@@ -716,20 +825,18 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
716
825
|
ℹ️ 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
|
|
717
826
|
Compiling fee-lib-interfaces v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/fee-lib-interfaces)
|
|
718
827
|
Compiling dvn-fee-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/dvn-fee-lib)
|
|
719
|
-
Finished `release` profile [optimized] target(s) in
|
|
828
|
+
Finished `release` profile [optimized] target(s) in 0.61s
|
|
720
829
|
ℹ️ Build Summary:
|
|
721
|
-
Wasm File: target/wasm32v1-none/release/dvn_fee_lib.wasm (
|
|
722
|
-
Wasm Hash:
|
|
723
|
-
Wasm Size:
|
|
724
|
-
Exported Functions:
|
|
830
|
+
Wasm File: target/wasm32v1-none/release/dvn_fee_lib.wasm (21527 bytes)
|
|
831
|
+
Wasm Hash: 98e9e88c442664414fc8e5500220befe2f1abad3748a713dc5aec83c8b21eb57
|
|
832
|
+
Wasm Size: 21527 bytes
|
|
833
|
+
Exported Functions: 16 found
|
|
725
834
|
• __constructor
|
|
726
835
|
• accept_ownership
|
|
727
836
|
• authorizer
|
|
728
837
|
• extend_instance_ttl
|
|
729
|
-
• freeze
|
|
730
838
|
• freeze_ttl_configs
|
|
731
839
|
• get_fee
|
|
732
|
-
• is_frozen
|
|
733
840
|
• is_ttl_configs_frozen
|
|
734
841
|
• migrate
|
|
735
842
|
• owner
|
|
@@ -744,11 +851,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
744
851
|
|
|
745
852
|
ℹ️ 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
|
|
746
853
|
Compiling executor v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor)
|
|
747
|
-
Finished `release` profile [optimized] target(s) in
|
|
854
|
+
Finished `release` profile [optimized] target(s) in 0.78s
|
|
748
855
|
ℹ️ Build Summary:
|
|
749
|
-
Wasm File: target/wasm32v1-none/release/executor.wasm (
|
|
750
|
-
Wasm Hash:
|
|
751
|
-
Wasm Size:
|
|
856
|
+
Wasm File: target/wasm32v1-none/release/executor.wasm (58254 bytes)
|
|
857
|
+
Wasm Hash: 8f51ceea5413e203b1d4052ce015c1783d70035cd3f8896505e349a84e3095dd
|
|
858
|
+
Wasm Size: 58254 bytes
|
|
752
859
|
Exported Functions: 49 found
|
|
753
860
|
• __check_auth
|
|
754
861
|
• __constructor
|
|
@@ -761,14 +868,13 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
761
868
|
• deposit_address
|
|
762
869
|
• dst_config
|
|
763
870
|
• endpoint
|
|
871
|
+
• executor_helper
|
|
764
872
|
• extend_instance_ttl
|
|
765
|
-
• freeze
|
|
766
873
|
• freeze_ttl_configs
|
|
767
874
|
• get_fee
|
|
768
875
|
• get_supported_option_types
|
|
769
876
|
• has_acl
|
|
770
877
|
• is_admin
|
|
771
|
-
• is_frozen
|
|
772
878
|
• is_on_allowlist
|
|
773
879
|
• is_on_denylist
|
|
774
880
|
• is_supported_message_lib
|
|
@@ -788,6 +894,7 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
788
894
|
• set_denylist
|
|
789
895
|
• set_deposit_address
|
|
790
896
|
• set_dst_config
|
|
897
|
+
• set_executor_helper
|
|
791
898
|
• set_paused
|
|
792
899
|
• set_price_feed
|
|
793
900
|
• set_supported_message_lib
|
|
@@ -803,20 +910,18 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
803
910
|
|
|
804
911
|
ℹ️ 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
|
|
805
912
|
Compiling executor-fee-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor-fee-lib)
|
|
806
|
-
Finished `release` profile [optimized] target(s) in 0.
|
|
913
|
+
Finished `release` profile [optimized] target(s) in 0.43s
|
|
807
914
|
ℹ️ Build Summary:
|
|
808
|
-
Wasm File: target/wasm32v1-none/release/executor_fee_lib.wasm (
|
|
809
|
-
Wasm Hash:
|
|
810
|
-
Wasm Size:
|
|
811
|
-
Exported Functions:
|
|
915
|
+
Wasm File: target/wasm32v1-none/release/executor_fee_lib.wasm (34412 bytes)
|
|
916
|
+
Wasm Hash: b137cb577e25ef63f94b0aa305d094a6f190cbc27ba47e1fe7d4deb7589d141e
|
|
917
|
+
Wasm Size: 34412 bytes
|
|
918
|
+
Exported Functions: 17 found
|
|
812
919
|
• __constructor
|
|
813
920
|
• accept_ownership
|
|
814
921
|
• authorizer
|
|
815
922
|
• extend_instance_ttl
|
|
816
|
-
• freeze
|
|
817
923
|
• freeze_ttl_configs
|
|
818
924
|
• get_fee
|
|
819
|
-
• is_frozen
|
|
820
925
|
• is_ttl_configs_frozen
|
|
821
926
|
• migrate
|
|
822
927
|
• owner
|
|
@@ -831,15 +936,15 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
831
936
|
✅ Build Complete
|
|
832
937
|
|
|
833
938
|
ℹ️ 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
|
|
834
|
-
Compiling worker v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/worker)
|
|
835
939
|
Compiling fee-lib-interfaces v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/fee-lib-interfaces)
|
|
940
|
+
Compiling worker v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/worker)
|
|
836
941
|
Compiling executor v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor)
|
|
837
942
|
Compiling executor-helper v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor-helper)
|
|
838
|
-
Finished `release` profile [optimized] target(s) in 1.
|
|
943
|
+
Finished `release` profile [optimized] target(s) in 1.00s
|
|
839
944
|
ℹ️ Build Summary:
|
|
840
|
-
Wasm File: target/wasm32v1-none/release/executor_helper.wasm (
|
|
841
|
-
Wasm Hash:
|
|
842
|
-
Wasm Size:
|
|
945
|
+
Wasm File: target/wasm32v1-none/release/executor_helper.wasm (24789 bytes)
|
|
946
|
+
Wasm Hash: db672becfdc1aeebcd4da6058632500adfea059e053ce2d332d0bdba87d200ea
|
|
947
|
+
Wasm Size: 24789 bytes
|
|
843
948
|
Exported Functions: 6 found
|
|
844
949
|
• compose
|
|
845
950
|
• execute
|
|
@@ -851,12 +956,12 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
851
956
|
|
|
852
957
|
ℹ️ 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
|
|
853
958
|
Compiling price-feed v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/price-feed)
|
|
854
|
-
Finished `release` profile [optimized] target(s) in
|
|
959
|
+
Finished `release` profile [optimized] target(s) in 0.61s
|
|
855
960
|
ℹ️ Build Summary:
|
|
856
|
-
Wasm File: target/wasm32v1-none/release/price_feed.wasm (
|
|
857
|
-
Wasm Hash:
|
|
858
|
-
Wasm Size:
|
|
859
|
-
Exported Functions:
|
|
961
|
+
Wasm File: target/wasm32v1-none/release/price_feed.wasm (32620 bytes)
|
|
962
|
+
Wasm Hash: ab9176962cf62cbebe2c90fe34119474956b6766cd817b415ccd39bb0c905d4c
|
|
963
|
+
Wasm Size: 32620 bytes
|
|
964
|
+
Exported Functions: 30 found
|
|
860
965
|
• __constructor
|
|
861
966
|
• accept_ownership
|
|
862
967
|
• arbitrum_compression_percent
|
|
@@ -865,11 +970,9 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
865
970
|
• eid_to_model_type
|
|
866
971
|
• estimate_fee_by_eid
|
|
867
972
|
• extend_instance_ttl
|
|
868
|
-
• freeze
|
|
869
973
|
• freeze_ttl_configs
|
|
870
974
|
• get_price
|
|
871
975
|
• get_price_ratio_denominator
|
|
872
|
-
• is_frozen
|
|
873
976
|
• is_price_updater
|
|
874
977
|
• is_ttl_configs_frozen
|
|
875
978
|
• migrate
|
|
@@ -891,67 +994,7 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
891
994
|
• upgrade
|
|
892
995
|
✅ Build Complete
|
|
893
996
|
|
|
894
|
-
|
|
895
|
-
Compiling oft-core v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft-core)
|
|
896
|
-
Compiling oft v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft)
|
|
897
|
-
Finished `release` profile [optimized] target(s) in 1.98s
|
|
898
|
-
ℹ️ Build Summary:
|
|
899
|
-
Wasm File: target/wasm32v1-none/release/oft.wasm (60817 bytes)
|
|
900
|
-
Wasm Hash: ecf9c8191d272ba8c743e743738241148f509549b9a5ab41be11ad50e1bffd0f
|
|
901
|
-
Wasm Size: 60817 bytes
|
|
902
|
-
Exported Functions: 49 found
|
|
903
|
-
• __constructor
|
|
904
|
-
• accept_ownership
|
|
905
|
-
• allow_initialize_path
|
|
906
|
-
• approval_required
|
|
907
|
-
• authorizer
|
|
908
|
-
• combine_options
|
|
909
|
-
• decimal_conversion_rate
|
|
910
|
-
• default_fee_bps
|
|
911
|
-
• effective_fee_bps
|
|
912
|
-
• endpoint
|
|
913
|
-
• enforced_options
|
|
914
|
-
• extend_instance_ttl
|
|
915
|
-
• fee_bps
|
|
916
|
-
• fee_deposit_address
|
|
917
|
-
• freeze_ttl_configs
|
|
918
|
-
• is_compose_msg_sender
|
|
919
|
-
• is_paused
|
|
920
|
-
• is_ttl_configs_frozen
|
|
921
|
-
• lz_receive
|
|
922
|
-
• msg_inspector
|
|
923
|
-
• next_nonce
|
|
924
|
-
• oapp_version
|
|
925
|
-
• oft_type
|
|
926
|
-
• oft_version
|
|
927
|
-
• owner
|
|
928
|
-
• peer
|
|
929
|
-
• pending_owner
|
|
930
|
-
• propose_ownership_transfer
|
|
931
|
-
• quote_oft
|
|
932
|
-
• quote_send
|
|
933
|
-
• rate_limit_capacity
|
|
934
|
-
• rate_limit_config
|
|
935
|
-
• rate_limit_in_flight
|
|
936
|
-
• renounce_ownership
|
|
937
|
-
• send
|
|
938
|
-
• set_default_fee_bps
|
|
939
|
-
• set_delegate
|
|
940
|
-
• set_enforced_options
|
|
941
|
-
• set_fee_bps
|
|
942
|
-
• set_fee_deposit_address
|
|
943
|
-
• set_msg_inspector
|
|
944
|
-
• set_paused
|
|
945
|
-
• set_peer
|
|
946
|
-
• set_rate_limit
|
|
947
|
-
• set_ttl_configs
|
|
948
|
-
• shared_decimals
|
|
949
|
-
• token
|
|
950
|
-
• transfer_ownership
|
|
951
|
-
• ttl_configs
|
|
952
|
-
✅ Build Complete
|
|
953
|
-
|
|
954
|
-
⏱️ stellar contract build: 1:41.254 (m:ss.mmm)
|
|
997
|
+
⏱️ stellar contract build: 1:07.458 (m:ss.mmm)
|
|
955
998
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
|
|
956
999
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-config
|
|
957
1000
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup
|
|
@@ -964,7 +1007,7 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
964
1007
|
📦 Using 4 default cache volume(s) for stellar
|
|
965
1008
|
✅ stellar-25.0.0 (Latest stable release)
|
|
966
1009
|
🔧 stellar version: 25.0.0
|
|
967
|
-
(node:
|
|
1010
|
+
(node:23004) [MODULE_TYPELESS_PACKAGE_JSON] Warning: Module type of file:///home/runner/work/monorepo-internal/monorepo-internal/configs/vm-tooling/values/docker-image-repo.ts is not specified and it doesn't parse as CommonJS.
|
|
968
1011
|
Reparsing as ES module because module syntax was detected. This incurs a performance overhead.
|
|
969
1012
|
To eliminate this warning, add "type": "module" to /home/runner/work/monorepo-internal/monorepo-internal/package.json.
|
|
970
1013
|
(Use `node --trace-warnings ...` to show where the warning was created)
|
|
@@ -979,24 +1022,24 @@ sha256:57520026e52d8bfec50ae6363977a40712bfa2549bac8ceed62a150f1d58a8d2
|
|
|
979
1022
|
🔒 Acquired lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
|
|
980
1023
|
$ 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'
|
|
981
1024
|
Downloading crates ...
|
|
1025
|
+
Downloaded digest v0.9.0
|
|
982
1026
|
Downloaded block-buffer v0.9.0
|
|
983
|
-
Downloaded
|
|
1027
|
+
Downloaded opaque-debug v0.3.1
|
|
984
1028
|
Downloaded include_dir_macros v0.7.4
|
|
1029
|
+
Downloaded include_dir v0.7.4
|
|
985
1030
|
Downloaded heck v0.4.1
|
|
986
1031
|
Downloaded glob v0.3.3
|
|
987
|
-
Downloaded digest v0.9.0
|
|
988
|
-
Downloaded opaque-debug v0.3.1
|
|
989
1032
|
Downloaded sha2 v0.9.9
|
|
990
1033
|
Downloaded anyhow v1.0.100
|
|
991
|
-
Downloaded base64 v0.21.7
|
|
992
1034
|
Downloaded soroban-spec-typescript v25.1.0
|
|
1035
|
+
Downloaded base64 v0.21.7
|
|
993
1036
|
Compiling proc-macro2 v1.0.103
|
|
994
|
-
Compiling quote v1.0.41
|
|
995
1037
|
Compiling unicode-ident v1.0.22
|
|
1038
|
+
Compiling quote v1.0.41
|
|
996
1039
|
Compiling serde_json v1.0.145
|
|
997
|
-
Compiling version_check v0.9.5
|
|
998
1040
|
Compiling typenum v1.19.0
|
|
999
1041
|
Compiling serde_core v1.0.228
|
|
1042
|
+
Compiling version_check v0.9.5
|
|
1000
1043
|
Compiling serde v1.0.228
|
|
1001
1044
|
Compiling memchr v2.7.6
|
|
1002
1045
|
Compiling ryu v1.0.20
|
|
@@ -1005,35 +1048,35 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
1005
1048
|
Compiling strsim v0.11.1
|
|
1006
1049
|
Compiling ident_case v1.0.1
|
|
1007
1050
|
Compiling schemars v0.8.22
|
|
1008
|
-
Compiling dyn-clone v1.0.20
|
|
1009
1051
|
Compiling cfg-if v1.0.4
|
|
1010
1052
|
Compiling cpufeatures v0.2.17
|
|
1011
|
-
Compiling
|
|
1053
|
+
Compiling dyn-clone v1.0.20
|
|
1012
1054
|
Compiling thiserror v1.0.69
|
|
1013
1055
|
Compiling equivalent v1.0.2
|
|
1014
1056
|
Compiling data-encoding v2.9.0
|
|
1057
|
+
Compiling hashbrown v0.16.0
|
|
1058
|
+
Compiling escape-bytes v0.1.1
|
|
1059
|
+
Compiling ethnum v1.5.2
|
|
1015
1060
|
Compiling base64 v0.22.1
|
|
1016
1061
|
Compiling semver v1.0.27
|
|
1017
1062
|
Compiling generic-array v0.14.9
|
|
1018
1063
|
Compiling prettyplease v0.2.37
|
|
1019
|
-
Compiling ethnum v1.5.2
|
|
1020
|
-
Compiling escape-bytes v0.1.1
|
|
1021
|
-
Compiling opaque-debug v0.3.1
|
|
1022
1064
|
Compiling glob v0.3.3
|
|
1023
1065
|
Compiling either v1.15.0
|
|
1066
|
+
Compiling opaque-debug v0.3.1
|
|
1024
1067
|
Compiling anyhow v1.0.100
|
|
1025
|
-
Compiling base64 v0.21.7
|
|
1026
1068
|
Compiling heck v0.4.1
|
|
1027
|
-
Compiling indexmap v2.12.0
|
|
1028
1069
|
Compiling itertools v0.10.5
|
|
1070
|
+
Compiling base64 v0.21.7
|
|
1071
|
+
Compiling indexmap v2.12.0
|
|
1072
|
+
Compiling syn v2.0.108
|
|
1029
1073
|
Compiling crypto-common v0.1.6
|
|
1030
1074
|
Compiling block-buffer v0.10.4
|
|
1031
|
-
Compiling digest v0.9.0
|
|
1032
1075
|
Compiling block-buffer v0.9.0
|
|
1033
|
-
Compiling
|
|
1076
|
+
Compiling digest v0.9.0
|
|
1077
|
+
Compiling wasmparser v0.116.1
|
|
1034
1078
|
Compiling sha2 v0.9.9
|
|
1035
1079
|
Compiling digest v0.10.7
|
|
1036
|
-
Compiling wasmparser v0.116.1
|
|
1037
1080
|
Compiling sha2 v0.10.9
|
|
1038
1081
|
Compiling include_dir_macros v0.7.4
|
|
1039
1082
|
Compiling include_dir v0.7.4
|
|
@@ -1052,103 +1095,109 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
1052
1095
|
Compiling soroban-spec v25.1.0
|
|
1053
1096
|
Compiling soroban-spec-typescript v25.1.0
|
|
1054
1097
|
Compiling ts-bindings-gen v0.0.1 (/workspace/contracts/protocol/stellar/tools/ts-bindings-gen)
|
|
1055
|
-
Finished `dev` profile [unoptimized + debuginfo] target(s) in
|
|
1098
|
+
Finished `dev` profile [unoptimized + debuginfo] target(s) in 44.01s
|
|
1056
1099
|
Running `target/debug/ts-bindings-gen`
|
|
1057
1100
|
🚀 Generating TypeScript bindings for Stellar contracts...
|
|
1058
1101
|
|
|
1059
1102
|
📦 Processing contract: endpoint_v2
|
|
1060
1103
|
WASM: target/wasm32v1-none/release/endpoint_v2.wasm
|
|
1061
1104
|
Output: sdk/src/generated/endpoint.ts
|
|
1062
|
-
WASM size:
|
|
1105
|
+
WASM size: 57964 bytes (56.61 KB)
|
|
1063
1106
|
Generating bindings...
|
|
1064
1107
|
✓ Generated: sdk/src/generated/endpoint.ts
|
|
1065
1108
|
📦 Processing contract: simple_message_lib
|
|
1066
1109
|
WASM: target/wasm32v1-none/release/simple_message_lib.wasm
|
|
1067
1110
|
Output: sdk/src/generated/sml.ts
|
|
1068
|
-
WASM size:
|
|
1111
|
+
WASM size: 29777 bytes (29.08 KB)
|
|
1069
1112
|
Generating bindings...
|
|
1070
1113
|
✓ Generated: sdk/src/generated/sml.ts
|
|
1071
1114
|
📦 Processing contract: blocked_message_lib
|
|
1072
1115
|
WASM: target/wasm32v1-none/release/blocked_message_lib.wasm
|
|
1073
1116
|
Output: sdk/src/generated/bml.ts
|
|
1074
|
-
WASM size:
|
|
1117
|
+
WASM size: 15029 bytes (14.68 KB)
|
|
1075
1118
|
Generating bindings...
|
|
1076
1119
|
✓ Generated: sdk/src/generated/bml.ts
|
|
1077
1120
|
📦 Processing contract: uln302
|
|
1078
1121
|
WASM: target/wasm32v1-none/release/uln302.wasm
|
|
1079
1122
|
Output: sdk/src/generated/uln302.ts
|
|
1080
|
-
WASM size:
|
|
1123
|
+
WASM size: 59413 bytes (58.02 KB)
|
|
1081
1124
|
Generating bindings...
|
|
1082
1125
|
✓ Generated: sdk/src/generated/uln302.ts
|
|
1083
1126
|
📦 Processing contract: treasury
|
|
1084
1127
|
WASM: target/wasm32v1-none/release/treasury.wasm
|
|
1085
1128
|
Output: sdk/src/generated/treasury.ts
|
|
1086
|
-
WASM size:
|
|
1129
|
+
WASM size: 28356 bytes (27.69 KB)
|
|
1087
1130
|
Generating bindings...
|
|
1088
1131
|
✓ Generated: sdk/src/generated/treasury.ts
|
|
1089
1132
|
📦 Processing contract: upgrader
|
|
1090
1133
|
WASM: target/wasm32v1-none/release/upgrader.wasm
|
|
1091
1134
|
Output: sdk/src/generated/upgrader.ts
|
|
1092
|
-
WASM size:
|
|
1135
|
+
WASM size: 5385 bytes (5.26 KB)
|
|
1093
1136
|
Generating bindings...
|
|
1094
1137
|
✓ Generated: sdk/src/generated/upgrader.ts
|
|
1095
1138
|
📦 Processing contract: dvn
|
|
1096
1139
|
WASM: target/wasm32v1-none/release/dvn.wasm
|
|
1097
1140
|
Output: sdk/src/generated/dvn.ts
|
|
1098
|
-
WASM size:
|
|
1141
|
+
WASM size: 55851 bytes (54.54 KB)
|
|
1099
1142
|
Generating bindings...
|
|
1100
1143
|
✓ Generated: sdk/src/generated/dvn.ts
|
|
1101
1144
|
📦 Processing contract: dvn_fee_lib
|
|
1102
1145
|
WASM: target/wasm32v1-none/release/dvn_fee_lib.wasm
|
|
1103
1146
|
Output: sdk/src/generated/dvn_fee_lib.ts
|
|
1104
|
-
WASM size:
|
|
1147
|
+
WASM size: 21527 bytes (21.02 KB)
|
|
1105
1148
|
Generating bindings...
|
|
1106
1149
|
✓ Generated: sdk/src/generated/dvn_fee_lib.ts
|
|
1107
1150
|
📦 Processing contract: executor
|
|
1108
1151
|
WASM: target/wasm32v1-none/release/executor.wasm
|
|
1109
1152
|
Output: sdk/src/generated/executor.ts
|
|
1110
|
-
WASM size:
|
|
1153
|
+
WASM size: 58254 bytes (56.89 KB)
|
|
1111
1154
|
Generating bindings...
|
|
1112
1155
|
✓ Generated: sdk/src/generated/executor.ts
|
|
1113
1156
|
📦 Processing contract: executor_fee_lib
|
|
1114
1157
|
WASM: target/wasm32v1-none/release/executor_fee_lib.wasm
|
|
1115
1158
|
Output: sdk/src/generated/executor_fee_lib.ts
|
|
1116
|
-
WASM size:
|
|
1159
|
+
WASM size: 34412 bytes (33.61 KB)
|
|
1117
1160
|
Generating bindings...
|
|
1118
1161
|
✓ Generated: sdk/src/generated/executor_fee_lib.ts
|
|
1119
1162
|
📦 Processing contract: executor_helper
|
|
1120
1163
|
WASM: target/wasm32v1-none/release/executor_helper.wasm
|
|
1121
1164
|
Output: sdk/src/generated/executor_helper.ts
|
|
1122
|
-
WASM size:
|
|
1165
|
+
WASM size: 24789 bytes (24.21 KB)
|
|
1123
1166
|
Generating bindings...
|
|
1124
1167
|
✓ Generated: sdk/src/generated/executor_helper.ts
|
|
1125
1168
|
📦 Processing contract: price_feed
|
|
1126
1169
|
WASM: target/wasm32v1-none/release/price_feed.wasm
|
|
1127
1170
|
Output: sdk/src/generated/price_feed.ts
|
|
1128
|
-
WASM size:
|
|
1171
|
+
WASM size: 32620 bytes (31.86 KB)
|
|
1129
1172
|
Generating bindings...
|
|
1130
1173
|
✓ Generated: sdk/src/generated/price_feed.ts
|
|
1131
1174
|
📦 Processing contract: counter
|
|
1132
1175
|
WASM: target/wasm32v1-none/release/counter.wasm
|
|
1133
1176
|
Output: sdk/src/generated/counter.ts
|
|
1134
|
-
WASM size:
|
|
1177
|
+
WASM size: 40767 bytes (39.81 KB)
|
|
1135
1178
|
Generating bindings...
|
|
1136
1179
|
✓ Generated: sdk/src/generated/counter.ts
|
|
1137
1180
|
📦 Processing contract: oft
|
|
1138
1181
|
WASM: target/wasm32v1-none/release/oft.wasm
|
|
1139
1182
|
Output: sdk/src/generated/oft.ts
|
|
1140
|
-
WASM size:
|
|
1183
|
+
WASM size: 65694 bytes (64.15 KB)
|
|
1141
1184
|
Generating bindings...
|
|
1142
1185
|
✓ Generated: sdk/src/generated/oft.ts
|
|
1186
|
+
📦 Processing contract: sac_manager
|
|
1187
|
+
WASM: target/wasm32v1-none/release/sac_manager.wasm
|
|
1188
|
+
Output: sdk/src/generated/sac_manager.ts
|
|
1189
|
+
WASM size: 47427 bytes (46.32 KB)
|
|
1190
|
+
Generating bindings...
|
|
1191
|
+
✓ Generated: sdk/src/generated/sac_manager.ts
|
|
1143
1192
|
📦 Processing contract: layerzero_views
|
|
1144
1193
|
WASM: target/wasm32v1-none/release/layerzero_views.wasm
|
|
1145
1194
|
Output: sdk/src/generated/layerzero_view.ts
|
|
1146
|
-
WASM size:
|
|
1195
|
+
WASM size: 35715 bytes (34.88 KB)
|
|
1147
1196
|
Generating bindings...
|
|
1148
1197
|
✓ Generated: sdk/src/generated/layerzero_view.ts
|
|
1149
1198
|
|
|
1150
1199
|
✅ TypeScript binding generation complete!
|
|
1151
|
-
Generated
|
|
1200
|
+
Generated 16 contract(s) with embedded WASM
|
|
1152
1201
|
|
|
1153
1202
|
📦 Generated files in sdk/src/generated/:
|
|
1154
1203
|
- endpoint.ts
|
|
@@ -1165,8 +1214,9 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
1165
1214
|
- price_feed.ts
|
|
1166
1215
|
- counter.ts
|
|
1167
1216
|
- oft.ts
|
|
1217
|
+
- sac_manager.ts
|
|
1168
1218
|
- layerzero_view.ts
|
|
1169
|
-
⏱️ bash -c cargo run -p ts-bindings-gen:
|
|
1219
|
+
⏱️ bash -c cargo run -p ts-bindings-gen: 44.388s
|
|
1170
1220
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
|
|
1171
1221
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-config
|
|
1172
1222
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup
|