diff --git a/ReadMe.md b/ReadMe.md index 93bdcf7..30a5ca1 100644 --- a/ReadMe.md +++ b/ReadMe.md @@ -7,7 +7,7 @@ Click on the image below to navigate to individual contracts. ## Marlowe -- [Language](https://marlowe-finance.io/) +- [Language](https://marlowe.iohk.io/) - [Software](https://github.com/input-output-hk/marlowe-cardano/) - [Development](https://developers.cardano.org/docs/smart-contracts/marlowe/#resources-for-developing-and-deploying-marlowe-contracts) - [Safety](https://github.com/input-output-hk/marlowe-cardano/blob/main/marlowe/best-practices.md) diff --git a/archives/miscellaneous/raffle/ReadMe.ipynb b/archives/miscellaneous/raffle/ReadMe.ipynb index 4834f0c..419c2ea 100644 --- a/archives/miscellaneous/raffle/ReadMe.ipynb +++ b/archives/miscellaneous/raffle/ReadMe.ipynb @@ -253,7 +253,7 @@ "SPONSOR_NAME=c.marlowe\n", "SPONSOR_SKEY=../keys/$SPONSOR_NAME.skey\n", "SPONSOR_ADDR=$(cat ../keys/$SPONSOR_NAME.testnet.address)\n", - "echo \"$SPONSOR_NAME @ $SPONSOR_ADDR\"" + "echo \"$SPONSOR_NAME \"@\" $SPONSOR_ADDR\"" ] }, { @@ -286,7 +286,7 @@ "ORACLE_NAME=f.beaumont\n", "ORACLE_SKEY=../keys/$ORACLE_NAME.skey\n", "ORACLE_ADDR=$(cat ../keys/$ORACLE_NAME.testnet.address)\n", - "echo \"$ORACLE_NAME @ $ORACLE_ADDR\"" + "echo \"$ORACLE_NAME\" @ \"$ORACLE_ADDR\"" ] }, { @@ -336,11 +336,11 @@ } ], "source": [ - "cardano-wallet key child 1852H/1815H/0H/2/0 < $ROOT_PRV \\\n", + "cardano-wallet key child 1852H/1815H/0H/2/0 < \"$ROOT_PRV\" \\\n", "| cardano-cli key convert-cardano-address-key --shelley-stake-key --signing-key-file /dev/stdin --out-file /dev/stdout \\\n", "| cardano-cli key verification-key --signing-key-file /dev/stdin --verification-key-file /dev/stdout \\\n", "| cardano-cli key non-extended-key --extended-verification-key-file /dev/stdin --verification-key-file ../keys/william-shakespeare.stake.vkey\n", - "STAKE_ADDR=$(cardano-cli stake-address build --testnet-magic $CARDANO_TESTNET_MAGIC --stake-verification-key-file ../keys/william-shakespeare.stake.vkey)\n", + "STAKE_ADDR=`cardano-cli stake-address build --testnet-magic \"$CARDANO_TESTNET_MAGIC\" --stake-verification-key-file ../keys/william-shakespeare.stake.vkey`\n", "echo \"Stake address = $STAKE_ADDR\"" ] }, @@ -513,16 +513,16 @@ } ], "source": [ - "for j in $(seq 1 $NUMBER_OF_PARTICIPANTS)\n", + "for j in `seq 1 $NUMBER_OF_PARTICIPANTS`\n", "do\n", " PARTICIPANT_SKEY[$j]=../keys/scholar-$j.skey\n", " PARTICIPANT_ADDR[$j]=$(\n", - " cardano-wallet key child 1852H/1815H/0H/0/$j < $ROOT_PRV \\\n", - " | cardano-cli key convert-cardano-address-key --shelley-payment-key --signing-key-file /dev/stdin --out-file ${PARTICIPANT_SKEY[$j]}\n", - " cardano-cli key verification-key --signing-key-file ${PARTICIPANT_SKEY[$j]} --verification-key-file /dev/stdout \\\n", - " | cardano-cli address build --testnet-magic $CARDANO_TESTNET_MAGIC --payment-verification-key-file /dev/stdin --stake-verification-key-file ../keys/william-shakespeare.stake.vkey \\\n", + " cardano-wallet key child 1852H/1815H/0H/0/$j < \"$ROOT_PRV\" \\\n", + " | cardano-cli key convert-cardano-address-key --shelley-payment-key --signing-key-file /dev/stdin --out-file \"${PARTICIPANT_SKEY[$j]}\"\n", + " cardano-cli key verification-key --signing-key-file \"${PARTICIPANT_SKEY[$j]}\" --verification-key-file /dev/stdout \\\n", + " | cardano-cli address build --testnet-magic \"$CARDANO_TESTNET_MAGIC\" --payment-verification-key-file /dev/stdin --stake-verification-key-file ../keys/william-shakespeare.stake.vkey \\\n", " )\n", - " echo \"Participant $j = 1852H/1815H/0H/0/$((1 + j)) = ${PARTICIPANT_ADDR[$j]}\"\n", + " echo \"Participant $j\" = 1852H/1815H/0H/0/\"$((1 + j))\" = \"${PARTICIPANT_ADDR[$j]}\"\n", "done" ] }, @@ -561,8 +561,8 @@ } ], "source": [ - "NOW=$(($(date -u +%s) * 1000))\n", - "echo \"NOW = $NOW = $(date -d @$((NOW / 1000)))\"" + "NOW=$((`date -u +%s` * 1000))\n", + "echo \"NOW = $NOW\" = \"`date -d @$((NOW / 1000))`\"" ] }, { @@ -582,8 +582,8 @@ } ], "source": [ - "FUNDING_DEADLINE=$(($(date -u +%s) * SECOND + 1 * HOUR))\n", - "echo \"FUNDING_DEADLINE = $FUNDING_DEADLINE = $(date -d @$((FUNDING_DEADLINE / 1000)))\"" + "FUNDING_DEADLINE=$((`date -u +%s` * SECOND + 1 * HOUR))\n", + "echo \"FUNDING_DEADLINE = $FUNDING_DEADLINE\" = \"`date -d @$((FUNDING_DEADLINE / 1000))`\"" ] }, { @@ -603,8 +603,8 @@ } ], "source": [ - "SELECTION_DEADLINE=$(($(date -u +%s) * SECOND + 2 * HOUR))\n", - "echo \"SELECTION_DEADLINE = $SELECTION_DEADLINE = $(date -d @$((SELECTION_DEADLINE / 1000)))\"" + "SELECTION_DEADLINE=$((`date -u +%s` * SECOND + 2 * HOUR))\n", + "echo \"SELECTION_DEADLINE = $SELECTION_DEADLINE\" = \"`date -d @$((SELECTION_DEADLINE / 1000))`\"" ] }, { @@ -624,8 +624,8 @@ } ], "source": [ - "AWARD_DEADLINE=$(($(date -u +%s) * SECOND + 3 * HOUR))\n", - "echo \"AWARD_DEADLINE = $AWARD_DEADLINE = $(date -d @$((AWARD_DEADLINE / 1000)))\"" + "AWARD_DEADLINE=$((`date -u +%s` * SECOND + 3 * HOUR))\n", + "echo \"AWARD_DEADLINE = $AWARD_DEADLINE\" = \"`date -d @$((AWARD_DEADLINE / 1000))`\"" ] }, { @@ -696,13 +696,13 @@ "outputs": [], "source": [ "runhaskell contract.hs \\\n", - " $SIZE \\\n", - " $SPONSOR_ADDR \\\n", - " $ORACLE_ADDR \\\n", - " $AWARD_AMOUNT \\\n", - " $FUNDING_DEADLINE \\\n", - " $SELECTION_DEADLINE \\\n", - " $AWARD_DEADLINE \\\n", + " \"$SIZE\" \\\n", + " \"$SPONSOR_ADDR\" \\\n", + " \"$ORACLE_ADDR\" \\\n", + " \"$AWARD_AMOUNT\" \\\n", + " \"$FUNDING_DEADLINE\" \\\n", + " \"$SELECTION_DEADLINE\" \\\n", + " \"$AWARD_DEADLINE\" \\\n", " ${PARTICIPANT_ADDR[@]}" ] }, @@ -1050,7 +1050,7 @@ } ], "source": [ - "DEPTH=$(printf \"%.0f\" $(echo \"l($NUMBER_OF_PARTICIPANTS) / l($SIZE)\" | ~/.nix-profile/bin/bc -l))\n", + "DEPTH=$(printf \"%.0f\" `echo l\"($NUMBER_OF_PARTICIPANTS)\" / \"l($SIZE)\" | ~/.nix-profile/bin/bc -l`)\n", "echo \"DEPTH = $DEPTH\"" ] }, @@ -1122,7 +1122,7 @@ } ], "source": [ - "for i in $(seq 1 $DEPTH)\n", + "for i in `seq 1 $DEPTH`\n", "do\n", "\n", "n=$((i+3))\n", diff --git a/defi/beamer/ReadMe.ipynb b/defi/beamer/ReadMe.ipynb index 44ebc11..f60933a 100644 --- a/defi/beamer/ReadMe.ipynb +++ b/defi/beamer/ReadMe.ipynb @@ -9,11 +9,11 @@ "\n", "Before running a Marlowe contract on `mainnet`, it is wise to do the following in order to avoid losing funds:\n", "\n", - "1. Understand the [Marlowe Language](https://marlowe-finance.io/).\n", + "1. Understand the [Marlowe Language](https://marlowe.iohk.io/).\n", "2. Understand Cardano\\'s [Extended UTxO Model](https://docs.cardano.org/learn/eutxo-explainer).\n", "3. Read and understand the [Marlowe Best Practices Guide](https://github.com/input-output-hk/marlowe-cardano/blob/main/marlowe/best-practices.md).\n", "4. Read and understand the [Marlowe Security Guide](https://github.com/input-output-hk/marlowe-cardano/blob/main/marlowe/security.md).\n", - "5. Use [Marlowe Playground](https://play.marlowe-finance.io/) to flag warnings, perform static analysis, and simulate the contract.\n", + "5. Use [Marlowe Playground](https://play.marlowe.iohk.io/) to flag warnings, perform static analysis, and simulate the contract.\n", "6. Use [Marlowe CLI\\'s](https://github.com/input-output-hk/marlowe-cardano/blob/main/marlowe-cli/ReadMe.md) `marlowe-cli run analyze` tool to study whether the contract can run on a Cardano network.\n", "7. Run *all execution paths* of the contract on a [Cardano testnet](https://docs.cardano.org/cardano-testnet/overview).\n", "\n", diff --git a/firsts/loan/ReadMe.ipynb b/firsts/loan/ReadMe.ipynb index 86f80b5..2751d62 100644 --- a/firsts/loan/ReadMe.ipynb +++ b/firsts/loan/ReadMe.ipynb @@ -9,11 +9,11 @@ "\n", "Before running a Marlowe contract on `mainnet`, it is wise to do the following in order to avoid losing funds:\n", "\n", - "1. Understand the [Marlowe Language](https://marlowe-finance.io/).\n", + "1. Understand the [Marlowe Language](https://marlowe.iohk.io/).\n", "2. Understand Cardano\\'s [Extended UTxO Model](https://docs.cardano.org/learn/eutxo-explainer).\n", "3. Read and understand the [Marlowe Best Practices Guide](https://github.com/input-output-hk/marlowe-cardano/blob/main/marlowe/best-practices.md).\n", "4. Read and understand the [Marlowe Security Guide](https://github.com/input-output-hk/marlowe-cardano/blob/main/marlowe/security.md).\n", - "5. Use [Marlowe Playground](https://play.marlowe-finance.io/) to flag warnings, perform static analysis, and simulate the contract.\n", + "5. Use [Marlowe Playground](https://play.marlowe.iohk.io/) to flag warnings, perform static analysis, and simulate the contract.\n", "6. Use [Marlowe CLI\\'s](https://github.com/input-output-hk/marlowe-cardano/blob/main/marlowe-cli/ReadMe.md) `marlowe-cli run analyze` tool to study whether the contract can run on a Cardano network.\n", "7. Run *all execution paths* of the contract on a [Cardano testnet](https://docs.cardano.org/cardano-testnet/overview).\n", "\n", diff --git a/firsts/mainnet/ReadMe.ipynb b/firsts/mainnet/ReadMe.ipynb index 6d4bf84..13251a4 100644 --- a/firsts/mainnet/ReadMe.ipynb +++ b/firsts/mainnet/ReadMe.ipynb @@ -9,11 +9,11 @@ "\n", "Before running a Marlowe contract on `mainnet`, it is wise to do the following in order to avoid losing funds:\n", "\n", - "1. Understand the [Marlowe Language](https://marlowe-finance.io/).\n", + "1. Understand the [Marlowe Language](https://marlowe.iohk.io/).\n", "2. Understand Cardano\\'s [Extended UTxO Model](https://docs.cardano.org/learn/eutxo-explainer).\n", "3. Read and understand the [Marlowe Best Practices Guide](https://github.com/input-output-hk/marlowe-cardano/blob/main/marlowe/best-practices.md).\n", "4. Read and understand the [Marlowe Security Guide](https://github.com/input-output-hk/marlowe-cardano/blob/main/marlowe/security.md).\n", - "5. Use [Marlowe Playground](https://play.marlowe-finance.io/) to flag warnings, perform static analysis, and simulate the contract.\n", + "5. Use [Marlowe Playground](https://play.marlowe.iohk.io/) to flag warnings, perform static analysis, and simulate the contract.\n", "6. Use [Marlowe CLI\\'s](https://github.com/input-output-hk/marlowe-cardano/blob/main/marlowe-cli/ReadMe.md) `marlowe-cli run analyze` tool to study whether the contract can run on a Cardano network.\n", "7. Run *all execution paths* of the contract on a [Cardano testnet](https://docs.cardano.org/cardano-testnet/overview).\n", "\n", diff --git a/firsts/plutus-v2/ReadMe.ipynb b/firsts/plutus-v2/ReadMe.ipynb index c0eab4d..acdb64b 100644 --- a/firsts/plutus-v2/ReadMe.ipynb +++ b/firsts/plutus-v2/ReadMe.ipynb @@ -9,11 +9,11 @@ "\n", "Before running a Marlowe contract on `mainnet`, it is wise to do the following in order to avoid losing funds:\n", "\n", - "1. Understand the [Marlowe Language](https://marlowe-finance.io/).\n", + "1. Understand the [Marlowe Language](https://marlowe.iohk.io/).\n", "2. Understand Cardano\\'s [Extended UTxO Model](https://docs.cardano.org/learn/eutxo-explainer).\n", "3. Read and understand the [Marlowe Best Practices Guide](https://github.com/input-output-hk/marlowe-cardano/blob/main/marlowe/best-practices.md).\n", "4. Read and understand the [Marlowe Security Guide](https://github.com/input-output-hk/marlowe-cardano/blob/main/marlowe/security.md).\n", - "5. Use [Marlowe Playground](https://play.marlowe-finance.io/) to flag warnings, perform static analysis, and simulate the contract.\n", + "5. Use [Marlowe Playground](https://play.marlowe.iohk.io/) to flag warnings, perform static analysis, and simulate the contract.\n", "6. Use [Marlowe CLI\\'s](https://github.com/input-output-hk/marlowe-cardano/blob/main/marlowe-cli/ReadMe.md) `marlowe-cli run analyze` tool to study whether the contract can run on a Cardano network.\n", "7. Run *all execution paths* of the contract on a [Cardano testnet](https://docs.cardano.org/cardano-testnet/overview).\n", "\n", diff --git a/firsts/reference/ReadMe.ipynb b/firsts/reference/ReadMe.ipynb index 52e7e6c..6588d0e 100644 --- a/firsts/reference/ReadMe.ipynb +++ b/firsts/reference/ReadMe.ipynb @@ -9,11 +9,11 @@ "\n", "Before running a Marlowe contract on `mainnet`, it is wise to do the following in order to avoid losing funds:\n", "\n", - "1. Understand the [Marlowe Language](https://marlowe-finance.io/).\n", + "1. Understand the [Marlowe Language](https://marlowe.iohk.io/).\n", "2. Understand Cardano\\'s [Extended UTxO Model](https://docs.cardano.org/learn/eutxo-explainer).\n", "3. Read and understand the [Marlowe Best Practices Guide](https://github.com/input-output-hk/marlowe-cardano/blob/main/marlowe/best-practices.md).\n", "4. Read and understand the [Marlowe Security Guide](https://github.com/input-output-hk/marlowe-cardano/blob/main/marlowe/security.md).\n", - "5. Use [Marlowe Playground](https://play.marlowe-finance.io/) to flag warnings, perform static analysis, and simulate the contract.\n", + "5. Use [Marlowe Playground](https://play.marlowe.iohk.io/) to flag warnings, perform static analysis, and simulate the contract.\n", "6. Use [Marlowe CLI\\'s](https://github.com/input-output-hk/marlowe-cardano/blob/main/marlowe-cli/ReadMe.md) `marlowe-cli run analyze` tool to study whether the contract can run on a Cardano network.\n", "7. Run *all execution paths* of the contract on a [Cardano testnet](https://docs.cardano.org/cardano-testnet/overview).\n", "\n", diff --git a/firsts/swap/ReadMe.ipynb b/firsts/swap/ReadMe.ipynb index 20cac1c..41b8b94 100644 --- a/firsts/swap/ReadMe.ipynb +++ b/firsts/swap/ReadMe.ipynb @@ -9,11 +9,11 @@ "\n", "Before running a Marlowe contract on `mainnet`, it is wise to do the following in order to avoid losing funds:\n", "\n", - "1. Understand the [Marlowe Language](https://marlowe-finance.io/).\n", + "1. Understand the [Marlowe Language](https://marlowe.iohk.io/).\n", "2. Understand Cardano\\'s [Extended UTxO Model](https://docs.cardano.org/learn/eutxo-explainer).\n", "3. Read and understand the [Marlowe Best Practices Guide](https://github.com/input-output-hk/marlowe-cardano/blob/main/marlowe/best-practices.md).\n", "4. Read and understand the [Marlowe Security Guide](https://github.com/input-output-hk/marlowe-cardano/blob/main/marlowe/security.md).\n", - "5. Use [Marlowe Playground](https://play.marlowe-finance.io/) to flag warnings, perform static analysis, and simulate the contract.\n", + "5. Use [Marlowe Playground](https://play.marlowe.iohk.io/) to flag warnings, perform static analysis, and simulate the contract.\n", "6. Use [Marlowe CLI\\'s](https://github.com/input-output-hk/marlowe-cardano/blob/main/marlowe-cli/ReadMe.md) `marlowe-cli run analyze` tool to study whether the contract can run on a Cardano network.\n", "7. Run *all execution paths* of the contract on a [Cardano testnet](https://docs.cardano.org/cardano-testnet/overview).\n", "\n", diff --git a/nfts/airdrop/ReadMe.ipynb b/nfts/airdrop/ReadMe.ipynb index 255a9d6..71e6a92 100644 --- a/nfts/airdrop/ReadMe.ipynb +++ b/nfts/airdrop/ReadMe.ipynb @@ -9,11 +9,11 @@ "\n", "Before running a Marlowe contract on `mainnet`, it is wise to do the following in order to avoid losing funds:\n", "\n", - "1. Understand the [Marlowe Language](https://marlowe-finance.io/).\n", + "1. Understand the [Marlowe Language](https://marlowe.iohk.io/).\n", "2. Understand Cardano\\'s [Extended UTxO Model](https://docs.cardano.org/learn/eutxo-explainer).\n", "3. Read and understand the [Marlowe Best Practices Guide](https://github.com/input-output-hk/marlowe-cardano/blob/main/marlowe/best-practices.md).\n", "4. Read and understand the [Marlowe Security Guide](https://github.com/input-output-hk/marlowe-cardano/blob/main/marlowe/security.md).\n", - "5. Use [Marlowe Playground](https://play.marlowe-finance.io/) to flag warnings, perform static analysis, and simulate the contract.\n", + "5. Use [Marlowe Playground](https://play.marlowe.iohk.io/) to flag warnings, perform static analysis, and simulate the contract.\n", "6. Use [Marlowe CLI\\'s](https://github.com/input-output-hk/marlowe-cardano/blob/main/marlowe-cli/ReadMe.md) `marlowe-cli run analyze` tool to study whether the contract can run on a Cardano network.\n", "7. Run *all execution paths* of the contract on a [Cardano testnet](https://docs.cardano.org/cardano-testnet/overview).\n", "\n", @@ -212,7 +212,7 @@ "source": [ "## The Marlowe contract\n", "\n", - "The Marlowe contract is just a download of the JSON file for the Blockly-format contract designed in the [Marlowe Playground](https://play.marlowe-finance.io/#/)." + "The Marlowe contract is just a download of the JSON file for the Blockly-format contract designed in the [Marlowe Playground](https://play.marlowe.iohk.io/#/)." ] }, { diff --git a/nfts/auction/ReadMe.ipynb b/nfts/auction/ReadMe.ipynb index 367869f..0396e3e 100644 --- a/nfts/auction/ReadMe.ipynb +++ b/nfts/auction/ReadMe.ipynb @@ -9,11 +9,11 @@ "\n", "Before running a Marlowe contract on `mainnet`, it is wise to do the following in order to avoid losing funds:\n", "\n", - "1. Understand the [Marlowe Language](https://marlowe-finance.io/).\n", + "1. Understand the [Marlowe Language](https://marlowe.iohk.io/).\n", "2. Understand Cardano\\'s [Extended UTxO Model](https://docs.cardano.org/learn/eutxo-explainer).\n", "3. Read and understand the [Marlowe Best Practices Guide](https://github.com/input-output-hk/marlowe-cardano/blob/main/marlowe/best-practices.md).\n", "4. Read and understand the [Marlowe Security Guide](https://github.com/input-output-hk/marlowe-cardano/blob/main/marlowe/security.md).\n", - "5. Use [Marlowe Playground](https://play.marlowe-finance.io/) to flag warnings, perform static analysis, and simulate the contract.\n", + "5. Use [Marlowe Playground](https://play.marlowe.iohk.io/) to flag warnings, perform static analysis, and simulate the contract.\n", "6. Use [Marlowe CLI\\'s](https://github.com/input-output-hk/marlowe-cardano/blob/main/marlowe-cli/ReadMe.md) `marlowe-cli run analyze` tool to study whether the contract can run on a Cardano network.\n", "7. Run *all execution paths* of the contract on a [Cardano testnet](https://docs.cardano.org/cardano-testnet/overview).\n", "\n", diff --git a/nfts/collateral/ReadMe.ipynb b/nfts/collateral/ReadMe.ipynb index d16c521..400c182 100644 --- a/nfts/collateral/ReadMe.ipynb +++ b/nfts/collateral/ReadMe.ipynb @@ -9,11 +9,11 @@ "\n", "Before running a Marlowe contract on `mainnet`, it is wise to do the following in order to avoid losing funds:\n", "\n", - "1. Understand the [Marlowe Language](https://marlowe-finance.io/).\n", + "1. Understand the [Marlowe Language](https://marlowe.iohk.io/).\n", "2. Understand Cardano\\'s [Extended UTxO Model](https://docs.cardano.org/learn/eutxo-explainer).\n", "3. Read and understand the [Marlowe Best Practices Guide](https://github.com/input-output-hk/marlowe-cardano/blob/main/marlowe/best-practices.md).\n", "4. Read and understand the [Marlowe Security Guide](https://github.com/input-output-hk/marlowe-cardano/blob/main/marlowe/security.md).\n", - "5. Use [Marlowe Playground](https://play.marlowe-finance.io/) to flag warnings, perform static analysis, and simulate the contract.\n", + "5. Use [Marlowe Playground](https://play.marlowe.iohk.io/) to flag warnings, perform static analysis, and simulate the contract.\n", "6. Use [Marlowe CLI\\'s](https://github.com/input-output-hk/marlowe-cardano/blob/main/marlowe-cli/ReadMe.md) `marlowe-cli run analyze` tool to study whether the contract can run on a Cardano network.\n", "7. Run *all execution paths* of the contract on a [Cardano testnet](https://docs.cardano.org/cardano-testnet/overview).\n", "\n", @@ -269,7 +269,7 @@ "source": [ "## The Marlowe contract\n", "\n", - "The Marlowe contract is just a download of the JSON file for the Blockly-format contract designed in the [Marlowe Playground](https://play.marlowe-finance.io/#/)." + "The Marlowe contract is just a download of the JSON file for the Blockly-format contract designed in the [Marlowe Playground](https://play.marlowe.iohk.io/#/)." ] }, { diff --git a/nfts/collection/ReadMe.ipynb b/nfts/collection/ReadMe.ipynb index f93bc27..bc87805 100644 --- a/nfts/collection/ReadMe.ipynb +++ b/nfts/collection/ReadMe.ipynb @@ -9,11 +9,11 @@ "\n", "Before running a Marlowe contract on `mainnet`, it is wise to do the following in order to avoid losing funds:\n", "\n", - "1. Understand the [Marlowe Language](https://marlowe-finance.io/).\n", + "1. Understand the [Marlowe Language](https://marlowe.iohk.io/).\n", "2. Understand Cardano\\'s [Extended UTxO Model](https://docs.cardano.org/learn/eutxo-explainer).\n", "3. Read and understand the [Marlowe Best Practices Guide](https://github.com/input-output-hk/marlowe-cardano/blob/main/marlowe/best-practices.md).\n", "4. Read and understand the [Marlowe Security Guide](https://github.com/input-output-hk/marlowe-cardano/blob/main/marlowe/security.md).\n", - "5. Use [Marlowe Playground](https://play.marlowe-finance.io/) to flag warnings, perform static analysis, and simulate the contract.\n", + "5. Use [Marlowe Playground](https://play.marlowe.iohk.io/) to flag warnings, perform static analysis, and simulate the contract.\n", "6. Use [Marlowe CLI\\'s](https://github.com/input-output-hk/marlowe-cardano/blob/main/marlowe-cli/ReadMe.md) `marlowe-cli run analyze` tool to study whether the contract can run on a Cardano network.\n", "7. Run *all execution paths* of the contract on a [Cardano testnet](https://docs.cardano.org/cardano-testnet/overview).\n", "\n", @@ -93,7 +93,7 @@ "text": [ "YoTr2016-0:\n", " artist: Brian W Bush\n", - " contract: 'A Marlowe role token: .'\n", + " contract: 'A Marlowe role token: .'\n", " copyright: (c) 2016 Brian W Bush\n", " description:\n", " - A series of three original artworks on the subject of Yogācāra\n", diff --git a/nfts/oracle/ReadMe.ipynb b/nfts/oracle/ReadMe.ipynb index ff3cb06..6a1fe46 100644 --- a/nfts/oracle/ReadMe.ipynb +++ b/nfts/oracle/ReadMe.ipynb @@ -9,11 +9,11 @@ "\n", "Before running a Marlowe contract on `mainnet`, it is wise to do the following in order to avoid losing funds:\n", "\n", - "1. Understand the [Marlowe Language](https://marlowe-finance.io/).\n", + "1. Understand the [Marlowe Language](https://marlowe.iohk.io/).\n", "2. Understand Cardano\\'s [Extended UTxO Model](https://docs.cardano.org/learn/eutxo-explainer).\n", "3. Read and understand the [Marlowe Best Practices Guide](https://github.com/input-output-hk/marlowe-cardano/blob/main/marlowe/best-practices.md).\n", "4. Read and understand the [Marlowe Security Guide](https://github.com/input-output-hk/marlowe-cardano/blob/main/marlowe/security.md).\n", - "5. Use [Marlowe Playground](https://play.marlowe-finance.io/) to flag warnings, perform static analysis, and simulate the contract.\n", + "5. Use [Marlowe Playground](https://play.marlowe.iohk.io/) to flag warnings, perform static analysis, and simulate the contract.\n", "6. Use [Marlowe CLI\\'s](https://github.com/input-output-hk/marlowe-cardano/blob/main/marlowe-cli/ReadMe.md) `marlowe-cli run analyze` tool to study whether the contract can run on a Cardano network.\n", "7. Run *all execution paths* of the contract on a [Cardano testnet](https://docs.cardano.org/cardano-testnet/overview).\n", "\n", @@ -205,7 +205,7 @@ "source": [ "## The Marlowe contract\n", "\n", - "The Marlowe contract is just a download of the JSON file for the Blockly-format contract designed in the [Marlowe Playground](https://play.marlowe-finance.io/#/)." + "The Marlowe contract is just a download of the JSON file for the Blockly-format contract designed in the [Marlowe Playground](https://play.marlowe.iohk.io/#/)." ] }, { diff --git a/nfts/pawn/ReadMe.ipynb b/nfts/pawn/ReadMe.ipynb index 3a7627d..63d6161 100644 --- a/nfts/pawn/ReadMe.ipynb +++ b/nfts/pawn/ReadMe.ipynb @@ -9,11 +9,11 @@ "\n", "Before running a Marlowe contract on `mainnet`, it is wise to do the following in order to avoid losing funds:\n", "\n", - "1. Understand the [Marlowe Language](https://marlowe-finance.io/).\n", + "1. Understand the [Marlowe Language](https://marlowe.iohk.io/).\n", "2. Understand Cardano\\'s [Extended UTxO Model](https://docs.cardano.org/learn/eutxo-explainer).\n", "3. Read and understand the [Marlowe Best Practices Guide](https://github.com/input-output-hk/marlowe-cardano/blob/main/marlowe/best-practices.md).\n", "4. Read and understand the [Marlowe Security Guide](https://github.com/input-output-hk/marlowe-cardano/blob/main/marlowe/security.md).\n", - "5. Use [Marlowe Playground](https://play.marlowe-finance.io/) to flag warnings, perform static analysis, and simulate the contract.\n", + "5. Use [Marlowe Playground](https://play.marlowe.iohk.io/) to flag warnings, perform static analysis, and simulate the contract.\n", "6. Use [Marlowe CLI\\'s](https://github.com/input-output-hk/marlowe-cardano/blob/main/marlowe-cli/ReadMe.md) `marlowe-cli run analyze` tool to study whether the contract can run on a Cardano network.\n", "7. Run *all execution paths* of the contract on a [Cardano testnet](https://docs.cardano.org/cardano-testnet/overview).\n", "\n", @@ -239,7 +239,7 @@ "source": [ "## The Marlowe contract\n", "\n", - "The Marlowe contract is just a download of the JSON file for the Blockly-format contract designed in the [Marlowe Playground](https://play.marlowe-finance.io/#/)." + "The Marlowe contract is just a download of the JSON file for the Blockly-format contract designed in the [Marlowe Playground](https://play.marlowe.iohk.io/#/)." ] }, { diff --git a/nfts/royalty/ReadMe.ipynb b/nfts/royalty/ReadMe.ipynb index 0cca969..fb11a45 100644 --- a/nfts/royalty/ReadMe.ipynb +++ b/nfts/royalty/ReadMe.ipynb @@ -9,11 +9,11 @@ "\n", "Before running a Marlowe contract on `mainnet`, it is wise to do the following in order to avoid losing funds:\n", "\n", - "1. Understand the [Marlowe Language](https://marlowe-finance.io/).\n", + "1. Understand the [Marlowe Language](https://marlowe.iohk.io/).\n", "2. Understand Cardano\\'s [Extended UTxO Model](https://docs.cardano.org/learn/eutxo-explainer).\n", "3. Read and understand the [Marlowe Best Practices Guide](https://github.com/input-output-hk/marlowe-cardano/blob/main/marlowe/best-practices.md).\n", "4. Read and understand the [Marlowe Security Guide](https://github.com/input-output-hk/marlowe-cardano/blob/main/marlowe/security.md).\n", - "5. Use [Marlowe Playground](https://play.marlowe-finance.io/) to flag warnings, perform static analysis, and simulate the contract.\n", + "5. Use [Marlowe Playground](https://play.marlowe.iohk.io/) to flag warnings, perform static analysis, and simulate the contract.\n", "6. Use [Marlowe CLI\\'s](https://github.com/input-output-hk/marlowe-cardano/blob/main/marlowe-cli/ReadMe.md) `marlowe-cli run analyze` tool to study whether the contract can run on a Cardano network.\n", "7. Run *all execution paths* of the contract on a [Cardano testnet](https://docs.cardano.org/cardano-testnet/overview).\n", "\n", @@ -237,7 +237,7 @@ "source": [ "## The Marlowe contract\n", "\n", - "The Marlowe contract is just a download of the JSON file for the Blockly-format contract designed in the [Marlowe Playground](https://play.marlowe-finance.io/#/)." + "The Marlowe contract is just a download of the JSON file for the Blockly-format contract designed in the [Marlowe Playground](https://play.marlowe.iohk.io/#/)." ] }, { diff --git a/nfts/shared/ReadMe.ipynb b/nfts/shared/ReadMe.ipynb index 8339e2e..f5ab27f 100644 --- a/nfts/shared/ReadMe.ipynb +++ b/nfts/shared/ReadMe.ipynb @@ -9,11 +9,11 @@ "\n", "Before running a Marlowe contract on `mainnet`, it is wise to do the following in order to avoid losing funds:\n", "\n", - "1. Understand the [Marlowe Language](https://marlowe-finance.io/).\n", + "1. Understand the [Marlowe Language](https://marlowe.iohk.io/).\n", "2. Understand Cardano\\'s [Extended UTxO Model](https://docs.cardano.org/learn/eutxo-explainer).\n", "3. Read and understand the [Marlowe Best Practices Guide](https://github.com/input-output-hk/marlowe-cardano/blob/main/marlowe/best-practices.md).\n", "4. Read and understand the [Marlowe Security Guide](https://github.com/input-output-hk/marlowe-cardano/blob/main/marlowe/security.md).\n", - "5. Use [Marlowe Playground](https://play.marlowe-finance.io/) to flag warnings, perform static analysis, and simulate the contract.\n", + "5. Use [Marlowe Playground](https://play.marlowe.iohk.io/) to flag warnings, perform static analysis, and simulate the contract.\n", "6. Use [Marlowe CLI\\'s](https://github.com/input-output-hk/marlowe-cardano/blob/main/marlowe-cli/ReadMe.md) `marlowe-cli run analyze` tool to study whether the contract can run on a Cardano network.\n", "7. Run *all execution paths* of the contract on a [Cardano testnet](https://docs.cardano.org/cardano-testnet/overview).\n", "\n", @@ -234,7 +234,7 @@ "source": [ "## The Marlowe contract\n", "\n", - "The Marlowe contract is just a download of the JSON file for the Blockly-format contract designed in the [Marlowe Playground](https://play.marlowe-finance.io/#/)." + "The Marlowe contract is just a download of the JSON file for the Blockly-format contract designed in the [Marlowe Playground](https://play.marlowe.iohk.io/#/)." ] }, { diff --git a/nfts/simple/ReadMe.ipynb b/nfts/simple/ReadMe.ipynb index 4252d2f..05cc1f4 100644 --- a/nfts/simple/ReadMe.ipynb +++ b/nfts/simple/ReadMe.ipynb @@ -9,11 +9,11 @@ "\n", "Before running a Marlowe contract on `mainnet`, it is wise to do the following in order to avoid losing funds:\n", "\n", - "1. Understand the [Marlowe Language](https://marlowe-finance.io/).\n", + "1. Understand the [Marlowe Language](https://marlowe.iohk.io/).\n", "2. Understand Cardano\\'s [Extended UTxO Model](https://docs.cardano.org/learn/eutxo-explainer).\n", "3. Read and understand the [Marlowe Best Practices Guide](https://github.com/input-output-hk/marlowe-cardano/blob/main/marlowe/best-practices.md).\n", "4. Read and understand the [Marlowe Security Guide](https://github.com/input-output-hk/marlowe-cardano/blob/main/marlowe/security.md).\n", - "5. Use [Marlowe Playground](https://play.marlowe-finance.io/) to flag warnings, perform static analysis, and simulate the contract.\n", + "5. Use [Marlowe Playground](https://play.marlowe.iohk.io/) to flag warnings, perform static analysis, and simulate the contract.\n", "6. Use [Marlowe CLI\\'s](https://github.com/input-output-hk/marlowe-cardano/blob/main/marlowe-cli/ReadMe.md) `marlowe-cli run analyze` tool to study whether the contract can run on a Cardano network.\n", "7. Run *all execution paths* of the contract on a [Cardano testnet](https://docs.cardano.org/cardano-testnet/overview).\n", "\n", @@ -204,7 +204,7 @@ "source": [ "## The Marlowe contract\n", "\n", - "The Marlowe contract is just a download of the JSON file for the Blockly-format contract designed in the [Marlowe Playground](https://play.marlowe-finance.io/#/)." + "The Marlowe contract is just a download of the JSON file for the Blockly-format contract designed in the [Marlowe Playground](https://play.marlowe.iohk.io/#/)." ] }, { diff --git a/nfts/stable/ReadMe.ipynb b/nfts/stable/ReadMe.ipynb index 90e161e..1e39877 100644 --- a/nfts/stable/ReadMe.ipynb +++ b/nfts/stable/ReadMe.ipynb @@ -9,11 +9,11 @@ "\n", "Before running a Marlowe contract on `mainnet`, it is wise to do the following in order to avoid losing funds:\n", "\n", - "1. Understand the [Marlowe Language](https://marlowe-finance.io/).\n", + "1. Understand the [Marlowe Language](https://marlowe.iohk.io/).\n", "2. Understand Cardano\\'s [Extended UTxO Model](https://docs.cardano.org/learn/eutxo-explainer).\n", "3. Read and understand the [Marlowe Best Practices Guide](https://github.com/input-output-hk/marlowe-cardano/blob/main/marlowe/best-practices.md).\n", "4. Read and understand the [Marlowe Security Guide](https://github.com/input-output-hk/marlowe-cardano/blob/main/marlowe/security.md).\n", - "5. Use [Marlowe Playground](https://play.marlowe-finance.io/) to flag warnings, perform static analysis, and simulate the contract.\n", + "5. Use [Marlowe Playground](https://play.marlowe.iohk.io/) to flag warnings, perform static analysis, and simulate the contract.\n", "6. Use [Marlowe CLI\\'s](https://github.com/input-output-hk/marlowe-cardano/blob/main/marlowe-cli/ReadMe.md) `marlowe-cli run analyze` tool to study whether the contract can run on a Cardano network.\n", "7. Run *all execution paths* of the contract on a [Cardano testnet](https://docs.cardano.org/cardano-testnet/overview).\n", "\n", @@ -246,7 +246,7 @@ "source": [ "## The Marlowe contract\n", "\n", - "The Marlowe contract is just a download of the JSON file for the Blockly-format contract designed in the [Marlowe Playground](https://play.marlowe-finance.io/#/)." + "The Marlowe contract is just a download of the JSON file for the Blockly-format contract designed in the [Marlowe Playground](https://play.marlowe.iohk.io/#/)." ] }, { diff --git a/nfts/swap/ReadMe.ipynb b/nfts/swap/ReadMe.ipynb index 1e06a82..1d30d3d 100644 --- a/nfts/swap/ReadMe.ipynb +++ b/nfts/swap/ReadMe.ipynb @@ -9,11 +9,11 @@ "\n", "Before running a Marlowe contract on `mainnet`, it is wise to do the following in order to avoid losing funds:\n", "\n", - "1. Understand the [Marlowe Language](https://marlowe-finance.io/).\n", + "1. Understand the [Marlowe Language](https://marlowe.iohk.io/).\n", "2. Understand Cardano\\'s [Extended UTxO Model](https://docs.cardano.org/learn/eutxo-explainer).\n", "3. Read and understand the [Marlowe Best Practices Guide](https://github.com/input-output-hk/marlowe-cardano/blob/main/marlowe/best-practices.md).\n", "4. Read and understand the [Marlowe Security Guide](https://github.com/input-output-hk/marlowe-cardano/blob/main/marlowe/security.md).\n", - "5. Use [Marlowe Playground](https://play.marlowe-finance.io/) to flag warnings, perform static analysis, and simulate the contract.\n", + "5. Use [Marlowe Playground](https://play.marlowe.iohk.io/) to flag warnings, perform static analysis, and simulate the contract.\n", "6. Use [Marlowe CLI\\'s](https://github.com/input-output-hk/marlowe-cardano/blob/main/marlowe-cli/ReadMe.md) `marlowe-cli run analyze` tool to study whether the contract can run on a Cardano network.\n", "7. Run *all execution paths* of the contract on a [Cardano testnet](https://docs.cardano.org/cardano-testnet/overview).\n", "\n", @@ -207,7 +207,7 @@ "source": [ "## The Marlowe contract\n", "\n", - "The Marlowe contract is just a download of the JSON file for the Blockly-format contract designed in the [Marlowe Playground](https://play.marlowe-finance.io/#/)." + "The Marlowe contract is just a download of the JSON file for the Blockly-format contract designed in the [Marlowe Playground](https://play.marlowe.iohk.io/#/)." ] }, { diff --git a/realfi/actus/actus-pam.ipynb b/realfi/actus/actus-pam.ipynb index 68b17de..c641166 100644 --- a/realfi/actus/actus-pam.ipynb +++ b/realfi/actus/actus-pam.ipynb @@ -9,11 +9,11 @@ "\n", "Before running a Marlowe contract on `mainnet`, it is wise to do the following in order to avoid losing funds:\n", "\n", - "1. Understand the [Marlowe Language](https://marlowe-finance.io/).\n", + "1. Understand the [Marlowe Language](https://marlowe.iohk.io/).\n", "2. Understand Cardano\\'s [Extended UTxO Model](https://docs.cardano.org/learn/eutxo-explainer).\n", "3. Read and understand the [Marlowe Best Practices Guide](https://github.com/input-output-hk/marlowe-cardano/blob/main/marlowe/best-practices.md).\n", "4. Read and understand the [Marlowe Security Guide](https://github.com/input-output-hk/marlowe-cardano/blob/main/marlowe/security.md).\n", - "5. Use [Marlowe Playground](https://play.marlowe-finance.io/) to flag warnings, perform static analysis, and simulate the contract.\n", + "5. Use [Marlowe Playground](https://play.marlowe.iohk.io/) to flag warnings, perform static analysis, and simulate the contract.\n", "6. Use [Marlowe CLI\\'s](https://github.com/input-output-hk/marlowe-cardano/blob/main/marlowe-cli/ReadMe.md) `marlowe-cli run analyze` tool to study whether the contract can run on a Cardano network.\n", "7. Run *all execution paths* of the contract on a [Cardano testnet](https://docs.cardano.org/cardano-testnet/overview).\n", "\n", diff --git a/realfi/coupon-bond-guaranteed/ReadMe.ipynb b/realfi/coupon-bond-guaranteed/ReadMe.ipynb index dc64d9c..3c3165d 100644 --- a/realfi/coupon-bond-guaranteed/ReadMe.ipynb +++ b/realfi/coupon-bond-guaranteed/ReadMe.ipynb @@ -9,11 +9,11 @@ "\n", "Before running a Marlowe contract on `mainnet`, it is wise to do the following in order to avoid losing funds:\n", "\n", - "1. Understand the [Marlowe Language](https://marlowe-finance.io/).\n", + "1. Understand the [Marlowe Language](https://marlowe.iohk.io/).\n", "2. Understand Cardano\\'s [Extended UTxO Model](https://docs.cardano.org/learn/eutxo-explainer).\n", "3. Read and understand the [Marlowe Best Practices Guide](https://github.com/input-output-hk/marlowe-cardano/blob/main/marlowe/best-practices.md).\n", "4. Read and understand the [Marlowe Security Guide](https://github.com/input-output-hk/marlowe-cardano/blob/main/marlowe/security.md).\n", - "5. Use [Marlowe Playground](https://play.marlowe-finance.io/) to flag warnings, perform static analysis, and simulate the contract.\n", + "5. Use [Marlowe Playground](https://play.marlowe.iohk.io/) to flag warnings, perform static analysis, and simulate the contract.\n", "6. Use [Marlowe CLI\\'s](https://github.com/input-output-hk/marlowe-cardano/blob/main/marlowe-cli/ReadMe.md) `marlowe-cli run analyze` tool to study whether the contract can run on a Cardano network.\n", "7. Run *all execution paths* of the contract on a [Cardano testnet](https://docs.cardano.org/cardano-testnet/overview).\n", "\n", @@ -47,7 +47,7 @@ "\n", "**The Contract**\n", "\n", - "We use the example \"Coupon Bond Guaranteed\" from [Marlowe Playground](https://play.marlowe-finance.io/).\n", + "We use the example \"Coupon Bond Guaranteed\" from [Marlowe Playground](https://play.marlowe.iohk.io/).\n", "\n", "![Coupon Bond Guaranteed](contract.png)" ]