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

[DO NOT MERGE] Updates token to bit/s where necessary. #266

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion content/basics/glossary.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ A program designed to act independently, capable of executing tasks and making d

Autonomous agents are sometimes also called [intelligent programs]({{< relref "#intelligent-program" >}}).

## Bit

The token uses to perform transactions on the Entropy blockchain. 1 `bit` is equal to 10,000,000,000 `nanoBITS`.

## Consumer key

A synonym for a [device key or deploy key]({{< relref "#device-key" >}}).
Expand All @@ -45,6 +49,10 @@ The set of Entropy validators.

A synonym for an [autonomous agent]({{< relref "#autonomous-agent" >}}).

## Nanobit

The smallest possible value transferable on the Entropy blockchain. 10,000,000,000 `nanoBITS` is equal to 1 `bit`.

## Partition

Also called a _signing subgroup_, a subgroup is a set of threshold signing servers that all hold identical key shares. To sign a message, one member of each subgroup must participate. The Entropy chain assigns new threshold signing servers to a subgroup.
Expand Down Expand Up @@ -115,4 +123,4 @@ A device running both an _Entropy chain node_and a _threshold signing server_.

## Wallet

A program or application that stores and manages a user's tokens. Wallets hold the public and private keys that provide access and control over a user's assets. Since Entropy is built on the Substrate blockchain, most Substrate wallets should be compatible with Entropy.
A program or application that stores and manages a user's `bits`. Wallets hold the public and private keys that provide access and control over a user's assets. Since Entropy is built on the Substrate blockchain, most Substrate wallets should be compatible with Entropy.
2 changes: 1 addition & 1 deletion content/basics/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ Funds for testing are available from the CLI's built-in faucet.

1. Select **Entropy Faucet** from the main menu.

The CLI will request `2` test tokens from the Entropy network and send them to your selected account. This equates to `20,000,000,000` bits, which is enough to perform actions like registering an account, transferring funds, and deploying a program.
The CLI will request `2` test `bits` from the Entropy network and send them to your selected account. This equates to 20,000,000,000 `nanobits`, which is enough to perform actions like registering an account, transferring funds, and deploying a program.

```output
⠧ Funding account…
Expand Down
2 changes: 1 addition & 1 deletion content/guides/get-funds.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ Funds for testing are available from the CLI faucet. You need to have the [Entro
1. Select the account you want to receive test funds.
1. Return to the main TUI menu and select **Entropy Faucet**.

The CLI will request `2` test tokens from the Entropy network and forward them to your selected account. This equates to `20,000,000,000` bits, enough to perform transactions like registering an account and deploying a program.
The CLI will request `2` test `bits` from the Entropy network and forward them to your selected account. This equates to `20,000,000,000` bits, enough to perform transactions like registering an account and deploying a program.
2 changes: 1 addition & 1 deletion content/guides/spin-up-a-devnet.md
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ You must have the latest LTS version of [Rust](https://www.rust-lang.org/tools/i

It's important to regularly reset the network to maintain a clean testing environment, thoroughly document all configuration settings for reproducibility, and simulate various network conditions to ensure robustness.

Developers should strive to mirror the mainnet environment as closely as possible while still maintaining flexibility for rapid iteration. If you plan to share access to the devnet, it's essential to establish a clear protocol for managing and distributing test tokens, implement monitoring and logging systems to track network behaviour, and regularly update the devnet software to match planned mainnet upgrades.
Developers should strive to mirror the mainnet environment as closely as possible while still maintaining flexibility for rapid iteration. If you plan to share access to the devnet, it's essential to establish a clear protocol for managing and distributing test `bits`, implement monitoring and logging systems to track network behaviour, and regularly update the devnet software to match planned mainnet upgrades.

## Troubleshooting

Expand Down
2 changes: 1 addition & 1 deletion content/guides/transfer-funds.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ To transfer funds, you must have the following:

![](./images/transfer-funds-select-to-address.png)

1. Enter the number of tokens you want to send. The minimum number you can send is `10000`.
1. Enter the number of `bits` you want to send.
1. Click **Make Transfer**.
1. Review the details on this confirmation page and click **Sign and Submit**.

Expand Down