You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently all the executable tests we have uses the same infrastructure as the toolchain. Things are coupled together which makes it hard to build a standalone app outside of the toolchain. We need a set of tools (scripts, cli etc) for anyone to be able to build move apps. For example look at program-examples repo.
cargo install should install all the required dependencies (toolchain etc)
cargo build should build move apps. compile move to sbf, link against move-stdlib etc.
cargo deploy (or yarn deploy) should deploy program to a validator (either a running validator or specified by user)
cargo test (or yarn test) should invoke the client app on chain
The text was updated successfully, but these errors were encountered:
Currently all the executable tests we have uses the same infrastructure as the toolchain. Things are coupled together which makes it hard to build a standalone app outside of the toolchain. We need a set of tools (scripts, cli etc) for anyone to be able to build move apps. For example look at program-examples repo.
The text was updated successfully, but these errors were encountered: