- Download preview binaries with suffix
_testnet
- Activation height set to
142000
- Run pegnet as usual using configs provided below 3.1 the only differences, network type and path to db 3.2 data stored into separate file, so your mainnet will be safe
- Acquire test assets from https://faucet.pegnet.info
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
DEBU[2390] sent tag evt=tag | |
WARN[2390] unrecognized message cmd=0 evt="??" func="MiningClient.Listen()" | |
WARN[2390] unrecognized message evt="??" fields.msg="{0 <nil> }" func="MiningClient.Listen()" |
# | Name | URL | State | ANO | Application | Comment |
---|---|---|---|---|---|---|
1 | PegNet | https://pegnet.org | Prod | Community | DeFi, pegged assets | |
2 | OffBlocks | https://off-blocks.com/ | Prod | Federate This | Digital signatures | |
3 | Triall | https://triall.io | Prod | Sphereon | Clinical trials | https://insights.triall.io/triall-partners-with-dizer-capital/ https://insights.triall.io/why-triall-chooses-to-build-on-the-factom-protocol/ |
4 | US DOD | WIP | Factom, Inc | SPA, analysis services | https://www.spa.com/ | |
5 | US DOE | WIP | TFA | energy grid monitoring | https://www.blockchain-council.org/blockchain/u-s-department-of-energy-grants-200000-to-factom/ | |
6 | Tenderoom | https://tenderoom.com | WIP | Kompendium | Procurement services tracking |
# | Language | Developer | State | Repository | Version | License | Coverage |
---|---|---|---|---|---|---|---|
1 | Go | Factom, Inc | Ref | ||||
2 | Java | BIF | Prod | factom-java | 0.2.1 | Unknown | |
3 | C# | Factoid Authority | Prod | FactomSharp | Unknown | ||
4 | Php | Kompendium | Prod |  on keybase.
- I have a public key ASDv1gwKwMTbHYpBdYFj2TXDdxUEKqQkKk1LP43cdiJ5vwo
To claim this, I am signing this object:
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
-- Make use of freer-effects, https://hackage.haskell.org/package/freer-effects | |
-- | |
{-# LANGUAGE OverloadedStrings #-} | |
{-# LANGUAGE DeriveGeneric #-} | |
{-# LANGUAGE DataKinds #-} | |
{-# LANGUAGE TypeOperators #-} | |
import Control.Monad.Freer as FF | |
import Control.Monad.Freer.Exception as FF | |
import Control.Monad.Freer.Reader as FF |
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
(defroutes app-routes | |
;; Customers | |
(context "/customer" [] | |
(GET "/list" [] (-> get-customers | |
(restrict {:handler {:and [authenticated-user | |
(user-can "manage-customers")]} | |
:on-error unauthorized-handler}))) | |
(POST "/customer" [] create-customer) | |
(context "/:id" [id] | |
(restrict |
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
(defroutes app-routes | |
;; Customers | |
(context "/customer" [] | |
(GET "/list" [] (-> get-customers | |
(restrict {:handler {:and [authenticated-user | |
(user-can "manage-customers")]} | |
:on-error unauthorized-handler}))) | |
(POST "/customer" [] create-customer) | |
(context "/:id" [id] | |
(restrict |
NewerOlder