Skip to content

Commit 58e5045

Browse files
authored
Create files and populating files other than ecosystem
1 parent 69b9041 commit 58e5045

38 files changed

+589
-1
lines changed

docs/airdrops/socials.md

Whitespace-only changes.

docs/airdrops/token-sale.md

Whitespace-only changes.

docs/chain.md

Whitespace-only changes.

docs/developers/api.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
### API
2+
3+
There are multiple APIs exposed by nodes. These APIs allow for programmatic access to some of the daemons that run on the node.
4+
5+
All of the APIs follow the REST architectural style.
6+
7+
The APIs are as follows:
8+
9+
* [Algod](https://developer.algorand.org/docs/rest-apis/algod/)
10+
* [Indexer](https://developer.algorand.org/docs/rest-apis/indexer/)
11+
* [Kmd](https://developer.algorand.org/docs/rest-apis/kmd/)

docs/developers/cli.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
### Command Line Interface (CLI)
2+
3+
There is a CLI available for interacting with the different daemons on nodes.
4+
5+
The CLIs are as follows:
6+
7+
* [Goal](https://developer.algorand.org/docs/clis/goal/goal/)
8+
* [Kmd](https://developer.algorand.org/docs/clis/kmd/)
9+
* [Algokey](https://developer.algorand.org/docs/clis/algokey/algokey/)
10+
* [Diagcfg](https://developer.algorand.org/docs/clis/diagcfg/diagcfg/)
11+
* [Conduit](https://developer.algorand.org/docs/clis/conduit/conduit/)
12+
* [Indexer](https://developer.algorand.org/docs/clis/indexer/indexer/)
13+
* [Tealdbg](https://developer.algorand.org/docs/clis/tealdbg/tealdbg/)
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
## Interacting With Voi Blockchain
2+
3+
Interacting with the Voi blockchain is always done through a node in the network. A node is a device with sufficient resources running the appropriate software that is connected to the network.
4+
5+
Every node on the Voi blockchain network runs Voi Algod, software built into the node that allows users to interact with the network. There are 3 main ways to interact with the network through a node. There is the Command Line Interface (CLI), a series of APIs and SDKs implemented in a number of languages.
6+
7+
Developers should [run a local instance of a node](node-runners/run-a-participation-node.md) so that they can interact with Voi blockchain.
8+
9+
There are also [public APIs](developers/tools.md) available that expose the API of a node run by a 3rd party.

docs/developers/networks.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
## Networks
2+
3+
Voi blockchain will have two public networks, mainnet & testnet. Right now, there only exists the testnet network.
4+
5+
6+
### Mainnet
7+
8+
Coming soon.
9+
10+
11+
### Testnet
12+
13+
Genesis ID: voitest-v1
14+
15+
Genesis Hash: IXnoWtviVVJW5LGivNFc0Dq14V3kqaXuK2u5OQrdVZo=
16+
17+
18+
### Devnet
19+
20+
It is also possible for developers to spin up their own local network for development purposes before deploying their applications to the Testnet environment and then subsequently the Mainnet environment.

docs/developers/sdk.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
### SDK
2+
3+
In order to simply access the APIs there are a number of SDKs available in different languages.
4+
5+
Currently there is official SDK support for:
6+
7+
* [JavaScript](https://github.com/algorand/js-algorand-sdk)
8+
* [Go](https://github.com/algorand/go-algorand-sdk)
9+
* [Python](https://github.com/algorand/py-algorand-sdk)
10+
* [Java](https://github.com/algorand/java-algorand-sdk)
11+
12+
There are also some community maintained SDKs:
13+
14+
* [.Net](https://github.com/FrankSzendzielarz/dotnet-algorand-sdk)
15+
* [Dart](https://pub.dev/packages/algorand_dart)
16+
* PHP
17+
* [ffsolutions](https://github.com/ffsolutions/php-algorand-sdk)
18+
* [rootsoft](https://github.com/RootSoft/algorand-php)
19+
* [Rust](https://github.com/manuelmauro/algonaut)
20+
* [Swift](https://github.com/Jesulonimi21/Swift-Algorand-Sdk)
21+
* [C](https://github.com/vertices-network/c-vertices-sdk)
22+
* [Unity](https://assetstore.unity.com/packages/decentralization/infrastructure/algorand-sdk-for-unity-247704)

0 commit comments

Comments
 (0)