Working through the learning document on figment.io and am wondering what I'm missing. My thought is that the doc here is in need of some updating, but I could be wrong. First, The GitHub repo that we download in this lesson does not have the path /contracts/rust/Cargo.toml
. Second, the repo is also missing a package.json
which causes the initial attempt at yarn build:rs
to fail. Creating a simple package.json
like the following:
{
"name": "my-supercool-package"
}
Gets past the error indicating that the package.json
cannot be found, but fails with the following:
yarn run v1.22.17
error Command "build:rs" not found.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
Is all of this a part of the test or is the doc on figment.io in need of updates?