Skip to content

Commit 6d740b5

Browse files
committed
fix: typos
Signed-off-by: omahs <73983677+omahs@users.noreply.github.com>
1 parent a60b85b commit 6d740b5

3 files changed

Lines changed: 9 additions & 9 deletions

File tree

src/develop/smart-contracts/everdev.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -371,4 +371,4 @@ Where
371371
3. If you want to explore the GraphQL API more, [here is the documentation](https://docs.evercloud.dev/reference/graphql-api)!
372372
4. If you are an exchange - check out our [exchange guide](https://docs.everos.dev/ever-sdk/add_to_exchange)!
373373

374-
We hope this guide was helpful to you! If you have any difficulties/questions/suggestions/etc. please write to out [telegram channel](https://t.me/ever_sdk).
374+
We hope this guide was helpful to you! If you have any difficulties/questions/suggestions/etc. please write to our [telegram channel](https://t.me/ever_sdk).

src/develop/smart-contracts/locklift-setup.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ const config: LockliftConfig = {
9494
// path: "/mnt/o/projects/broxus/TON-Solidity-Compiler/build/solc/solc",
9595
// Or specify version of compiler
9696
version: "0.62.0",
97-
// Specify config for extarnal contracts as in exapmple
97+
// Specify config for external contracts as in example
9898
// externalContracts: {
9999
// "node_modules/broxus-ton-tokens-contracts/build": ['TokenRoot', 'TokenWallet']
100100
// }
@@ -174,7 +174,7 @@ npx locklift test -n local
174174
175175
## Invoke Scripts
176176
177-
There is a common practice to keep various scripts within the same environment where the samrt contracts and tests live. Such scripts may perform deployment, configuration, data collection or and smart-contract upgrade routines.
177+
There is a common practice to keep various scripts within the same environment where the smart contracts and tests live. Such scripts may perform deployment, configuration, data collection or and smart-contract upgrade routines.
178178
179179
Let's run the sample deployment script within locklift environment (make sure your local node container is up and running)
180180

src/develop/smart-contracts/tokensale.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ contract Tokensale {
7171
_rate = rate;
7272
_supply = supply;
7373
74-
// fundamental mechanic of dapps working with tip3 - deploy it's own wallet to operate with. check tip3 specs for more info
74+
// fundamental mechanic of dapps working with tip3 - deploy its own wallet to operate with. check tip3 specs for more info
7575
ITokenRoot(distributedTokenRoot).deployWallet {
7676
value: 0.2 ever,
7777
flag: 1,
@@ -157,7 +157,7 @@ That's all. When we deploy the `Tokensale` contract, `deployWallet` will be call
157157
ITokenWallet(_distributedTokenWallet).transfer{ value: 0, flag: 128 }(
158158
purchase,
159159
msg.sender,
160-
0.1 ever, // this parameter allows to deploy wallet for user, if it's not deployed yet. (fee takes from message so will be payed by user)
160+
0.1 ever, // this parameter allows to deploy wallet for user, if it's not deployed yet. (fee takes from message so will be paid by user)
161161
msg.sender,
162162
false,
163163
empty
@@ -177,7 +177,7 @@ The next mechanic is already familiar to you. Tokensale just calls its own deplo
177177
ITokenWallet(_distributedTokenWallet).transfer{ value: 0, flag: 128 }(
178178
purchase,
179179
msg.sender,
180-
0.1 ever, // this parameter allows to deploy wallet for user, if it's not deployed yet. (fee takes from message so will be payed by user)
180+
0.1 ever, // this parameter allows to deploy wallet for user, if it's not deployed yet. (fee takes from message so will be paid by user)
181181
msg.sender,
182182
false,
183183
empty
@@ -220,7 +220,7 @@ contract Tokensale {
220220
_rate = rate;
221221
_supply = supply;
222222
223-
// fundamental mechanic of dapps working with tip3 - deploy it's own wallet to operate with. check tip3 specs for more info
223+
// fundamental mechanic of dapps working with tip3 - deploy its own wallet to operate with. check tip3 specs for more info
224224
ITokenRoot(distributedTokenRoot).deployWallet {
225225
value: 0.2 ever,
226226
flag: 1,
@@ -259,7 +259,7 @@ contract Tokensale {
259259
ITokenWallet(_distributedTokenWallet).transfer{ value: 0, flag: 128 }(
260260
purchase,
261261
msg.sender,
262-
0.1 ever, // this parameter allows to deploy wallet for user, if it's not deployed yet. (fee takes from message so will be payed by user)
262+
0.1 ever, // this parameter allows to deploy wallet for user, if it's not deployed yet. (fee takes from message so will be paid by user)
263263
msg.sender,
264264
false,
265265
empty
@@ -270,4 +270,4 @@ contract Tokensale {
270270
}
271271
```
272272

273-
All you need now is to write some tests with locklift support. There are some simple tests and deploy scripts available in the following [repo](https://github.com/venom-blockchain/guides/tree/master/tokensale-contracts).
273+
All you need now is to write some tests with locklift support. There are some simple tests and deploy scripts available in the following [repo](https://github.com/venom-blockchain/guides/tree/master/tokensale-contracts).

0 commit comments

Comments
 (0)