diff --git a/.gitignore b/.gitignore index e3ddced1..c84d52ac 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,9 @@ # Ignore build artifacts from the local tests sub-crate. **/target/ -/artifacts/ +artifacts/* +# But commit the psp22 and wrapped_azero since they don't change. +!/artifacts/psp22* +!/artifacts/wrapped_azero* # Ignore TypeScript contract wrappers. types/ diff --git a/test-contracts/psp22.contract b/artifacts/psp22.contract similarity index 100% rename from test-contracts/psp22.contract rename to artifacts/psp22.contract diff --git a/test-contracts/psp22.json b/artifacts/psp22.json similarity index 100% rename from test-contracts/psp22.json rename to artifacts/psp22.json diff --git a/test-contracts/psp22.wasm b/artifacts/psp22.wasm similarity index 100% rename from test-contracts/psp22.wasm rename to artifacts/psp22.wasm diff --git a/test-contracts/wrapped_azero.contract b/artifacts/wrapped_azero.contract similarity index 100% rename from test-contracts/wrapped_azero.contract rename to artifacts/wrapped_azero.contract diff --git a/test-contracts/wrapped_azero.json b/artifacts/wrapped_azero.json similarity index 100% rename from test-contracts/wrapped_azero.json rename to artifacts/wrapped_azero.json diff --git a/test-contracts/wrapped_azero.wasm b/artifacts/wrapped_azero.wasm similarity index 100% rename from test-contracts/wrapped_azero.wasm rename to artifacts/wrapped_azero.wasm