Skip to content

Commit

Permalink
add single pool to spl.solana.com
Browse files Browse the repository at this point in the history
  • Loading branch information
2501babe committed Aug 14, 2023
1 parent 1eb45c2 commit 5351547
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 0 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@ the Solana Mainnet Beta. Currently, this includes:
| [name-service](https://github.com/solana-labs/solana-program-library/tree/master/name-service/program) | Not audited | [0.3.0](https://github.com/solana-labs/solana-program-library/releases/tag/name-service-v0.3.0) |
| [memo](https://github.com/solana-labs/solana-program-library/tree/master/memo/program) | Not audited | [3.0.0](https://github.com/solana-labs/solana-program-library/releases/tag/memo-v3.0.0) |

In addition, one program is planned for deployment to Solana Mainnet Beta:
| Program | Last Audit Date | Version |
| --- | --- | --- |
| [single-pool](https://github.com/solana-labs/solana-program-library/tree/master/single-pool/program) | 2023-08-08 | n/a |

All other programs may be updated from time to time. These programs are not
audited, so fork and deploy them at your own risk. Here is the full list of
unaudited programs:
Expand Down
1 change: 1 addition & 0 deletions docs/sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ module.exports = {
"stake-pool/cli",
],
},
"single-pool",
"feature-proposal",
{
type: "category",
Expand Down
29 changes: 29 additions & 0 deletions docs/src/single-pool.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
title: Single-Validator Stake Pool
---

Trustless liquid staking for all Solana validators.

## Overview

The single-validator stake pool program is an upcoming SPL program that enables liquid staking with zero fees, no counterparty, and 100% capital efficiency.

The program defines a canonical pool for every vote account, which can be initialized permissionlessly, and mints tokens in exchange for stake delegated to its designated validator.

The program is a stripped-down adaptation of the existing multi-validator stake pool program, with approximately 80% less code, to minimize execution risk.

## Source

The Single Pool Program's source is available on
[GitHub](https://github.com/solana-labs/solana-program-library/tree/master/single-pool/program).

## Security Audits

The Single Pool Program has received two audits to ensure total safety of funds:

* Neodyme (2023-08-08)
- Review commit hash [`735d729`](https://github.com/solana-labs/solana-program-library/commit/735d7292e35d35101750a4452d2647bdbf848e8b)
- Final report https://github.com/solana-labs/security-audits/blob/master/spl/NeodymeSinglePoolAudit-2023-08-08.pdf
* Zellic (2023-06-21)
- Review commit hash [`9dbdc3b`](https://github.com/solana-labs/solana-program-library/commit/9dbdc3bdae31dda1dcb35346aab2d879deecf194)
- Final report https://github.com/solana-labs/security-audits/blob/master/spl/ZellicSinglePoolAudit-2023-06-21.pdf

0 comments on commit 5351547

Please sign in to comment.