You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/index.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ The purpose of this documentation is to provide a full explanation of our rust S
15
15
16
16
---
17
17
18
-
If you are interested in ParallelChain Mainnet, join our [Official Telegram Group](https://t.me/parallelchainofficial) or [Discord channel](https://discord.gg/ea2WtnadgE) to reach out to us..
18
+
If you are interested in ParallelChain Mainnet, join our [Official Telegram Group](https://t.me/parallelchainofficial) or [Discord channel](https://discord.gg/ea2WtnadgE) to reach out to us.
19
19
20
20
For sharing the smart contract code, address, or any help with creating smart contracts, please go to [GitHub Discussions](https://github.com/parallelchain-io/parallelchain-sdk/discussions)
Copy file name to clipboardExpand all lines: docs/smart_contract_sdk/build_contract.md
+11-11Lines changed: 11 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -55,9 +55,9 @@ wasm-opt | 109 | WASM utility to load WebAssembly in text format and run Bi
55
55
- The path to the Cargo.toml package of the smart contract code directory.
56
56
- This is a *mandatory* field.
57
57
-`pchain_compile` supports both absolute and relative paths to your smart contract code directory.
58
-
- If "." is passed to the source field the path will be set to the current working. directory.
58
+
- If "." is passed to the source field the path will be set to the current working directory.
59
59
2.**destination**
60
-
- The path where the resulting WASM smart contract with the name <package_name>.wasm will be stored. package_name
60
+
- The path where the resulting WASM smart contract with the name <package_name>.wasm will be stored. `package_name`
61
61
is the name of the package denoted in the manifest file of the source code directory.
62
62
- This is an *optional* field. `pchain_compile` saves the generated wasm file to the **source** path if this flag is not supplied.
63
63
- If **destination** path is relative, `pchain_compile` interprets the corresponding absolute path and displays it with the WASM Binary filename after the build process is complete.
@@ -74,24 +74,24 @@ To run `pchain_compile` after installing prerequisites in the following section.
74
74
For Windows there is no need for this step.
75
75
76
76
2. The format of the command on Linux is shown as follows.
0 commit comments