@layerzerolabs/protocol-stellar-v2 0.2.19 → 0.2.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +795 -791
- package/.turbo/turbo-lint.log +325 -155
- package/.turbo/turbo-test.log +1398 -1277
- package/Cargo.lock +122 -111
- package/Cargo.toml +32 -16
- package/contracts/common-macros/Cargo.toml +7 -7
- package/contracts/common-macros/src/auth.rs +18 -37
- package/contracts/common-macros/src/contract_ttl.rs +18 -7
- package/contracts/common-macros/src/lib.rs +31 -14
- package/contracts/common-macros/src/lz_contract.rs +38 -7
- package/contracts/common-macros/src/storage.rs +251 -292
- package/contracts/common-macros/src/tests/contract_ttl.rs +1 -1
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__auth__snapshot_generated_multisig_code.snap +6 -12
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__auth__snapshot_generated_ownable_code.snap +12 -17
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__contract_ttl__snapshot_generated_contractimpl_code.snap +2 -1
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__ttl_configurable__snapshot_generated_ttl_configurable_code.snap +2 -7
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__upgradeable__snapshot_generated_upgradeable_code.snap +20 -14
- package/contracts/common-macros/src/tests/upgradeable.rs +26 -4
- package/contracts/common-macros/src/ttl_configurable.rs +2 -10
- package/contracts/common-macros/src/ttl_extendable.rs +2 -10
- package/contracts/common-macros/src/upgradeable.rs +61 -26
- package/contracts/common-macros/src/utils.rs +0 -9
- package/contracts/endpoint-v2/src/lib.rs +3 -2
- package/contracts/endpoint-v2/src/tests/endpoint_v2/clear.rs +2 -2
- package/contracts/endpoint-v2/src/tests/endpoint_v2/lz_receive_alert.rs +3 -3
- package/contracts/endpoint-v2/src/tests/endpoint_v2/send.rs +4 -4
- package/contracts/endpoint-v2/src/tests/endpoint_v2/set_delegate.rs +17 -5
- package/contracts/endpoint-v2/src/tests/endpoint_v2/set_zro.rs +4 -4
- package/contracts/endpoint-v2/src/tests/endpoint_v2/verify.rs +2 -2
- package/contracts/endpoint-v2/src/tests/message_lib_manager/register_library.rs +2 -2
- package/contracts/endpoint-v2/src/tests/message_lib_manager/set_default_receive_lib_timeout.rs +6 -6
- package/contracts/endpoint-v2/src/tests/message_lib_manager/set_default_receive_library.rs +67 -37
- package/contracts/endpoint-v2/src/tests/message_lib_manager/set_default_send_library.rs +5 -5
- package/contracts/endpoint-v2/src/tests/message_lib_manager/set_receive_library.rs +44 -54
- package/contracts/endpoint-v2/src/tests/message_lib_manager/set_receive_library_timeout.rs +7 -7
- package/contracts/endpoint-v2/src/tests/message_lib_manager/set_send_library.rs +8 -8
- package/contracts/endpoint-v2/src/tests/messaging_channel/burn.rs +3 -3
- package/contracts/endpoint-v2/src/tests/messaging_channel/nilify.rs +4 -4
- package/contracts/endpoint-v2/src/tests/messaging_channel/skip.rs +3 -3
- package/contracts/endpoint-v2/src/tests/messaging_composer/clear_compose.rs +2 -2
- package/contracts/endpoint-v2/src/tests/messaging_composer/lz_compose_alert.rs +3 -3
- package/contracts/endpoint-v2/src/tests/messaging_composer/send_compose.rs +2 -2
- package/contracts/layerzero-views/Cargo.toml +0 -1
- package/contracts/layerzero-views/src/layerzero_view.rs +1 -13
- package/contracts/macro-integration-tests/Cargo.toml +5 -15
- package/contracts/macro-integration-tests/tests/runtime/oapp/mod.rs +48 -0
- package/contracts/macro-integration-tests/tests/runtime/oapp/oapp_core.rs +170 -0
- package/contracts/macro-integration-tests/tests/runtime/oapp/options_type3.rs +154 -0
- package/contracts/macro-integration-tests/tests/runtime/oapp/receiver.rs +338 -0
- package/contracts/macro-integration-tests/tests/runtime/oapp/sender.rs +435 -0
- package/contracts/macro-integration-tests/tests/runtime.rs +1 -0
- package/contracts/macro-integration-tests/tests/ui/oapp/fail/custom_wrong_value.rs +8 -0
- package/contracts/macro-integration-tests/tests/ui/oapp/fail/custom_wrong_value.stderr +5 -0
- package/contracts/macro-integration-tests/tests/ui/oapp/fail/missing_lz_receive_internal.rs +8 -0
- package/contracts/macro-integration-tests/tests/ui/oapp/fail/missing_lz_receive_internal.stderr +71 -0
- package/contracts/macro-integration-tests/tests/ui/oapp/fail/non_struct_input.rs +10 -0
- package/contracts/macro-integration-tests/tests/ui/oapp/fail/non_struct_input.stderr +5 -0
- package/contracts/macro-integration-tests/tests/ui/oapp/fail/unknown_custom_option.rs +8 -0
- package/contracts/macro-integration-tests/tests/ui/oapp/fail/unknown_custom_option.stderr +5 -0
- package/contracts/macro-integration-tests/tests/ui/oapp/fail/wrong_key.rs +8 -0
- package/contracts/macro-integration-tests/tests/ui/oapp/fail/wrong_key.stderr +5 -0
- package/contracts/macro-integration-tests/tests/ui/oapp/pass/custom_all.rs +38 -0
- package/contracts/macro-integration-tests/tests/ui/oapp/pass/custom_single_trait.rs +96 -0
- package/contracts/macro-integration-tests/tests/ui/oapp/pass/minimal_contract.rs +64 -0
- package/contracts/macro-integration-tests/tests/ui/oapp/pass/struct_with_fields.rs +46 -0
- package/contracts/macro-integration-tests/tests/ui/ownable/fail/only_auth_missing_env.stderr +8 -0
- package/contracts/macro-integration-tests/tests/ui/ownable/pass/namespacing_and_imports.rs +1 -1
- package/contracts/macro-integration-tests/tests/ui/ownable/pass/only_auth_env_param_variants.rs +1 -1
- package/contracts/macro-integration-tests/tests/ui_oapp.rs +11 -0
- package/contracts/message-libs/message-lib-common/Cargo.toml +0 -1
- package/contracts/message-libs/message-lib-common/src/errors.rs +1 -1
- package/contracts/message-libs/treasury/Cargo.toml +0 -2
- package/contracts/message-libs/treasury/src/tests/treasury_tests.rs +2 -2
- package/contracts/message-libs/uln-302/src/events.rs +4 -0
- package/contracts/message-libs/uln-302/src/send_uln.rs +22 -6
- package/contracts/message-libs/uln-302/src/tests/receive_uln302/effective_receive_uln_config.rs +2 -2
- package/contracts/message-libs/uln-302/src/tests/receive_uln302/set_default_receive_uln_configs.rs +2 -2
- package/contracts/message-libs/uln-302/src/tests/receive_uln302/verify.rs +2 -2
- package/contracts/message-libs/uln-302/src/tests/send_uln302/effective_executor_config.rs +2 -2
- package/contracts/message-libs/uln-302/src/tests/send_uln302/effective_send_uln_config.rs +2 -2
- package/contracts/message-libs/uln-302/src/tests/send_uln302/send.rs +21 -67
- package/contracts/message-libs/uln-302/src/tests/send_uln302/set_default_executor_configs.rs +2 -2
- package/contracts/message-libs/uln-302/src/tests/send_uln302/set_default_send_uln_configs.rs +2 -2
- package/contracts/oapps/counter/Cargo.toml +5 -6
- package/contracts/oapps/counter/integration_tests/setup_uln.rs +1 -1
- package/contracts/oapps/counter/integration_tests/utils.rs +19 -12
- package/contracts/oapps/oapp/src/errors.rs +1 -1
- package/contracts/oapps/oapp/src/interfaces/mod.rs +3 -0
- package/contracts/oapps/oapp/src/interfaces/oapp_msg_inspector.rs +47 -0
- package/contracts/oapps/oapp/src/lib.rs +1 -0
- package/contracts/oapps/oapp/src/macro_tests/test_macros.rs +4 -4
- package/contracts/oapps/oapp/src/oapp_core.rs +5 -5
- package/contracts/oapps/oapp/src/oapp_options_type3.rs +12 -4
- package/contracts/oapps/oapp/src/oapp_receiver.rs +14 -9
- package/contracts/oapps/oapp/src/tests/mod.rs +4 -4
- package/contracts/oapps/oapp/src/tests/oapp_core.rs +223 -0
- package/contracts/oapps/oapp/src/tests/oapp_options_type3.rs +240 -0
- package/contracts/oapps/oapp/src/tests/oapp_receiver.rs +381 -0
- package/contracts/oapps/oapp/src/tests/oapp_sender.rs +569 -0
- package/contracts/oapps/oapp-macros/Cargo.toml +8 -4
- package/contracts/oapps/oapp-macros/src/generators.rs +9 -34
- package/contracts/oapps/oapp-macros/src/lib.rs +3 -0
- package/contracts/oapps/oapp-macros/src/tests/mod.rs +2 -0
- package/contracts/oapps/oapp-macros/src/tests/oapp.rs +88 -0
- package/contracts/oapps/oapp-macros/src/tests/parse_custom_impls.rs +86 -0
- package/contracts/oapps/oapp-macros/src/tests/snapshots/oapp_macros__tests__oapp__snapshot_generate_oapp.snap +103 -0
- package/contracts/oapps/oft/integration-tests/utils.rs +28 -8
- package/contracts/oapps/oft/src/extensions/oft_fee.rs +153 -75
- package/contracts/oapps/oft/src/extensions/pausable.rs +61 -12
- package/contracts/oapps/oft/src/extensions/rate_limiter.rs +198 -134
- package/contracts/oapps/oft/src/oft.rs +45 -50
- package/contracts/oapps/oft/src/oft_types/lock_unlock.rs +1 -1
- package/contracts/oapps/oft/src/oft_types/mint_burn.rs +4 -26
- package/contracts/oapps/oft-core/Cargo.toml +1 -4
- package/contracts/oapps/oft-core/integration-tests/setup.rs +3 -3
- package/contracts/oapps/oft-core/integration-tests/utils.rs +21 -3
- package/contracts/oapps/oft-core/src/errors.rs +3 -2
- package/contracts/oapps/oft-core/src/events.rs +6 -0
- package/contracts/oapps/oft-core/src/lib.rs +1 -1
- package/contracts/oapps/oft-core/src/oft_core.rs +341 -246
- package/contracts/oapps/oft-core/src/storage.rs +7 -3
- package/contracts/oapps/oft-core/src/tests/mod.rs +1 -0
- package/contracts/oapps/oft-core/src/tests/test_decimals.rs +37 -2
- package/contracts/oapps/oft-core/src/tests/test_lz_receive.rs +2 -2
- package/contracts/oapps/oft-core/src/tests/test_msg_inspector.rs +323 -0
- package/contracts/oapps/oft-core/src/tests/test_send.rs +2 -2
- package/contracts/oapps/oft-core/src/tests/test_utils.rs +61 -16
- package/contracts/upgrader/src/lib.rs +30 -57
- package/contracts/upgrader/src/tests/test_data/test_upgradeable_contract1.wasm +0 -0
- package/contracts/upgrader/src/tests/test_data/test_upgradeable_contract2.wasm +0 -0
- package/contracts/upgrader/src/tests/test_upgrader.rs +44 -35
- package/contracts/utils/Cargo.toml +0 -1
- package/contracts/utils/src/buffer_reader.rs +1 -0
- package/contracts/utils/src/errors.rs +4 -2
- package/contracts/utils/src/multisig.rs +17 -8
- package/contracts/utils/src/ownable.rs +6 -6
- package/contracts/utils/src/testing_utils.rs +124 -54
- package/contracts/utils/src/tests/multisig.rs +12 -12
- package/contracts/utils/src/tests/ownable.rs +6 -6
- package/contracts/utils/src/tests/testing_utils.rs +50 -167
- package/contracts/utils/src/tests/ttl_configurable.rs +5 -5
- package/contracts/utils/src/tests/upgradeable.rs +372 -175
- package/contracts/utils/src/ttl_configurable.rs +13 -7
- package/contracts/utils/src/upgradeable.rs +48 -23
- package/contracts/workers/dvn/Cargo.toml +6 -6
- package/contracts/workers/dvn/src/auth.rs +12 -42
- package/contracts/workers/dvn/src/dvn.rs +15 -40
- package/contracts/workers/dvn/src/errors.rs +0 -1
- package/contracts/workers/dvn/src/interfaces/dvn.rs +35 -0
- package/contracts/workers/dvn/src/lib.rs +4 -3
- package/contracts/workers/dvn/src/tests/auth.rs +1 -1
- package/contracts/workers/dvn/src/tests/dvn.rs +19 -15
- package/contracts/workers/dvn/src/tests/multisig/set_threshold.rs +2 -4
- package/contracts/workers/dvn/src/tests/multisig/verify_signatures.rs +1 -3
- package/contracts/workers/dvn/src/tests/setup.rs +5 -9
- package/contracts/workers/dvn-fee-lib/Cargo.toml +2 -2
- package/contracts/workers/dvn-fee-lib/src/dvn_fee_lib.rs +38 -22
- package/contracts/workers/dvn-fee-lib/src/lib.rs +12 -2
- package/contracts/workers/dvn-fee-lib/src/tests/dvn_fee_lib.rs +17 -16
- package/contracts/workers/executor/Cargo.toml +4 -0
- package/contracts/workers/executor/src/executor.rs +15 -36
- package/contracts/workers/executor/src/lib.rs +2 -2
- package/contracts/workers/executor/src/tests/auth.rs +394 -0
- package/contracts/workers/executor/src/tests/executor.rs +410 -0
- package/contracts/workers/executor/src/tests/mod.rs +3 -0
- package/contracts/workers/executor/src/tests/setup.rs +250 -0
- package/contracts/workers/executor-fee-lib/Cargo.toml +7 -1
- package/contracts/workers/executor-fee-lib/src/executor_fee_lib.rs +62 -15
- package/contracts/workers/executor-fee-lib/src/executor_option.rs +28 -1
- package/contracts/workers/executor-fee-lib/src/lib.rs +11 -2
- package/contracts/workers/executor-fee-lib/src/tests/executor_fee_lib.rs +701 -0
- package/contracts/workers/executor-fee-lib/src/tests/executor_option.rs +370 -0
- package/contracts/workers/executor-fee-lib/src/tests/mod.rs +4 -0
- package/contracts/workers/executor-fee-lib/src/tests/setup.rs +60 -0
- package/contracts/workers/executor-helper/Cargo.toml +0 -1
- package/contracts/workers/executor-helper/src/lib.rs +3 -0
- package/contracts/workers/executor-helper/src/tests/executor_helper.rs +184 -0
- package/contracts/workers/executor-helper/src/tests/mod.rs +2 -0
- package/contracts/workers/executor-helper/src/tests/setup.rs +366 -0
- package/contracts/workers/fee-lib-interfaces/Cargo.toml +14 -0
- package/contracts/workers/{worker/src/interfaces/mod.rs → fee-lib-interfaces/src/lib.rs} +4 -3
- package/contracts/workers/price-feed/Cargo.toml +7 -1
- package/contracts/workers/price-feed/src/events.rs +1 -1
- package/contracts/workers/price-feed/src/lib.rs +12 -4
- package/contracts/workers/price-feed/src/price_feed.rs +5 -21
- package/contracts/workers/price-feed/src/storage.rs +1 -1
- package/contracts/workers/price-feed/src/tests/mod.rs +2 -0
- package/contracts/workers/price-feed/src/tests/price_feed.rs +869 -0
- package/contracts/workers/price-feed/src/tests/setup.rs +70 -0
- package/contracts/workers/price-feed/src/types.rs +1 -1
- package/contracts/workers/worker/src/errors.rs +1 -4
- package/contracts/workers/worker/src/lib.rs +0 -2
- package/contracts/workers/worker/src/storage.rs +32 -29
- package/contracts/workers/worker/src/tests/setup.rs +2 -8
- package/contracts/workers/worker/src/tests/worker.rs +96 -74
- package/contracts/workers/worker/src/worker.rs +75 -75
- package/docs/error-spec.md +55 -0
- package/docs/layerzero-v2-on-stellar.md +447 -0
- package/docs/oapp-guide.md +212 -0
- package/docs/oft-guide.md +314 -0
- package/package.json +3 -3
- package/sdk/.turbo/turbo-test.log +268 -263
- package/sdk/dist/generated/bml.d.ts +12 -4
- package/sdk/dist/generated/bml.js +9 -7
- package/sdk/dist/generated/counter.d.ts +306 -298
- package/sdk/dist/generated/counter.js +48 -46
- package/sdk/dist/generated/dvn.d.ts +450 -411
- package/sdk/dist/generated/dvn.js +66 -64
- package/sdk/dist/generated/dvn_fee_lib.d.ts +294 -338
- package/sdk/dist/generated/dvn_fee_lib.js +33 -64
- package/sdk/dist/generated/endpoint.d.ts +108 -100
- package/sdk/dist/generated/endpoint.js +21 -19
- package/sdk/dist/generated/executor.d.ts +414 -370
- package/sdk/dist/generated/executor.js +58 -55
- package/sdk/dist/generated/executor_fee_lib.d.ts +333 -377
- package/sdk/dist/generated/executor_fee_lib.js +34 -65
- package/sdk/dist/generated/executor_helper.d.ts +26 -190
- package/sdk/dist/generated/executor_helper.js +23 -28
- package/sdk/dist/generated/layerzero_view.d.ts +1271 -0
- package/sdk/dist/generated/layerzero_view.js +294 -0
- package/sdk/dist/generated/oft.d.ts +408 -385
- package/sdk/dist/generated/oft.js +89 -92
- package/sdk/dist/generated/price_feed.d.ts +385 -429
- package/sdk/dist/generated/price_feed.js +50 -81
- package/sdk/dist/generated/sml.d.ts +108 -100
- package/sdk/dist/generated/sml.js +21 -19
- package/sdk/dist/generated/treasury.d.ts +108 -100
- package/sdk/dist/generated/treasury.js +21 -19
- package/sdk/dist/generated/uln302.d.ts +108 -100
- package/sdk/dist/generated/uln302.js +23 -21
- package/sdk/dist/generated/upgrader.d.ts +189 -18
- package/sdk/dist/generated/upgrader.js +84 -4
- package/sdk/dist/index.d.ts +1 -0
- package/sdk/dist/index.js +2 -0
- package/sdk/package.json +1 -1
- package/sdk/src/index.ts +3 -0
- package/sdk/test/oft-sml.test.ts +4 -4
- package/sdk/test/suites/localnet.ts +84 -20
- package/sdk/test/upgrader.test.ts +2 -3
- package/tools/ts-bindings-gen/src/main.rs +2 -1
- package/contracts/ERROR_SPEC.md +0 -44
- package/contracts/endpoint-v2/ARCHITECTURE.md +0 -233
- package/contracts/oapps/oapp/src/tests/test_oapp_core.rs +0 -175
- package/contracts/oapps/oapp/src/tests/test_oapp_options_type3.rs +0 -212
- package/contracts/oapps/oapp/src/tests/test_oapp_receiver.rs +0 -153
- package/contracts/oapps/oapp/src/tests/test_oapp_sender.rs +0 -294
- /package/contracts/workers/{worker/src/interfaces → fee-lib-interfaces/src}/dvn_fee_lib.rs +0 -0
- /package/contracts/workers/{worker/src/interfaces → fee-lib-interfaces/src}/executor_fee_lib.rs +0 -0
- /package/contracts/workers/{worker/src/interfaces → fee-lib-interfaces/src}/price_feed.rs +0 -0
|
@@ -14,56 +14,59 @@ Breaking changes might not follow SemVer, please pin Vitest's version when using
|
|
|
14
14
|
|
|
15
15
|
🚀 Starting Stellar localnet...
|
|
16
16
|
Error response from daemon: No such container: stellar-localnet
|
|
17
|
-
📥 Pulling stellar/quickstart...
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
⏳ Waiting for
|
|
22
|
-
|
|
23
|
-
⏳ Waiting for
|
|
24
|
-
|
|
25
|
-
⏳ Waiting for
|
|
26
|
-
|
|
27
|
-
⏳ Waiting for
|
|
28
|
-
|
|
29
|
-
⏳ Waiting for
|
|
30
|
-
|
|
31
|
-
⏳ Waiting for
|
|
32
|
-
|
|
33
|
-
⏳ Waiting for
|
|
34
|
-
|
|
35
|
-
⏳ Waiting for
|
|
36
|
-
|
|
37
|
-
⏳ Waiting for
|
|
38
|
-
|
|
39
|
-
⏳ Waiting for
|
|
40
|
-
|
|
41
|
-
⏳ Waiting for
|
|
42
|
-
|
|
43
|
-
⏳ Waiting for
|
|
44
|
-
|
|
45
|
-
⏳ Waiting for
|
|
46
|
-
|
|
47
|
-
⏳ Waiting for
|
|
48
|
-
|
|
49
|
-
⏳ Waiting for
|
|
50
|
-
|
|
51
|
-
⏳ Waiting for
|
|
52
|
-
|
|
53
|
-
⏳ Waiting for
|
|
54
|
-
|
|
55
|
-
⏳ Waiting for
|
|
56
|
-
|
|
57
|
-
⏳ Waiting for
|
|
58
|
-
|
|
59
|
-
⏳ Waiting for
|
|
60
|
-
|
|
61
|
-
⏳ Waiting for
|
|
62
|
-
|
|
63
|
-
⏳ Waiting for
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
17
|
+
📥 Pulling stellar/quickstart:testing...
|
|
18
|
+
⏳ Waiting for Stellar RPC to be healthy...
|
|
19
|
+
✅ Stellar RPC is healthy
|
|
20
|
+
⏳ Waiting for friendbot to be ready...
|
|
21
|
+
⏳ [22s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
|
|
22
|
+
⏳ [24s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
|
|
23
|
+
⏳ [26s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
|
|
24
|
+
⏳ [28s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
|
|
25
|
+
⏳ [30s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
|
|
26
|
+
⏳ [32s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
|
|
27
|
+
⏳ [34s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
|
|
28
|
+
⏳ [36s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
|
|
29
|
+
⏳ [38s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
|
|
30
|
+
⏳ [40s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
|
|
31
|
+
⏳ [42s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
|
|
32
|
+
⏳ [44s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
|
|
33
|
+
⏳ [46s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
|
|
34
|
+
⏳ [48s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
|
|
35
|
+
⏳ [50s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
|
|
36
|
+
⏳ [52s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
|
|
37
|
+
⏳ [54s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
|
|
38
|
+
⏳ [56s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
|
|
39
|
+
⏳ [58s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
|
|
40
|
+
⏳ [60s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
|
|
41
|
+
⏳ [62s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
|
|
42
|
+
⏳ [64s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
|
|
43
|
+
⏳ [66s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
|
|
44
|
+
⏳ [68s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
|
|
45
|
+
⏳ [70s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
|
|
46
|
+
⏳ [72s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
|
|
47
|
+
⏳ [74s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
|
|
48
|
+
⏳ [76s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
|
|
49
|
+
⏳ [78s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
|
|
50
|
+
⏳ [80s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
|
|
51
|
+
⏳ [82s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
|
|
52
|
+
⏳ [84s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
|
|
53
|
+
⏳ [86s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
|
|
54
|
+
⏳ [88s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
|
|
55
|
+
⏳ [90s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
|
|
56
|
+
⏳ [92s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
|
|
57
|
+
⏳ [94s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
|
|
58
|
+
⏳ [96s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
|
|
59
|
+
⏳ [98s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
|
|
60
|
+
⏳ [100s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
|
|
61
|
+
⏳ [102s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
|
|
62
|
+
⏳ [104s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
|
|
63
|
+
⏳ [106s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
|
|
64
|
+
⏳ [108s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
|
|
65
|
+
⏳ [110s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
|
|
66
|
+
⏳ [112s] Waiting for friendbot to fund DEFAULT_DEPLOYER...
|
|
67
|
+
✅ Account DEFAULT_DEPLOYER (GC3CEFPRE265JEVEHYD7XPVYZ2IB2YA4QLDBGZZIGQYN2CMTSU3O5FHM) funded
|
|
68
|
+
✅ Account ZRO_DISTRIBUTOR (GCG7WDMXVXFSVIZOO3VWZTSWS3UL4ZEFAC3JTCRJEUFD4KUSY7FEGLOB) funded
|
|
69
|
+
✅ Account EXECUTOR_ADMIN (GC72DFYB5KMI4IHRX63L3PTJ73XCZD6NM5BLHQOHNNJKNZVIIVMK3RTH) funded
|
|
67
70
|
✅ Stellar localnet started
|
|
68
71
|
Deploying SAC for asset: native
|
|
69
72
|
✅ Native SAC deployed
|
|
@@ -78,103 +81,103 @@ Deploying SAC for asset: ZRO:GC3CEFPRE265JEVEHYD7XPVYZ2IB2YA4QLDBGZZIGQYN2CMTSU3
|
|
|
78
81
|
🚀 Deploying Endpoint...
|
|
79
82
|
📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/endpoint_v2.wasm
|
|
80
83
|
📤 Uploading WASM...
|
|
81
|
-
📦 WASM buffer size:
|
|
82
|
-
💰 Upload transaction fee:
|
|
83
|
-
⏰ WASM TTL: live until ledger
|
|
84
|
-
✅ WASM uploaded, hash:
|
|
84
|
+
📦 WASM buffer size: 59070 bytes (57.69 KB)
|
|
85
|
+
💰 Upload transaction fee: 33723547 stroops (3.3723547 XLM)
|
|
86
|
+
⏰ WASM TTL: live until ledger 121074 (120959 ledgers remaining, ~7.00 days)
|
|
87
|
+
✅ WASM uploaded, hash: f55501593e422dcad948d5bb9280623f3ecd937eb4e71071e64f9679946bebf0
|
|
85
88
|
🚀 Deploying contract...
|
|
86
|
-
✅ Contract deployed at:
|
|
87
|
-
✅ Endpoint deployed:
|
|
89
|
+
✅ Contract deployed at: CCPTRUANJUH2YDEMMNFTRLHNCUAUJVMCQLXE3OYYQQEEKHXBFFXAIO3Z
|
|
90
|
+
✅ Endpoint deployed: CCPTRUANJUH2YDEMMNFTRLHNCUAUJVMCQLXE3OYYQQEEKHXBFFXAIO3Z
|
|
88
91
|
🚀 Deploying Treasury...
|
|
89
92
|
📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/treasury.wasm
|
|
90
93
|
📤 Uploading WASM...
|
|
91
|
-
📦 WASM buffer size:
|
|
92
|
-
💰 Upload transaction fee:
|
|
93
|
-
⏰ WASM TTL: live until ledger
|
|
94
|
-
✅ WASM uploaded, hash:
|
|
94
|
+
📦 WASM buffer size: 27461 bytes (26.82 KB)
|
|
95
|
+
💰 Upload transaction fee: 12153942 stroops (1.2153942 XLM)
|
|
96
|
+
⏰ WASM TTL: live until ledger 121077 (120959 ledgers remaining, ~7.00 days)
|
|
97
|
+
✅ WASM uploaded, hash: 1e88f3e179cb6dbabb6332b6b4279b5b04c3d10f361e12f084a3db2ec1872553
|
|
95
98
|
🚀 Deploying contract...
|
|
96
|
-
✅ Contract deployed at:
|
|
97
|
-
✅ Treasury deployed:
|
|
99
|
+
✅ Contract deployed at: CCX7GIHVRRWXAKSHAIO36RD42ENUJLANGNGMP4DGGSPSQ5LUL76RNPKW
|
|
100
|
+
✅ Treasury deployed: CCX7GIHVRRWXAKSHAIO36RD42ENUJLANGNGMP4DGGSPSQ5LUL76RNPKW
|
|
98
101
|
🚀 Deploying ULN302...
|
|
99
102
|
📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/uln302.wasm
|
|
100
103
|
📤 Uploading WASM...
|
|
101
|
-
📦 WASM buffer size:
|
|
102
|
-
💰 Upload transaction fee:
|
|
103
|
-
⏰ WASM TTL: live until ledger
|
|
104
|
-
✅ WASM uploaded, hash:
|
|
104
|
+
📦 WASM buffer size: 57445 bytes (56.10 KB)
|
|
105
|
+
💰 Upload transaction fee: 32794915 stroops (3.2794915 XLM)
|
|
106
|
+
⏰ WASM TTL: live until ledger 121079 (120959 ledgers remaining, ~7.00 days)
|
|
107
|
+
✅ WASM uploaded, hash: f93089924ff22ed0acf1296dfd2e865ed07d37e36de9074c3b61923a076df0b5
|
|
105
108
|
🚀 Deploying contract...
|
|
106
|
-
✅ Contract deployed at:
|
|
107
|
-
✅ ULN302 deployed:
|
|
109
|
+
✅ Contract deployed at: CBQFR5WLFIVELDHM2IWMWHBOKC6NO7L7UTGFJ6WP2LJOBUJMKCZK4OB6
|
|
110
|
+
✅ ULN302 deployed: CBQFR5WLFIVELDHM2IWMWHBOKC6NO7L7UTGFJ6WP2LJOBUJMKCZK4OB6
|
|
108
111
|
🚀 Deploying SimpleMessageLib...
|
|
109
112
|
📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/simple_message_lib.wasm
|
|
110
113
|
📤 Uploading WASM...
|
|
111
|
-
📦 WASM buffer size:
|
|
112
|
-
💰 Upload transaction fee:
|
|
113
|
-
⏰ WASM TTL: live until ledger
|
|
114
|
-
✅ WASM uploaded, hash:
|
|
114
|
+
📦 WASM buffer size: 29284 bytes (28.60 KB)
|
|
115
|
+
💰 Upload transaction fee: 14389402 stroops (1.4389402 XLM)
|
|
116
|
+
⏰ WASM TTL: live until ledger 121083 (120959 ledgers remaining, ~7.00 days)
|
|
117
|
+
✅ WASM uploaded, hash: 50f95eceb29103f5c23981254e80a68d3c38a9837917b7e39bb951670c5ae19f
|
|
115
118
|
🚀 Deploying contract...
|
|
116
|
-
✅ Contract deployed at:
|
|
117
|
-
✅ SimpleMessageLib deployed:
|
|
119
|
+
✅ Contract deployed at: CDZVL2G3TTVEHD46VTC6QQQQCEYRY4UUAILIPUZU67H3KKFBEFELJGQJ
|
|
120
|
+
✅ SimpleMessageLib deployed: CDZVL2G3TTVEHD46VTC6QQQQCEYRY4UUAILIPUZU67H3KKFBEFELJGQJ
|
|
118
121
|
🚀 Deploying Price Feed...
|
|
119
122
|
📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/price_feed.wasm
|
|
120
123
|
📤 Uploading WASM...
|
|
121
|
-
📦 WASM buffer size:
|
|
122
|
-
💰 Upload transaction fee:
|
|
123
|
-
⏰ WASM TTL: live until ledger
|
|
124
|
-
✅ WASM uploaded, hash:
|
|
124
|
+
📦 WASM buffer size: 33995 bytes (33.20 KB)
|
|
125
|
+
💰 Upload transaction fee: 18949553 stroops (1.8949553 XLM)
|
|
126
|
+
⏰ WASM TTL: live until ledger 121085 (120959 ledgers remaining, ~7.00 days)
|
|
127
|
+
✅ WASM uploaded, hash: dcf39d3b282fd9dc1b9b499e6d4a1833ad63ebcbaeac3611bb465f9e05abba24
|
|
125
128
|
🚀 Deploying contract...
|
|
126
|
-
✅ Contract deployed at:
|
|
127
|
-
✅ Price Feed deployed:
|
|
129
|
+
✅ Contract deployed at: CCWSOS5FZF7D6JMWCQJGDNWPURGY4I46Y377VBBOFLVQXOOQE6MURNQ2
|
|
130
|
+
✅ Price Feed deployed: CCWSOS5FZF7D6JMWCQJGDNWPURGY4I46Y377VBBOFLVQXOOQE6MURNQ2
|
|
128
131
|
🚀 Deploying Executor Fee Lib...
|
|
129
132
|
📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/executor_fee_lib.wasm
|
|
130
133
|
📤 Uploading WASM...
|
|
131
|
-
📦 WASM buffer size:
|
|
132
|
-
💰 Upload transaction fee:
|
|
133
|
-
⏰ WASM TTL: live until ledger
|
|
134
|
-
✅ WASM uploaded, hash:
|
|
134
|
+
📦 WASM buffer size: 33966 bytes (33.17 KB)
|
|
135
|
+
💰 Upload transaction fee: 15020064 stroops (1.5020064 XLM)
|
|
136
|
+
⏰ WASM TTL: live until ledger 121089 (120959 ledgers remaining, ~7.00 days)
|
|
137
|
+
✅ WASM uploaded, hash: 05a18caf82faa48c7261039b061654cf831092422854a7c1d1b54fd32c459430
|
|
135
138
|
🚀 Deploying contract...
|
|
136
|
-
✅ Contract deployed at:
|
|
137
|
-
✅ Executor Fee Lib deployed:
|
|
139
|
+
✅ Contract deployed at: CBQ2254DMWMNCJHOLLBNEHZSPCSWZUVF2NMF6CVYHDZMEOTTQ2GYYKIE
|
|
140
|
+
✅ Executor Fee Lib deployed: CBQ2254DMWMNCJHOLLBNEHZSPCSWZUVF2NMF6CVYHDZMEOTTQ2GYYKIE
|
|
138
141
|
🚀 Deploying DVN Fee Lib...
|
|
139
142
|
📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/dvn_fee_lib.wasm
|
|
140
143
|
📤 Uploading WASM...
|
|
141
|
-
📦 WASM buffer size:
|
|
142
|
-
💰 Upload transaction fee:
|
|
143
|
-
⏰ WASM TTL: live until ledger
|
|
144
|
-
✅ WASM uploaded, hash:
|
|
144
|
+
📦 WASM buffer size: 22288 bytes (21.77 KB)
|
|
145
|
+
💰 Upload transaction fee: 12130515 stroops (1.2130515 XLM)
|
|
146
|
+
⏰ WASM TTL: live until ledger 121091 (120958 ledgers remaining, ~7.00 days)
|
|
147
|
+
✅ WASM uploaded, hash: 472a898aa11cb6faa417732d3365a9a4d69083cf978ec18a332571e5a2bc208e
|
|
145
148
|
🚀 Deploying contract...
|
|
146
|
-
✅ Contract deployed at:
|
|
147
|
-
✅ DVN Fee Lib deployed:
|
|
149
|
+
✅ Contract deployed at: CAWX5N22ATDMPBXF64FB4V3YMLWMQUGZLMYN3OB7T6BWJ5ZGFSRMT2X3
|
|
150
|
+
✅ DVN Fee Lib deployed: CAWX5N22ATDMPBXF64FB4V3YMLWMQUGZLMYN3OB7T6BWJ5ZGFSRMT2X3
|
|
148
151
|
🚀 Deploying DVN...
|
|
149
152
|
📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/dvn.wasm
|
|
150
153
|
📤 Uploading WASM...
|
|
151
|
-
📦 WASM buffer size:
|
|
152
|
-
💰 Upload transaction fee:
|
|
153
|
-
⏰ WASM TTL: live until ledger
|
|
154
|
-
✅ WASM uploaded, hash:
|
|
154
|
+
📦 WASM buffer size: 57505 bytes (56.16 KB)
|
|
155
|
+
💰 Upload transaction fee: 27083579 stroops (2.7083579 XLM)
|
|
156
|
+
⏰ WASM TTL: live until ledger 121094 (120959 ledgers remaining, ~7.00 days)
|
|
157
|
+
✅ WASM uploaded, hash: 58784606010f24b0342599b3f6f0da7c5a0ed3254c26bdc4d64b51e71c213368
|
|
155
158
|
🚀 Deploying contract...
|
|
156
|
-
✅ Contract deployed at:
|
|
157
|
-
✅ DVN deployed:
|
|
159
|
+
✅ Contract deployed at: CDESQGCJI2BSY5ARNOKMD5OS4CSGXKS73KZPTUHTO4GLT7PNPNRQYAME
|
|
160
|
+
✅ DVN deployed: CDESQGCJI2BSY5ARNOKMD5OS4CSGXKS73KZPTUHTO4GLT7PNPNRQYAME
|
|
158
161
|
🚀 Deploying Executor Helper...
|
|
159
162
|
📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/executor_helper.wasm
|
|
160
163
|
📤 Uploading WASM...
|
|
161
|
-
📦 WASM buffer size:
|
|
162
|
-
💰 Upload transaction fee:
|
|
163
|
-
⏰ WASM TTL: live until ledger
|
|
164
|
-
✅ WASM uploaded, hash:
|
|
164
|
+
📦 WASM buffer size: 23493 bytes (22.94 KB)
|
|
165
|
+
💰 Upload transaction fee: 8592958 stroops (0.8592958 XLM)
|
|
166
|
+
⏰ WASM TTL: live until ledger 121096 (120959 ledgers remaining, ~7.00 days)
|
|
167
|
+
✅ WASM uploaded, hash: 721ef1dd97bb02a775a0ef4d1ce97b24f4625e3fd0c91181d77c483b68195503
|
|
165
168
|
🚀 Deploying contract...
|
|
166
|
-
✅ Contract deployed at:
|
|
167
|
-
✅ Executor Helper deployed:
|
|
169
|
+
✅ Contract deployed at: CCOFEESMY4XA4JWUMKYAGIKOVONPTXENZXJVBIMWQOQTFQADMGHH7255
|
|
170
|
+
✅ Executor Helper deployed: CCOFEESMY4XA4JWUMKYAGIKOVONPTXENZXJVBIMWQOQTFQADMGHH7255
|
|
168
171
|
🚀 Deploying Executor...
|
|
169
172
|
📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/executor.wasm
|
|
170
173
|
📤 Uploading WASM...
|
|
171
|
-
📦 WASM buffer size:
|
|
172
|
-
💰 Upload transaction fee:
|
|
173
|
-
⏰ WASM TTL: live until ledger
|
|
174
|
-
✅ WASM uploaded, hash:
|
|
174
|
+
📦 WASM buffer size: 57119 bytes (55.78 KB)
|
|
175
|
+
💰 Upload transaction fee: 25850618 stroops (2.5850618 XLM)
|
|
176
|
+
⏰ WASM TTL: live until ledger 121100 (120959 ledgers remaining, ~7.00 days)
|
|
177
|
+
✅ WASM uploaded, hash: 68df81efe2d090ace4a1802098c00dcdacaa4c9e4e21c329536c60d715da8bef
|
|
175
178
|
🚀 Deploying contract...
|
|
176
|
-
✅ Contract deployed at:
|
|
177
|
-
✅ Executor deployed:
|
|
179
|
+
✅ Contract deployed at: CCGANXSRKYEDVQARDFK4EYFDFLUYFAF5ZMSAC6F6EZSSGSNFBD5WSGQV
|
|
180
|
+
✅ Executor deployed: CCGANXSRKYEDVQARDFK4EYFDFLUYFAF5ZMSAC6F6EZSSGSNFBD5WSGQV
|
|
178
181
|
|
|
179
182
|
========================================
|
|
180
183
|
🔗 GLOBAL SETUP: Wiring Protocol Contracts
|
|
@@ -200,59 +203,59 @@ Deploying SAC for asset: ZRO:GC3CEFPRE265JEVEHYD7XPVYZ2IB2YA4QLDBGZZIGQYN2CMTSU3
|
|
|
200
203
|
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)
|
|
201
204
|
[22m[39m
|
|
202
205
|
📋 Protocol addresses injected from globalSetup
|
|
203
|
-
Endpoint:
|
|
204
|
-
SML:
|
|
205
|
-
Executor:
|
|
206
|
-
Executor Helper:
|
|
206
|
+
Endpoint: CCPTRUANJUH2YDEMMNFTRLHNCUAUJVMCQLXE3OYYQQEEKHXBFFXAIO3Z
|
|
207
|
+
SML: CDZVL2G3TTVEHD46VTC6QQQQCEYRY4UUAILIPUZU67H3KKFBEFELJGQJ
|
|
208
|
+
Executor: CCGANXSRKYEDVQARDFK4EYFDFLUYFAF5ZMSAC6F6EZSSGSNFBD5WSGQV
|
|
209
|
+
Executor Helper: CCOFEESMY4XA4JWUMKYAGIKOVONPTXENZXJVBIMWQOQTFQADMGHH7255
|
|
207
210
|
|
|
208
211
|
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mDeploy OFT Contracts[2m > [22m[2mDeploy OFT Token SAC
|
|
209
212
|
[22m[39m✅ OFT token issued to DEFAULT_DEPLOYER
|
|
210
|
-
Deploying SAC for asset: OFT:
|
|
213
|
+
Deploying SAC for asset: OFT:GCGIA426MAHY6RWYU3LKGKMWKLJRDAP675SXL2EEQB33TVPRTYF4F522
|
|
211
214
|
|
|
212
215
|
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mDeploy OFT Contracts[2m > [22m[2mDeploy OFT Token SAC
|
|
213
|
-
[22m[39m✅ OFT Token SAC deployed:
|
|
216
|
+
[22m[39m✅ OFT Token SAC deployed: CAJBW7DPRVEHANBZ6LSA22XCOA2CGUIX2JSEC5VMME5DZNJQCEOIUOJT
|
|
214
217
|
|
|
215
218
|
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mDeploy OFT Contracts[2m > [22m[2mDeploy Lock/Unlock OFT
|
|
216
219
|
[22m[39m📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/oft.wasm
|
|
217
220
|
📤 Uploading WASM...
|
|
218
|
-
📦 WASM buffer size:
|
|
221
|
+
📦 WASM buffer size: 61037 bytes (59.61 KB)
|
|
219
222
|
|
|
220
223
|
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mDeploy OFT Contracts[2m > [22m[2mDeploy Lock/Unlock OFT
|
|
221
|
-
[22m[39m💰 Upload transaction fee:
|
|
224
|
+
[22m[39m💰 Upload transaction fee: 32904331 stroops (3.2904331 XLM)
|
|
222
225
|
|
|
223
226
|
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mDeploy OFT Contracts[2m > [22m[2mDeploy Lock/Unlock OFT
|
|
224
|
-
[22m[39m⏰ WASM TTL: live until ledger
|
|
227
|
+
[22m[39m⏰ WASM TTL: live until ledger 121128 (120959 ledgers remaining, ~7.00 days)
|
|
225
228
|
|
|
226
229
|
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mDeploy OFT Contracts[2m > [22m[2mDeploy Lock/Unlock OFT
|
|
227
|
-
[22m[39m✅ WASM uploaded, hash:
|
|
230
|
+
[22m[39m✅ WASM uploaded, hash: 6ded194b3d2189d1ab1b2bb0c877f3f758363aff666fbff8a67c25b545bad453
|
|
228
231
|
🚀 Deploying contract...
|
|
229
232
|
|
|
230
233
|
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mDeploy OFT Contracts[2m > [22m[2mDeploy Lock/Unlock OFT
|
|
231
|
-
[22m[39m✅ Contract deployed at:
|
|
234
|
+
[22m[39m✅ Contract deployed at: CDIXNIIZL2ZU22PRZVP5JXELIHF2BLTW3VD2IRPTFXTC7HURJ7VBSOJ6
|
|
232
235
|
|
|
233
236
|
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mDeploy OFT Contracts[2m > [22m[2mDeploy Lock/Unlock OFT
|
|
234
|
-
[22m[39m✅ Lock/Unlock OFT deployed:
|
|
237
|
+
[22m[39m✅ Lock/Unlock OFT deployed: CDIXNIIZL2ZU22PRZVP5JXELIHF2BLTW3VD2IRPTFXTC7HURJ7VBSOJ6
|
|
235
238
|
|
|
236
239
|
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mDeploy OFT Contracts[2m > [22m[2mDeploy Mint/Burn OFT
|
|
237
240
|
[22m[39m📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/oft.wasm
|
|
238
241
|
📤 Uploading WASM...
|
|
239
|
-
📦 WASM buffer size:
|
|
242
|
+
📦 WASM buffer size: 61037 bytes (59.61 KB)
|
|
240
243
|
|
|
241
244
|
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mDeploy OFT Contracts[2m > [22m[2mDeploy Mint/Burn OFT
|
|
242
|
-
[22m[39m💰 Upload transaction fee:
|
|
245
|
+
[22m[39m💰 Upload transaction fee: 1350235 stroops (0.1350235 XLM)
|
|
243
246
|
|
|
244
247
|
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mDeploy OFT Contracts[2m > [22m[2mDeploy Mint/Burn OFT
|
|
245
|
-
[22m[39m⏰ WASM TTL: live until ledger
|
|
248
|
+
[22m[39m⏰ WASM TTL: live until ledger 121128 (120955 ledgers remaining, ~7.00 days)
|
|
246
249
|
|
|
247
250
|
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mDeploy OFT Contracts[2m > [22m[2mDeploy Mint/Burn OFT
|
|
248
|
-
[22m[39m✅ WASM uploaded, hash:
|
|
251
|
+
[22m[39m✅ WASM uploaded, hash: 6ded194b3d2189d1ab1b2bb0c877f3f758363aff666fbff8a67c25b545bad453
|
|
249
252
|
🚀 Deploying contract...
|
|
250
253
|
|
|
251
254
|
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mDeploy OFT Contracts[2m > [22m[2mDeploy Mint/Burn OFT
|
|
252
|
-
[22m[39m✅ Contract deployed at:
|
|
255
|
+
[22m[39m✅ Contract deployed at: CAXHVKIGDIKD4BVH3AROE4JBW2G4YOCOESONC647RNKJ4PJWZGZ7UJPN
|
|
253
256
|
|
|
254
257
|
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mDeploy OFT Contracts[2m > [22m[2mDeploy Mint/Burn OFT
|
|
255
|
-
[22m[39m✅ Mint/Burn OFT deployed:
|
|
258
|
+
[22m[39m✅ Mint/Burn OFT deployed: CAXHVKIGDIKD4BVH3AROE4JBW2G4YOCOESONC647RNKJ4PJWZGZ7UJPN
|
|
256
259
|
|
|
257
260
|
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mWire OFT Contracts to use SML[2m > [22m[2mSet Lock/Unlock OFT Send Library to SML
|
|
258
261
|
[22m[39m✅ Lock/Unlock OFT send library set to SML
|
|
@@ -295,13 +298,14 @@ Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHP
|
|
|
295
298
|
[22m[39m📊 Messaging Fee: { native_fee: [33m100n[39m, zro_fee: [33m99n[39m }
|
|
296
299
|
|
|
297
300
|
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Lock/Unlock -> Mint/Burn[2m > [22m[2mSend tokens (Lock/Unlock -> Mint/Burn)
|
|
298
|
-
[22m[39m✅ Tokens sent, ledger: [
|
|
301
|
+
[22m[39m✅ Tokens sent, ledger: [33m186[39m
|
|
299
302
|
|
|
300
303
|
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Lock/Unlock -> Mint/Burn[2m > [22m[2mScan PacketSent events
|
|
301
304
|
[22m[39m📦 Scanning for PacketSent events...
|
|
302
305
|
|
|
303
306
|
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Lock/Unlock -> Mint/Burn[2m > [22m[2mScan PacketSent events
|
|
304
|
-
[22m[39m🔍 Scanning events from ledger [
|
|
307
|
+
[22m[39m🔍 Scanning events from ledger [33m186[39m
|
|
308
|
+
Waiting for next ledger...
|
|
305
309
|
|
|
306
310
|
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Lock/Unlock -> Mint/Burn[2m > [22m[2mScan PacketSent events
|
|
307
311
|
[22m[39m✅ Found 1 events
|
|
@@ -323,9 +327,9 @@ Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHP
|
|
|
323
327
|
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Lock/Unlock -> Mint/Burn[2m > [22m[2mReceive tokens (mint on Mint/Burn OFT)
|
|
324
328
|
[22m[39m✅ Simulation complete
|
|
325
329
|
Auth entries returned: [33m1[39m
|
|
326
|
-
Processing auth entry for address:
|
|
330
|
+
Processing auth entry for address: CCGANXSRKYEDVQARDFK4EYFDFLUYFAF5ZMSAC6F6EZSSGSNFBD5WSGQV
|
|
327
331
|
Auth entry tree:
|
|
328
|
-
📞
|
|
332
|
+
📞 CAXHVKIGDIKD4BVH3AROE4JBW2G4YOCOESONC647RNKJ4PJWZGZ7UJPN...lz_receive()
|
|
329
333
|
✍️ Signing executor auth entry (Abstract Account)...
|
|
330
334
|
|
|
331
335
|
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Lock/Unlock -> Mint/Burn[2m > [22m[2mReceive tokens (mint on Mint/Burn OFT)
|
|
@@ -339,7 +343,7 @@ Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHP
|
|
|
339
343
|
[22m[39m✅ Transaction envelope signed
|
|
340
344
|
|
|
341
345
|
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Lock/Unlock -> Mint/Burn[2m > [22m[2mReceive tokens (mint on Mint/Burn OFT)
|
|
342
|
-
[22m[39m✅ Transaction sent, hash:
|
|
346
|
+
[22m[39m✅ Transaction sent, hash: 0e6245fb68b4ba7eb1293c1b754c0fa4c9fba9078144642c7189c61e31efb754
|
|
343
347
|
|
|
344
348
|
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Lock/Unlock -> Mint/Burn[2m > [22m[2mReceive tokens (mint on Mint/Burn OFT)
|
|
345
349
|
[22m[39m✅ Transaction completed successfully
|
|
@@ -366,14 +370,13 @@ Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHP
|
|
|
366
370
|
[22m[39m📊 Reverse Messaging Fee: { native_fee: [33m100n[39m, zro_fee: [33m99n[39m }
|
|
367
371
|
|
|
368
372
|
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Mint/Burn -> Lock/Unlock (Reverse)[2m > [22m[2mSend tokens (Mint/Burn -> Lock/Unlock)
|
|
369
|
-
[22m[39m✅ Tokens sent (reverse), ledger: [
|
|
373
|
+
[22m[39m✅ Tokens sent (reverse), ledger: [33m192[39m
|
|
370
374
|
|
|
371
375
|
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Mint/Burn -> Lock/Unlock (Reverse)[2m > [22m[2mScan PacketSent events (reverse)
|
|
372
376
|
[22m[39m📦 Scanning for PacketSent events...
|
|
373
377
|
|
|
374
378
|
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Mint/Burn -> Lock/Unlock (Reverse)[2m > [22m[2mScan PacketSent events (reverse)
|
|
375
|
-
[22m[39m🔍 Scanning events from ledger [
|
|
376
|
-
Waiting for next ledger...
|
|
379
|
+
[22m[39m🔍 Scanning events from ledger [33m192[39m
|
|
377
380
|
|
|
378
381
|
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Mint/Burn -> Lock/Unlock (Reverse)[2m > [22m[2mScan PacketSent events (reverse)
|
|
379
382
|
[22m[39m✅ Found 1 events
|
|
@@ -395,9 +398,9 @@ Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHP
|
|
|
395
398
|
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Mint/Burn -> Lock/Unlock (Reverse)[2m > [22m[2mReceive tokens (unlock on Lock/Unlock OFT)
|
|
396
399
|
[22m[39m✅ Simulation complete
|
|
397
400
|
Auth entries returned: [33m1[39m
|
|
398
|
-
Processing auth entry for address:
|
|
401
|
+
Processing auth entry for address: CCGANXSRKYEDVQARDFK4EYFDFLUYFAF5ZMSAC6F6EZSSGSNFBD5WSGQV
|
|
399
402
|
Auth entry tree:
|
|
400
|
-
📞
|
|
403
|
+
📞 CDIXNIIZL2ZU22PRZVP5JXELIHF2BLTW3VD2IRPTFXTC7HURJ7VBSOJ6...lz_receive()
|
|
401
404
|
✍️ Signing executor auth entry (Abstract Account)...
|
|
402
405
|
|
|
403
406
|
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Mint/Burn -> Lock/Unlock (Reverse)[2m > [22m[2mReceive tokens (unlock on Lock/Unlock OFT)
|
|
@@ -411,7 +414,7 @@ Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHP
|
|
|
411
414
|
[22m[39m✅ Transaction envelope signed
|
|
412
415
|
|
|
413
416
|
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Mint/Burn -> Lock/Unlock (Reverse)[2m > [22m[2mReceive tokens (unlock on Lock/Unlock OFT)
|
|
414
|
-
[22m[39m✅ Transaction sent, hash:
|
|
417
|
+
[22m[39m✅ Transaction sent, hash: 011e6723d9207a9d8ac6ba1eb46ec195cf694146e3f6ed4d4734fc54f12aadab
|
|
415
418
|
|
|
416
419
|
[90mstdout[2m | test/oft-sml.test.ts[2m > [22m[2mOFT E2E Testing with SAC (SML)[2m > [22m[2mSend: Mint/Burn -> Lock/Unlock (Reverse)[2m > [22m[2mReceive tokens (unlock on Lock/Unlock OFT)
|
|
417
420
|
[22m[39m✅ Transaction completed successfully
|
|
@@ -428,53 +431,53 @@ Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHP
|
|
|
428
431
|
- RECIPIENT_B (unlocked): 500000000 (expected: 500000000)
|
|
429
432
|
✅ OFT E2E test completed successfully!
|
|
430
433
|
|
|
431
|
-
[32m✓[39m test/oft-sml.test.ts [2m([22m[2m23 tests[22m[2m)[22m[33m
|
|
432
|
-
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [22mDeploy OFT Contracts[2m > [22mDeploy OFT Token SAC [33m
|
|
433
|
-
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [22mDeploy OFT Contracts[2m > [22mDeploy Lock/Unlock OFT [33m
|
|
434
|
-
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [22mDeploy OFT Contracts[2m > [22mDeploy Mint/Burn OFT [33m
|
|
435
|
-
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [22mWire OFT Contracts to use SML[2m > [22mSet Lock/Unlock OFT Send Library to SML [33m
|
|
436
|
-
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [22mWire OFT Contracts to use SML[2m > [22mSet Lock/Unlock OFT Receive Library to SML [33m
|
|
437
|
-
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [22mWire OFT Contracts to use SML[2m > [22mSet Mint/Burn OFT Send Library to SML [33m
|
|
438
|
-
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [22mWire OFT Contracts to use SML[2m > [22mSet Mint/Burn OFT Receive Library to SML [33m
|
|
439
|
-
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [22mWire OFT Contracts to use SML[2m > [22mSet Lock/Unlock OFT Peer (to Mint/Burn OFT) [33m
|
|
440
|
-
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [22mWire OFT Contracts to use SML[2m > [22mSet Mint/Burn OFT Peer (to Lock/Unlock OFT) [33m
|
|
441
|
-
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [22mWire OFT Contracts to use SML[2m > [22mSet SAC Admin to Mint/Burn OFT (for minting) [33m
|
|
442
|
-
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [22mSend: Lock/Unlock -> Mint/Burn[2m > [22mSend tokens (Lock/Unlock -> Mint/Burn) [33m
|
|
443
|
-
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [22mSend: Lock/Unlock -> Mint/Burn[2m > [
|
|
444
|
-
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [22mSend: Lock/Unlock -> Mint/Burn[2m > [
|
|
445
|
-
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [22mSend:
|
|
446
|
-
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [22mSend: Mint/Burn -> Lock/Unlock (Reverse)[2m > [
|
|
447
|
-
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [22mSend: Mint/Burn -> Lock/Unlock (Reverse)[2m > [22mValidate packet via SML (reverse) [33m
|
|
448
|
-
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [22mSend: Mint/Burn -> Lock/Unlock (Reverse)[2m > [22mReceive tokens (unlock on Lock/Unlock OFT) [33m
|
|
434
|
+
[32m✓[39m test/oft-sml.test.ts [2m([22m[2m23 tests[22m[2m)[22m[33m 37376[2mms[22m[39m
|
|
435
|
+
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [22mDeploy OFT Contracts[2m > [22mDeploy OFT Token SAC [33m 2074[2mms[22m[39m
|
|
436
|
+
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [22mDeploy OFT Contracts[2m > [22mDeploy Lock/Unlock OFT [33m 4710[2mms[22m[39m
|
|
437
|
+
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [22mDeploy OFT Contracts[2m > [22mDeploy Mint/Burn OFT [33m 2170[2mms[22m[39m
|
|
438
|
+
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [22mWire OFT Contracts to use SML[2m > [22mSet Lock/Unlock OFT Send Library to SML [33m 1082[2mms[22m[39m
|
|
439
|
+
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [22mWire OFT Contracts to use SML[2m > [22mSet Lock/Unlock OFT Receive Library to SML [33m 1081[2mms[22m[39m
|
|
440
|
+
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [22mWire OFT Contracts to use SML[2m > [22mSet Mint/Burn OFT Send Library to SML [33m 2581[2mms[22m[39m
|
|
441
|
+
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [22mWire OFT Contracts to use SML[2m > [22mSet Mint/Burn OFT Receive Library to SML [33m 1082[2mms[22m[39m
|
|
442
|
+
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [22mWire OFT Contracts to use SML[2m > [22mSet Lock/Unlock OFT Peer (to Mint/Burn OFT) [33m 1090[2mms[22m[39m
|
|
443
|
+
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [22mWire OFT Contracts to use SML[2m > [22mSet Mint/Burn OFT Peer (to Lock/Unlock OFT) [33m 2599[2mms[22m[39m
|
|
444
|
+
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [22mWire OFT Contracts to use SML[2m > [22mSet SAC Admin to Mint/Burn OFT (for minting) [33m 1033[2mms[22m[39m
|
|
445
|
+
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [22mSend: Lock/Unlock -> Mint/Burn[2m > [22mSend tokens (Lock/Unlock -> Mint/Burn) [33m 1189[2mms[22m[39m
|
|
446
|
+
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [22mSend: Lock/Unlock -> Mint/Burn[2m > [22mScan PacketSent events [33m 1016[2mms[22m[39m
|
|
447
|
+
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [22mSend: Lock/Unlock -> Mint/Burn[2m > [22mValidate packet via SML [33m 1132[2mms[22m[39m
|
|
448
|
+
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [22mSend: Lock/Unlock -> Mint/Burn[2m > [22mReceive tokens (mint on Mint/Burn OFT) [33m 2315[2mms[22m[39m
|
|
449
|
+
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [22mSend: Mint/Burn -> Lock/Unlock (Reverse)[2m > [22mSend tokens (Mint/Burn -> Lock/Unlock) [33m 2676[2mms[22m[39m
|
|
450
|
+
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [22mSend: Mint/Burn -> Lock/Unlock (Reverse)[2m > [22mValidate packet via SML (reverse) [33m 2576[2mms[22m[39m
|
|
451
|
+
[33m[2m✓[22m[39m OFT E2E Testing with SAC (SML)[2m > [22mSend: Mint/Burn -> Lock/Unlock (Reverse)[2m > [22mReceive tokens (unlock on Lock/Unlock OFT) [33m 1184[2mms[22m[39m
|
|
449
452
|
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing
|
|
450
453
|
[22m[39m
|
|
451
454
|
📋 Protocol addresses injected from globalSetup
|
|
452
|
-
Endpoint:
|
|
453
|
-
ULN302:
|
|
454
|
-
DVN:
|
|
455
|
-
Executor:
|
|
456
|
-
Executor Helper:
|
|
455
|
+
Endpoint: CCPTRUANJUH2YDEMMNFTRLHNCUAUJVMCQLXE3OYYQQEEKHXBFFXAIO3Z
|
|
456
|
+
ULN302: CBQFR5WLFIVELDHM2IWMWHBOKC6NO7L7UTGFJ6WP2LJOBUJMKCZK4OB6
|
|
457
|
+
DVN: CDESQGCJI2BSY5ARNOKMD5OS4CSGXKS73KZPTUHTO4GLT7PNPNRQYAME
|
|
458
|
+
Executor: CCGANXSRKYEDVQARDFK4EYFDFLUYFAF5ZMSAC6F6EZSSGSNFBD5WSGQV
|
|
459
|
+
Executor Helper: CCOFEESMY4XA4JWUMKYAGIKOVONPTXENZXJVBIMWQOQTFQADMGHH7255
|
|
457
460
|
|
|
458
461
|
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mDeploy Counter[2m > [22m[2mDeploy Counter
|
|
459
462
|
[22m[39m📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/counter.wasm
|
|
460
463
|
📤 Uploading WASM...
|
|
461
|
-
📦 WASM buffer size:
|
|
464
|
+
📦 WASM buffer size: 40336 bytes (39.39 KB)
|
|
462
465
|
|
|
463
466
|
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mDeploy Counter[2m > [22m[2mDeploy Counter
|
|
464
|
-
[22m[39m💰 Upload transaction fee:
|
|
467
|
+
[22m[39m💰 Upload transaction fee: 20647268 stroops (2.0647268 XLM)
|
|
465
468
|
|
|
466
469
|
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mDeploy Counter[2m > [22m[2mDeploy Counter
|
|
467
|
-
[22m[39m⏰ WASM TTL: live until ledger
|
|
470
|
+
[22m[39m⏰ WASM TTL: live until ledger 121157 (120959 ledgers remaining, ~7.00 days)
|
|
468
471
|
|
|
469
472
|
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mDeploy Counter[2m > [22m[2mDeploy Counter
|
|
470
|
-
[22m[39m✅ WASM uploaded, hash:
|
|
473
|
+
[22m[39m✅ WASM uploaded, hash: 21be5b9ff062d6e92fce084fdb0a3b5b2281f4f79b292eb1e533528e9a394aac
|
|
471
474
|
🚀 Deploying contract...
|
|
472
475
|
|
|
473
476
|
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mDeploy Counter[2m > [22m[2mDeploy Counter
|
|
474
|
-
[22m[39m✅ Contract deployed at:
|
|
477
|
+
[22m[39m✅ Contract deployed at: CA35FZCOFWBKM5MYE5QGQWH3GBKNYYLIOZKYZTXOE3EON6TWKIZBHZYQ
|
|
475
478
|
|
|
476
479
|
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mDeploy Counter[2m > [22m[2mDeploy Counter
|
|
477
|
-
[22m[39m✅ Counter deployed:
|
|
480
|
+
[22m[39m✅ Counter deployed: CA35FZCOFWBKM5MYE5QGQWH3GBKNYYLIOZKYZTXOE3EON6TWKIZBHZYQ
|
|
478
481
|
|
|
479
482
|
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mDeploy Counter[2m > [22m[2mSet Counter Peer
|
|
480
483
|
[22m[39m✅ Counter peer set for EID [33m30400[39m
|
|
@@ -492,7 +495,7 @@ Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHP
|
|
|
492
495
|
[22m[39m📦 Scanning for PacketSent events...
|
|
493
496
|
|
|
494
497
|
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mScan PacketSent Events (Composed ABA)
|
|
495
|
-
[22m[39m🔍 Scanning events from ledger [
|
|
498
|
+
[22m[39m🔍 Scanning events from ledger [33m203[39m
|
|
496
499
|
Waiting for next ledger...
|
|
497
500
|
|
|
498
501
|
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mScan PacketSent Events (Composed ABA)
|
|
@@ -506,7 +509,7 @@ Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHP
|
|
|
506
509
|
|
|
507
510
|
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mExtract Packet Header and Payload Hash (Composed ABA)
|
|
508
511
|
[22m[39m✅ Packet header extracted, length: [33m81[39m
|
|
509
|
-
✅ Payload hash extracted:
|
|
512
|
+
✅ Payload hash extracted: 1ff64438b6c0d350...
|
|
510
513
|
|
|
511
514
|
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mDVN Verifies Message (Composed ABA)
|
|
512
515
|
[22m[39m
|
|
@@ -514,19 +517,19 @@ Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHP
|
|
|
514
517
|
|
|
515
518
|
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mDVN Verifies Message (Composed ABA)
|
|
516
519
|
[22m[39m
|
|
517
|
-
📋 Addresses needing to sign: [ [32m'
|
|
520
|
+
📋 Addresses needing to sign: [ [32m'CDESQGCJI2BSY5ARNOKMD5OS4CSGXKS73KZPTUHTO4GLT7PNPNRQYAME'[39m ]
|
|
518
521
|
|
|
519
522
|
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mDVN Verifies Message (Composed ABA)
|
|
520
523
|
[22m[39m
|
|
521
524
|
🌳 DVN Auth Entry Tree:
|
|
522
|
-
📞
|
|
525
|
+
📞 CBQFR5WLFIVELDHM2IWMWHBOKC6NO7L7UTGFJ6WP2LJOBUJMKCZK4OB6...verify()
|
|
523
526
|
|
|
524
|
-
📝 Signature payload (soroban auth hash):
|
|
525
|
-
✍️ Admin Ed25519 signature created:
|
|
526
|
-
📝 Call hash for multisig:
|
|
527
|
+
📝 Signature payload (soroban auth hash): 5c107b81be82fcf4dc520e689c44901c5bf8ccdfee05c0ebffe426ed842606b4
|
|
528
|
+
✍️ Admin Ed25519 signature created: c1e25ef8c05397c748c37c385d83111a...
|
|
529
|
+
📝 Call hash for multisig: f9211a14a72a96208a5c70a50250fc7ec886f1bc1cfdbe9026b7bbc6a6f43947
|
|
527
530
|
|
|
528
531
|
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mDVN Verifies Message (Composed ABA)
|
|
529
|
-
[22m[39m✍️ Multisig signature created:
|
|
532
|
+
[22m[39m✍️ Multisig signature created: 381c38abff0bac28188d70f50212ab37...
|
|
530
533
|
|
|
531
534
|
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mDVN Verifies Message (Composed ABA)
|
|
532
535
|
[22m[39m
|
|
@@ -545,7 +548,7 @@ Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHP
|
|
|
545
548
|
[22m[39m✅ Verification committed to endpoint (Composed ABA)
|
|
546
549
|
|
|
547
550
|
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mExecute native_drop_and_execute (Composed ABA)
|
|
548
|
-
[22m[39m💰 Balance before native drop: [
|
|
551
|
+
[22m[39m💰 Balance before native drop: [33m99102178597n[39m
|
|
549
552
|
|
|
550
553
|
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mExecute native_drop_and_execute (Composed ABA)
|
|
551
554
|
[22m[39m
|
|
@@ -557,12 +560,12 @@ Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHP
|
|
|
557
560
|
Auth entries returned: [33m2[39m
|
|
558
561
|
Processing auth entry for address: GC72DFYB5KMI4IHRX63L3PTJ73XCZD6NM5BLHQOHNNJKNZVIIVMK3RTH
|
|
559
562
|
Auth entry tree:
|
|
560
|
-
📞
|
|
563
|
+
📞 CCGANXSRKYEDVQARDFK4EYFDFLUYFAF5ZMSAC6F6EZSSGSNFBD5WSGQV...native_drop()
|
|
561
564
|
📞 CDMLFMKMMD7MWZP3FKUBZPVHTUEDLSX4BYGYKH4GCESXYHS3IHQ4EIG4...transfer()
|
|
562
565
|
✍️ Signing admin auth entry (regular account)...
|
|
563
|
-
Processing auth entry for address:
|
|
566
|
+
Processing auth entry for address: CCGANXSRKYEDVQARDFK4EYFDFLUYFAF5ZMSAC6F6EZSSGSNFBD5WSGQV
|
|
564
567
|
Auth entry tree:
|
|
565
|
-
📞
|
|
568
|
+
📞 CA35FZCOFWBKM5MYE5QGQWH3GBKNYYLIOZKYZTXOE3EON6TWKIZBHZYQ...lz_receive()
|
|
566
569
|
✍️ Signing executor auth entry (Abstract Account)...
|
|
567
570
|
|
|
568
571
|
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mExecute native_drop_and_execute (Composed ABA)
|
|
@@ -576,13 +579,13 @@ Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHP
|
|
|
576
579
|
[22m[39m✅ Transaction envelope signed
|
|
577
580
|
|
|
578
581
|
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mExecute native_drop_and_execute (Composed ABA)
|
|
579
|
-
[22m[39m✅ Transaction sent, hash:
|
|
582
|
+
[22m[39m✅ Transaction sent, hash: 6d9a1243099bc1fb9c9d8694939c4130589ac11db990cf70e36c77a726f447e9
|
|
580
583
|
|
|
581
584
|
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mExecute native_drop_and_execute (Composed ABA)
|
|
582
585
|
[22m[39m✅ Transaction completed successfully
|
|
583
586
|
|
|
584
587
|
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mExecute native_drop_and_execute (Composed ABA)
|
|
585
|
-
[22m[39m💰 Balance after native drop: [
|
|
588
|
+
[22m[39m💰 Balance after native drop: [33m99103178597n[39m
|
|
586
589
|
✅ Native drop received: [33m1000000n[39m stroops
|
|
587
590
|
|
|
588
591
|
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mExecute native_drop_and_execute (Composed ABA)
|
|
@@ -600,9 +603,9 @@ Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHP
|
|
|
600
603
|
Auth entry tree:
|
|
601
604
|
📞 CDMLFMKMMD7MWZP3FKUBZPVHTUEDLSX4BYGYKH4GCESXYHS3IHQ4EIG4...transfer()
|
|
602
605
|
✍️ Signing admin auth entry (regular account)...
|
|
603
|
-
Processing auth entry for address:
|
|
606
|
+
Processing auth entry for address: CCGANXSRKYEDVQARDFK4EYFDFLUYFAF5ZMSAC6F6EZSSGSNFBD5WSGQV
|
|
604
607
|
Auth entry tree:
|
|
605
|
-
📞
|
|
608
|
+
📞 CA35FZCOFWBKM5MYE5QGQWH3GBKNYYLIOZKYZTXOE3EON6TWKIZBHZYQ...lz_compose()
|
|
606
609
|
📞 CDMLFMKMMD7MWZP3FKUBZPVHTUEDLSX4BYGYKH4GCESXYHS3IHQ4EIG4...transfer()
|
|
607
610
|
✍️ Signing executor auth entry (Abstract Account)...
|
|
608
611
|
|
|
@@ -617,7 +620,7 @@ Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHP
|
|
|
617
620
|
[22m[39m✅ Transaction envelope signed
|
|
618
621
|
|
|
619
622
|
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mExecute lz_compose (Composed ABA)
|
|
620
|
-
[22m[39m✅ Transaction sent, hash:
|
|
623
|
+
[22m[39m✅ Transaction sent, hash: 2cbe238e8a7230d90abb84582df337f8ff4b4116945c9ad388adbe9cfcd063ad
|
|
621
624
|
|
|
622
625
|
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mExecute lz_compose (Composed ABA)
|
|
623
626
|
[22m[39m✅ Transaction completed successfully
|
|
@@ -632,7 +635,7 @@ Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHP
|
|
|
632
635
|
[22m[39m📦 Scanning for PacketSent events...
|
|
633
636
|
|
|
634
637
|
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mScan Return PacketSent Events
|
|
635
|
-
[22m[39m🔍 Scanning events from ledger [
|
|
638
|
+
[22m[39m🔍 Scanning events from ledger [33m213[39m
|
|
636
639
|
Waiting for next ledger...
|
|
637
640
|
|
|
638
641
|
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mScan Return PacketSent Events
|
|
@@ -646,7 +649,7 @@ Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHP
|
|
|
646
649
|
|
|
647
650
|
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mExtract Return Packet Header and Payload Hash
|
|
648
651
|
[22m[39m✅ Return packet header extracted, length: [33m81[39m
|
|
649
|
-
✅ Return payload hash extracted:
|
|
652
|
+
✅ Return payload hash extracted: e7bd1e9bd9d292af...
|
|
650
653
|
|
|
651
654
|
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mDVN Verifies Return Message
|
|
652
655
|
[22m[39m
|
|
@@ -654,19 +657,19 @@ Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHP
|
|
|
654
657
|
|
|
655
658
|
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mDVN Verifies Return Message
|
|
656
659
|
[22m[39m
|
|
657
|
-
📋 Addresses needing to sign: [ [32m'
|
|
660
|
+
📋 Addresses needing to sign: [ [32m'CDESQGCJI2BSY5ARNOKMD5OS4CSGXKS73KZPTUHTO4GLT7PNPNRQYAME'[39m ]
|
|
658
661
|
|
|
659
662
|
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mDVN Verifies Return Message
|
|
660
663
|
[22m[39m
|
|
661
664
|
🌳 DVN Auth Entry Tree:
|
|
662
|
-
📞
|
|
665
|
+
📞 CBQFR5WLFIVELDHM2IWMWHBOKC6NO7L7UTGFJ6WP2LJOBUJMKCZK4OB6...verify()
|
|
663
666
|
|
|
664
|
-
📝 Signature payload (soroban auth hash):
|
|
665
|
-
✍️ Admin Ed25519 signature created:
|
|
666
|
-
📝 Call hash for multisig:
|
|
667
|
+
📝 Signature payload (soroban auth hash): a5ab146cb6e1d3492bbd2f9a875d09d3379a2304d3aaa59a4b349d85295a6130
|
|
668
|
+
✍️ Admin Ed25519 signature created: 11dfdfdd387bb20acca000b1014ceb3b...
|
|
669
|
+
📝 Call hash for multisig: 8582b74772b17446c8d5aa0bce6a8214114edae0111fdbe498bd0d8ac9827478
|
|
667
670
|
|
|
668
671
|
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mDVN Verifies Return Message
|
|
669
|
-
[22m[39m✍️ Multisig signature created:
|
|
672
|
+
[22m[39m✍️ Multisig signature created: 291e4edb30a337d2d4831a73faadd962...
|
|
670
673
|
|
|
671
674
|
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mDVN Verifies Return Message
|
|
672
675
|
[22m[39m
|
|
@@ -692,9 +695,9 @@ Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHP
|
|
|
692
695
|
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mReceive Return Message (lz_receive)
|
|
693
696
|
[22m[39m✅ Simulation complete
|
|
694
697
|
Auth entries returned: [33m1[39m
|
|
695
|
-
Processing auth entry for address:
|
|
698
|
+
Processing auth entry for address: CCGANXSRKYEDVQARDFK4EYFDFLUYFAF5ZMSAC6F6EZSSGSNFBD5WSGQV
|
|
696
699
|
Auth entry tree:
|
|
697
|
-
📞
|
|
700
|
+
📞 CA35FZCOFWBKM5MYE5QGQWH3GBKNYYLIOZKYZTXOE3EON6TWKIZBHZYQ...lz_receive()
|
|
698
701
|
✍️ Signing executor auth entry (Abstract Account)...
|
|
699
702
|
|
|
700
703
|
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mReceive Return Message (lz_receive)
|
|
@@ -708,7 +711,7 @@ Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHP
|
|
|
708
711
|
[22m[39m✅ Transaction envelope signed
|
|
709
712
|
|
|
710
713
|
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mReceive Return Message (lz_receive)
|
|
711
|
-
[22m[39m✅ Transaction sent, hash:
|
|
714
|
+
[22m[39m✅ Transaction sent, hash: 1a211927fdfe30e47298f2e020bfba55cafa6f25bf455adbff31f70e20917d7c
|
|
712
715
|
|
|
713
716
|
[90mstdout[2m | test/counter-uln.test.ts[2m > [22m[2mCounter with ULN302 testing[2m > [22m[2mCounter Increment with Composed ABA and Native Drop[2m > [22m[2mReceive Return Message (lz_receive)
|
|
714
717
|
[22m[39m✅ Transaction completed successfully
|
|
@@ -723,47 +726,47 @@ Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHP
|
|
|
723
726
|
Workflow: Send ComposedABA → DVN Verify → Commit → native_drop_and_execute
|
|
724
727
|
→ lz_compose (sends return) → DVN Verify → Commit → lz_receive
|
|
725
728
|
|
|
726
|
-
[32m✓[39m test/counter-uln.test.ts [2m([22m[2m14 tests[22m[2m)[22m[33m
|
|
727
|
-
[33m[2m✓[22m[39m Counter with ULN302 testing[2m > [22mDeploy Counter[2m > [22mDeploy Counter [33m
|
|
728
|
-
[33m[2m✓[22m[39m Counter with ULN302 testing[2m > [22mDeploy Counter[2m > [22mSet Counter Peer [33m
|
|
729
|
-
[33m[2m✓[22m[39m Counter with ULN302 testing[2m > [22mCounter Increment with Composed ABA and Native Drop[2m > [22mCounter Increment (Composed ABA with Native Drop) [33m
|
|
730
|
-
[33m[2m✓[22m[39m Counter with ULN302 testing[2m > [22mCounter Increment with Composed ABA and Native Drop[2m > [22mScan PacketSent Events (Composed ABA) [33m
|
|
731
|
-
[33m[2m✓[22m[39m Counter with ULN302 testing[2m > [22mCounter Increment with Composed ABA and Native Drop[2m > [22mDVN Verifies Message (Composed ABA) [33m
|
|
732
|
-
[33m[2m✓[22m[39m Counter with ULN302 testing[2m > [22mCounter Increment with Composed ABA and Native Drop[2m > [22mCommit Verification (Composed ABA) [33m
|
|
733
|
-
[33m[2m✓[22m[39m Counter with ULN302 testing[2m > [22mCounter Increment with Composed ABA and Native Drop[2m > [22mExecute native_drop_and_execute (Composed ABA) [33m
|
|
734
|
-
[33m[2m✓[22m[39m Counter with ULN302 testing[2m > [22mCounter Increment with Composed ABA and Native Drop[2m > [22mExecute lz_compose (Composed ABA) [33m
|
|
735
|
-
[33m[2m✓[22m[39m Counter with ULN302 testing[2m > [22mCounter Increment with Composed ABA and Native Drop[2m > [22mScan Return PacketSent Events [33m
|
|
736
|
-
[33m[2m✓[22m[39m Counter with ULN302 testing[2m > [22mCounter Increment with Composed ABA and Native Drop[2m > [22mDVN Verifies Return Message [33m
|
|
737
|
-
[33m[2m✓[22m[39m Counter with ULN302 testing[2m > [22mCounter Increment with Composed ABA and Native Drop[2m > [22mCommit Verification (Return Message) [33m
|
|
738
|
-
[33m[2m✓[22m[39m Counter with ULN302 testing[2m > [22mCounter Increment with Composed ABA and Native Drop[2m > [22mReceive Return Message (lz_receive) [33m
|
|
729
|
+
[32m✓[39m test/counter-uln.test.ts [2m([22m[2m14 tests[22m[2m)[22m[33m 24100[2mms[22m[39m
|
|
730
|
+
[33m[2m✓[22m[39m Counter with ULN302 testing[2m > [22mDeploy Counter[2m > [22mDeploy Counter [33m 2124[2mms[22m[39m
|
|
731
|
+
[33m[2m✓[22m[39m Counter with ULN302 testing[2m > [22mDeploy Counter[2m > [22mSet Counter Peer [33m 2580[2mms[22m[39m
|
|
732
|
+
[33m[2m✓[22m[39m Counter with ULN302 testing[2m > [22mCounter Increment with Composed ABA and Native Drop[2m > [22mCounter Increment (Composed ABA with Native Drop) [33m 1463[2mms[22m[39m
|
|
733
|
+
[33m[2m✓[22m[39m Counter with ULN302 testing[2m > [22mCounter Increment with Composed ABA and Native Drop[2m > [22mScan PacketSent Events (Composed ABA) [33m 1011[2mms[22m[39m
|
|
734
|
+
[33m[2m✓[22m[39m Counter with ULN302 testing[2m > [22mCounter Increment with Composed ABA and Native Drop[2m > [22mDVN Verifies Message (Composed ABA) [33m 2735[2mms[22m[39m
|
|
735
|
+
[33m[2m✓[22m[39m Counter with ULN302 testing[2m > [22mCounter Increment with Composed ABA and Native Drop[2m > [22mCommit Verification (Composed ABA) [33m 1132[2mms[22m[39m
|
|
736
|
+
[33m[2m✓[22m[39m Counter with ULN302 testing[2m > [22mCounter Increment with Composed ABA and Native Drop[2m > [22mExecute native_drop_and_execute (Composed ABA) [33m 2512[2mms[22m[39m
|
|
737
|
+
[33m[2m✓[22m[39m Counter with ULN302 testing[2m > [22mCounter Increment with Composed ABA and Native Drop[2m > [22mExecute lz_compose (Composed ABA) [33m 2730[2mms[22m[39m
|
|
738
|
+
[33m[2m✓[22m[39m Counter with ULN302 testing[2m > [22mCounter Increment with Composed ABA and Native Drop[2m > [22mScan Return PacketSent Events [33m 1015[2mms[22m[39m
|
|
739
|
+
[33m[2m✓[22m[39m Counter with ULN302 testing[2m > [22mCounter Increment with Composed ABA and Native Drop[2m > [22mDVN Verifies Return Message [33m 2808[2mms[22m[39m
|
|
740
|
+
[33m[2m✓[22m[39m Counter with ULN302 testing[2m > [22mCounter Increment with Composed ABA and Native Drop[2m > [22mCommit Verification (Return Message) [33m 2638[2mms[22m[39m
|
|
741
|
+
[33m[2m✓[22m[39m Counter with ULN302 testing[2m > [22mCounter Increment with Composed ABA and Native Drop[2m > [22mReceive Return Message (lz_receive) [33m 1346[2mms[22m[39m
|
|
739
742
|
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter with SML testing
|
|
740
743
|
[22m[39m
|
|
741
744
|
📋 Protocol addresses injected from globalSetup
|
|
742
|
-
Endpoint:
|
|
743
|
-
SML:
|
|
744
|
-
Executor:
|
|
745
|
-
Executor Helper:
|
|
745
|
+
Endpoint: CCPTRUANJUH2YDEMMNFTRLHNCUAUJVMCQLXE3OYYQQEEKHXBFFXAIO3Z
|
|
746
|
+
SML: CDZVL2G3TTVEHD46VTC6QQQQCEYRY4UUAILIPUZU67H3KKFBEFELJGQJ
|
|
747
|
+
Executor: CCGANXSRKYEDVQARDFK4EYFDFLUYFAF5ZMSAC6F6EZSSGSNFBD5WSGQV
|
|
748
|
+
Executor Helper: CCOFEESMY4XA4JWUMKYAGIKOVONPTXENZXJVBIMWQOQTFQADMGHH7255
|
|
746
749
|
|
|
747
750
|
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter with SML testing[2m > [22m[2mDeploy Counter[2m > [22m[2mDeploy Counter
|
|
748
751
|
[22m[39m📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/counter.wasm
|
|
749
752
|
📤 Uploading WASM...
|
|
750
|
-
📦 WASM buffer size:
|
|
753
|
+
📦 WASM buffer size: 40336 bytes (39.39 KB)
|
|
751
754
|
|
|
752
755
|
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter with SML testing[2m > [22m[2mDeploy Counter[2m > [22m[2mDeploy Counter
|
|
753
|
-
[22m[39m💰 Upload transaction fee:
|
|
756
|
+
[22m[39m💰 Upload transaction fee: 907684 stroops (0.0907684 XLM)
|
|
754
757
|
|
|
755
758
|
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter with SML testing[2m > [22m[2mDeploy Counter[2m > [22m[2mDeploy Counter
|
|
756
|
-
[22m[39m⏰ WASM TTL: live until ledger
|
|
759
|
+
[22m[39m⏰ WASM TTL: live until ledger 518601 (518379 ledgers remaining, ~30.00 days)
|
|
757
760
|
|
|
758
761
|
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter with SML testing[2m > [22m[2mDeploy Counter[2m > [22m[2mDeploy Counter
|
|
759
|
-
[22m[39m✅ WASM uploaded, hash:
|
|
762
|
+
[22m[39m✅ WASM uploaded, hash: 21be5b9ff062d6e92fce084fdb0a3b5b2281f4f79b292eb1e533528e9a394aac
|
|
760
763
|
🚀 Deploying contract...
|
|
761
764
|
|
|
762
765
|
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter with SML testing[2m > [22m[2mDeploy Counter[2m > [22m[2mDeploy Counter
|
|
763
|
-
[22m[39m✅ Contract deployed at:
|
|
766
|
+
[22m[39m✅ Contract deployed at: CBFQU3EDG7L2WNSBFOUHM2VYG3ATB5YW6SYCKFBLEYA65J6IHL5FOKL5
|
|
764
767
|
|
|
765
768
|
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter with SML testing[2m > [22m[2mDeploy Counter[2m > [22m[2mDeploy Counter
|
|
766
|
-
[22m[39m✅ Counter deployed:
|
|
769
|
+
[22m[39m✅ Counter deployed: CBFQU3EDG7L2WNSBFOUHM2VYG3ATB5YW6SYCKFBLEYA65J6IHL5FOKL5
|
|
767
770
|
|
|
768
771
|
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter with SML testing[2m > [22m[2mWire Counter to use SML[2m > [22m[2mSet Counter Send Library to SML
|
|
769
772
|
[22m[39m✅ Counter send library set to SML
|
|
@@ -787,7 +790,7 @@ Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHP
|
|
|
787
790
|
[22m[39m📦 Scanning for PacketSent events...
|
|
788
791
|
|
|
789
792
|
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter with SML testing[2m > [22m[2mCounter ABA Messaging[2m > [22m[2mScan PacketSent Events
|
|
790
|
-
[22m[39m🔍 Scanning events from ledger [
|
|
793
|
+
[22m[39m🔍 Scanning events from ledger [33m230[39m
|
|
791
794
|
|
|
792
795
|
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter with SML testing[2m > [22m[2mCounter ABA Messaging[2m > [22m[2mScan PacketSent Events
|
|
793
796
|
[22m[39m✅ Found 1 events
|
|
@@ -811,16 +814,16 @@ Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHP
|
|
|
811
814
|
Auth entries returned: [33m3[39m
|
|
812
815
|
Processing auth entry for address: GC72DFYB5KMI4IHRX63L3PTJ73XCZD6NM5BLHQOHNNJKNZVIIVMK3RTH
|
|
813
816
|
Auth entry tree:
|
|
814
|
-
📞
|
|
817
|
+
📞 CCGANXSRKYEDVQARDFK4EYFDFLUYFAF5ZMSAC6F6EZSSGSNFBD5WSGQV...native_drop()
|
|
815
818
|
📞 CDMLFMKMMD7MWZP3FKUBZPVHTUEDLSX4BYGYKH4GCESXYHS3IHQ4EIG4...transfer()
|
|
816
819
|
✍️ Signing admin auth entry (regular account)...
|
|
817
820
|
Processing auth entry for address: GC72DFYB5KMI4IHRX63L3PTJ73XCZD6NM5BLHQOHNNJKNZVIIVMK3RTH
|
|
818
821
|
Auth entry tree:
|
|
819
822
|
📞 CDMLFMKMMD7MWZP3FKUBZPVHTUEDLSX4BYGYKH4GCESXYHS3IHQ4EIG4...transfer()
|
|
820
823
|
✍️ Signing admin auth entry (regular account)...
|
|
821
|
-
Processing auth entry for address:
|
|
824
|
+
Processing auth entry for address: CCGANXSRKYEDVQARDFK4EYFDFLUYFAF5ZMSAC6F6EZSSGSNFBD5WSGQV
|
|
822
825
|
Auth entry tree:
|
|
823
|
-
📞
|
|
826
|
+
📞 CBFQU3EDG7L2WNSBFOUHM2VYG3ATB5YW6SYCKFBLEYA65J6IHL5FOKL5...lz_receive()
|
|
824
827
|
📞 CDMLFMKMMD7MWZP3FKUBZPVHTUEDLSX4BYGYKH4GCESXYHS3IHQ4EIG4...transfer()
|
|
825
828
|
✍️ Signing executor auth entry (Abstract Account)...
|
|
826
829
|
|
|
@@ -835,7 +838,7 @@ Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHP
|
|
|
835
838
|
[22m[39m✅ Transaction envelope signed
|
|
836
839
|
|
|
837
840
|
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter with SML testing[2m > [22m[2mCounter ABA Messaging[2m > [22m[2mReceive Counter Message (ABA - triggers response)
|
|
838
|
-
[22m[39m✅ Transaction sent, hash:
|
|
841
|
+
[22m[39m✅ Transaction sent, hash: ccc35351142cc7035796e57494b1ad238d2f539c47fa637cb263c202fcee1f9f
|
|
839
842
|
|
|
840
843
|
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter with SML testing[2m > [22m[2mCounter ABA Messaging[2m > [22m[2mReceive Counter Message (ABA - triggers response)
|
|
841
844
|
[22m[39m✅ Transaction completed successfully
|
|
@@ -847,7 +850,8 @@ Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHP
|
|
|
847
850
|
[22m[39m📦 Scanning for PacketSent events...
|
|
848
851
|
|
|
849
852
|
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter with SML testing[2m > [22m[2mCounter ABA Messaging[2m > [22m[2mScan ABA Response PacketSent Events
|
|
850
|
-
[22m[39m🔍 Scanning events from ledger [
|
|
853
|
+
[22m[39m🔍 Scanning events from ledger [33m235[39m
|
|
854
|
+
Waiting for next ledger...
|
|
851
855
|
|
|
852
856
|
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter with SML testing[2m > [22m[2mCounter ABA Messaging[2m > [22m[2mScan ABA Response PacketSent Events
|
|
853
857
|
[22m[39m✅ Found 2 events
|
|
@@ -873,9 +877,9 @@ Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHP
|
|
|
873
877
|
Auth entry tree:
|
|
874
878
|
📞 CDMLFMKMMD7MWZP3FKUBZPVHTUEDLSX4BYGYKH4GCESXYHS3IHQ4EIG4...transfer()
|
|
875
879
|
✍️ Signing admin auth entry (regular account)...
|
|
876
|
-
Processing auth entry for address:
|
|
880
|
+
Processing auth entry for address: CCGANXSRKYEDVQARDFK4EYFDFLUYFAF5ZMSAC6F6EZSSGSNFBD5WSGQV
|
|
877
881
|
Auth entry tree:
|
|
878
|
-
📞
|
|
882
|
+
📞 CBFQU3EDG7L2WNSBFOUHM2VYG3ATB5YW6SYCKFBLEYA65J6IHL5FOKL5...lz_receive()
|
|
879
883
|
📞 CDMLFMKMMD7MWZP3FKUBZPVHTUEDLSX4BYGYKH4GCESXYHS3IHQ4EIG4...transfer()
|
|
880
884
|
✍️ Signing executor auth entry (Abstract Account)...
|
|
881
885
|
|
|
@@ -890,7 +894,7 @@ Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHP
|
|
|
890
894
|
[22m[39m✅ Transaction envelope signed
|
|
891
895
|
|
|
892
896
|
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter with SML testing[2m > [22m[2mCounter ABA Messaging[2m > [22m[2mReceive ABA Response Message
|
|
893
|
-
[22m[39m✅ Transaction sent, hash:
|
|
897
|
+
[22m[39m✅ Transaction sent, hash: 20e36666f0692e5d8038253d2485fdebb89aa270af89773a5c86694bf8d04e46
|
|
894
898
|
|
|
895
899
|
[90mstdout[2m | test/counter-sml.test.ts[2m > [22m[2mCounter with SML testing[2m > [22m[2mCounter ABA Messaging[2m > [22m[2mReceive ABA Response Message
|
|
896
900
|
[22m[39m✅ Transaction completed successfully
|
|
@@ -902,74 +906,75 @@ Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHP
|
|
|
902
906
|
Request: Counter → Counter (ABA)
|
|
903
907
|
Response: Counter → Counter (Vanilla)
|
|
904
908
|
|
|
905
|
-
[32m✓[39m test/counter-sml.test.ts [2m([22m[2m11 tests[22m[2m)[22m[33m
|
|
906
|
-
[33m[2m✓[22m[39m Counter with SML testing[2m > [22mDeploy Counter[2m > [22mDeploy Counter [33m
|
|
907
|
-
[33m[2m✓[22m[39m Counter with SML testing[2m > [22mWire Counter to use SML[2m > [22mSet Counter Send Library to SML [33m
|
|
908
|
-
[33m[2m✓[22m[39m Counter with SML testing[2m > [22mWire Counter to use SML[2m > [22mSet Counter Receive Library to SML [33m
|
|
909
|
-
[33m[2m✓[22m[39m Counter with SML testing[2m > [22mWire Counter to use SML[2m > [22mSet Counter Peer [33m
|
|
910
|
-
[33m[2m✓[22m[39m Counter with SML testing[2m > [22mCounter ABA Messaging[2m > [22mCounter Increment (ABA) [33m
|
|
911
|
-
[33m[2m✓[22m[39m Counter with SML testing[2m > [22mCounter ABA Messaging[2m > [22mVerify Counter Message [33m
|
|
912
|
-
[33m[2m✓[22m[39m Counter with SML testing[2m > [22mCounter ABA Messaging[2m > [22mReceive Counter Message (ABA - triggers response) [33m
|
|
913
|
-
[33m[2m✓[22m[39m Counter with SML testing[2m > [22mCounter ABA Messaging[2m > [
|
|
914
|
-
[33m[2m✓[22m[39m Counter with SML testing[2m > [22mCounter ABA Messaging[2m > [
|
|
909
|
+
[32m✓[39m test/counter-sml.test.ts [2m([22m[2m11 tests[22m[2m)[22m[33m 20317[2mms[22m[39m
|
|
910
|
+
[33m[2m✓[22m[39m Counter with SML testing[2m > [22mDeploy Counter[2m > [22mDeploy Counter [33m 3720[2mms[22m[39m
|
|
911
|
+
[33m[2m✓[22m[39m Counter with SML testing[2m > [22mWire Counter to use SML[2m > [22mSet Counter Send Library to SML [33m 1134[2mms[22m[39m
|
|
912
|
+
[33m[2m✓[22m[39m Counter with SML testing[2m > [22mWire Counter to use SML[2m > [22mSet Counter Receive Library to SML [33m 1143[2mms[22m[39m
|
|
913
|
+
[33m[2m✓[22m[39m Counter with SML testing[2m > [22mWire Counter to use SML[2m > [22mSet Counter Peer [33m 1117[2mms[22m[39m
|
|
914
|
+
[33m[2m✓[22m[39m Counter with SML testing[2m > [22mCounter ABA Messaging[2m > [22mCounter Increment (ABA) [33m 2926[2mms[22m[39m
|
|
915
|
+
[33m[2m✓[22m[39m Counter with SML testing[2m > [22mCounter ABA Messaging[2m > [22mVerify Counter Message [33m 2624[2mms[22m[39m
|
|
916
|
+
[33m[2m✓[22m[39m Counter with SML testing[2m > [22mCounter ABA Messaging[2m > [22mReceive Counter Message (ABA - triggers response) [33m 1573[2mms[22m[39m
|
|
917
|
+
[33m[2m✓[22m[39m Counter with SML testing[2m > [22mCounter ABA Messaging[2m > [22mScan ABA Response PacketSent Events [33m 1020[2mms[22m[39m
|
|
918
|
+
[33m[2m✓[22m[39m Counter with SML testing[2m > [22mCounter ABA Messaging[2m > [22mVerify ABA Response Message [33m 2599[2mms[22m[39m
|
|
919
|
+
[33m[2m✓[22m[39m Counter with SML testing[2m > [22mCounter ABA Messaging[2m > [22mReceive ABA Response Message [33m 2442[2mms[22m[39m
|
|
915
920
|
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mContract Deployments[2m > [22m[2mDeploy Upgrader Contract
|
|
916
921
|
[22m[39m📖 Reading WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/target/wasm32v1-none/release/upgrader.wasm
|
|
917
922
|
📤 Uploading WASM...
|
|
918
|
-
📦 WASM buffer size:
|
|
923
|
+
📦 WASM buffer size: 5053 bytes (4.93 KB)
|
|
919
924
|
|
|
920
925
|
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mContract Deployments[2m > [22m[2mDeploy Upgrader Contract
|
|
921
|
-
[22m[39m💰 Upload transaction fee:
|
|
926
|
+
[22m[39m💰 Upload transaction fee: 1867151 stroops (0.1867151 XLM)
|
|
922
927
|
|
|
923
928
|
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mContract Deployments[2m > [22m[2mDeploy Upgrader Contract
|
|
924
|
-
[22m[39m⏰ WASM TTL: live until ledger
|
|
929
|
+
[22m[39m⏰ WASM TTL: live until ledger 121202 (120959 ledgers remaining, ~7.00 days)
|
|
925
930
|
|
|
926
931
|
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mContract Deployments[2m > [22m[2mDeploy Upgrader Contract
|
|
927
|
-
[22m[39m✅ WASM uploaded, hash:
|
|
932
|
+
[22m[39m✅ WASM uploaded, hash: 298d3c3d596be9f28c28c7919c00bfba604b1f7a615b2930ac0e65a9eac84655
|
|
928
933
|
🚀 Deploying contract...
|
|
929
934
|
|
|
930
935
|
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mContract Deployments[2m > [22m[2mDeploy Upgrader Contract
|
|
931
|
-
[22m[39m✅ Contract deployed at:
|
|
936
|
+
[22m[39m✅ Contract deployed at: CCALUAVYJ2Z2RNDSWIMZMR2S4FOBKBL4RB6BAQK7NL7HW42KSYQVJIWZ
|
|
932
937
|
|
|
933
938
|
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mContract Deployments[2m > [22m[2mDeploy Upgrader Contract
|
|
934
|
-
[22m[39m✅ Upgrader deployed at:
|
|
939
|
+
[22m[39m✅ Upgrader deployed at: CCALUAVYJ2Z2RNDSWIMZMR2S4FOBKBL4RB6BAQK7NL7HW42KSYQVJIWZ
|
|
935
940
|
|
|
936
941
|
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mContract Deployments[2m > [22m[2mDeploy Test Upgradeable Contract V1
|
|
937
942
|
[22m[39m📖 Reading Test Contract V1 WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/contracts/upgrader/src/tests/test_data/test_upgradeable_contract1.wasm
|
|
938
|
-
📦 WASM buffer size:
|
|
943
|
+
📦 WASM buffer size: 13683 bytes (13.36 KB)
|
|
939
944
|
|
|
940
945
|
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mContract Deployments[2m > [22m[2mDeploy Test Upgradeable Contract V1
|
|
941
|
-
[22m[39m💰 Upload transaction fee:
|
|
946
|
+
[22m[39m💰 Upload transaction fee: 7768174 stroops (0.7768174 XLM)
|
|
942
947
|
|
|
943
948
|
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mContract Deployments[2m > [22m[2mDeploy Test Upgradeable Contract V1
|
|
944
|
-
[22m[39m⏰ WASM TTL: live until ledger
|
|
949
|
+
[22m[39m⏰ WASM TTL: live until ledger 121206 (120959 ledgers remaining, ~7.00 days)
|
|
945
950
|
|
|
946
951
|
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mContract Deployments[2m > [22m[2mDeploy Test Upgradeable Contract V1
|
|
947
|
-
[22m[39m✅ Test Contract V1 WASM uploaded, hash:
|
|
952
|
+
[22m[39m✅ Test Contract V1 WASM uploaded, hash: 98a1e80e28f1ff1c1ee5b0616b874e41eff1a3f3a63e9de8d9f7e914c1ee8c17
|
|
948
953
|
🚀 Deploying Test Contract V1...
|
|
949
954
|
|
|
950
955
|
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mContract Deployments[2m > [22m[2mDeploy Test Upgradeable Contract V1
|
|
951
|
-
[22m[39m✅ Test Contract V1 deployed at:
|
|
956
|
+
[22m[39m✅ Test Contract V1 deployed at: CC7T4NBA52REBSSETWAAYT4M6XEIJAWDFWZRXU7L6NYGIVAERPFCPCEQ
|
|
952
957
|
|
|
953
958
|
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mContract Deployments[2m > [22m[2mVerify Test Contract V1 Counter
|
|
954
959
|
[22m[39m✅ Test Contract V1 counter value: [33m1[39m
|
|
955
960
|
|
|
956
961
|
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mUpgrade Workflow[2m > [22m[2mUpload Test Contract V2 WASM
|
|
957
962
|
[22m[39m📖 Reading Test Contract V2 WASM file from: /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar/contracts/upgrader/src/tests/test_data/test_upgradeable_contract2.wasm
|
|
958
|
-
📦 WASM buffer size:
|
|
963
|
+
📦 WASM buffer size: 13908 bytes (13.58 KB)
|
|
959
964
|
|
|
960
965
|
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mUpgrade Workflow[2m > [22m[2mUpload Test Contract V2 WASM
|
|
961
|
-
[22m[39m💰 Upload transaction fee:
|
|
966
|
+
[22m[39m💰 Upload transaction fee: 7953801 stroops (0.7953801 XLM)
|
|
962
967
|
|
|
963
968
|
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mUpgrade Workflow[2m > [22m[2mUpload Test Contract V2 WASM
|
|
964
|
-
[22m[39m⏰ WASM TTL: live until ledger
|
|
969
|
+
[22m[39m⏰ WASM TTL: live until ledger 121209 (120959 ledgers remaining, ~7.00 days)
|
|
965
970
|
|
|
966
971
|
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mUpgrade Workflow[2m > [22m[2mUpload Test Contract V2 WASM
|
|
967
|
-
[22m[39m✅ Test Contract V2 WASM uploaded, hash:
|
|
972
|
+
[22m[39m✅ Test Contract V2 WASM uploaded, hash: 7d1325b2b683099974089972a3b52573b5bd090e474c56be1d7759baaa0f227e
|
|
968
973
|
|
|
969
974
|
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mUpgrade Workflow[2m > [22m[2mTest Upgrader Contract Can Be Called
|
|
970
975
|
[22m[39m🔄 Testing upgrader contract call...
|
|
971
|
-
Contract address:
|
|
972
|
-
New WASM hash:
|
|
976
|
+
Contract address: CC7T4NBA52REBSSETWAAYT4M6XEIJAWDFWZRXU7L6NYGIVAERPFCPCEQ
|
|
977
|
+
New WASM hash: 7d1325b2b683099974089972a3b52573b5bd090e474c56be1d7759baaa0f227e
|
|
973
978
|
|
|
974
979
|
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mUpgrade Workflow[2m > [22m[2mTest Upgrader Contract Can Be Called
|
|
975
980
|
[22m[39m✅ Transaction built with generated client
|
|
@@ -987,7 +992,7 @@ Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHP
|
|
|
987
992
|
✅ Transaction envelope signed
|
|
988
993
|
|
|
989
994
|
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mUpgrade Workflow[2m > [22m[2mTest Upgrader Contract Can Be Called
|
|
990
|
-
[22m[39m✅ Transaction sent, hash:
|
|
995
|
+
[22m[39m✅ Transaction sent, hash: eb3d180500470ecc025cdb018bf5417ef87306073008200a3ed917c961361cd3
|
|
991
996
|
|
|
992
997
|
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mUpgrade Workflow[2m > [22m[2mTest Upgrader Contract Can Be Called
|
|
993
998
|
[22m[39m✅ Upgrade transaction completed
|
|
@@ -999,17 +1004,17 @@ Deploying SAC for asset: OFT:GCNUPN4U6ZMFASOUMOFBT54R76Y45INEE724FUQ5BORGKDDYRHP
|
|
|
999
1004
|
[90mstdout[2m | test/upgrader.test.ts[2m > [22m[2mUpgrader Contract Testing[2m > [22m[2mUpgrade Workflow[2m > [22m[2mVerify Test Contract V1 Counter Still Works After Upgrade
|
|
1000
1005
|
[22m[39m✅ Test Contract V2 counter value (from V1): [33m1[39m
|
|
1001
1006
|
|
|
1002
|
-
[32m✓[39m test/upgrader.test.ts [2m([22m[2m7 tests[22m[2m)[22m[33m
|
|
1003
|
-
[33m[2m✓[22m[39m Upgrader Contract Testing[2m > [22mContract Deployments[2m > [22mDeploy Upgrader Contract [33m
|
|
1004
|
-
[33m[2m✓[22m[39m Upgrader Contract Testing[2m > [22mContract Deployments[2m > [22mDeploy Test Upgradeable Contract V1 [33m
|
|
1005
|
-
[33m[2m✓[22m[39m Upgrader Contract Testing[2m > [22mUpgrade Workflow[2m > [22mUpload Test Contract V2 WASM [33m
|
|
1006
|
-
[33m[2m✓[22m[39m Upgrader Contract Testing[2m > [22mUpgrade Workflow[2m > [22mTest Upgrader Contract Can Be Called [33m
|
|
1007
|
+
[32m✓[39m test/upgrader.test.ts [2m([22m[2m7 tests[22m[2m)[22m[33m 11041[2mms[22m[39m
|
|
1008
|
+
[33m[2m✓[22m[39m Upgrader Contract Testing[2m > [22mContract Deployments[2m > [22mDeploy Upgrader Contract [33m 4622[2mms[22m[39m
|
|
1009
|
+
[33m[2m✓[22m[39m Upgrader Contract Testing[2m > [22mContract Deployments[2m > [22mDeploy Test Upgradeable Contract V1 [33m 2132[2mms[22m[39m
|
|
1010
|
+
[33m[2m✓[22m[39m Upgrader Contract Testing[2m > [22mUpgrade Workflow[2m > [22mUpload Test Contract V2 WASM [33m 2087[2mms[22m[39m
|
|
1011
|
+
[33m[2m✓[22m[39m Upgrader Contract Testing[2m > [22mUpgrade Workflow[2m > [22mTest Upgrader Contract Can Be Called [33m 2097[2mms[22m[39m
|
|
1007
1012
|
|
|
1008
1013
|
[2m Test Files [22m [1m[32m4 passed[39m[22m[90m (4)[39m
|
|
1009
1014
|
[2m Tests [22m [1m[32m55 passed[39m[22m[90m (55)[39m
|
|
1010
1015
|
[2mType Errors [22m [2mno errors[22m
|
|
1011
|
-
[2m Start at [22m
|
|
1012
|
-
[2m Duration [22m
|
|
1016
|
+
[2m Start at [22m 21:11:36
|
|
1017
|
+
[2m Duration [22m 278.12s[2m (transform 467ms, setup 0ms, collect 770ms, tests 92.83s, environment 0ms, prepare 81ms)[22m
|
|
1013
1018
|
|
|
1014
1019
|
|
|
1015
1020
|
========================================
|