Cloning the Repository
git clone https://github.com/artfilabs/artinalsprotocolv1.gitcd artinalsprotocolv1Building and Testing the Modules
Building the Modules
sui move buildLast updated
Assuming you have Git installed, navigate to the directory where you want to store the Artinals codebase and run:
git clone https://github.com/artfilabs/artinalsprotocolv1.gitReplace https://github.com/yourusername/artinals.git with the actual repository URL. After cloning, navigate into the project directory:
cd artinalsprotocolv1You should now see the Move modules and related files in the project structure.
With your prerequisites in place and the repository cloned, you can now build and test the modules.
From within the project directory, run:
sui move buildThis command:
Checks the syntax and semantics of your Move code.
Ensures that all dependencies and modules are valid.
Produces a build artifact if everything is correct.
If successful, you’ll see a confirmation message. If you encounter errors, carefully read the output to identify syntax or dependency issues.
Last updated