From 097cbf0ca757967ec57cdec1830029182e619e6b Mon Sep 17 00:00:00 2001 From: Bruno Galvao Date: Tue, 3 Sep 2024 21:38:35 +0000 Subject: [PATCH] GITBOOK-177: No subject --- .../guides/deploying-your-contract-locally.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pop-cli-for-smart-contracts/guides/deploying-your-contract-locally.md b/pop-cli-for-smart-contracts/guides/deploying-your-contract-locally.md index 82eaa35..50befc7 100644 --- a/pop-cli-for-smart-contracts/guides/deploying-your-contract-locally.md +++ b/pop-cli-for-smart-contracts/guides/deploying-your-contract-locally.md @@ -62,6 +62,12 @@ pop up contract --constructor new --args "false" --suri //Alice └ Deployment complete ``` +> Note: The contracts node will be running in the background of your machine. If at anytime you need to kill the proccess you can do the following: +> +> 1. Find the process ID by running the following command: `lsof -i :9944` +> 2. Kill the process by running the `kill` command and passing in the ID of the process: +> * [`kill -9 3537`](#user-content-fn-1)[^1] + Your contract is now deployed! You can check in [PolkadotJs Apps](https://polkadot.js.org/apps/) as well.

recent events

@@ -71,3 +77,5 @@ Your contract is now deployed! You can check in [PolkadotJs Apps](https://polkad * [Polkadot Stack Exchange](https://polkadot.stackexchange.com/) * Create a question and tag it with "[`pop`](https://substrate.stackexchange.com/tags/pop/info)" * Share the StackExchange question in our [Pop Support Telegram channel](https://t.me/pop\_support) + +[^1]: