Skip to content

Commit

Permalink
fix explorer links
Browse files Browse the repository at this point in the history
  • Loading branch information
collinc97 committed Oct 4, 2023
1 parent a2cb461 commit dfa092a
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion documentation/sdk/typescript/00_sdk_overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -668,9 +668,13 @@ A full example of this implementation can be found [here](https://github.com/Ale
The official token of operation of the Aleo Network are Aleo credits. Aleo credits are used to pay all fees for program
execution on the Aleo network.
<!-- markdown-link-check-disable -->
Aleo credits are defined in the [credits.aleo](https://explorer.aleo.org/program/credits.aleo) program. This program is
deployed to the Aleo Network and defines data structures representing Aleo credits and the functions used to manage them.
<!-- markdown-link-check-enable -->
There are two ways to hold Aleo credits.
#### 1 - Private balances via credits.aleo records
Expand Down Expand Up @@ -841,10 +845,14 @@ representing a user.
A straightforward example of a usage of records in a program can be demonstrated by explaining the process of private
value transfers of official Aleo credits on the Aleo network.
<!-- markdown-link-check-disable -->
Aleo credits are the official token in which all on-chain execution and deployment fees are paid. Credits can be public
or private. Private credits are represented by the `credits` record in the [credits.aleo](https://www.aleo.network/programs/credits.aleo)
or private. Private credits are represented by the `credits` record in the [credits.aleo](https://explorer.aleo.org/programs/credits.aleo)
program.
<!-- markdown-link-check-enable -->
```
record credits:
owner as address.private;
Expand Down

0 comments on commit dfa092a

Please sign in to comment.