forked from solana-labs/solana-program-library
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: Clarify audit status of all programs, no S word (solana-labs#4046)
- Loading branch information
Showing
28 changed files
with
210 additions
and
90 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Math | ||
|
||
Library with utilities for on-chain math. | ||
|
||
## Audit | ||
|
||
The repository [README](https://github.com/solana-labs/solana-program-library#audits) | ||
contains information about program audits. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Managed Token | ||
|
||
On-chain program for "managed tokens", SPL tokens that are perpetually frozen, | ||
and must be used through this program, which will thaw the account, perform an | ||
instruction, and re-freeze the account. | ||
|
||
## Audit | ||
|
||
The repository [README](https://github.com/solana-labs/solana-program-library#audits) | ||
contains information about program audits. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Record | ||
|
||
On-chain program for writing arbitrary data to an account, authorized by an | ||
owner of the account. | ||
|
||
## Audit | ||
|
||
The repository [README](https://github.com/solana-labs/solana-program-library#audits) | ||
contains information about program audits. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,27 @@ | ||
# Stateless Offer | ||
|
||
Simple program to make token offers to any bidder that can satisfy | ||
the constraints. | ||
Simple program to make token offers to any bidder that can satisfy | ||
the constraints. | ||
|
||
This program is stateless. It is up to the maker to advertise. It | ||
uses the PDA as a one way hash of the offer that the maker wants | ||
to create. The maker then only needs to approve their token to the | ||
PDA address for the taker to receive the items. The maker doesn't | ||
need to be online to complete the transaction, but needs to advertise | ||
the offer off-chain. | ||
This program is stateless. It is up to the maker to advertise. It | ||
uses the PDA as a one way hash of the offer that the maker wants | ||
to create. The maker then only needs to approve their token to the | ||
PDA address for the taker to receive the items. The maker doesn't | ||
need to be online to complete the transaction, but needs to advertise | ||
the offer off-chain. | ||
|
||
## Maker | ||
1. compute the offer PDA | ||
2. approve the token delegation for the amount to the PDA | ||
3. publish the offer off-chain | ||
## Maker | ||
1. compute the offer PDA | ||
2. approve the token delegation for the amount to the PDA | ||
3. publish the offer off-chain | ||
|
||
## Taker | ||
1. Create the offer TX | ||
2. Submit the TX to the stateless-offer program | ||
## Taker | ||
1. Create the offer TX | ||
2. Submit the TX to the stateless-offer program | ||
|
||
To cancel, the maker simply needs to cancel the delegation. | ||
To cancel, the maker simply needs to cancel the delegation. | ||
|
||
## Audit | ||
|
||
The repository [README](https://github.com/solana-labs/solana-program-library#audits) | ||
contains information about program audits. |
Oops, something went wrong.