You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/stellar-contracts/index.mdx
+16-9Lines changed: 16 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,21 +2,28 @@
2
2
title: Stellar Smart Contracts Suite
3
3
---
4
4
5
-
A comprehensive collection of secure, scalable smart contracts and utilities for the Stellar network,
6
-
supporting Fungible, Non-Fungible, and Multi-Token standards.
5
+
Explore our comprehensive suite of secure and scalable smart contract utilities for Stellar Soroban. Our libraries provide robust implementations for fungible and non-fungible tokens, along with powerful tools for access control and contract management.
7
6
8
7
## Tokens
9
-
Explore our implementations for token standards on Stellar Soroban:
10
8
11
-
****[Fungible Tokens](/stellar-contracts/tokens/fungible/fungible)***: Digital assets representing a fixed or dynamic supply of identical units.
12
-
****[Non-Fungible Tokens](/stellar-contracts/tokens/non-fungible/non-fungible)***: Unique digital assets with verifiable ownership.
13
-
****Multi-Token***: Hybrid tokens enabling both fungible and non-fungible token functionalities (work in progress).
9
+
***[Fungible Tokens](/stellar-contracts/tokens/fungible/fungible)**: Digital assets representing a fixed or dynamic supply of identical units.
10
+
***[Non-Fungible Tokens (NFTs)](/stellar-contracts/tokens/non-fungible/non-fungible)**: Unique digital assets with verifiable ownership.
11
+
***Multi-Tokens**: Hybrid tokens enabling both fungible and non-fungible token functionalities (work in progress).
12
+
13
+
## Access Control
14
+
15
+
***[Ownable](/stellar-contracts/access/ownable)**: A simple mechanism with a single account authorized for all privileged actions.
16
+
***[Role-Based Access Control](/stellar-contracts/access/access-control)**: A flexible mechanism with distinct roles for each privileged action.
14
17
15
18
## Utilities
16
-
Discover our utility contracts for Stellar Soroban, applicable to all token standards mentioned above:
****[Upgrades and Migrations](/stellar-contracts/utils/upgradeable)***
20
+
***[Pausable](/stellar-contracts/utils/pausable)**: Pause and unpause contract functions, useful for emergency response.
21
+
***[Upgradeable](/stellar-contracts/utils/upgradeable)**: Manage contract upgrades and data migrations seamlessly.
22
+
***[Cryptography](/stellar-contracts/utils/crypto)**: A set of cryptographic primitives and utilities for Soroban contracts.
23
+
24
+
## Security and Audits
25
+
26
+
Our contracts are built with security as a top priority. You can find our audit reports [here](https://github.com/OpenZeppelin/stellar-contracts/tree/main/audits).
20
27
21
28
## Error Codes
22
29
In Stellar Soroban, each error variant is assigned an integer. To prevent duplication of error codes,
0 commit comments