Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update index.md (fix typos) #45

Open
wants to merge 16 commits into
base: main
Choose a base branch
from
2 changes: 1 addition & 1 deletion docs/develop/get-started/art-dev-intro/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Artela blockchain defines a new programmable module to work as native extension,

You can maintain the core logic within EVM smart contracts, and implement custom features in Aspects using the gas-efficient and computational powerful WASM runtime, all in a plug-and-play manner.

The initial version of Artela Aspect is built with [Assembly Script](https://www.assemblyscript.org/)(a sub set of TypeScript, strictly typed).
The initial version of Artela Aspect is built with [Assembly Script](https://www.assemblyscript.org/) (a sub set of TypeScript, strictly typed).

<!-- The name “Aspect” is inspired by Aspect-oriented Programming. Aspect can tap into the complete API set of the base layer, and inject extended logic into specific join points during a transaction's lifecycle. -->

Expand Down
4 changes: 2 additions & 2 deletions docs/develop/reference/aspect-lib/overview/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ sidebar_position: 2

## Introduction

A [AssemblyScript](https://assemblyscript.bootcss.com/) library for writing aspect to be deployed to
ArtelaThe `aspect-libs` provides Host APIs to interact with the Aspect
An [AssemblyScript](https://assemblyscript.bootcss.com/) library for writing aspect to be deployed to
Artela. The `aspect-libs` provides Host APIs to interact with the Aspect
runtime, with this set of APIs, you can access blockchain data, smart
contracts, cryptographic functions, invoking system calls and more.

Expand Down
2 changes: 1 addition & 1 deletion docs/develop/reference/aspect-tool/create-account/index.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Create a Account
# Create an Account

This command can quickly create a new account in the project, and you will use it in other commands which need to sign
transactions, and you also can use it in your test scripts.
Expand Down
4 changes: 2 additions & 2 deletions docs/develop/reference/aspect-tool/init/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ aspect-tool init

The command automatically creates the recommended directory structure and configuration files:

* `./aspect` Directory used to store the aspect you wrote. this sources being compiled to WebAssembly, more details to learn [how to write an aspect](/develop/reference/aspect-lib/aspect-structure).
* `./aspect` Directory used to store the aspect you wrote. This sources being compiled to WebAssembly, more details to learn [how to write an aspect](/develop/reference/aspect-lib/aspect-structure).

* `./aspect/index.ts` Default entry file being compiled to WebAssembly to get you started.

Expand Down Expand Up @@ -88,4 +88,4 @@ The command automatically creates the recommended directory structure and config
"yargs": "last Version"
}
}
```
```
4 changes: 2 additions & 2 deletions docs/develop/reference/aspect-tool/operation/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on concepts related to Operation, please refer to:

### 1. Operation call

This Command allows you to query the state of a Aspect Operation Interface or perform read-only operations without creating a new transaction on the blockchain.
This Command allows you to query the state of an Aspect Operation Interface or perform read-only operations without creating a new transaction on the blockchain.

```bash
npm run operation:call -- --skfile {privateKey-path} \
Expand Down Expand Up @@ -48,7 +48,7 @@ operation call result: test

### 2. Operation Send

This Command sending a Operation transaction refers to the process of initiating and broadcasting a transaction on the Ethereum blockchain.
This Command sending an Operation transaction refers to the process of initiating and broadcasting a transaction on the Ethereum blockchain.

```bash
npm run operation:send -- --skfile {privateKey-path} \
Expand Down
2 changes: 1 addition & 1 deletion docs/develop/reference/aspect-tool/overview/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ FLAGS

* [Init project](/develop/reference/aspect-tool/init)
* [Configuration](/develop/reference/aspect-tool/config)
* [Create a account](/develop/reference/aspect-tool/create-account)
* [Create an account](/develop/reference/aspect-tool/create-account)
* [Build contract](/develop/reference/aspect-tool/build-contract)
* [Deploy contract](/develop/reference/aspect-tool/deploy-contract)
* [Build Aspect](/develop/reference/aspect-tool/build-aspect)
Expand Down