-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add a few modules to the template #20
Conversation
app/GenAuctionValidatorBlueprint.hs
Outdated
auctionParams :: AuctionParams | ||
auctionParams = | ||
AuctionParams | ||
{ apSeller = error "Replace with seller public key" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sellerh phk -> seller public key
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I changed it to "public key hash".
@@ -6,9 +6,9 @@ The `main` function in `Main.hs` does two things: | |||
* Serialise the instantiated validator and write it to a file | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@zliu41 This entire file must be revisited as it is now obsolete.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Once IntersectMBO/plutus#6477 is merged, I'll remove most content of this file, and point to the docusaurus site instead.
app/GenAuctionValidatorBlueprint.hs
Outdated
auctionParams :: AuctionParams | ||
auctionParams = | ||
AuctionParams | ||
{ apSeller = error "Replace with seller public key" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I changed it to "public key hash".
@@ -6,9 +6,9 @@ The `main` function in `Main.hs` does two things: | |||
* Serialise the instantiated validator and write it to a file | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Once IntersectMBO/plutus#6477 is merged, I'll remove most content of this file, and point to the docusaurus site instead.
-- Bump this if you need newer packages from CHaP | ||
, cardano-haskell-packages 2024-09-12T00:00:00Z |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@zeme-wana I wasn't sure whether or not these timestamps were automatically set, but it didn't work for me. It led to
Error: [Cabal-7159]
Latest known index-state for 'cardano-haskell-packages' (...) is older than the requested index-state (...).
Hence the update.
Added
AuctionMintingPolicy.hs
,GenAuctionValidatorBlueprint.hs
andapp/GenMintingPolicyBlueprint.hs
, to make it compatible with IntersectMBO/plutus#6477.