Open Aladeenb opened 1 week ago
I'm experiencing the same issue
I'm using aptos-framework, rev=main. ive tried a few different runtimes with no luck
I'm on Ubuntu 22.04, same aptos version
Also the same issue. I've tried the aptos-framework with rev=main, rev=aptos-framework-v1.20.0, but no luck.
Desktop:
OS: macOS Sequoia Aptos CLI: v4.2.6
Anyone experiencing this, can you try with Aptos CLI 3.5.1?
Is there any workaround to resolve this without having to downgrade?
Anyone experiencing this, can you try with Aptos CLI 3.5.1?
for Mac brew:
Warning: No available formula with the name "aptos@3.5.1". ==> Searching for similarly named formulae and casks... Error: No formulae or casks found for aptos@3.5.1.
So I managed to deploy by making the following changes:
v3.5.0
(make sure to have Movement CLI setup)Move.toml
by replacing:
[dependencies.AptosFramework]
git = "https://github.com/aptos-labs/aptos-core.git"
rev = "main"
subdir = "aptos-move/framework/aptos-framework"
with:
[dependencies.AptosFramework]
git = "https://github.com/movementlabsxyz/aptos-core.git"
rev = "movement"
subdir = "aptos-move/framework/aptos-framework"
Refactored the configuration directory from .aptos to .movement.
use movement move publish
or movement move create-object-and-publish-package ...
I was able to deploy after following these steps. Just be aware that any feature beyond v3.5.0 won't be available.
Describe the bug Attempts to publish or upgrade a Move package on Porto Testnet result in deserialization failure (
CODE_DESERIALIZATION_ERROR
).To Reproduce
aptos move init
aptos move publish
or deploy via object.Expected behavior The package should deploy successfully, as it does on Aptos devnet/testnet/mainnet.
Desktop (please complete the following information):
macOS Sequoia
v4.2.6
Additional context