Skip to content

Commit

Permalink
fix: typos (#264)
Browse files Browse the repository at this point in the history
  • Loading branch information
omahs authored Jul 10, 2024
1 parent 07fd696 commit 5db2a42
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

# Akash Console

**Akash Console** is an app that let's you deploy any [docker container](https://www.docker.com/) on the [Akash Network](https://akash.network) in a few clicks... 🛠
**Akash Console** is an app that lets you deploy any [docker container](https://www.docker.com/) on the [Akash Network](https://akash.network) in a few clicks... 🛠

![version](https://img.shields.io/github/stars/akash-network/console)
![license](https://img.shields.io/github/license/akash-network/console)
Expand Down Expand Up @@ -47,7 +47,7 @@ Every services are nodejs applications written in typescript. They are deployed

## Deploy Website

Website to deploy on Akash. It is using the Next.js framework. The data shown in the website comes from a combination of our [API](#api) and akash nodes (REST).
Website to deploy on Akash. It is using the Next.js framework. The data shown on the website comes from a combination of our [API](#api) and akash nodes (REST).

Url: [console.akash.network](https://console.akash.network)
Directory: [deploy-web](/deploy-web/)
Expand All @@ -62,14 +62,14 @@ Directory: [provider-proxy](/provider-proxy/)

## API

Provides data to the deploy website. The data is fetched from our Indexer database + coingecko for market data. This api also provide the endpoint for the [Web3 Index](https://web3index.org/) integration.
Provides data to the deploy website. The data is fetched from our Indexer database + coingecko for market data. This api also provides the endpoint for the [Web3 Index](https://web3index.org/) integration.

Url: [api.cloudmos.io](https://api.cloudmos.io)
Directory: [api](/api/)

## Indexer

Fetch the latest blocks from RPC nodes. Saves the blocks & stats to our Indexer Database. For details on how the indexer work see the [Indexer README](./indexer/README.md)
Fetch the latest blocks from RPC nodes. Saves the blocks & stats to our Indexer Database. For details on how the indexer works see the [Indexer README](./indexer/README.md)

Directory: [indexer](/indexer/)

Expand Down Expand Up @@ -171,7 +171,7 @@ The database schemas is defined using [sequelize-typescript](https://github.com/
|proposer|varchar
|dayId|uuid|See [Day](#day)
|txCount|integer
|isProcessed|boolean|`false` when inserted into the database and then set to `true` once the indexers have processed every messages in the block.
|isProcessed|boolean|`false` when inserted into the database and then set to `true` once the indexers have processed every message in the block.
|totalTxCount|bigint| Global tx count as of this height (for historical tx count graphs).
|totalUAktSpent|double|Cummulative uakt spent on deployments as of this block. ||[Graph](https://stats.akash.network/graph/total-akt-spent)
|activeLeaseCount|integer|Currently active lease count as of this block. [Graph](https://stats.akash.network/graph/active-deployment)
Expand All @@ -195,7 +195,7 @@ The database schemas is defined using [sequelize-typescript](https://github.com/
|gasWanted|integer
|fee|bigint
|memo|text
|isProcessed|boolean|`false` when inserted into the database and then set to `true` once the indexers have processed every messages in the transaction.
|isProcessed|boolean|`false` when inserted into the database and then set to `true` once the indexers have processed every message in the transaction.
|hasProcessingError|boolean|Indicates if the tx was a success or failed
|log|text|Contains the error message if the tx failed

Expand Down Expand Up @@ -272,7 +272,7 @@ Created for each days (UTC based), simplifies querying for daily stats.
|createdHeight|integer|Height of the `MsgCreateDeployment` message
|balance|double|Remaining balance based on deposits and `MsgWithdrawLease`
|deposit|bigint|Deposited amount based on `MsgCreateDeployment` and `MsgDepositDeployment`
|lastWithdrawHeight|integer|Last height where an account settlement occured. This happens on create, withdraw and close.
|lastWithdrawHeight|integer|Last height where an account settlement occurred. This happens on create, withdraw and close.
|withdrawnAmount|double|Withdrawn amount as of now. Updated on account settlement (create,withdraw,close).
|closedHeight|integer|Height the deployment got closed on-chain. Can happen from `MsgCloseDeployment` or as a side-effect of having no active leases remaining.

Expand Down Expand Up @@ -313,7 +313,7 @@ Created for each days (UTC based), simplifies querying for daily stats.
|providerAddress|varchar
|createdHeight|integer|Height of the lease creation. Happens when a bid is accepted with `MsgCreateLease`.
|closedHeight|integer|Height at which the lease is closed on-chain. Happens from `MsgCloseLease`, `MsgCloseHeight` or if the deployment become overdrawn during an account settlement.
|predictedClosedHeight|bigint|Height at which the lease should theoritically expire. This is calculated based on the balance and price. It will usually not match the `closedHeight` since leases can be closed early (`MsgCloseLease` & `MsgCloseBid`) or closed late since the closing wont happen until the provider does a `MsgWithdrawLease`
|predictedClosedHeight|bigint|Height at which the lease should theoretically expire. This is calculated based on the balance and price. It will usually not match the `closedHeight` since leases can be closed early (`MsgCloseLease` & `MsgCloseBid`) or closed late since the closing wont happen until the provider does a `MsgWithdrawLease`
|price|double|Lease price as uakt/block
|withdrawnAmount|double|Withdrawn amount as of now for this lease. Updated on account settlement (create,withdraw,close).
|cpuUnits|integer|Thousandth of CPU
Expand Down Expand Up @@ -352,7 +352,7 @@ Created for each days (UTC based), simplifies querying for daily stats.
|failedCheckCount|integer|Amount of consecutive failed checks, `NULL` if currently online.
|lastSuccessfulSnapshotId|uuid|Snapshot ID of the last successful check
|downtimeFirstSnapshotId|uuid|Snapshot ID of the first failed check of the current downtime period. `NULL` if currently online.
|error|text|`NULL` if the latest uptime check was successful, otherwise this wil contain the error message.
|error|text|`NULL` if the latest uptime check was successful, otherwise this will contain the error message.
|deploymentCount|integer
|leaseCount|integer
|activeCPU|bigint|Thousandth of CPU
Expand Down Expand Up @@ -421,7 +421,7 @@ Similar to stats on the [Provider](#provider), but a new row is inserted for eve

## ProviderSnapshotNodes

Keep track of ressources of individual provider nodes obtained through feature discovery.
Keep track of resources of individual provider nodes obtained through feature discovery.

|Column|Type|Note|
|-|-|-
Expand Down

0 comments on commit 5db2a42

Please sign in to comment.