- install tx3
- go to https://docs.txpipe.io
- then Tx3 docs
- then installation
- follow tx3up install instructions
- check versions using
tx3up show - (optional) install vscode extension
- go to https://docs.txpipe.io
- project walkthrough
- go to your terminal
Para crear un entorno de trabajao comenzar por Demeter.run
El repositorio git para clonar es Marlowe Starter Kit
Los slides del workshop se encuentran disponibles aqui
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
| { | |
| "$schema": "http://json-schema.org/draft-04/schema#", | |
| "$id": "https://raw.githubusercontent.com/cardano-foundation/CIPs/master/CIP-0057/v1/schemas/script", | |
| "type": "object", | |
| "$defs": { | |
| "uriReferenceString": { | |
| "type": "string", | |
| "format": "uri-reference" | |
| }, | |
| "blueprintInfo": { |
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
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
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
| // First create a runspace | |
| // You really only need to do this once. Each pipeline you create can run in this runspace. | |
| RunspaceConfiguration psConfig = RunspaceConfiguration.Create(); | |
| var psRunspace = RunspaceFactory.CreateRunspace(psConfig); | |
| psRunspace.Open(); | |
| // Now create a pipeline for the current cmdlet invocation | |
| using ( Pipeline psPipeline = psRunspace.CreatePipeline() ) | |
| { | |
| // Define the command to be executed in this pipeline |