From 0532a661e7846392b0cf91c1ed6ff8977d47a447 Mon Sep 17 00:00:00 2001 From: Volodymyr Lykhonis Date: Fri, 19 Jan 2024 14:37:01 +0100 Subject: [PATCH] Revert "Readme details" This reverts commit 3068de185e25b48c5f60ce80afe462870c158311. --- README.md | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/README.md b/README.md index 6d3b328..e151244 100644 --- a/README.md +++ b/README.md @@ -33,10 +33,46 @@ | testnet | Points | 0x3582f474F6E9FB087651b135d6224500A89e6f44 | | testnet | Royalties | 0x1c51619209EFE37C759e4a9Ca91F1e68A96E19E3 | +## Development + +Start local node: `./tools/local_network.sh` and verify deployment locally: + +``` +./tools/deploy.sh --libraries --target local +./tools/deploy.sh --script marketplace/Participant.s.sol --target local --broadcast +``` + ## Analyze Run `slither` by `slither . --triage-mode`. +## Deploy + +``` +./tools/deploy.sh --script page/PageName.s.sol --target testnet --broadcast +``` + +## Configure + +``` + ./tools/configure.sh --script page/PageName.s.sol --target testnet --profile --broadcast +``` + +## Export + +``` + ./tools/artifacts.sh --target testnet +``` + +## Publish + +Publishes functon selectors and source code on blockscout + +``` +./tools/submit_selectors.sh --target testnet +./tools/verify.sh --target testnet +``` + ## License See [LGPL-2.1 license](LICENSE)