-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #107 from geniusyield/106-v0.8.0
feat(#106): update to atlas v0.8.0, add section on certificates & governance actions
- Loading branch information
Showing
6 changed files
with
34 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
{ | ||
"blueprint": "Blueprint", | ||
"simple-scripts": "Simple Scripts", | ||
"certificates": "Certificates", | ||
"governance": "Governance Procedures", | ||
"monad-io": "Provide MonadIO instances" | ||
} |
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 @@ | ||
# Certificates | ||
|
||
Atlas has rich support of all possible certificates. [`GeniusYield.Types.TxCert`](https://haddock.atlas-app.io/GeniusYield-Types-TxCert.html) module provide constructors to build them along with useful instructions describing conditions for certificate to be considered valid. Following tests illustrate how one can construct & work with these certificates: | ||
|
||
* Certificates related to registering, updating & unregistering a delegated representative (DRep): [`GeniusYield.Test.Privnet.DRep`](https://github.com/geniusyield/atlas/blob/main/tests-privnet/GeniusYield/Test/Privnet/DRep.hs). | ||
* Certificates pertaining to stake address registration, delegation & deregistration (this also illustrates usage of stake validator): [`GeniusYield.Test.Privnet.Stake`](https://github.com/geniusyield/atlas/blob/main/tests-privnet/GeniusYield/Test/Privnet/Stake.hs). | ||
* Those related to stake pool registration & retirement: [`GeniusYield.Test.Privnet.StakePool`](https://github.com/geniusyield/atlas/blob/main/tests-privnet/GeniusYield/Test/Privnet/StakePool.hs). | ||
* Committee related certificates: [`GeniusYield.Test.Privnet.Committee`](https://github.com/geniusyield/atlas/blob/main/tests-privnet/GeniusYield/Test/Privnet/Committee.hs). |
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,3 @@ | ||
# Governance procedures | ||
|
||
Atlas has support for facilitating proposal & voting procedures. Test [`GeniusYield.Test.Privnet.Gov`](https://github.com/geniusyield/atlas/blob/main/tests-privnet/GeniusYield/Test/Privnet/Gov.hs) illustrates how to make a proposal and then how to vote on it. Governance related types are defined in [`GeniusYield.Types.Governance`](https://haddock.atlas-app.io/GeniusYield-Types-Governance.html) module. |
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