Skip to content

Commit ced0020

Browse files
Finalize smart-contract feedback
1 parent d7150c9 commit ced0020

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

docs/v3/guidelines/quick-start/developing-smart-contracts/blueprint-sdk-overview.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ To interact with your smart-contract off-chain you need to serialize and desiria
5656

5757
### `/tests`
5858

59-
This directory contains test files for your smart contracts. Testing contracts directly in TON network is not the best option because it requires some amount of time and may lead to losing funds. This testing playground tool allow you to execute multiple smart-contracts and even send messages between them in your **"local network"**. Tests are crucial for ensuring your smart contracts behave as expected before deployment to the network.
59+
This directory contains test files for your smart contracts. Testing contracts directly in TON network is not the best option because deployment requires some amount of time and may lead to losing funds. This testing playground allow you to execute multiple smart-contracts and even send messages between them in your **"local network"**. Tests are crucial for ensuring your smart contracts behave as expected before deployment to the network.
6060

6161
### `/scripts`
6262

docs/v3/guidelines/quick-start/developing-smart-contracts/processing-messages.mdx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -522,6 +522,12 @@ describe('CounterInternal', () => {
522522

523523
```
524524

525+
Don't forget to verify that all examples is correct by running test script:
526+
527+
```bash
528+
npm blueprint test
529+
```
530+
525531
---
526532

527533
## External Messages

0 commit comments

Comments
 (0)