Skip to content
This repository was archived by the owner on Mar 12, 2024. It is now read-only.

Commit e7fe2bc

Browse files
authored
chore: Restructure folders (#24)
1 parent 1869ef7 commit e7fe2bc

File tree

16 files changed

+92
-40
lines changed

16 files changed

+92
-40
lines changed

README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,20 @@ You can read the docs in [Gitbook](https://onbloc.gitbook.io/gnoland-developer-p
4444
- [Initial Setup](docs/environment-setup/initial-setup.md)
4545
- [Build the Local Testnet](docs/environment-setup/build-the-local-testnet.md)
4646
- [Gnoland RPC Endpoints](docs/gnoland-rpc-endpoints.md)
47+
- [tm2-js-client](docs/tm2-js-client/README.md)
48+
- [Getting Started](getting-started.md)
49+
- [Provider](docs/tm2-js-client/provider/README.md)
50+
- [JSON-RPC-Provider](docs/tm2-js-client/provider/json-rpc-provider.md)
51+
- [Provider](docs/tm2-js-client/provider/provider.md)
52+
- [Utility](docs/tm2-js-client/provider/utility.md)
53+
- [WS-Provider](docs/tm2-js-client/provider/ws-provider.md)
54+
- [Signer](docs/tm2-js-client/signer/README.md)
55+
- [Signer](docs/tm2-js-client/signer/signer.md)
56+
- [Key](docs/tm2-js-client/signer/key.md)
57+
- [Ledger](docs/tm2-js-client/signer/ledger.md)
58+
- [Wallet](docs/tm2-js-client/wallet/README.md)
59+
- [Wallet](docs/tm2-js-client/wallet/wallet.md)
60+
- [gno-js-client](docs/gno-js-client/README.md)
4761
- Tutorials
4862
- [Interact with Gnoland](tutorials/interact-with-gnoland.md)
4963
- [Start Writing a Realm](tutorials/start-writing-a-realm.md)

SUMMARY.md

Lines changed: 54 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,54 +1,68 @@
11
# Table of contents
22

3-
- [Gnoland Developer Portal](README.md)
3+
* [Gnoland Developer Portal](README.md)
44

55
## Introduction to Gnoland
66

7-
- [What is Blockchain?](introduction-to-gnoland/what-is-blockchain/README.md)
8-
- [Overview](introduction-to-gnoland/what-is-blockchain/overview.md)
9-
- [Concepts](introduction-to-gnoland/what-is-blockchain/concepts.md)
10-
- [What is Gnoland?](introduction-to-gnoland/what-is-gnoland/README.md)
11-
- [Overview](introduction-to-gnoland/what-is-gnoland/overview.md)
12-
- [Concepts](introduction-to-gnoland/what-is-gnoland/concepts.md)
7+
* [What is Blockchain?](introduction-to-gnoland/what-is-blockchain/README.md)
8+
* [Overview](introduction-to-gnoland/what-is-blockchain/overview.md)
9+
* [Concepts](introduction-to-gnoland/what-is-blockchain/concepts.md)
10+
* [What is Gnoland?](introduction-to-gnoland/what-is-gnoland/README.md)
11+
* [Overview](introduction-to-gnoland/what-is-gnoland/overview.md)
12+
* [Concepts](introduction-to-gnoland/what-is-gnoland/concepts.md)
1313

1414
## Docs
1515

16-
- [Terminology](docs/terminology.md)
17-
- [Standard Libraries](docs/standard-libraries.md)
18-
- [Packages](docs/packages.md)
19-
- [Realms (Smart Contracts)](docs/building-a-realm/README.md)
20-
- [Overview](docs/building-a-realm/overview.md)
21-
- [Write Realms](docs/building-a-realm/writing-realms.md)
22-
- [Test Realms](docs/building-a-realm/testing-realms.md)
23-
- [Deploy and Call Realms](docs/building-a-realm/deploy-and-call-realms.md)
24-
- [Realm Examples](docs/building-a-realm/realm-examples/README.md)
25-
- [hello.gno](docs/building-a-realm/realm-examples/hello.gno.md)
26-
- [types.gno](docs/building-a-realm/realm-examples/types.gno.md)
27-
- [first.gno](docs/building-a-realm/realm-examples/first.gno.md)
28-
- [realm.gno](docs/building-a-realm/realm-examples/realm.gno.md)
29-
- [foo20.gno](docs/building-a-realm/realm-examples/foo.gno.md)
30-
- [foo721.gno](docs/building-a-realm/realm-examples/foo721.gno.md)
31-
- [CLI](docs/cli/README.md)
32-
- [Common Parameters](docs/cli/common-parameters.md)
33-
- [gnokey](docs/cli/gnokey.md)
34-
- [gnoland](docs/cli/gnoland.md)
35-
- [tm2txsync](docs/cli/tm2txsync.md)
36-
- [gno](docs/cli/gno.md)
37-
- [gnofaucet](docs/cli/gnofaucet.md)
38-
- [Environment Setup](docs/environment-setup/README.md)
39-
- [Initial Setup](docs/environment-setup/initial-setup.md)
40-
- [Build the Local Testnet](docs/environment-setup/build-the-local-testnet.md)
41-
- [Gnoland RPC Endpoints](docs/gnoland-rpc-endpoints.md)
16+
* [Terminology](docs/terminology.md)
17+
* [Standard Libraries](docs/standard-libraries.md)
18+
* [Packages](docs/packages.md)
19+
* [Realms (Smart Contracts)](docs/building-a-realm/README.md)
20+
* [Overview](docs/building-a-realm/overview.md)
21+
* [Write Realms](docs/building-a-realm/writing-realms.md)
22+
* [Test Realms](docs/building-a-realm/testing-realms.md)
23+
* [Deploy and Call Realms](docs/building-a-realm/deploy-and-call-realms.md)
24+
* [Realm Examples](docs/building-a-realm/realm-examples/README.md)
25+
* [hello.gno](docs/building-a-realm/realm-examples/hello.gno.md)
26+
* [types.gno](docs/building-a-realm/realm-examples/types.gno.md)
27+
* [first.gno](docs/building-a-realm/realm-examples/first.gno.md)
28+
* [realm.gno](docs/building-a-realm/realm-examples/realm.gno.md)
29+
* [foo20.gno](docs/building-a-realm/realm-examples/foo.gno.md)
30+
* [foo721.gno](docs/building-a-realm/realm-examples/foo721.gno.md)
31+
* [CLI](docs/cli/README.md)
32+
* [Common Parameters](docs/cli/common-parameters.md)
33+
* [gnokey](docs/cli/gnokey.md)
34+
* [gnoland](docs/cli/gnoland.md)
35+
* [tm2txsync](docs/cli/tm2txsync.md)
36+
* [gno](docs/cli/gno.md)
37+
* [gnofaucet](docs/cli/gnofaucet.md)
38+
* [Environment Setup](docs/environment-setup/README.md)
39+
* [Initial Setup](docs/environment-setup/initial-setup.md)
40+
* [Build the Local Testnet](docs/environment-setup/build-the-local-testnet.md)
41+
* [Gnoland RPC Endpoints](docs/gnoland-rpc-endpoints.md)
42+
* [tm2-js-client](docs/tm2-js-client/README.md)
43+
* [Getting Started](getting-started.md)
44+
* [Provider](docs/tm2-js-client/provider/README.md)
45+
* [JSON-RPC-Provider](docs/tm2-js-client/provider/json-rpc-provider.md)
46+
* [Provider](docs/tm2-js-client/provider/provider.md)
47+
* [Utility](docs/tm2-js-client/provider/utility.md)
48+
* [WS-Provider](docs/tm2-js-client/provider/ws-provider.md)
49+
* [Signer](docs/tm2-js-client/signer/README.md)
50+
* [Signer](docs/tm2-js-client/signer/signer.md)
51+
* [Key](docs/tm2-js-client/signer/key.md)
52+
* [Ledger](docs/tm2-js-client/signer/ledger.md)
53+
* [Wallet](docs/tm2-js-client/wallet/README.md)
54+
* [Wallet](docs/tm2-js-client/wallet/wallet.md)
55+
* [gno-js-client](docs/gno-js-client/README.md)
4256

4357
## Tutorials
4458

45-
- [Interact with Gnoland](tutorials/interact-with-gnoland.md)
46-
- [Start Writing a Realm](tutorials/start-writing-a-realm.md)
47-
- [Port a Solidity Contract to a Gnolang Realm](tutorials/port-a-solidity-contract-to-a-gnolang-realm.md)
48-
- [Build a Demo Dapp](tutorials/a-sample-dapp.md)
59+
* [Interact with Gnoland](tutorials/interact-with-gnoland.md)
60+
* [Start Writing a Realm](tutorials/start-writing-a-realm.md)
61+
* [Port a Solidity Contract to a Gnolang Realm](tutorials/port-a-solidity-contract-to-a-gnolang-realm.md)
62+
* [Build a Demo Dapp](tutorials/a-sample-dapp.md)
4963

5064
## Resources
5165

52-
- [Developer Tools](resources/developer-tools/README.md)
53-
- [Wallet Integration](resources/developer-tools/wallet-integration.md)
54-
- [Socials](resources/socials.md)
66+
* [Developer Tools](resources/developer-tools/README.md)
67+
* [Wallet Integration](resources/developer-tools/wallet-integration.md)
68+
* [Socials](resources/socials.md)

docs/gno-js-client/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# To be added

docs/tm2-js-client/README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# tm2-js-client
2+
3+
This section will provide an overview and basic features of tm2-js-client.
4+
5+
* [Getting Started](getting-started.md)
6+
* [Provider](provider/)
7+
* [Signer](signer/)
8+
* [Wallet](wallet/)
9+

docs/tm2-js-client/provider/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Provider
2+
3+
* [json-rpc-provider](json-rpc-provider.md)
4+
* [Provider](provider.md)
5+
* [Utility](utility.md)
6+
* [Ws-provider](ws-provider.md)

0 commit comments

Comments
 (0)