@layerzerolabs/protocol-stellar-v2 0.2.40 → 0.2.41

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.
Files changed (114) hide show
  1. package/.turbo/turbo-build.log +226 -313
  2. package/.turbo/turbo-lint.log +98 -227
  3. package/.turbo/turbo-test.log +1803 -1954
  4. package/contracts/common-macros/src/lib.rs +38 -15
  5. package/contracts/common-macros/src/lz_contract.rs +12 -21
  6. package/contracts/common-macros/src/tests/lz_contract.rs +17 -8
  7. package/contracts/common-macros/src/tests/snapshots/common_macros__tests__lz_contract__snapshot_generated_lz_contract_code.snap +20 -0
  8. package/contracts/common-macros/src/upgradeable.rs +37 -30
  9. package/contracts/endpoint-v2/src/endpoint_v2.rs +4 -3
  10. package/contracts/endpoint-v2/src/errors.rs +2 -2
  11. package/contracts/endpoint-v2/src/messaging_channel.rs +11 -0
  12. package/contracts/endpoint-v2/src/messaging_composer.rs +1 -0
  13. package/contracts/endpoint-v2/src/tests/endpoint_v2/clear.rs +12 -25
  14. package/contracts/endpoint-v2/src/tests/endpoint_v2/initializable.rs +4 -4
  15. package/contracts/endpoint-v2/src/tests/endpoint_v2/verifiable.rs +50 -10
  16. package/contracts/endpoint-v2/src/tests/endpoint_v2/verify.rs +6 -35
  17. package/contracts/endpoint-v2/src/tests/messaging_channel/burn.rs +2 -2
  18. package/contracts/endpoint-v2/src/tests/messaging_channel/clear_payload.rs +50 -1
  19. package/contracts/endpoint-v2/src/tests/messaging_channel/inbound.rs +78 -0
  20. package/contracts/endpoint-v2/src/tests/messaging_channel/insert_and_drain_pending_nonces.rs +272 -0
  21. package/contracts/endpoint-v2/src/tests/messaging_channel/mod.rs +1 -0
  22. package/contracts/endpoint-v2/src/tests/messaging_channel/nilify.rs +10 -5
  23. package/contracts/endpoint-v2/src/tests/messaging_channel/skip.rs +30 -0
  24. package/contracts/macro-integration-tests/tests/runtime/oapp/mod.rs +22 -1
  25. package/contracts/macro-integration-tests/tests/runtime/oapp/oapp_core.rs +13 -11
  26. package/contracts/macro-integration-tests/tests/runtime/oapp/options_type3.rs +13 -10
  27. package/contracts/macro-integration-tests/tests/runtime/oapp/receiver.rs +15 -11
  28. package/contracts/macro-integration-tests/tests/runtime/oapp/sender.rs +3 -2
  29. package/contracts/macro-integration-tests/tests/runtime/ownable/two_step_transfer.rs +14 -12
  30. package/contracts/macro-integration-tests/tests/runtime/upgradeable/migrate_guard_and_state.rs +3 -9
  31. package/contracts/macro-integration-tests/tests/ui/lz_contract/fail/upgradeable_invalid_inner_option.stderr +24 -1
  32. package/contracts/macro-integration-tests/tests/ui/lz_contract/fail/upgradeable_missing_internal.stderr +3 -3
  33. package/contracts/macro-integration-tests/tests/ui/lz_contract/pass/upgradeable_rbac.rs +44 -0
  34. package/contracts/macro-integration-tests/tests/ui/oapp/pass/custom_all.rs +3 -0
  35. package/contracts/macro-integration-tests/tests/ui/oapp/pass/custom_single_trait.rs +3 -0
  36. package/contracts/macro-integration-tests/tests/ui/ownable/pass/basic.rs +1 -1
  37. package/contracts/macro-integration-tests/tests/ui/upgradeable/fail/attr_args.stderr +1 -1
  38. package/contracts/macro-integration-tests/tests/ui/upgradeable/fail/missing_auth_trait.stderr +2 -2
  39. package/contracts/macro-integration-tests/tests/ui/upgradeable/fail/missing_upgradeable_internal.stderr +2 -2
  40. package/contracts/macro-integration-tests/tests/ui/upgradeable/pass/rbac.rs +44 -0
  41. package/contracts/oapps/counter/integration_tests/utils.rs +5 -3
  42. package/contracts/oapps/counter/src/tests/mod.rs +16 -1
  43. package/contracts/oapps/counter/src/tests/test_counter.rs +5 -2
  44. package/contracts/oapps/oapp/src/oapp_core.rs +21 -7
  45. package/contracts/oapps/oapp/src/oapp_options_type3.rs +7 -5
  46. package/contracts/oapps/oapp/src/tests/mod.rs +21 -0
  47. package/contracts/oapps/oapp/src/tests/oapp_core.rs +12 -10
  48. package/contracts/oapps/oapp/src/tests/oapp_options_type3.rs +11 -7
  49. package/contracts/oapps/oapp/src/tests/oapp_receiver.rs +4 -2
  50. package/contracts/oapps/oapp/src/tests/oapp_sender.rs +3 -2
  51. package/contracts/oapps/oapp/src/tests/test_macros.rs +15 -0
  52. package/contracts/oapps/oapp-macros/src/generators.rs +6 -0
  53. package/contracts/oapps/oapp-macros/src/tests/snapshots/oapp_macros__tests__oapp__snapshot_generate_oapp.snap +15 -0
  54. package/contracts/oapps/oft/integration-tests/setup.rs +22 -4
  55. package/contracts/oapps/oft/integration-tests/utils.rs +94 -13
  56. package/contracts/oapps/oft/src/extensions/oft_fee.rs +23 -10
  57. package/contracts/oapps/oft/src/extensions/pausable.rs +31 -10
  58. package/contracts/oapps/oft/src/extensions/rate_limiter.rs +9 -4
  59. package/contracts/oapps/oft/src/oft.rs +1 -2
  60. package/contracts/oapps/oft/src/tests/extensions/oft_fee.rs +39 -27
  61. package/contracts/oapps/oft/src/tests/extensions/pausable.rs +38 -24
  62. package/contracts/oapps/oft/src/tests/extensions/rate_limiter.rs +87 -69
  63. package/contracts/oapps/oft-core/integration-tests/setup.rs +27 -3
  64. package/contracts/oapps/oft-core/src/oft_core.rs +10 -5
  65. package/contracts/oapps/oft-core/src/tests/test_msg_inspector.rs +20 -20
  66. package/contracts/oapps/oft-core/src/tests/test_utils.rs +31 -3
  67. package/contracts/upgrader/src/lib.rs +67 -30
  68. package/contracts/upgrader/src/tests/test_data/test_upgradeable_contract3.wasm +0 -0
  69. package/contracts/upgrader/src/tests/test_data/test_upgradeable_contract4.wasm +0 -0
  70. package/contracts/upgrader/src/tests/test_upgrader.rs +50 -4
  71. package/contracts/utils/src/ownable.rs +16 -5
  72. package/contracts/utils/src/tests/ownable.rs +39 -39
  73. package/contracts/utils/src/upgradeable.rs +60 -17
  74. package/docs/oapp-guide.md +4 -4
  75. package/package.json +3 -4
  76. package/sdk/.turbo/turbo-test.log +381 -366
  77. package/sdk/dist/generated/bml.d.ts +4 -4
  78. package/sdk/dist/generated/bml.js +6 -6
  79. package/sdk/dist/generated/counter.d.ts +158 -12
  80. package/sdk/dist/generated/counter.js +32 -12
  81. package/sdk/dist/generated/dvn.d.ts +4 -6
  82. package/sdk/dist/generated/dvn.js +8 -8
  83. package/sdk/dist/generated/dvn_fee_lib.d.ts +8 -10
  84. package/sdk/dist/generated/dvn_fee_lib.js +8 -8
  85. package/sdk/dist/generated/endpoint.d.ts +9 -9
  86. package/sdk/dist/generated/endpoint.js +9 -9
  87. package/sdk/dist/generated/executor.d.ts +9 -11
  88. package/sdk/dist/generated/executor.js +11 -11
  89. package/sdk/dist/generated/executor_fee_lib.d.ts +9 -11
  90. package/sdk/dist/generated/executor_fee_lib.js +11 -11
  91. package/sdk/dist/generated/executor_helper.d.ts +4 -4
  92. package/sdk/dist/generated/executor_helper.js +6 -6
  93. package/sdk/dist/generated/layerzero_view.d.ts +9 -11
  94. package/sdk/dist/generated/layerzero_view.js +11 -11
  95. package/sdk/dist/generated/oft.d.ts +194 -27
  96. package/sdk/dist/generated/oft.js +44 -22
  97. package/sdk/dist/generated/price_feed.d.ts +8 -10
  98. package/sdk/dist/generated/price_feed.js +8 -8
  99. package/sdk/dist/generated/sac_manager.d.ts +8 -8
  100. package/sdk/dist/generated/sac_manager.js +6 -6
  101. package/sdk/dist/generated/sml.d.ts +9 -9
  102. package/sdk/dist/generated/sml.js +9 -9
  103. package/sdk/dist/generated/treasury.d.ts +9 -9
  104. package/sdk/dist/generated/treasury.js +9 -9
  105. package/sdk/dist/generated/uln302.d.ts +9 -9
  106. package/sdk/dist/generated/uln302.js +9 -9
  107. package/sdk/dist/generated/upgrader.d.ts +25 -16
  108. package/sdk/dist/generated/upgrader.js +5 -5
  109. package/sdk/package.json +1 -1
  110. package/sdk/test/counter-sml.test.ts +20 -0
  111. package/sdk/test/counter-uln.test.ts +20 -0
  112. package/sdk/test/oft-sml.test.ts +22 -0
  113. package/sdk/test/upgrader.test.ts +1 -0
  114. package/turbo.json +1 -8
@@ -9,223 +9,102 @@
9
9
  > pnpm exec lz-tool stellar contract build
10
10
 
11
11
   WARN  Issue while reading "/home/runner/work/monorepo-internal/monorepo-internal/.npmrc". Failed to replace env in config: ${NPM_TOKEN}
12
+ 🔧 Syncing Rust toolchain: rustup toolchain install 1.90.0 --target wasm32v1-none --component rustfmt --component clippy
12
13
  📦 Using 4 default cache volume(s) for stellar
13
- stellar-25.0.0 (Latest stable release)
14
- 🔧 stellar version: 25.0.0
15
- (node:18120) [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.
14
+ 🔧 User volumes override 1 default volume(s)
15
+ stellar-25.1.0 (Latest stable release)
16
+ 🔧 stellar version: 25.1.0
17
+ (node:17828) [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
18
  Reparsing as ES module because module syntax was detected. This incurs a performance overhead.
17
19
  To eliminate this warning, add "type": "module" to /home/runner/work/monorepo-internal/monorepo-internal/package.json.
18
20
  (Use `node --trace-warnings ...` to show where the warning was created)
19
- $ docker image inspect --format {{.Id}} 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.0.0
20
- sha256:57520026e52d8bfec50ae6363977a40712bfa2549bac8ceed62a150f1d58a8d2
21
- ✅ Using cached Docker image: 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.0.0
21
+ $ docker image inspect --format {{.Id}} 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.1.0
22
+ sha256:4d166776a6d1059504deff32a84797694e40f4d6858aaec2965c5815bcc10991
23
+ ✅ Using cached Docker image: 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.1.0
22
24
  👤 Running container as UID:GID 1001:1001
23
25
  🌍 Using 5 default environment variable(s) for stellar
24
- $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_LINKER=clang -e CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER=clang -e $'CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUSTFLAGS=-C link-arg=-fuse-ld=mold' -e $'CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_RUSTFLAGS=-C link-arg=-fuse-ld=mold' -e LOCAL_UID=1001 -e LOCAL_GID=1001 -v /home/runner/work/monorepo-internal/monorepo-internal:/workspace -w /workspace/contracts/protocol/stellar -v lz-tooling-cache-stellar-config:/cache/stellar -v lz-tooling-cache-stellar-cargo:/cache/cargo -v lz-tooling-cache-stellar-rustup:/cache/rustup -v /home/runner/.sccache:/cache/sccache 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.0.0 stellar contract build
26
+ 📜 Executing custom script: mkdir -p $CARGO_HOME/bin && ln -sf /usr/local/cargo/bin/rustup $CARGO_HOME/bin/rustup && rustup toolchain install 1.90.0 --target wasm32v1-none --component rustfmt --component clippy
27
+ 🔒 Acquired lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup
28
+ $ 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-rustup:/cache/rustup -v lz-tooling-cache-stellar-config:/cache/stellar -v lz-tooling-cache-stellar-cargo:/cache/cargo -v /home/runner/.sccache:/cache/sccache 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.1.0 bash -c $'mkdir -p $CARGO_HOME/bin && ln -sf /usr/local/cargo/bin/rustup $CARGO_HOME/bin/rustup && rustup toolchain install 1.90.0 --target wasm32v1-none --component rustfmt --component clippy'
29
+ info: syncing channel updates for '1.90.0-x86_64-unknown-linux-gnu'
30
+ info: latest update on 2025-09-18, rust version 1.90.0 (1159e78c4 2025-09-14)
31
+ info: downloading component 'cargo'
32
+ info: downloading component 'clippy'
33
+ info: downloading component 'rust-docs'
34
+ info: downloading component 'rust-std' for 'wasm32v1-none'
35
+ info: downloading component 'rust-std'
36
+ info: downloading component 'rustc'
37
+ info: downloading component 'rustfmt'
38
+ info: installing component 'cargo'
39
+ info: installing component 'clippy'
40
+ info: installing component 'rust-docs'
41
+ info: installing component 'rust-std' for 'wasm32v1-none'
42
+ info: installing component 'rust-std'
43
+ info: installing component 'rustc'
44
+ info: installing component 'rustfmt'
45
+
46
+ 1.90.0-x86_64-unknown-linux-gnu installed - rustc 1.90.0 (1159e78c4 2025-09-14)
47
+
48
+ info: default toolchain set to '1.90.0-x86_64-unknown-linux-gnu'
49
+ info: checking for self-update
50
+ ⏱️ bash -c mkdir -p $CARGO_HOME/bin && ln -sf /usr/local/cargo/bin/rustup $CARGO_HOME/bin/rustup && rustup toolchain install 1.90.0 --target wasm32v1-none --component rustfmt --component clippy: 14.848s
51
+ 🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup
52
+ 📦 Using 4 default cache volume(s) for stellar
53
+ ✅ stellar-25.1.0 (Latest stable release)
54
+ 🔧 stellar version: 25.1.0
55
+ $ docker image inspect --format {{.Id}} 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.1.0
56
+ sha256:4d166776a6d1059504deff32a84797694e40f4d6858aaec2965c5815bcc10991
57
+ ✅ Using cached Docker image: 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.1.0
58
+ 👤 Running container as UID:GID 1001:1001
59
+ 🌍 Using 5 default environment variable(s) for stellar
60
+ $ 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.1.0 stellar contract build
25
61
  ℹ️ 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
26
62
  Updating crates.io index
27
63
  Downloading crates ...
28
- Downloaded ark-ff-asm v0.4.2
29
- Downloaded arbitrary v1.3.2
30
- Downloaded derive_arbitrary v1.3.2
31
- Downloaded elliptic-curve v0.13.8
32
- Downloaded primeorder v0.13.6
33
- Downloaded visibility v0.1.1
34
- Downloaded time-core v0.1.6
35
- Downloaded schemars v0.8.22
36
- Downloaded time-macros v0.2.24
37
- Downloaded smallvec v1.15.1
38
- Downloaded indexmap v2.12.0
39
- Downloaded soroban-env-common v25.0.1
40
- Downloaded serde v1.0.228
41
- Downloaded rand_chacha v0.3.1
42
- Downloaded wasmi_arena v0.4.1
43
- Downloaded version_check v0.9.5
44
- Downloaded zeroize_derive v1.4.2
45
- Downloaded strsim v0.11.1
46
- Downloaded zeroize v1.8.2
47
- Downloaded thiserror-impl v1.0.69
48
- Downloaded static_assertions v1.1.0
49
- Downloaded thiserror v1.0.69
50
- Downloaded stellar-strkey v0.0.16
64
+ Downloaded dtor v0.1.1
51
65
  Downloaded unicode-ident v1.0.22
52
- Downloaded serde_core v1.0.228
53
- Downloaded wasmparser v0.116.1
54
- Downloaded typenum v1.19.0
55
- Downloaded serde_with v3.15.1
56
- Downloaded itertools v0.14.0
57
- Downloaded wasmparser-nostd v0.100.2
58
- Downloaded soroban-wasmi v0.31.1-soroban.20.0.1
59
- Downloaded serde_json v1.0.145
60
- Downloaded chrono v0.4.42
61
- Downloaded zerocopy v0.8.27
62
- Downloaded syn v1.0.109
63
- Downloaded dyn-clone v1.0.20
64
- Downloaded syn v2.0.108
65
- Downloaded ark-bls12-381 v0.4.0
66
- Downloaded curve25519-dalek v4.1.3
67
- Downloaded cpufeatures v0.2.17
68
- Downloaded soroban-sdk v25.1.1
69
- Downloaded time v0.3.44
70
- Downloaded hex-literal v0.4.1
71
- Downloaded hashbrown v0.12.3
72
66
  Downloaded schemars v1.0.5
73
- Downloaded num-bigint v0.4.6
74
- Downloaded soroban-env-host v25.0.1
75
- Downloaded k256 v0.13.4
76
- Downloaded itertools v0.10.5
77
- Downloaded hashbrown v0.13.2
78
- Downloaded ethnum v1.5.2
79
- Downloaded crypto-bigint v0.5.5
80
- Downloaded memchr v2.7.6
81
- Downloaded sha3 v0.10.8
82
- Downloaded libm v0.2.15
83
- Downloaded base64ct v1.8.0
84
- Downloaded p256 v0.13.2
85
- Downloaded num-traits v0.2.19
86
- Downloaded indexmap v1.9.3
87
- Downloaded getrandom v0.2.16
88
- Downloaded digest v0.10.7
89
- Downloaded darling v0.20.11
90
- Downloaded const-oid v0.9.6
91
- Downloaded ark-poly v0.4.2
92
- Downloaded ahash v0.8.12
93
- Downloaded hmac v0.12.1
94
- Downloaded either v1.15.0
95
- Downloaded data-encoding v2.9.0
96
- Downloaded darling_macro v0.20.11
97
- Downloaded darling v0.21.3
98
- Downloaded ctor v0.5.0
99
- Downloaded autocfg v1.5.0
100
- Downloaded ark-std v0.4.0
101
- Downloaded ark-ff-macros v0.4.2
102
- Downloaded ark-bn254 v0.4.0
103
- Downloaded serde_derive v1.0.228
104
- Downloaded powerfmt v0.2.0
105
- Downloaded paste v1.0.15
106
- Downloaded num-integer v0.1.46
107
- Downloaded indexmap-nostd v0.4.0
108
- Downloaded heck v0.5.0
109
- Downloaded stellar-xdr v25.0.0
110
- Downloaded soroban-sdk-macros v25.1.1
111
- Downloaded ff v0.13.1
112
- Downloaded escape-bytes v0.1.1
113
- Downloaded ed25519 v2.2.3
114
- Downloaded downcast-rs v1.2.1
115
- Downloaded darling_macro v0.21.3
116
- Downloaded ctor-proc-macro v0.0.6
117
- Downloaded crate-git-revision v0.0.6
118
- Downloaded ryu v1.0.20
119
- Downloaded num-derive v0.4.2
120
- Downloaded itoa v1.0.15
121
- Downloaded hash32 v0.3.1
122
- Downloaded fnv v1.0.7
123
- Downloaded curve25519-dalek-derive v0.1.1
124
- Downloaded stellar-strkey v0.0.13
125
- Downloaded spin v0.9.8
126
- Downloaded serde_with_macros v3.15.1
127
- Downloaded soroban-ledger-snapshot v25.1.1
128
- Downloaded spki v0.7.3
129
- Downloaded soroban-env-macros v25.0.1
130
- Downloaded sha2 v0.10.9
131
- Downloaded semver v1.0.27
132
- Downloaded sec1 v0.7.3
133
- Downloaded wasmi_core v0.13.0
134
- Downloaded subtle v2.6.1
135
- Downloaded soroban-builtin-sdk-macros v25.0.1
136
- Downloaded rfc6979 v0.4.0
137
- Downloaded stable_deref_trait v1.2.1
138
- Downloaded soroban-spec-rust v25.1.1
139
- Downloaded soroban-env-guest v25.0.1
140
- Downloaded soroban-spec v25.1.1
141
- Downloaded ref-cast-impl v1.0.25
142
- Downloaded ref-cast v1.0.25
143
- Downloaded byteorder v1.5.0
144
- Downloaded libc v0.2.177
145
- Downloaded rustc_version v0.4.1
146
- Downloaded ed25519-dalek v2.2.0
147
- Downloaded bytes-lit v0.0.5
148
- Downloaded deranged v0.5.5
149
- Downloaded crypto-common v0.1.6
150
- Downloaded cfg-if v1.0.4
151
- Downloaded ark-serialize-derive v0.4.2
152
- Downloaded ark-ff v0.4.2
153
- Downloaded proc-macro2 v1.0.103
154
- Downloaded ppv-lite86 v0.2.21
155
- Downloaded keccak v0.1.5
156
- Downloaded heapless v0.8.0
157
- Downloaded group v0.13.0
158
- Downloaded generic-array v0.14.9
159
- Downloaded equivalent v1.0.2
160
- Downloaded dtor-proc-macro v0.0.6
161
- Downloaded dtor v0.1.1
162
- Downloaded darling_core v0.20.11
163
- Downloaded ark-ec v0.4.2
164
- Downloaded signature v2.2.0
165
- Downloaded schemars v0.9.0
166
- Downloaded ident_case v1.0.1
167
- Downloaded iana-time-zone v0.1.64
168
- Downloaded hashbrown v0.16.0
169
- Downloaded derivative v2.2.0
170
- Downloaded cfg_eval v0.1.2
171
- Downloaded rand_core v0.6.4
172
- Downloaded num-conv v0.1.0
173
- Downloaded base64 v0.22.1
174
- Downloaded rand v0.8.5
175
- Downloaded quote v1.0.41
176
- Downloaded prettyplease v0.2.37
177
- Downloaded once_cell v1.21.3
178
- Downloaded macro-string v0.1.4
179
- Downloaded hex v0.4.3
180
- Downloaded der v0.7.10
181
- Downloaded darling_core v0.21.3
182
- Downloaded pkcs8 v0.10.2
183
- Downloaded ecdsa v0.16.9
184
- Downloaded block-buffer v0.10.4
185
- Downloaded ark-serialize v0.4.2
186
- Downloaded base16ct v0.2.0
187
67
  Compiling proc-macro2 v1.0.103
188
- Compiling quote v1.0.41
189
68
  Compiling unicode-ident v1.0.22
69
+ Compiling quote v1.0.41
190
70
  Compiling serde_core v1.0.228
191
71
  Compiling serde v1.0.228
192
72
  Compiling serde_json v1.0.145
193
- Compiling ryu v1.0.20
194
- Compiling itoa v1.0.15
195
73
  Compiling memchr v2.7.6
196
- Compiling fnv v1.0.7
74
+ Compiling itoa v1.0.15
75
+ Compiling ryu v1.0.20
197
76
  Compiling strsim v0.11.1
198
77
  Compiling ident_case v1.0.1
199
- Compiling typenum v1.19.0
78
+ Compiling fnv v1.0.7
200
79
  Compiling version_check v0.9.5
80
+ Compiling typenum v1.19.0
201
81
  Compiling autocfg v1.5.0
202
82
  Compiling schemars v0.8.22
203
83
  Compiling dyn-clone v1.0.20
84
+ Compiling data-encoding v2.9.0
85
+ Compiling generic-array v0.14.9
204
86
  Compiling cfg-if v1.0.4
205
87
  Compiling cpufeatures v0.2.17
206
- Compiling data-encoding v2.9.0
207
88
  Compiling either v1.15.0
208
89
  Compiling ethnum v1.5.2
209
90
  Compiling escape-bytes v0.1.1
91
+ Compiling num-traits v0.2.19
210
92
  Compiling semver v1.0.27
211
- Compiling thiserror v1.0.69
212
93
  Compiling hashbrown v0.16.0
213
94
  Compiling equivalent v1.0.2
214
- Compiling generic-array v0.14.9
95
+ Compiling thiserror v1.0.69
96
+ Compiling itertools v0.10.5
215
97
  Compiling prettyplease v0.2.37
216
98
  Compiling heapless v0.8.0
217
- Compiling num-traits v0.2.19
218
99
  Compiling base64 v0.22.1
219
- Compiling itertools v0.10.5
220
100
  Compiling byteorder v1.5.0
221
101
  Compiling rustc_version v0.4.1
222
102
  Compiling static_assertions v1.1.0
103
+ Compiling indexmap v2.12.0
104
+ Compiling hash32 v0.3.1
223
105
  Compiling heck v0.5.0
224
106
  Compiling stable_deref_trait v1.2.1
225
- Compiling hash32 v0.3.1
226
107
  Compiling itertools v0.14.0
227
- Compiling indexmap v2.12.0
228
- Compiling syn v2.0.108
229
108
  Compiling wasmparser v0.116.1
230
109
  Compiling num-integer v0.1.46
231
110
  Compiling block-buffer v0.10.4
@@ -233,13 +112,14 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
233
112
  Compiling digest v0.10.7
234
113
  Compiling num-bigint v0.4.6
235
114
  Compiling sha2 v0.10.9
115
+ Compiling syn v2.0.108
236
116
  Compiling darling_core v0.21.3
237
117
  Compiling darling_core v0.20.11
238
118
  Compiling macro-string v0.1.4
239
119
  Compiling serde_derive v1.0.228
240
120
  Compiling cfg_eval v0.1.2
241
- Compiling thiserror-impl v1.0.69
242
121
  Compiling num-derive v0.4.2
122
+ Compiling thiserror-impl v1.0.69
243
123
  Compiling bytes-lit v0.0.5
244
124
  Compiling visibility v0.1.1
245
125
  Compiling common-macros v0.0.1 (/workspace/contracts/protocol/stellar/contracts/common-macros)
@@ -263,15 +143,16 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
263
143
  Compiling soroban-env-guest v25.0.1
264
144
  Compiling utils v0.0.1 (/workspace/contracts/protocol/stellar/contracts/utils)
265
145
  Compiling endpoint-v2 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/endpoint-v2)
266
- Finished `release` profile [optimized] target(s) in 33.25s
146
+ Finished `release` profile [optimized] target(s) in 33.48s
267
147
  ℹ️ Build Summary:
268
- Wasm File: target/wasm32v1-none/release/endpoint_v2.wasm (59413 bytes)
269
- Wasm Hash: 3ade5ac0893539448c4feba947394f4c6e47fd2986ecd30edb210f6d7c2d0969
270
- Wasm Size: 59413 bytes
148
+ Wasm File: target/wasm32v1-none/release/endpoint_v2.wasm (59457 bytes)
149
+ Wasm Hash: 0f3336cb82c088d8430af0b9110c309baa6c2eade24e65d35b16650d197d1592
150
+ Wasm Size: 59457 bytes
271
151
  Exported Functions: 60 found
272
152
  • __constructor
273
153
  • accept_ownership
274
154
  • authorizer
155
+ • begin_ownership_transfer
275
156
  • burn
276
157
  • clear
277
158
  • clear_compose
@@ -304,7 +185,6 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
304
185
  • owner
305
186
  • pending_inbound_nonces
306
187
  • pending_owner
307
- • propose_ownership_transfer
308
188
  • quote
309
189
  • receive_library_timeout
310
190
  • recover_token
@@ -334,10 +214,10 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
334
214
  ℹ️ 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
335
215
  Compiling byteorder v1.5.0
336
216
  Compiling escape-bytes v0.1.1
337
- Compiling stable_deref_trait v1.2.1
338
- Compiling num-traits v0.2.19
339
- Compiling ethnum v1.5.2
340
217
  Compiling static_assertions v1.1.0
218
+ Compiling ethnum v1.5.2
219
+ Compiling num-traits v0.2.19
220
+ Compiling stable_deref_trait v1.2.1
341
221
  Compiling data-encoding v2.9.0
342
222
  Compiling cfg-if v1.0.4
343
223
  Compiling stellar-xdr v25.0.0
@@ -352,15 +232,16 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
352
232
  Compiling message-lib-common v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/message-lib-common)
353
233
  Compiling uln302 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/uln-302)
354
234
  Compiling layerzero-views v0.0.1 (/workspace/contracts/protocol/stellar/contracts/layerzero-views)
355
- Finished `release` profile [optimized] target(s) in 9.21s
235
+ Finished `release` profile [optimized] target(s) in 12.40s
356
236
  ℹ️ Build Summary:
357
- Wasm File: target/wasm32v1-none/release/layerzero_views.wasm (36701 bytes)
358
- Wasm Hash: 8262961b302afe1a991e743ef70a8d4404263adc8350d54b9b6d123561323d8f
359
- Wasm Size: 36701 bytes
237
+ Wasm File: target/wasm32v1-none/release/layerzero_views.wasm (36531 bytes)
238
+ Wasm Hash: e1191bc282426547ae9c65f4188a69678b16897bcd40c548ff9940650470c409
239
+ Wasm Size: 36531 bytes
360
240
  Exported Functions: 22 found
361
241
  • __constructor
362
242
  • accept_ownership
363
243
  • authorizer
244
+ • begin_ownership_transfer
364
245
  • endpoint
365
246
  • executable
366
247
  • extend_instance_ttl
@@ -371,7 +252,6 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
371
252
  • migrate
372
253
  • owner
373
254
  • pending_owner
374
- • propose_ownership_transfer
375
255
  • renounce_ownership
376
256
  • set_ttl_configs
377
257
  • transfer_ownership
@@ -385,15 +265,16 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
385
265
  ℹ️ 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
386
266
  Compiling message-lib-common v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/message-lib-common)
387
267
  Compiling uln302 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/uln-302)
388
- Finished `release` profile [optimized] target(s) in 1.15s
268
+ Finished `release` profile [optimized] target(s) in 1.14s
389
269
  ℹ️ Build Summary:
390
- Wasm File: target/wasm32v1-none/release/uln302.wasm (60581 bytes)
391
- Wasm Hash: 0d7520b1c15ec0e74d77a83b411062e9fd192d764122849fa7f8d1133fa30dd1
392
- Wasm Size: 60581 bytes
270
+ Wasm File: target/wasm32v1-none/release/uln302.wasm (60571 bytes)
271
+ Wasm Hash: e5a97c9d7e69b9c03a9ba3b415c069d07a9b5282737921ba1f4a99b256510ab9
272
+ Wasm Size: 60571 bytes
393
273
  Exported Functions: 38 found
394
274
  • __constructor
395
275
  • accept_ownership
396
276
  • authorizer
277
+ • begin_ownership_transfer
397
278
  • commit_verification
398
279
  • confirmations
399
280
  • default_executor_config
@@ -414,7 +295,6 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
414
295
  • oapp_send_uln_config
415
296
  • owner
416
297
  • pending_owner
417
- • propose_ownership_transfer
418
298
  • quote
419
299
  • renounce_ownership
420
300
  • send
@@ -435,9 +315,9 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
435
315
  Compiling upgrader v0.0.1 (/workspace/contracts/protocol/stellar/contracts/upgrader)
436
316
  Finished `release` profile [optimized] target(s) in 0.27s
437
317
  ℹ️ Build Summary:
438
- Wasm File: target/wasm32v1-none/release/upgrader.wasm (6502 bytes)
439
- Wasm Hash: d97a7d611b07c5c0767dd1d785faea2ba1f3b20086ff6f7ea21afa837d48345b
440
- Wasm Size: 6502 bytes
318
+ Wasm File: target/wasm32v1-none/release/upgrader.wasm (7575 bytes)
319
+ Wasm Hash: 7796fed7be887c8f281a3c6e043203c0597969b65d23d5c1f9d767b62dfba062
320
+ Wasm Size: 7575 bytes
441
321
  Exported Functions: 2 found
442
322
  • upgrade
443
323
  • upgrade_and_migrate
@@ -447,9 +327,9 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
447
327
  Compiling blocked-message-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/blocked-message-lib)
448
328
  Finished `release` profile [optimized] target(s) in 0.31s
449
329
  ℹ️ Build Summary:
450
- Wasm File: target/wasm32v1-none/release/blocked_message_lib.wasm (15402 bytes)
451
- Wasm Hash: 7ca4d00f21db6c06a9597f723f4d9c997d05ba1e88c6ce3d79c4eaf303379e6e
452
- Wasm Size: 15402 bytes
330
+ Wasm File: target/wasm32v1-none/release/blocked_message_lib.wasm (15398 bytes)
331
+ Wasm Hash: 0a8ee862d5fa45a3dca9c2dc8ba111b83e9ab333a78d89273ae0a111211445d1
332
+ Wasm Size: 15398 bytes
453
333
  Exported Functions: 7 found
454
334
  • get_config
455
335
  • is_supported_eid
@@ -464,13 +344,14 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
464
344
  Compiling simple-message-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/simple-message-lib)
465
345
  Finished `release` profile [optimized] target(s) in 0.50s
466
346
  ℹ️ Build Summary:
467
- Wasm File: target/wasm32v1-none/release/simple_message_lib.wasm (30939 bytes)
468
- Wasm Hash: 25e25deccfacae018fbf9bb8c41146d304e1acedf3df665caac9f8857b08abec
469
- Wasm Size: 30939 bytes
347
+ Wasm File: target/wasm32v1-none/release/simple_message_lib.wasm (30929 bytes)
348
+ Wasm Hash: 05c2d9b85bb8fd0c3f7039961b591e38c97355385b787ba2329ca61c691fd423
349
+ Wasm Size: 30929 bytes
470
350
  Exported Functions: 31 found
471
351
  • __constructor
472
352
  • accept_ownership
473
353
  • authorizer
354
+ • begin_ownership_transfer
474
355
  • endpoint
475
356
  • extend_instance_ttl
476
357
  • fee_recipient
@@ -483,7 +364,6 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
483
364
  • native_fee
484
365
  • owner
485
366
  • pending_owner
486
- • propose_ownership_transfer
487
367
  • quote
488
368
  • renounce_ownership
489
369
  • send
@@ -503,15 +383,16 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
503
383
 
504
384
  ℹ️ 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
505
385
  Compiling treasury v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/treasury)
506
- Finished `release` profile [optimized] target(s) in 0.47s
386
+ Finished `release` profile [optimized] target(s) in 0.46s
507
387
  ℹ️ Build Summary:
508
- Wasm File: target/wasm32v1-none/release/treasury.wasm (29518 bytes)
509
- Wasm Hash: 7c09582303c1dbdf5e036df7583b48894a62dcdad5f2d948efc63ad73f576745
510
- Wasm Size: 29518 bytes
388
+ Wasm File: target/wasm32v1-none/release/treasury.wasm (29508 bytes)
389
+ Wasm Hash: 0eb3a9c49b66b4af26b0a95337a334b31d981a89258d0fbe0b8d7390a36fc2aa
390
+ Wasm Size: 29508 bytes
511
391
  Exported Functions: 21 found
512
392
  • __constructor
513
393
  • accept_ownership
514
394
  • authorizer
395
+ • begin_ownership_transfer
515
396
  • extend_instance_ttl
516
397
  • fee_enabled
517
398
  • freeze_ttl_configs
@@ -520,7 +401,6 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
520
401
  • native_fee_bp
521
402
  • owner
522
403
  • pending_owner
523
- • propose_ownership_transfer
524
404
  • renounce_ownership
525
405
  • set_fee_enabled
526
406
  • set_native_fee_bp
@@ -536,16 +416,17 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
536
416
  Compiling oapp-macros v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp-macros)
537
417
  Compiling oapp v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp)
538
418
  Compiling counter v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/counter)
539
- Finished `release` profile [optimized] target(s) in 1.28s
419
+ Finished `release` profile [optimized] target(s) in 1.32s
540
420
  ℹ️ Build Summary:
541
- Wasm File: target/wasm32v1-none/release/counter.wasm (43449 bytes)
542
- Wasm Hash: 6a57a83fb7a87bcb64e5330521856b5d2533c29f9861fdc63beb00e9cec6dfb6
543
- Wasm Size: 43449 bytes
544
- Exported Functions: 36 found
421
+ Wasm File: target/wasm32v1-none/release/counter.wasm (51635 bytes)
422
+ Wasm Hash: 2d914cc745ddd8862e9e2bba7ef9a65bea17f53ce3eeac8ac6babd0ab66191d1
423
+ Wasm Size: 51635 bytes
424
+ Exported Functions: 46 found
545
425
  • __constructor
546
426
  • accept_ownership
547
427
  • allow_initialize_path
548
428
  • authorizer
429
+ • begin_ownership_transfer
549
430
  • combine_options
550
431
  • composed_count
551
432
  • count
@@ -554,6 +435,12 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
554
435
  • enforced_options
555
436
  • extend_instance_ttl
556
437
  • freeze_ttl_configs
438
+ • get_existing_roles
439
+ • get_role_admin
440
+ • get_role_member
441
+ • get_role_member_count
442
+ • grant_role
443
+ • has_role
557
444
  • inbound_count
558
445
  • increment
559
446
  • is_compose_msg_sender
@@ -566,13 +453,16 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
566
453
  • owner
567
454
  • peer
568
455
  • pending_owner
569
- • propose_ownership_transfer
570
456
  • quote
457
+ • remove_role_admin
571
458
  • renounce_ownership
459
+ • renounce_role
460
+ • revoke_role
572
461
  • set_delegate
573
462
  • set_enforced_options
574
463
  • set_ordered_nonce
575
464
  • set_peer
465
+ • set_role_admin
576
466
  • set_ttl_configs
577
467
  • skip_inbound_nonce
578
468
  • transfer_ownership
@@ -584,11 +474,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
584
474
  Compiling fee-lib-interfaces v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/fee-lib-interfaces)
585
475
  Compiling worker v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/worker)
586
476
  Compiling dvn v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/dvn)
587
- Finished `release` profile [optimized] target(s) in 1.19s
477
+ Finished `release` profile [optimized] target(s) in 1.18s
588
478
  ℹ️ Build Summary:
589
- Wasm File: target/wasm32v1-none/release/dvn.wasm (57132 bytes)
590
- Wasm Hash: ca7834c6ed6ade6a9539276aedca225020330595d6bc731896c2658d4961c22e
591
- Wasm Size: 57132 bytes
479
+ Wasm File: target/wasm32v1-none/release/dvn.wasm (56968 bytes)
480
+ Wasm Hash: 0b95d8f0155be47dec46abd2914d176eb571e37e7db011c76517dbfdbb56b093
481
+ Wasm Size: 56968 bytes
592
482
  Exported Functions: 49 found
593
483
  • __check_auth
594
484
  • __constructor
@@ -644,15 +534,16 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
644
534
  ℹ️ 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
645
535
  Compiling fee-lib-interfaces v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/fee-lib-interfaces)
646
536
  Compiling dvn-fee-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/dvn-fee-lib)
647
- Finished `release` profile [optimized] target(s) in 0.62s
537
+ Finished `release` profile [optimized] target(s) in 0.60s
648
538
  ℹ️ Build Summary:
649
- Wasm File: target/wasm32v1-none/release/dvn_fee_lib.wasm (22689 bytes)
650
- Wasm Hash: 1a551485d6498e0705d2fcc677884aaed3e8bfc9ed38da6b81b5b8e2bd5facf8
651
- Wasm Size: 22689 bytes
539
+ Wasm File: target/wasm32v1-none/release/dvn_fee_lib.wasm (22523 bytes)
540
+ Wasm Hash: 002118d4c869e210b4f7400541ebe3641ddbe39f43de5cb342b763f1a617c758
541
+ Wasm Size: 22523 bytes
652
542
  Exported Functions: 16 found
653
543
  • __constructor
654
544
  • accept_ownership
655
545
  • authorizer
546
+ • begin_ownership_transfer
656
547
  • extend_instance_ttl
657
548
  • freeze_ttl_configs
658
549
  • get_fee
@@ -660,7 +551,6 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
660
551
  • migrate
661
552
  • owner
662
553
  • pending_owner
663
- • propose_ownership_transfer
664
554
  • renounce_ownership
665
555
  • set_ttl_configs
666
556
  • transfer_ownership
@@ -670,11 +560,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
670
560
 
671
561
  ℹ️ 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
672
562
  Compiling executor v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor)
673
- Finished `release` profile [optimized] target(s) in 0.80s
563
+ Finished `release` profile [optimized] target(s) in 0.79s
674
564
  ℹ️ Build Summary:
675
- Wasm File: target/wasm32v1-none/release/executor.wasm (59462 bytes)
676
- Wasm Hash: e77e3d2ac1deacdd1e2c430eaad45569b2ef2c5778107399f6825aca90181e88
677
- Wasm Size: 59462 bytes
565
+ Wasm File: target/wasm32v1-none/release/executor.wasm (59292 bytes)
566
+ Wasm Hash: 936ada7ca624b7776f737743d2aa24207a3785f964a03174de6ecef6d1888172
567
+ Wasm Size: 59292 bytes
678
568
  Exported Functions: 49 found
679
569
  • __check_auth
680
570
  • __constructor
@@ -683,6 +573,7 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
683
573
  • allowlist_size
684
574
  • assign_job
685
575
  • authorizer
576
+ • begin_ownership_transfer
686
577
  • default_multiplier_bps
687
578
  • deposit_address
688
579
  • dst_config
@@ -705,7 +596,6 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
705
596
  • paused
706
597
  • pending_owner
707
598
  • price_feed
708
- • propose_ownership_transfer
709
599
  • renounce_ownership
