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
cargo contract offers some handy tools for uploading, instantiating and calling a contract after successful compilation. For development and testing purposes, this CLI interface is way more efficient and convenient than using the web UIs all the time. The issue right now is that it only works for ink! contracts which come with an according Cargo.toml metadata manifest. Additionally, it would be nice to have that directly available in solang. To make this work:
Factor the relevant parts from cargo contract into a re-usable crate
Extend the solang CLI to mimic the following subcommands of cargo contract:
upload
instantiate
call
The text was updated successfully, but these errors were encountered:
xermicus
changed the title
Substrate: Integrate cargo contract call extrinsic tooling into solang
Substrate: Integrate cargo contract extrinsic tooling into solang
Nov 8, 2022
cargo contract
offers some handy tools for uploading, instantiating and calling a contract after successful compilation. For development and testing purposes, this CLI interface is way more efficient and convenient than using the web UIs all the time. The issue right now is that it only works forink!
contracts which come with an accordingCargo.toml
metadata manifest. Additionally, it would be nice to have that directly available in solang. To make this work:cargo contract
into a re-usable cratecargo contract
:upload
instantiate
call
The text was updated successfully, but these errors were encountered: