Skip to content

Instantly share code, notes, and snippets.

View ProofOfKeags's full-sized avatar
🎤

ProofOfKeags ProofOfKeags

🎤
View GitHub Profile
@ProofOfKeags
ProofOfKeags / keybase.md
Created June 6, 2023 16:25
Keybase Proof

Keybase proof

I hereby claim:

  • I am proofofkeags on github.
  • I am proofofkeags (https://keybase.io/proofofkeags) on keybase.
  • I have a public key ASDgjJL3iIyjdfFrYnwTqO8nZUwvhObQqTP2DXMIhZwTZwo

To claim this, I am signing this object:

@ProofOfKeags
ProofOfKeags / Playground.hs
Created September 22, 2019 14:50
Plutus Playground Smart Contract
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE DerivingStrategies #-}
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
{-# LANGUAGE MultiWayIf #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE NoImplicitPrelude #-}
{-# LANGUAGE TemplateHaskell #-}
-- Otherwise we get a complaint about the 'fromIntegral' call in the generated instance of 'Integral' for 'Ada'
{-# OPTIONS_GHC -Wno-identities #-}
{-# OPTIONS_GHC -fno-omit-interface-pragmas #-}
@ProofOfKeags
ProofOfKeags / Playground.hs
Created September 22, 2019 14:36
Plutus Playground Smart Contract
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE DerivingStrategies #-}
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
{-# LANGUAGE MultiWayIf #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE LambdaCase #-}
{-# LANGUAGE NoImplicitPrelude #-}
{-# LANGUAGE TypeApplications #-}
{-# LANGUAGE TemplateHaskell #-}
-- Otherwise we get a complaint about the 'fromIntegral' call in the generated instance of 'Integral' for 'Ada'