710
600
  • set_admin
711
601
  • set_allowlist
@@ -731,13 +621,14 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
731
621
  Compiling executor-fee-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor-fee-lib)
732
622
  Finished `release` profile [optimized] target(s) in 0.44s
733
623
  ℹ️ Build Summary:
734
- Wasm File: target/wasm32v1-none/release/executor_fee_lib.wasm (35574 bytes)
735
- Wasm Hash: 99f1d3d7912bbf457c50675cd9cc627f8332e919dfac90b35ddd3bbb0a09a667
736
- Wasm Size: 35574 bytes
624
+ Wasm File: target/wasm32v1-none/release/executor_fee_lib.wasm (35404 bytes)
625
+ Wasm Hash: 8f42a35df1173387ba2c5ffe34384b3e4517ce4ec11df13db67d5f2211267cf9
626
+ Wasm Size: 35404 bytes
737
627
  Exported Functions: 17 found
738
628
  • __constructor
739
629
  • accept_ownership
740
630
  • authorizer
631
+ • begin_ownership_transfer
741
632
  • extend_instance_ttl
742
633
  • freeze_ttl_configs
743
634
  • get_fee
@@ -745,7 +636,6 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
745
636
  • migrate
746
637
  • owner
747
638
  • pending_owner
748
- • propose_ownership_transfer
749
639
  • renounce_ownership
750
640
  • set_ttl_configs
751
641
  • transfer_ownership
@@ -759,11 +649,11 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
759
649
  Compiling worker v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/worker)
760
650
  Compiling executor v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor)
761
651
  Compiling executor-helper v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor-helper)
762
- Finished `release` profile [optimized] target(s) in 1.02s
652
+ Finished `release` profile [optimized] target(s) in 1.00s
763
653
  ℹ️ Build Summary:
764
- Wasm File: target/wasm32v1-none/release/executor_helper.wasm (25865 bytes)
765
- Wasm Hash: 0ebe8f083ccddc2f5731758d8d0804f42408fdbd2b7e43df1f34ec95a4af4d8b
766
- Wasm Size: 25865 bytes
654
+ Wasm File: target/wasm32v1-none/release/executor_helper.wasm (25861 bytes)
655
+ Wasm Hash: 0b467a6655e22fdc3bb5d7ca32c3df86fe38a5856570be78f07c1cac18ccc6cd
656
+ Wasm Size: 25861 bytes
767
657
  Exported Functions: 6 found
768
658
  • compose
769
659
  • execute
@@ -775,17 +665,18 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
775
665
 
776
666
  ℹ️ 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
777
667
  Compiling price-feed v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/price-feed)
778
- Finished `release` profile [optimized] target(s) in 0.62s
668
+ Finished `release` profile [optimized] target(s) in 0.61s
779
669
  ℹ️ Build Summary:
780
- Wasm File: target/wasm32v1-none/release/price_feed.wasm (33778 bytes)
781
- Wasm Hash: 0e91b68a7a3eed460a399efdc89372781ec98f238d10fc47944562dde0026d11
782
- Wasm Size: 33778 bytes
670
+ Wasm File: target/wasm32v1-none/release/price_feed.wasm (33612 bytes)
671
+ Wasm Hash: 009d6d308d7b1b7f884c4be86ca40f22525c64034528ad39b3c59711d53bca1e
672
+ Wasm Size: 33612 bytes
783
673
  Exported Functions: 30 found
784
674
  • __constructor
785
675
  • accept_ownership
786
676
  • arbitrum_compression_percent
787
677
  • arbitrum_price_ext
788
678
  • authorizer
679
+ • begin_ownership_transfer
789
680
  • eid_to_model_type
790
681
  • estimate_fee_by_eid
791
682
  • extend_instance_ttl
@@ -798,7 +689,6 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
798
689
  • native_token_price_usd
799
690
  • owner
800
691
  • pending_owner
801
- • propose_ownership_transfer
802
692
  • renounce_ownership
803
693
  • set_arbitrum_compression_percent
804
694
  • set_eid_to_model_type
@@ -816,17 +706,18 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
816
706
  ℹ️ 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
817
707
  Compiling oft-core v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft-core)
818
708
  Compiling oft v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft)
819
- Finished `release` profile [optimized] target(s) in 1.25s
709
+ Finished `release` profile [optimized] target(s) in 1.32s
820
710
  ℹ️ Build Summary:
821
- Wasm File: target/wasm32v1-none/release/oft.wasm (68337 bytes)
822
- Wasm Hash: 84890f3103cd4dd74a2be893972918493ec07da658e2ba8bc5716ab0a0322719
823
- Wasm Size: 68337 bytes
824
- Exported Functions: 50 found
711
+ Wasm File: target/wasm32v1-none/release/oft.wasm (77408 bytes)
712
+ Wasm Hash: d340bee86aa81c18615d60a711d6a8eeffa3e1671b82e47858b95d93b83a1973
713
+ Wasm Size: 77408 bytes
714
+ Exported Functions: 61 found
825
715
  • __constructor
826
716
  • accept_ownership
827
717
  • allow_initialize_path
828
718
  • approval_required
829
719
  • authorizer
720
+ • begin_ownership_transfer
830
721
  • combine_options
831
722
  • decimal_conversion_rate
832
723
  • default_fee_bps
@@ -837,7 +728,13 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
837
728
  • fee_bps
838
729
  • fee_deposit_address
839
730
  • freeze_ttl_configs
731
+ • get_existing_roles
732
+ • get_role_admin
733
+ • get_role_member
734
+ • get_role_member_count
735
+ • grant_role
840
736
  • has_oft_fee
737
+ • has_role
841
738
  • is_compose_msg_sender
842
739
  • is_paused
843
740
  • is_ttl_configs_frozen
@@ -848,15 +745,18 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
848
745
  • oft_type
849
746
  • oft_version
850
747
  • owner
748
+ • pause
851
749
  • peer
852
750
  • pending_owner
853
- • propose_ownership_transfer
854
751
  • quote_oft
855
752
  • quote_send
856
753
  • rate_limit_capacity
857
754
  • rate_limit_config
858
755
  • rate_limit_in_flight
756
+ • remove_role_admin
859
757
  • renounce_ownership
758
+ • renounce_role
759
+ • revoke_role
860
760
  • send
861
761
  • set_default_fee_bps
862
762
  • set_delegate
@@ -864,27 +764,29 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
864
764
  • set_fee_bps
865
765
  • set_fee_deposit_address
866
766
  • set_msg_inspector
867
- • set_paused
868
767
  • set_peer
869
768
  • set_rate_limit
769
+ • set_role_admin
870
770
  • set_ttl_configs
871
771
  • shared_decimals
872
772
  • token
873
773
  • transfer_ownership
874
774
  • ttl_configs
775
+ • unpause
875
776
  ✅ Build Complete
876
777
 
877
778
  ℹ️ CARGO_BUILD_RUSTFLAGS=--remap-path-prefix=/cache/cargo/registry/src= cargo rustc --manifest-path=contracts/oapps/sac-manager/Cargo.toml --crate-type=cdylib --target=wasm32v1-none --release
878
779
  Compiling sac-manager v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/sac-manager)
879
- Finished `release` profile [optimized] target(s) in 0.46s
780
+ Finished `release` profile [optimized] target(s) in 0.45s
880
781
  ℹ️ Build Summary:
881
- Wasm File: target/wasm32v1-none/release/sac_manager.wasm (23526 bytes)
882
- Wasm Hash: 5d91c1f0a5adf949d96bc6e53a72c38928ec7397a3b5d0ad6c6bf97b188af2dd
883
- Wasm Size: 23526 bytes
782
+ Wasm File: target/wasm32v1-none/release/sac_manager.wasm (23520 bytes)
783
+ Wasm Hash: aa38e04ee0060ed167a7e944ff54f92a9b508c36097a26fa2a5eb522fc070278
784
+ Wasm Size: 23520 bytes
884
785
  Exported Functions: 28 found
885
786
  • __constructor
886
787
  • accept_ownership
887
788
  • authorizer
789
+ • begin_ownership_transfer
888
790
  • clawback
889
791
  • extend_instance_ttl
890
792
  • freeze_ttl_configs
@@ -898,7 +800,6 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
898
800
  • mint
899
801
  • owner
900
802
  • pending_owner
901
- • propose_ownership_transfer
902
803
  • remove_role_admin
903
804
  • renounce_ownership
904
805
  • renounce_role
@@ -912,199 +813,211 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
912
813
  • underlying_sac
913
814
  ✅ Build Complete
914
815
 
915
- ⏱️ stellar contract build: 1:06.903 (m:ss.mmm)
816
+ ⏱️ stellar contract build: 1:11.717 (m:ss.mmm)
916
817
   WARN  Issue while reading "/home/runner/work/monorepo-internal/monorepo-internal/.npmrc". Failed to replace env in config: ${NPM_TOKEN}
917
818
 
918
819
  > @layerzerolabs/protocol-stellar-v2@0.0.1 generate:sdk /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar
919
820
  > pnpm exec lz-tool --script "cargo run -p ts-bindings-gen" stellar
920
821
 
921
822
   WARN  Issue while reading "/home/runner/work/monorepo-internal/monorepo-internal/.npmrc". Failed to replace env in config: ${NPM_TOKEN}
823
+ 🔧 Syncing Rust toolchain: rustup toolchain install 1.90.0 --target wasm32v1-none --component rustfmt --component clippy
922
824
  📦 Using 4 default cache volume(s) for stellar
923
- stellar-25.0.0 (Latest stable release)
924
- 🔧 stellar version: 25.0.0
925
- (node:25774) [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.
825
+ 🔧 User volumes override 1 default volume(s)
826
+ stellar-25.1.0 (Latest stable release)
827
+ 🔧 stellar version: 25.1.0
828
+ (node:35301) [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.
926
829
  Reparsing as ES module because module syntax was detected. This incurs a performance overhead.
927
830
  To eliminate this warning, add "type": "module" to /home/runner/work/monorepo-internal/monorepo-internal/package.json.
928
831
  (Use `node --trace-warnings ...` to show where the warning was created)
929
- $ docker image inspect --format {{.Id}} 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.0.0
930
- sha256:57520026e52d8bfec50ae6363977a40712bfa2549bac8ceed62a150f1d58a8d2
931
- ✅ Using cached Docker image: 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.0.0
832
+ $ docker image inspect --format {{.Id}} 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.1.0
833
+ sha256:4d166776a6d1059504deff32a84797694e40f4d6858aaec2965c5815bcc10991
834
+ ✅ Using cached Docker image: 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.1.0
835
+ 👤 Running container as UID:GID 1001:1001
836
+ 🌍 Using 5 default environment variable(s) for stellar
837
+ 📜 Executing custom script: mkdir -p $CARGO_HOME/bin && ln -sf /usr/local/cargo/bin/rustup $CARGO_HOME/bin/rustup && rustup toolchain install 1.90.0 --target wasm32v1-none --component rustfmt --component clippy
838
+ 🔒 Acquired lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup
839
+ $ 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-rustup:/cache/rustup -v lz-tooling-cache-stellar-config:/cache/stellar -v lz-tooling-cache-stellar-cargo:/cache/cargo -v /home/runner/.sccache:/cache/sccache 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.1.0 bash -c $'mkdir -p $CARGO_HOME/bin && ln -sf /usr/local/cargo/bin/rustup $CARGO_HOME/bin/rustup && rustup toolchain install 1.90.0 --target wasm32v1-none --component rustfmt --component clippy'
840
+ info: syncing channel updates for '1.90.0-x86_64-unknown-linux-gnu'
841
+ info: latest update on 2025-09-18, rust version 1.90.0 (1159e78c4 2025-09-14)
842
+ info: component 'clippy' for target 'x86_64-unknown-linux-gnu' is up to date
843
+ info: component 'rust-std' for target 'wasm32v1-none' is up to date
844
+ info: component 'rustfmt' for target 'x86_64-unknown-linux-gnu' is up to date
845
+
846
+ 1.90.0-x86_64-unknown-linux-gnu unchanged - rustc 1.90.0 (1159e78c4 2025-09-14)
847
+
848
+ info: checking for self-update
849
+ ⏱️ bash -c mkdir -p $CARGO_HOME/bin && ln -sf /usr/local/cargo/bin/rustup $CARGO_HOME/bin/rustup && rustup toolchain install 1.90.0 --target wasm32v1-none --component rustfmt --component clippy: 490.185ms
850
+ 🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup
851
+ 📦 Using 4 default cache volume(s) for stellar
852
+ ✅ stellar-25.1.0 (Latest stable release)
853
+ 🔧 stellar version: 25.1.0
854
+ $ docker image inspect --format {{.Id}} 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.1.0
855
+ sha256:4d166776a6d1059504deff32a84797694e40f4d6858aaec2965c5815bcc10991
856
+ ✅ Using cached Docker image: 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.1.0
932
857
  👤 Running container as UID:GID 1001:1001
933
858
  🌍 Using 5 default environment variable(s) for stellar
934
859
  📜 Executing custom script: cargo run -p ts-bindings-gen
935
- $ 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'
936
- Downloading crates ...
937
- Downloaded include_dir v0.7.4
938
- Downloaded include_dir_macros v0.7.4
939
- Downloaded digest v0.9.0
940
- Downloaded heck v0.4.1
941
- Downloaded glob v0.3.3
942
- Downloaded opaque-debug v0.3.1
943
- Downloaded block-buffer v0.9.0
944
- Downloaded base64 v0.21.7
945
- Downloaded anyhow v1.0.100
946
- Downloaded soroban-spec-typescript v25.1.0
947
- Downloaded sha2 v0.9.9
860
+ $ 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.1.0 bash -c $'cargo run -p ts-bindings-gen'
948
861
  Compiling proc-macro2 v1.0.103
949
- Compiling quote v1.0.41
950
862
  Compiling unicode-ident v1.0.22
863
+ Compiling quote v1.0.41
951
864
  Compiling serde_json v1.0.145
865
+ Compiling version_check v0.9.5
952
866
  Compiling typenum v1.19.0
953
867
  Compiling serde_core v1.0.228
954
- Compiling version_check v0.9.5
955
868
  Compiling serde v1.0.228
956
- Compiling itoa v1.0.15
957
869
  Compiling memchr v2.7.6
958
870
  Compiling ryu v1.0.20
959
- Compiling fnv v1.0.7
871
+ Compiling itoa v1.0.15
960
872
  Compiling strsim v0.11.1
961
873
  Compiling ident_case v1.0.1
874
+ Compiling fnv v1.0.7
962
875
  Compiling schemars v0.8.22
876
+ Compiling generic-array v0.14.9
877
+ Compiling dyn-clone v1.0.20
963
878
  Compiling cpufeatures v0.2.17
964
879
  Compiling cfg-if v1.0.4
965
- Compiling dyn-clone v1.0.20
966
- Compiling equivalent v1.0.2
967
- Compiling hashbrown v0.16.0
968
880
  Compiling data-encoding v2.9.0
881
+ Compiling equivalent v1.0.2
969
882
  Compiling thiserror v1.0.69
883
+ Compiling hashbrown v0.16.0
884
+ Compiling base64 v0.22.1
970
885
  Compiling semver v1.0.27
971
886
  Compiling prettyplease v0.2.37
972
887
  Compiling ethnum v1.5.2
973
- Compiling base64 v0.22.1
974
- Compiling generic-array v0.14.9
975
888
  Compiling escape-bytes v0.1.1
976
889
  Compiling opaque-debug v0.3.1
977
- Compiling glob v0.3.3
978
- Compiling anyhow v1.0.100
890
+ Compiling indexmap v2.12.0
979
891
  Compiling either v1.15.0
980
- Compiling heck v0.4.1
892
+ Compiling anyhow v1.0.100
893
+ Compiling glob v0.3.3
981
894
  Compiling base64 v0.21.7
982
- Compiling indexmap v2.12.0
895
+ Compiling heck v0.4.1
983
896
  Compiling itertools v0.10.5
984
- Compiling syn v2.0.108
985
- Compiling crypto-common v0.1.6
897
+ Compiling wasmparser v0.116.1
986
898
  Compiling block-buffer v0.10.4
899
+ Compiling crypto-common v0.1.6
987
900
  Compiling digest v0.9.0
988
901
  Compiling block-buffer v0.9.0
989
- Compiling wasmparser v0.116.1
990
- Compiling sha2 v0.9.9
991
902
  Compiling digest v0.10.7
992
- Compiling include_dir_macros v0.7.4
903
+ Compiling sha2 v0.9.9
993
904
  Compiling sha2 v0.10.9
905
+ Compiling syn v2.0.108
906
+ Compiling include_dir_macros v0.7.4
994
907
  Compiling include_dir v0.7.4
995
908
  Compiling darling_core v0.21.3
996
909
  Compiling serde_derive v1.0.228
997
910
  Compiling cfg_eval v0.1.2
998
911
  Compiling thiserror-impl v1.0.69
999
912
  Compiling crate-git-revision v0.0.6
913
+ Compiling darling_macro v0.21.3
1000
914
  Compiling stellar-strkey v0.0.13
1001
915
  Compiling stellar-xdr v25.0.0
1002
916
  Compiling hex v0.4.3
1003
- Compiling darling_macro v0.21.3
1004
917
  Compiling darling v0.21.3
1005
918
  Compiling serde_with_macros v3.15.1
1006
919
  Compiling serde_with v3.15.1
1007
920
  Compiling soroban-spec v25.1.1
1008
921
  Compiling soroban-spec-typescript v25.1.0
1009
922
  Compiling ts-bindings-gen v0.0.1 (/workspace/contracts/protocol/stellar/tools/ts-bindings-gen)
1010
- Finished `dev` profile [unoptimized + debuginfo] target(s) in 43.97s
923
+ Finished `dev` profile [unoptimized + debuginfo] target(s) in 41.56s
1011
924
  Running `target/debug/ts-bindings-gen`
1012
925
  🚀 Generating TypeScript bindings for Stellar contracts...
1013
926
 
1014
927
  📦 Processing contract: endpoint_v2
1015
928
  WASM: target/wasm32v1-none/release/endpoint_v2.wasm
1016
929
  Output: sdk/src/generated/endpoint.ts
1017
- WASM size: 59413 bytes (58.02 KB)
930
+ WASM size: 59457 bytes (58.06 KB)
1018
931
  Generating bindings...
1019
932
  ✓ Generated: sdk/src/generated/endpoint.ts
1020
933
  📦 Processing contract: simple_message_lib
1021
934
  WASM: target/wasm32v1-none/release/simple_message_lib.wasm
1022
935
  Output: sdk/src/generated/sml.ts
1023
- WASM size: 30939 bytes (30.21 KB)
936
+ WASM size: 30929 bytes (30.20 KB)
1024
937
  Generating bindings...
1025
938
  ✓ Generated: sdk/src/generated/sml.ts
1026
939
  📦 Processing contract: blocked_message_lib
1027
940
  WASM: target/wasm32v1-none/release/blocked_message_lib.wasm
1028
941
  Output: sdk/src/generated/bml.ts
1029
- WASM size: 15402 bytes (15.04 KB)
942
+ WASM size: 15398 bytes (15.04 KB)
1030
943
  Generating bindings...
1031
944
  ✓ Generated: sdk/src/generated/bml.ts
1032
945
  📦 Processing contract: uln302
1033
946
  WASM: target/wasm32v1-none/release/uln302.wasm
1034
947
  Output: sdk/src/generated/uln302.ts
1035
- WASM size: 60581 bytes (59.16 KB)
948
+ WASM size: 60571 bytes (59.15 KB)
1036
949
  Generating bindings...
1037
950
  ✓ Generated: sdk/src/generated/uln302.ts
1038
951
  📦 Processing contract: treasury
1039
952
  WASM: target/wasm32v1-none/release/treasury.wasm
1040
953
  Output: sdk/src/generated/treasury.ts
1041
- WASM size: 29518 bytes (28.83 KB)
954
+ WASM size: 29508 bytes (28.82 KB)
1042
955
  Generating bindings...
1043
956
  ✓ Generated: sdk/src/generated/treasury.ts
1044
957
  📦 Processing contract: upgrader
1045
958
  WASM: target/wasm32v1-none/release/upgrader.wasm
1046
959
  Output: sdk/src/generated/upgrader.ts
1047
- WASM size: 6502 bytes (6.35 KB)
960
+ WASM size: 7575 bytes (7.40 KB)
1048
961
  Generating bindings...
1049
962
  ✓ Generated: sdk/src/generated/upgrader.ts
1050
963
  📦 Processing contract: dvn
1051
964
  WASM: target/wasm32v1-none/release/dvn.wasm
1052
965
  Output: sdk/src/generated/dvn.ts
1053
- WASM size: 57132 bytes (55.79 KB)
966
+ WASM size: 56968 bytes (55.63 KB)
1054
967
  Generating bindings...
1055
968
  ✓ Generated: sdk/src/generated/dvn.ts
1056
969
  📦 Processing contract: dvn_fee_lib
1057
970
  WASM: target/wasm32v1-none/release/dvn_fee_lib.wasm
1058
971
  Output: sdk/src/generated/dvn_fee_lib.ts
1059
- WASM size: 22689 bytes (22.16 KB)
972
+ WASM size: 22523 bytes (22.00 KB)
1060
973
  Generating bindings...
1061
974
  ✓ Generated: sdk/src/generated/dvn_fee_lib.ts
1062
975
  📦 Processing contract: executor
1063
976
  WASM: target/wasm32v1-none/release/executor.wasm
1064
977
  Output: sdk/src/generated/executor.ts
1065
- WASM size: 59462 bytes (58.07 KB)
978
+ WASM size: 59292 bytes (57.90 KB)
1066
979
  Generating bindings...
1067
980
  ✓ Generated: sdk/src/generated/executor.ts
1068
981
  📦 Processing contract: executor_fee_lib
1069
982
  WASM: target/wasm32v1-none/release/executor_fee_lib.wasm
1070
983
  Output: sdk/src/generated/executor_fee_lib.ts
1071
- WASM size: 35574 bytes (34.74 KB)
984
+ WASM size: 35404 bytes (34.57 KB)
1072
985
  Generating bindings...
1073
986
  ✓ Generated: sdk/src/generated/executor_fee_lib.ts
1074
987
  📦 Processing contract: executor_helper
1075
988
  WASM: target/wasm32v1-none/release/executor_helper.wasm
1076
989
  Output: sdk/src/generated/executor_helper.ts
1077
- WASM size: 25865 bytes (25.26 KB)
990
+ WASM size: 25861 bytes (25.25 KB)
1078
991
  Generating bindings...
1079
992
  ✓ Generated: sdk/src/generated/executor_helper.ts
1080
993
  📦 Processing contract: price_feed
1081
994
  WASM: target/wasm32v1-none/release/price_feed.wasm
1082
995
  Output: sdk/src/generated/price_feed.ts
1083
- WASM size: 33778 bytes (32.99 KB)
996
+ WASM size: 33612 bytes (32.82 KB)
1084
997
  Generating bindings...
1085
998
  ✓ Generated: sdk/src/generated/price_feed.ts
1086
999
  📦 Processing contract: counter
1087
1000
  WASM: target/wasm32v1-none/release/counter.wasm
1088
1001
  Output: sdk/src/generated/counter.ts
1089
- WASM size: 43449 bytes (42.43 KB)
1002
+ WASM size: 51635 bytes (50.42 KB)
1090
1003
  Generating bindings...
1091
1004
  ✓ Generated: sdk/src/generated/counter.ts
1092
1005
  📦 Processing contract: oft
1093
1006
  WASM: target/wasm32v1-none/release/oft.wasm
1094
1007
  Output: sdk/src/generated/oft.ts
1095
- WASM size: 68337 bytes (66.74 KB)
1008
+ WASM size: 77408 bytes (75.59 KB)
1096
1009
  Generating bindings...
1097
1010
  ✓ Generated: sdk/src/generated/oft.ts
1098
1011
  📦 Processing contract: sac_manager
1099
1012
  WASM: target/wasm32v1-none/release/sac_manager.wasm
1100
1013
  Output: sdk/src/generated/sac_manager.ts
1101
- WASM size: 23526 bytes (22.97 KB)
1014
+ WASM size: 23520 bytes (22.97 KB)
1102
1015
  Generating bindings...
1103
1016
  ✓ Generated: sdk/src/generated/sac_manager.ts
1104
1017
  📦 Processing contract: layerzero_views
1105
1018
  WASM: target/wasm32v1-none/release/layerzero_views.wasm
1106
1019
  Output: sdk/src/generated/layerzero_view.ts
1107
- WASM size: 36701 bytes (35.84 KB)
1020
+ WASM size: 36531 bytes (35.67 KB)
1108
1021
  Generating bindings...
1109
1022
  ✓ Generated: sdk/src/generated/layerzero_view.ts
1110
1023
 
@@ -1128,4 +1041,4 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
1128
1041
  - oft.ts
1129
1042
  - sac_manager.ts
1130
1043
  - layerzero_view.ts
1131
- ⏱️ bash -c cargo run -p ts-bindings-gen: 44.482s
1044
+ ⏱️ bash -c cargo run -p ts-bindings-gen: 41.930s