See Argent Account and Argent Multisig for more details.
See deployed class hashes can be found here for the Argent Account, and here for the Argent Multisig
Other deployment artifacts are located in /deployments/
Find the release notes for all versions in CHANGELOG
We recommend you to install scarb through ASDF. Please refer to these instructions.
Thanks to the .tool-versions file, you don't need to install a specific scarb or starknet foundry version. The correct one will be automatically downloaded and installed.
scarb test
You should have docker installed in your machine then you can start the devnet by running the following command:
scarb run start-devnet
Install all packages:
yarn
Run all integration tests:
scarb run test-ts
Run single integration test file (need to run previous command first):
yarn mocha ./tests/accountEscape.test.ts
You also have access to the linter and a code formatter:
scarb run lint
scarb run format
The fixtures folder contains pre-compiled contracts used for tests (both json and casm).
For compatibility reasons we support legacy interface IDs. But new interface IDs will follow SNIP-5 Tool to calculate interface IDs: https://github.com/ericnordelo/src5-rs
The Webauthn signer is designed to work with multiple possible SHA256 implementations. The Cairo Zero variant is implemented at class hash specified as constant in the signer's source code, which can be reproduced using:
git clone https://github.com/cartridge-gg/cairo-sha256
cd cairo-sha256
git checkout 8d2ae51
git apply ../lib/signers/cairo0-sha256.patch
python3.9 -m venv ./venv
source ./venv/bin/activate
pip install cairo-lang==0.12.1
starknet-compile-deprecated --no_debug_info src/main.cairo > ../tests-integration/fixtures/argent_Sha256Cairo0.contract_class.json
# cleanup and clear whitespace diffs:
deactivate
cd ..
rm -rf cairo-sha256
scarb run format
- Bump version if needed (new deployment in mainnet)
- Set up your .env file with the deployer info and run
scarb run deploy-account
andscarb run deploy-multisig
to declare the accounts - Verify the contracts if possible
- Deploy to as many environments as possible: mainnet, sepolia and integration
- Update the contents of the
deployments
folder with the new addresses - Copy relevant build artifacts from
target/release
todeployments/artifacts
, include abi file. - Tag the commit used for the release (include the same name as in the
deployments
folder for easy tracking) - Create release in GitHub if needed
- Make this checklist better if you learned something during the process