Fix broken stake-pool docs link and make readme's consistent (#805)

This commit is contained in:
Justin Starry 2020-11-06 09:15:27 +08:00 committed by GitHub
parent edc67a2b72
commit 1f810787d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
9 changed files with 27 additions and 7 deletions

View File

@ -5,9 +5,11 @@ module.exports = {
"introduction",
"token",
"token-swap",
"token-lending",
"associated-token-account",
"memo",
"shared-memory",
"stake-pool",
],
},
};

11
docs/src/stake-pool.md Normal file
View File

@ -0,0 +1,11 @@
---
title: Stake-Pool Program
---
A program for pooling together SOL to be staked by an off-chain agent running SoM (Stake-o-Matic).
Each SoM needs at least one pool. Users deposit stakes into the SoM pool
and receives a pool token minus the fee. The SoM redistributes the stakes
across the network and tries to maximize censorship resistance and rewards.
The project is under construction.

View File

@ -0,0 +1,7 @@
---
title: Token-Lending Program
---
A lending protocol for the Token program on the Solana blockchain inspired by Aave.
The project is under construction.

View File

@ -4,4 +4,4 @@ A simple program that validates a string of UTF-8 encoded characters. It can be
used to record a string on-chain, stored in the instruction data of a successful
transaction.
Full documentation is available at https://spl.solana.com
Full documentation is available at https://spl.solana.com/memo

View File

@ -3,4 +3,4 @@
A shared-memory program on the Solana blockchain, usable for for sharing data
between programs or within cross-program invocations.
Full documentation is available at https://spl.solana.com
Full documentation is available at https://spl.solana.com/shared-memory

View File

@ -7,6 +7,6 @@ Each SoM needs at least one pool. Users deposit stakes into the SoM pool
and receives a pool token minus the fee. The SoM redistributes the stakes
across the network and tries to maximize censorship resistance and rewards.
Full documentation is available at https://spl.solana.com
Full documentation is available at https://spl.solana.com/stake-pool
Javascript bindings are available in the `./js` directory.

View File

@ -1,7 +1,7 @@
# Lending program
# Token-lending program
A lending protocol for the Token program on the Solana blockchain inspired by Aave.
Full documentation will be made available at https://spl.solana.com in the future
Full documentation is available at https://spl.solana.com/token-lending
Web3 bindings are available in the `./js` directory.

View File

@ -2,6 +2,6 @@
A Uniswap-like exchange for the Token program on the Solana blockchain.
Full documentation is available at https://spl.solana.com
Full documentation is available at https://spl.solana.com/token-swap
JavaScript binding are available in the `./js` directory.

View File

@ -5,6 +5,6 @@ A token program on the Solana blockchain, usable for fungible and non-fungible t
This program provides an interface and implementation that third parties can
utilize to create and use their tokens.
Full documentation is available at https://spl.solana.com
Full documentation is available at https://spl.solana.com/token
JavaScript binding are available in the `./js` directory.