Created
November 12, 2021 06:39
-
-
Save fcracker79/6c656f3feba5d3bec4a4166e22d012ca to your computer and use it in GitHub Desktop.
Plutus Playground Smart Contract
This file contains hidden or 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
import qualified Data.Text as T | |
import Playground.Contract | |
import Plutus.Contract | |
import PlutusTx.Prelude | |
import qualified Prelude as Haskell | |
-- | A 'Contract' that logs a message. | |
hello :: Contract () EmptySchema T.Text () | |
hello = logInfo @Haskell.String "Hello, world" | |
endpoints :: Contract () EmptySchema T.Text () | |
endpoints = hello | |
-- 'mkSchemaDefinitions' doesn't work with 'EmptySchema' | |
-- (that is, with 0 endpoints) so we define a | |
-- dummy schema type with 1 endpoint to make it compile. | |
-- TODO: Repair 'mkSchemaDefinitions' | |
type DummySchema = Endpoint "dummy" () | |
mkSchemaDefinitions ''DummySchema | |
$(mkKnownCurrencies []) |
This file contains hidden or 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
[0,[{"simulationWallets":[{"simulatorWalletWallet":{"getWallet":1},"simulatorWalletBalance":{"getValue":[[{"unCurrencySymbol":""},[[{"unTokenName":""},100000000]]]]}},{"simulatorWalletWallet":{"getWallet":2},"simulatorWalletBalance":{"getValue":[[{"unCurrencySymbol":""},[[{"unTokenName":""},100000000]]]]}}],"simulationName":"Simulation 1","simulationId":1,"simulationActions":[]}]] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment