Skip to content

Commit 29296dc

Browse files
committed
chore(examples): rename hello world to logger
1 parent 0daaf7d commit 29296dc

4 files changed

Lines changed: 9 additions & 8 deletions

File tree

.github/workflows/ci-javascript.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ jobs:
156156
run: |
157157
cd examples
158158
yarn
159-
yarn run:hello-world
159+
yarn run:logger
160160
yarn run:fs
161161
yarn run:http
162162
yarn run:ipfs

examples/README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,6 @@
22

33
Before running any example you must run `yarn` in the `examples` folder
44

5-
## Hello World
6-
7-
Invokes the logger wrap, which interacts with the logger plugin. It shows a console.log message from WASM world
8-
```
9-
$ yarn run:hello-world
10-
```
115
## File System
126

137
Invokes the File System plugin; which creates, reads and deletes a file
@@ -36,6 +30,13 @@ And now you can run the example:
3630
$ yarn run:ipfs
3731
```
3832

33+
## Logger
34+
35+
Invokes the logger wrap, which interacts with the logger plugin. It shows a console.log message from WASM world
36+
```
37+
$ yarn run:logger
38+
```
39+
3940
## Ethereum
4041

4142
Invoke the Ethers core & util wraps, and uses the Ethereum Wallet plugin. It gets the balance of the Staking contract and then parses it from Wei to Eth. Also, it executes the sign typed data method

examples/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"scripts": {
66
"run:fs": "ts-node src/filesystem.ts",
77
"run:http": "ts-node src/http.ts",
8-
"run:hello-world": "ts-node src/hello-world.ts",
8+
"run:logger": "ts-node src/logger.ts",
99
"run:ipfs": "ts-node src/ipfs.ts",
1010
"run:ethereum": "ts-node src/ethereum.ts",
1111
"run:ens": "ts-node src/ens.ts"

0 commit comments

Comments
 (0)