├── .gitignore ├── .markdownlint.json ├── CONTRIBUTING ├── LICENSE ├── Oasis ├── intro-to-oasis │ ├── assets │ │ ├── cherry-order.png │ │ ├── cherry-transaction.png │ │ ├── order-book-1.png │ │ ├── order.png │ │ ├── sell-order.png │ │ └── transaction.png │ └── intro-to-oasis.md ├── oasis-direct-proxy │ └── oasis-direct-proxy.md ├── oasisdex-market-maker-guide │ └── oasisdex-market-maker-guide.md ├── oasisdex-market-taker-guide │ └── oasisdex-market-taker-guide.md └── oasisdex-ui-guide │ └── oasisdex-ui-guide.md ├── README.md ├── dai ├── README.md ├── dai-in-smart-contracts │ ├── dai-in-smart-contracts.md │ └── images │ │ ├── CompileVersion.png │ │ ├── DaiFaucet.png │ │ ├── Deploy.png │ │ ├── FullContract.png │ │ ├── Interact.png │ │ ├── Successfull.png │ │ ├── compiled.png │ │ ├── pasteCode.png │ │ ├── verify.png │ │ └── verifyAndPublish.png ├── dai-supply │ ├── dai-supply.md │ └── images │ │ └── dai_venn.png ├── dai-token │ └── dai-token.md ├── dsr-integration-guide │ ├── dsr-integration-guide.md │ ├── dsr.sol │ └── dsrManagerExample.sol ├── dsr-manager-docs │ └── dsr-manager-docs.md └── how-to-use-permit-function │ └── how-to-use-permit-function.md ├── devtools ├── Dai.js │ └── How-to-build-dai-js-wallet-plugin.md ├── README.md ├── seth │ └── seth-guide │ │ └── seth-guide.md ├── test-chain-guide │ └── test-chain-guide.md └── working-with-dsproxy │ └── working-with-dsproxy.md ├── exchanges ├── README.md └── exchanges-guide │ └── exchanges-guide.md ├── gnosis-multisig ├── dsr-gnosis-multisig-guide │ ├── dsr-gnosis-multisig-guide.md │ └── dsr-manager-gnosis-multisig-guide.md ├── migrating-gnosis-multisig-guide │ └── migrating-gnosis-multisig-guide.md ├── nested-multisig-gnosis-safe-wallet-setup-walkthrough │ ├── nested-multisig-gnosis-safe-wallet-setup-walkthrough.md │ └── pictures │ │ ├── NestedMultiSig.jpg │ │ ├── Untitled 1.png │ │ ├── Untitled 2.png │ │ ├── Untitled 3.png │ │ ├── Untitled 4.png │ │ ├── Untitled 5.png │ │ ├── Untitled 6.png │ │ ├── Untitled 7.png │ │ ├── Untitled 8.png │ │ ├── Untitled 9.png │ │ └── Untitled.png └── vote-proxy-setup-gnosis-multisig │ ├── pictures │ ├── proxyFactory.png │ ├── proxycontract.png │ └── voteFront.png │ └── vote-proxy-setup-gnosis-multisig.md ├── governance ├── README.md ├── collateral-redemption-during-emergency-shutdown │ └── Collateral Redemption during Emergency Shutdown.md ├── emergency-shutdown-cli-documentation │ └── Emergency-Shutdown-CLI-Documentation.md └── vote-proxy-setup-airgapped-machine │ ├── pictures │ ├── lock.png │ ├── lockmkr.png │ ├── proxycontract.png │ ├── voteFront.png │ └── voteproxyfactory.png │ └── vote-proxy-setup-airgapped-machine.md ├── keepers ├── README.md ├── auction-keeper ├── auction-keeper-bot-setup-guide │ └── auction-keeper-bot-setup-guide.md ├── market-maker-keeper-bot-setup-guide │ └── market-maker-keeper-bot-setup-guide.md └── simple-arbitrage-keeper │ ├── pictures │ └── lifecycle.jpeg │ └── simple-arbitrage-keeper.md ├── market-makers └── market-makers.md ├── mcd ├── README.md ├── add-collateral-type-testnet │ └── add-collateral-type-testnet.md ├── collateral-auction-integration-guide │ └── collateral-auction-integration-guide.md ├── emergency-shutdown-design-patterns │ └── emergency-shutdown-design-patterns.md ├── emergency-shutdown │ └── emergency-shutdown.md ├── intro-rate-mechanism │ └── intro-rate-mechanism.md ├── mcd-101 │ ├── mcd-101.md │ └── pictures │ │ ├── 50_1.png │ │ ├── 50_2.png │ │ ├── 51_1.png │ │ ├── 51_2.png │ │ ├── 51_3.png │ │ ├── CDP.png │ │ ├── Proxy.png │ │ ├── SRupdated.png │ │ ├── assetStates.png │ │ ├── auction.png │ │ ├── bitcoinChart.png │ │ ├── cdps.png │ │ ├── cdpstates.png │ │ ├── daiDrawn.png │ │ ├── daipeg.png │ │ ├── governance.png │ │ ├── house.png │ │ ├── idealactrate.png │ │ ├── interactionD.png │ │ ├── oracle.png │ │ ├── smartContracts.png │ │ └── supplyDemand.png ├── mcd-cli │ └── mcd-cli-guide │ │ └── mcd-cli-guide.md ├── mcd-deplyoment │ └── mcd-deployment.md ├── mcd-seth │ └── mcd-seth.md └── upgrading-to-multi-collateral-dai │ ├── cli-mcd-migration.md │ ├── figures │ ├── cdpmigration.png │ ├── exchangedaimigration.png │ ├── migrating10sai.png │ ├── saimigration.png │ ├── saimigrationfunctions.png │ └── userflowexchange.png │ └── upgrading-to-multi-collateral-dai.md ├── mkr └── mkr-token │ └── mkr-token.md ├── oracles └── oracle-integration-guide.md ├── sample └── sample-guide │ └── sample-guide.md ├── tests ├── README.MD ├── devtools │ ├── mcd-cli │ │ ├── mcd-cli.MD │ │ └── test │ │ │ ├── account │ │ │ ├── mcd-cli-test-keystore │ │ │ └── pass │ │ │ ├── libs │ │ │ ├── bats-assert │ │ │ │ ├── .travis.yml │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── load.bash │ │ │ │ ├── package.json │ │ │ │ ├── script │ │ │ │ │ └── install-bats.sh │ │ │ │ ├── src │ │ │ │ │ └── assert.bash │ │ │ │ └── test │ │ │ │ │ ├── 50-assert-11-assert.bats │ │ │ │ │ ├── 50-assert-12-assert_equal.bats │ │ │ │ │ ├── 50-assert-13-assert_success.bats │ │ │ │ │ ├── 50-assert-14-assert_failure.bats │ │ │ │ │ ├── 50-assert-15-assert_output.bats │ │ │ │ │ ├── 50-assert-16-refute_output.bats │ │ │ │ │ ├── 50-assert-17-assert_line.bats │ │ │ │ │ ├── 50-assert-18-refute_line.bats │ │ │ │ │ ├── 50-assert-19-refute.bats │ │ │ │ │ └── test_helper.bash │ │ │ ├── bats-support │ │ │ │ ├── .travis.yml │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── load.bash │ │ │ │ ├── package.json │ │ │ │ ├── script │ │ │ │ │ └── install-bats.sh │ │ │ │ ├── src │ │ │ │ │ ├── error.bash │ │ │ │ │ ├── lang.bash │ │ │ │ │ └── output.bash │ │ │ │ └── test │ │ │ │ │ ├── 50-output-10-batslib_err.bats │ │ │ │ │ ├── 50-output-11-batslib_count_lines.bats │ │ │ │ │ ├── 50-output-12-batslib_is_single_line.bats │ │ │ │ │ ├── 50-output-13-batslib_get_max_single_line_key_width.bats │ │ │ │ │ ├── 50-output-14-batslib_print_kv_single.bats │ │ │ │ │ ├── 50-output-15-batslib_print_kv_multi.bats │ │ │ │ │ ├── 50-output-16-batslib_print_kv_single_or_multi.bats │ │ │ │ │ ├── 50-output-17-batslib_prefix.bats │ │ │ │ │ ├── 50-output-18-batslib_mark.bats │ │ │ │ │ ├── 50-output-19-batslib_decorate.bats │ │ │ │ │ ├── 51-error-10-fail.bats │ │ │ │ │ ├── 52-lang-10-batslib_is_caller.bats │ │ │ │ │ └── test_helper.bash │ │ │ └── bats │ │ │ │ ├── .gitattributes │ │ │ │ ├── .travis.yml │ │ │ │ ├── CONDUCT.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── bin │ │ │ │ └── bats │ │ │ │ ├── install.sh │ │ │ │ ├── libexec │ │ │ │ ├── bats │ │ │ │ ├── bats-exec-suite │ │ │ │ ├── bats-exec-test │ │ │ │ ├── bats-format-tap-stream │ │ │ │ └── bats-preprocess │ │ │ │ ├── man │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── bats.1 │ │ │ │ ├── bats.1.ronn │ │ │ │ ├── bats.7 │ │ │ │ └── bats.7.ronn │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ ├── bats.bats │ │ │ │ ├── fixtures │ │ │ │ ├── bats │ │ │ │ │ ├── dos_line.bats │ │ │ │ │ ├── empty.bats │ │ │ │ │ ├── environment.bats │ │ │ │ │ ├── failing.bats │ │ │ │ │ ├── failing_and_passing.bats │ │ │ │ │ ├── failing_helper.bats │ │ │ │ │ ├── failing_setup.bats │ │ │ │ │ ├── failing_teardown.bats │ │ │ │ │ ├── intact.bats │ │ │ │ │ ├── invalid_tap.bats │ │ │ │ │ ├── load.bats │ │ │ │ │ ├── loop_keep_IFS.bats │ │ │ │ │ ├── output.bats │ │ │ │ │ ├── passing.bats │ │ │ │ │ ├── passing_and_failing.bats │ │ │ │ │ ├── passing_and_skipping.bats │ │ │ │ │ ├── passing_failing_and_skipping.bats │ │ │ │ │ ├── setup.bats │ │ │ │ │ ├── single_line.bats │ │ │ │ │ ├── skipped.bats │ │ │ │ │ ├── teardown.bats │ │ │ │ │ ├── test_helper.bash │ │ │ │ │ └── without_trailing_newline.bats │ │ │ │ └── suite │ │ │ │ │ ├── empty │ │ │ │ │ └── .gitkeep │ │ │ │ │ ├── multiple │ │ │ │ │ ├── a.bats │ │ │ │ │ └── b.bats │ │ │ │ │ └── single │ │ │ │ │ └── test.bats │ │ │ │ ├── suite.bats │ │ │ │ └── test_helper.bash │ │ │ ├── test.bats │ │ │ └── test_helper.bash │ └── test-chain-guide │ │ ├── cdp.js │ │ ├── cdp.test.js │ │ ├── package.json │ │ └── test-chain-guide.md ├── mcd │ ├── mcd-seth-cdp-manager │ │ ├── mcd-seth-cdp-manager.MD │ │ └── test │ │ │ ├── account │ │ │ ├── mcd-cli-test-keystore │ │ │ └── pass │ │ │ ├── libs │ │ │ ├── bats-assert │ │ │ │ ├── .travis.yml │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── load.bash │ │ │ │ ├── package.json │ │ │ │ ├── script │ │ │ │ │ └── install-bats.sh │ │ │ │ ├── src │ │ │ │ │ └── assert.bash │ │ │ │ └── test │ │ │ │ │ ├── 50-assert-11-assert.bats │ │ │ │ │ ├── 50-assert-12-assert_equal.bats │ │ │ │ │ ├── 50-assert-13-assert_success.bats │ │ │ │ │ ├── 50-assert-14-assert_failure.bats │ │ │ │ │ ├── 50-assert-15-assert_output.bats │ │ │ │ │ ├── 50-assert-16-refute_output.bats │ │ │ │ │ ├── 50-assert-17-assert_line.bats │ │ │ │ │ ├── 50-assert-18-refute_line.bats │ │ │ │ │ ├── 50-assert-19-refute.bats │ │ │ │ │ └── test_helper.bash │ │ │ ├── bats-support │ │ │ │ ├── .travis.yml │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── load.bash │ │ │ │ ├── package.json │ │ │ │ ├── script │ │ │ │ │ └── install-bats.sh │ │ │ │ ├── src │ │ │ │ │ ├── error.bash │ │ │ │ │ ├── lang.bash │ │ │ │ │ └── output.bash │ │ │ │ └── test │ │ │ │ │ ├── 50-output-10-batslib_err.bats │ │ │ │ │ ├── 50-output-11-batslib_count_lines.bats │ │ │ │ │ ├── 50-output-12-batslib_is_single_line.bats │ │ │ │ │ ├── 50-output-13-batslib_get_max_single_line_key_width.bats │ │ │ │ │ ├── 50-output-14-batslib_print_kv_single.bats │ │ │ │ │ ├── 50-output-15-batslib_print_kv_multi.bats │ │ │ │ │ ├── 50-output-16-batslib_print_kv_single_or_multi.bats │ │ │ │ │ ├── 50-output-17-batslib_prefix.bats │ │ │ │ │ ├── 50-output-18-batslib_mark.bats │ │ │ │ │ ├── 50-output-19-batslib_decorate.bats │ │ │ │ │ ├── 51-error-10-fail.bats │ │ │ │ │ ├── 52-lang-10-batslib_is_caller.bats │ │ │ │ │ └── test_helper.bash │ │ │ └── bats │ │ │ │ ├── .gitattributes │ │ │ │ ├── .travis.yml │ │ │ │ ├── CONDUCT.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── bin │ │ │ │ └── bats │ │ │ │ ├── install.sh │ │ │ │ ├── libexec │ │ │ │ ├── bats │ │ │ │ ├── bats-exec-suite │ │ │ │ ├── bats-exec-test │ │ │ │ ├── bats-format-tap-stream │ │ │ │ └── bats-preprocess │ │ │ │ ├── man │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── bats.1 │ │ │ │ ├── bats.1.ronn │ │ │ │ ├── bats.7 │ │ │ │ └── bats.7.ronn │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ ├── bats.bats │ │ │ │ ├── fixtures │ │ │ │ ├── bats │ │ │ │ │ ├── dos_line.bats │ │ │ │ │ ├── empty.bats │ │ │ │ │ ├── environment.bats │ │ │ │ │ ├── failing.bats │ │ │ │ │ ├── failing_and_passing.bats │ │ │ │ │ ├── failing_helper.bats │ │ │ │ │ ├── failing_setup.bats │ │ │ │ │ ├── failing_teardown.bats │ │ │ │ │ ├── intact.bats │ │ │ │ │ ├── invalid_tap.bats │ │ │ │ │ ├── load.bats │ │ │ │ │ ├── loop_keep_IFS.bats │ │ │ │ │ ├── output.bats │ │ │ │ │ ├── passing.bats │ │ │ │ │ ├── passing_and_failing.bats │ │ │ │ │ ├── passing_and_skipping.bats │ │ │ │ │ ├── passing_failing_and_skipping.bats │ │ │ │ │ ├── setup.bats │ │ │ │ │ ├── single_line.bats │ │ │ │ │ ├── skipped.bats │ │ │ │ │ ├── teardown.bats │ │ │ │ │ ├── test_helper.bash │ │ │ │ │ └── without_trailing_newline.bats │ │ │ │ └── suite │ │ │ │ │ ├── empty │ │ │ │ │ └── .gitkeep │ │ │ │ │ ├── multiple │ │ │ │ │ ├── a.bats │ │ │ │ │ └── b.bats │ │ │ │ │ └── single │ │ │ │ │ └── test.bats │ │ │ │ ├── suite.bats │ │ │ │ └── test_helper.bash │ │ │ ├── test.bats │ │ │ └── test_helper.bash │ └── mcd-seth │ │ ├── mcd-seth.MD │ │ └── test │ │ ├── account │ │ ├── mcd-cli-test-keystore │ │ └── pass │ │ ├── libs │ │ ├── bats-assert │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── load.bash │ │ │ ├── package.json │ │ │ ├── script │ │ │ │ └── install-bats.sh │ │ │ ├── src │ │ │ │ └── assert.bash │ │ │ └── test │ │ │ │ ├── 50-assert-11-assert.bats │ │ │ │ ├── 50-assert-12-assert_equal.bats │ │ │ │ ├── 50-assert-13-assert_success.bats │ │ │ │ ├── 50-assert-14-assert_failure.bats │ │ │ │ ├── 50-assert-15-assert_output.bats │ │ │ │ ├── 50-assert-16-refute_output.bats │ │ │ │ ├── 50-assert-17-assert_line.bats │ │ │ │ ├── 50-assert-18-refute_line.bats │ │ │ │ ├── 50-assert-19-refute.bats │ │ │ │ └── test_helper.bash │ │ ├── bats-support │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── load.bash │ │ │ ├── package.json │ │ │ ├── script │ │ │ │ └── install-bats.sh │ │ │ ├── src │ │ │ │ ├── error.bash │ │ │ │ ├── lang.bash │ │ │ │ └── output.bash │ │ │ └── test │ │ │ │ ├── 50-output-10-batslib_err.bats │ │ │ │ ├── 50-output-11-batslib_count_lines.bats │ │ │ │ ├── 50-output-12-batslib_is_single_line.bats │ │ │ │ ├── 50-output-13-batslib_get_max_single_line_key_width.bats │ │ │ │ ├── 50-output-14-batslib_print_kv_single.bats │ │ │ │ ├── 50-output-15-batslib_print_kv_multi.bats │ │ │ │ ├── 50-output-16-batslib_print_kv_single_or_multi.bats │ │ │ │ ├── 50-output-17-batslib_prefix.bats │ │ │ │ ├── 50-output-18-batslib_mark.bats │ │ │ │ ├── 50-output-19-batslib_decorate.bats │ │ │ │ ├── 51-error-10-fail.bats │ │ │ │ ├── 52-lang-10-batslib_is_caller.bats │ │ │ │ └── test_helper.bash │ │ └── bats │ │ │ ├── .gitattributes │ │ │ ├── .travis.yml │ │ │ ├── CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bin │ │ │ └── bats │ │ │ ├── install.sh │ │ │ ├── libexec │ │ │ ├── bats │ │ │ ├── bats-exec-suite │ │ │ ├── bats-exec-test │ │ │ ├── bats-format-tap-stream │ │ │ └── bats-preprocess │ │ │ ├── man │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── bats.1 │ │ │ ├── bats.1.ronn │ │ │ ├── bats.7 │ │ │ └── bats.7.ronn │ │ │ ├── package.json │ │ │ └── test │ │ │ ├── bats.bats │ │ │ ├── fixtures │ │ │ ├── bats │ │ │ │ ├── dos_line.bats │ │ │ │ ├── empty.bats │ │ │ │ ├── environment.bats │ │ │ │ ├── failing.bats │ │ │ │ ├── failing_and_passing.bats │ │ │ │ ├── failing_helper.bats │ │ │ │ ├── failing_setup.bats │ │ │ │ ├── failing_teardown.bats │ │ │ │ ├── intact.bats │ │ │ │ ├── invalid_tap.bats │ │ │ │ ├── load.bats │ │ │ │ ├── loop_keep_IFS.bats │ │ │ │ ├── output.bats │ │ │ │ ├── passing.bats │ │ │ │ ├── passing_and_failing.bats │ │ │ │ ├── passing_and_skipping.bats │ │ │ │ ├── passing_failing_and_skipping.bats │ │ │ │ ├── setup.bats │ │ │ │ ├── single_line.bats │ │ │ │ ├── skipped.bats │ │ │ │ ├── teardown.bats │ │ │ │ ├── test_helper.bash │ │ │ │ └── without_trailing_newline.bats │ │ │ └── suite │ │ │ │ ├── empty │ │ │ │ └── .gitkeep │ │ │ │ ├── multiple │ │ │ │ ├── a.bats │ │ │ │ └── b.bats │ │ │ │ └── single │ │ │ │ └── test.bats │ │ │ ├── suite.bats │ │ │ └── test_helper.bash │ │ ├── test.bats │ │ └── test_helper.bash └── package.json └── vault ├── README.md ├── cdp-manager-guide └── cdp-manager-guide.md ├── monitoring-collateral-types-and-vaults └── monitoring-collateral-types-and-vaults.md └── vault-integration-guide ├── img ├── DepositETH.png ├── GenerateDAI.png ├── OpenVaultGenerateDai.png ├── PayBackAllDAIAndWithdrawETH.png ├── PayBackDai.png ├── SetupDSProxy.png ├── SingleETHVaultUserFlow.png ├── WithdrawETH.png └── cdpguide-package.png ├── sequence-diagrams └── README.md └── vault-integration-guide.md /.gitignore: -------------------------------------------------------------------------------- 1 | # General 2 | .DS_Store 3 | .AppleDouble 4 | .LSOverride 5 | node_modules/ 6 | package-lock.json -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/.markdownlint.json -------------------------------------------------------------------------------- /CONTRIBUTING: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/LICENSE -------------------------------------------------------------------------------- /Oasis/intro-to-oasis/assets/cherry-order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/Oasis/intro-to-oasis/assets/cherry-order.png -------------------------------------------------------------------------------- /Oasis/intro-to-oasis/assets/cherry-transaction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/Oasis/intro-to-oasis/assets/cherry-transaction.png -------------------------------------------------------------------------------- /Oasis/intro-to-oasis/assets/order-book-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/Oasis/intro-to-oasis/assets/order-book-1.png -------------------------------------------------------------------------------- /Oasis/intro-to-oasis/assets/order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/Oasis/intro-to-oasis/assets/order.png -------------------------------------------------------------------------------- /Oasis/intro-to-oasis/assets/sell-order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/Oasis/intro-to-oasis/assets/sell-order.png -------------------------------------------------------------------------------- /Oasis/intro-to-oasis/assets/transaction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/Oasis/intro-to-oasis/assets/transaction.png -------------------------------------------------------------------------------- /Oasis/intro-to-oasis/intro-to-oasis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/Oasis/intro-to-oasis/intro-to-oasis.md -------------------------------------------------------------------------------- /Oasis/oasis-direct-proxy/oasis-direct-proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/Oasis/oasis-direct-proxy/oasis-direct-proxy.md -------------------------------------------------------------------------------- /Oasis/oasisdex-market-maker-guide/oasisdex-market-maker-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/Oasis/oasisdex-market-maker-guide/oasisdex-market-maker-guide.md -------------------------------------------------------------------------------- /Oasis/oasisdex-market-taker-guide/oasisdex-market-taker-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/Oasis/oasisdex-market-taker-guide/oasisdex-market-taker-guide.md -------------------------------------------------------------------------------- /Oasis/oasisdex-ui-guide/oasisdex-ui-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/Oasis/oasisdex-ui-guide/oasisdex-ui-guide.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/README.md -------------------------------------------------------------------------------- /dai/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/dai/README.md -------------------------------------------------------------------------------- /dai/dai-in-smart-contracts/dai-in-smart-contracts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/dai/dai-in-smart-contracts/dai-in-smart-contracts.md -------------------------------------------------------------------------------- /dai/dai-in-smart-contracts/images/CompileVersion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/dai/dai-in-smart-contracts/images/CompileVersion.png -------------------------------------------------------------------------------- /dai/dai-in-smart-contracts/images/DaiFaucet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/dai/dai-in-smart-contracts/images/DaiFaucet.png -------------------------------------------------------------------------------- /dai/dai-in-smart-contracts/images/Deploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/dai/dai-in-smart-contracts/images/Deploy.png -------------------------------------------------------------------------------- /dai/dai-in-smart-contracts/images/FullContract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/dai/dai-in-smart-contracts/images/FullContract.png -------------------------------------------------------------------------------- /dai/dai-in-smart-contracts/images/Interact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/dai/dai-in-smart-contracts/images/Interact.png -------------------------------------------------------------------------------- /dai/dai-in-smart-contracts/images/Successfull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/dai/dai-in-smart-contracts/images/Successfull.png -------------------------------------------------------------------------------- /dai/dai-in-smart-contracts/images/compiled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/dai/dai-in-smart-contracts/images/compiled.png -------------------------------------------------------------------------------- /dai/dai-in-smart-contracts/images/pasteCode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/dai/dai-in-smart-contracts/images/pasteCode.png -------------------------------------------------------------------------------- /dai/dai-in-smart-contracts/images/verify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/dai/dai-in-smart-contracts/images/verify.png -------------------------------------------------------------------------------- /dai/dai-in-smart-contracts/images/verifyAndPublish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/dai/dai-in-smart-contracts/images/verifyAndPublish.png -------------------------------------------------------------------------------- /dai/dai-supply/dai-supply.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/dai/dai-supply/dai-supply.md -------------------------------------------------------------------------------- /dai/dai-supply/images/dai_venn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/dai/dai-supply/images/dai_venn.png -------------------------------------------------------------------------------- /dai/dai-token/dai-token.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/dai/dai-token/dai-token.md -------------------------------------------------------------------------------- /dai/dsr-integration-guide/dsr-integration-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/dai/dsr-integration-guide/dsr-integration-guide.md -------------------------------------------------------------------------------- /dai/dsr-integration-guide/dsr.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/dai/dsr-integration-guide/dsr.sol -------------------------------------------------------------------------------- /dai/dsr-integration-guide/dsrManagerExample.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/dai/dsr-integration-guide/dsrManagerExample.sol -------------------------------------------------------------------------------- /dai/dsr-manager-docs/dsr-manager-docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/dai/dsr-manager-docs/dsr-manager-docs.md -------------------------------------------------------------------------------- /dai/how-to-use-permit-function/how-to-use-permit-function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/dai/how-to-use-permit-function/how-to-use-permit-function.md -------------------------------------------------------------------------------- /devtools/Dai.js/How-to-build-dai-js-wallet-plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/devtools/Dai.js/How-to-build-dai-js-wallet-plugin.md -------------------------------------------------------------------------------- /devtools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/devtools/README.md -------------------------------------------------------------------------------- /devtools/seth/seth-guide/seth-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/devtools/seth/seth-guide/seth-guide.md -------------------------------------------------------------------------------- /devtools/test-chain-guide/test-chain-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/devtools/test-chain-guide/test-chain-guide.md -------------------------------------------------------------------------------- /devtools/working-with-dsproxy/working-with-dsproxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/devtools/working-with-dsproxy/working-with-dsproxy.md -------------------------------------------------------------------------------- /exchanges/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/exchanges/README.md -------------------------------------------------------------------------------- /exchanges/exchanges-guide/exchanges-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/exchanges/exchanges-guide/exchanges-guide.md -------------------------------------------------------------------------------- /gnosis-multisig/dsr-gnosis-multisig-guide/dsr-gnosis-multisig-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/gnosis-multisig/dsr-gnosis-multisig-guide/dsr-gnosis-multisig-guide.md -------------------------------------------------------------------------------- /gnosis-multisig/dsr-gnosis-multisig-guide/dsr-manager-gnosis-multisig-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/gnosis-multisig/dsr-gnosis-multisig-guide/dsr-manager-gnosis-multisig-guide.md -------------------------------------------------------------------------------- /gnosis-multisig/migrating-gnosis-multisig-guide/migrating-gnosis-multisig-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/gnosis-multisig/migrating-gnosis-multisig-guide/migrating-gnosis-multisig-guide.md -------------------------------------------------------------------------------- /gnosis-multisig/nested-multisig-gnosis-safe-wallet-setup-walkthrough/nested-multisig-gnosis-safe-wallet-setup-walkthrough.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/gnosis-multisig/nested-multisig-gnosis-safe-wallet-setup-walkthrough/nested-multisig-gnosis-safe-wallet-setup-walkthrough.md -------------------------------------------------------------------------------- /gnosis-multisig/nested-multisig-gnosis-safe-wallet-setup-walkthrough/pictures/NestedMultiSig.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/gnosis-multisig/nested-multisig-gnosis-safe-wallet-setup-walkthrough/pictures/NestedMultiSig.jpg -------------------------------------------------------------------------------- /gnosis-multisig/nested-multisig-gnosis-safe-wallet-setup-walkthrough/pictures/Untitled 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/gnosis-multisig/nested-multisig-gnosis-safe-wallet-setup-walkthrough/pictures/Untitled 1.png -------------------------------------------------------------------------------- /gnosis-multisig/nested-multisig-gnosis-safe-wallet-setup-walkthrough/pictures/Untitled 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/gnosis-multisig/nested-multisig-gnosis-safe-wallet-setup-walkthrough/pictures/Untitled 2.png -------------------------------------------------------------------------------- /gnosis-multisig/nested-multisig-gnosis-safe-wallet-setup-walkthrough/pictures/Untitled 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/gnosis-multisig/nested-multisig-gnosis-safe-wallet-setup-walkthrough/pictures/Untitled 3.png -------------------------------------------------------------------------------- /gnosis-multisig/nested-multisig-gnosis-safe-wallet-setup-walkthrough/pictures/Untitled 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/gnosis-multisig/nested-multisig-gnosis-safe-wallet-setup-walkthrough/pictures/Untitled 4.png -------------------------------------------------------------------------------- /gnosis-multisig/nested-multisig-gnosis-safe-wallet-setup-walkthrough/pictures/Untitled 5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/gnosis-multisig/nested-multisig-gnosis-safe-wallet-setup-walkthrough/pictures/Untitled 5.png -------------------------------------------------------------------------------- /gnosis-multisig/nested-multisig-gnosis-safe-wallet-setup-walkthrough/pictures/Untitled 6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/gnosis-multisig/nested-multisig-gnosis-safe-wallet-setup-walkthrough/pictures/Untitled 6.png -------------------------------------------------------------------------------- /gnosis-multisig/nested-multisig-gnosis-safe-wallet-setup-walkthrough/pictures/Untitled 7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/gnosis-multisig/nested-multisig-gnosis-safe-wallet-setup-walkthrough/pictures/Untitled 7.png -------------------------------------------------------------------------------- /gnosis-multisig/nested-multisig-gnosis-safe-wallet-setup-walkthrough/pictures/Untitled 8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/gnosis-multisig/nested-multisig-gnosis-safe-wallet-setup-walkthrough/pictures/Untitled 8.png -------------------------------------------------------------------------------- /gnosis-multisig/nested-multisig-gnosis-safe-wallet-setup-walkthrough/pictures/Untitled 9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/gnosis-multisig/nested-multisig-gnosis-safe-wallet-setup-walkthrough/pictures/Untitled 9.png -------------------------------------------------------------------------------- /gnosis-multisig/nested-multisig-gnosis-safe-wallet-setup-walkthrough/pictures/Untitled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/gnosis-multisig/nested-multisig-gnosis-safe-wallet-setup-walkthrough/pictures/Untitled.png -------------------------------------------------------------------------------- /gnosis-multisig/vote-proxy-setup-gnosis-multisig/pictures/proxyFactory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/gnosis-multisig/vote-proxy-setup-gnosis-multisig/pictures/proxyFactory.png -------------------------------------------------------------------------------- /gnosis-multisig/vote-proxy-setup-gnosis-multisig/pictures/proxycontract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/gnosis-multisig/vote-proxy-setup-gnosis-multisig/pictures/proxycontract.png -------------------------------------------------------------------------------- /gnosis-multisig/vote-proxy-setup-gnosis-multisig/pictures/voteFront.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/gnosis-multisig/vote-proxy-setup-gnosis-multisig/pictures/voteFront.png -------------------------------------------------------------------------------- /gnosis-multisig/vote-proxy-setup-gnosis-multisig/vote-proxy-setup-gnosis-multisig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/gnosis-multisig/vote-proxy-setup-gnosis-multisig/vote-proxy-setup-gnosis-multisig.md -------------------------------------------------------------------------------- /governance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/governance/README.md -------------------------------------------------------------------------------- /governance/collateral-redemption-during-emergency-shutdown/Collateral Redemption during Emergency Shutdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/governance/collateral-redemption-during-emergency-shutdown/Collateral Redemption during Emergency Shutdown.md -------------------------------------------------------------------------------- /governance/emergency-shutdown-cli-documentation/Emergency-Shutdown-CLI-Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/governance/emergency-shutdown-cli-documentation/Emergency-Shutdown-CLI-Documentation.md -------------------------------------------------------------------------------- /governance/vote-proxy-setup-airgapped-machine/pictures/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/governance/vote-proxy-setup-airgapped-machine/pictures/lock.png -------------------------------------------------------------------------------- /governance/vote-proxy-setup-airgapped-machine/pictures/lockmkr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/governance/vote-proxy-setup-airgapped-machine/pictures/lockmkr.png -------------------------------------------------------------------------------- /governance/vote-proxy-setup-airgapped-machine/pictures/proxycontract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/governance/vote-proxy-setup-airgapped-machine/pictures/proxycontract.png -------------------------------------------------------------------------------- /governance/vote-proxy-setup-airgapped-machine/pictures/voteFront.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/governance/vote-proxy-setup-airgapped-machine/pictures/voteFront.png -------------------------------------------------------------------------------- /governance/vote-proxy-setup-airgapped-machine/pictures/voteproxyfactory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/governance/vote-proxy-setup-airgapped-machine/pictures/voteproxyfactory.png -------------------------------------------------------------------------------- /governance/vote-proxy-setup-airgapped-machine/vote-proxy-setup-airgapped-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/governance/vote-proxy-setup-airgapped-machine/vote-proxy-setup-airgapped-machine.md -------------------------------------------------------------------------------- /keepers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/keepers/README.md -------------------------------------------------------------------------------- /keepers/auction-keeper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/keepers/auction-keeper -------------------------------------------------------------------------------- /keepers/auction-keeper-bot-setup-guide/auction-keeper-bot-setup-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/keepers/auction-keeper-bot-setup-guide/auction-keeper-bot-setup-guide.md -------------------------------------------------------------------------------- /keepers/market-maker-keeper-bot-setup-guide/market-maker-keeper-bot-setup-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/keepers/market-maker-keeper-bot-setup-guide/market-maker-keeper-bot-setup-guide.md -------------------------------------------------------------------------------- /keepers/simple-arbitrage-keeper/pictures/lifecycle.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/keepers/simple-arbitrage-keeper/pictures/lifecycle.jpeg -------------------------------------------------------------------------------- /keepers/simple-arbitrage-keeper/simple-arbitrage-keeper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/keepers/simple-arbitrage-keeper/simple-arbitrage-keeper.md -------------------------------------------------------------------------------- /market-makers/market-makers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/market-makers/market-makers.md -------------------------------------------------------------------------------- /mcd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/mcd/README.md -------------------------------------------------------------------------------- /mcd/add-collateral-type-testnet/add-collateral-type-testnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/mcd/add-collateral-type-testnet/add-collateral-type-testnet.md -------------------------------------------------------------------------------- /mcd/collateral-auction-integration-guide/collateral-auction-integration-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/mcd/collateral-auction-integration-guide/collateral-auction-integration-guide.md -------------------------------------------------------------------------------- /mcd/emergency-shutdown-design-patterns/emergency-shutdown-design-patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/mcd/emergency-shutdown-design-patterns/emergency-shutdown-design-patterns.md -------------------------------------------------------------------------------- /mcd/emergency-shutdown/emergency-shutdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/mcd/emergency-shutdown/emergency-shutdown.md -------------------------------------------------------------------------------- /mcd/intro-rate-mechanism/intro-rate-mechanism.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/mcd/intro-rate-mechanism/intro-rate-mechanism.md -------------------------------------------------------------------------------- /mcd/mcd-101/mcd-101.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/mcd/mcd-101/mcd-101.md -------------------------------------------------------------------------------- /mcd/mcd-101/pictures/50_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/mcd/mcd-101/pictures/50_1.png -------------------------------------------------------------------------------- /mcd/mcd-101/pictures/50_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/mcd/mcd-101/pictures/50_2.png -------------------------------------------------------------------------------- /mcd/mcd-101/pictures/51_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/mcd/mcd-101/pictures/51_1.png -------------------------------------------------------------------------------- /mcd/mcd-101/pictures/51_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/mcd/mcd-101/pictures/51_2.png -------------------------------------------------------------------------------- /mcd/mcd-101/pictures/51_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/mcd/mcd-101/pictures/51_3.png -------------------------------------------------------------------------------- /mcd/mcd-101/pictures/CDP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/mcd/mcd-101/pictures/CDP.png -------------------------------------------------------------------------------- /mcd/mcd-101/pictures/Proxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/mcd/mcd-101/pictures/Proxy.png -------------------------------------------------------------------------------- /mcd/mcd-101/pictures/SRupdated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/mcd/mcd-101/pictures/SRupdated.png -------------------------------------------------------------------------------- /mcd/mcd-101/pictures/assetStates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/mcd/mcd-101/pictures/assetStates.png -------------------------------------------------------------------------------- /mcd/mcd-101/pictures/auction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/mcd/mcd-101/pictures/auction.png -------------------------------------------------------------------------------- /mcd/mcd-101/pictures/bitcoinChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/mcd/mcd-101/pictures/bitcoinChart.png -------------------------------------------------------------------------------- /mcd/mcd-101/pictures/cdps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/mcd/mcd-101/pictures/cdps.png -------------------------------------------------------------------------------- /mcd/mcd-101/pictures/cdpstates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/mcd/mcd-101/pictures/cdpstates.png -------------------------------------------------------------------------------- /mcd/mcd-101/pictures/daiDrawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/mcd/mcd-101/pictures/daiDrawn.png -------------------------------------------------------------------------------- /mcd/mcd-101/pictures/daipeg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/mcd/mcd-101/pictures/daipeg.png -------------------------------------------------------------------------------- /mcd/mcd-101/pictures/governance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/mcd/mcd-101/pictures/governance.png -------------------------------------------------------------------------------- /mcd/mcd-101/pictures/house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/mcd/mcd-101/pictures/house.png -------------------------------------------------------------------------------- /mcd/mcd-101/pictures/idealactrate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/mcd/mcd-101/pictures/idealactrate.png -------------------------------------------------------------------------------- /mcd/mcd-101/pictures/interactionD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/mcd/mcd-101/pictures/interactionD.png -------------------------------------------------------------------------------- /mcd/mcd-101/pictures/oracle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/mcd/mcd-101/pictures/oracle.png -------------------------------------------------------------------------------- /mcd/mcd-101/pictures/smartContracts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/mcd/mcd-101/pictures/smartContracts.png -------------------------------------------------------------------------------- /mcd/mcd-101/pictures/supplyDemand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/mcd/mcd-101/pictures/supplyDemand.png -------------------------------------------------------------------------------- /mcd/mcd-cli/mcd-cli-guide/mcd-cli-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/mcd/mcd-cli/mcd-cli-guide/mcd-cli-guide.md -------------------------------------------------------------------------------- /mcd/mcd-deplyoment/mcd-deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/mcd/mcd-deplyoment/mcd-deployment.md -------------------------------------------------------------------------------- /mcd/mcd-seth/mcd-seth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/mcd/mcd-seth/mcd-seth.md -------------------------------------------------------------------------------- /mcd/upgrading-to-multi-collateral-dai/cli-mcd-migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/mcd/upgrading-to-multi-collateral-dai/cli-mcd-migration.md -------------------------------------------------------------------------------- /mcd/upgrading-to-multi-collateral-dai/figures/cdpmigration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/mcd/upgrading-to-multi-collateral-dai/figures/cdpmigration.png -------------------------------------------------------------------------------- /mcd/upgrading-to-multi-collateral-dai/figures/exchangedaimigration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/mcd/upgrading-to-multi-collateral-dai/figures/exchangedaimigration.png -------------------------------------------------------------------------------- /mcd/upgrading-to-multi-collateral-dai/figures/migrating10sai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/mcd/upgrading-to-multi-collateral-dai/figures/migrating10sai.png -------------------------------------------------------------------------------- /mcd/upgrading-to-multi-collateral-dai/figures/saimigration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/mcd/upgrading-to-multi-collateral-dai/figures/saimigration.png -------------------------------------------------------------------------------- /mcd/upgrading-to-multi-collateral-dai/figures/saimigrationfunctions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/mcd/upgrading-to-multi-collateral-dai/figures/saimigrationfunctions.png -------------------------------------------------------------------------------- /mcd/upgrading-to-multi-collateral-dai/figures/userflowexchange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/mcd/upgrading-to-multi-collateral-dai/figures/userflowexchange.png -------------------------------------------------------------------------------- /mcd/upgrading-to-multi-collateral-dai/upgrading-to-multi-collateral-dai.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/mcd/upgrading-to-multi-collateral-dai/upgrading-to-multi-collateral-dai.md -------------------------------------------------------------------------------- /mkr/mkr-token/mkr-token.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/mkr/mkr-token/mkr-token.md -------------------------------------------------------------------------------- /oracles/oracle-integration-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/oracles/oracle-integration-guide.md -------------------------------------------------------------------------------- /sample/sample-guide/sample-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/sample/sample-guide/sample-guide.md -------------------------------------------------------------------------------- /tests/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/README.MD -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/mcd-cli.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/mcd-cli.MD -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/account/mcd-cli-test-keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/account/mcd-cli-test-keystore -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/account/pass: -------------------------------------------------------------------------------- 1 | mcd-cli-test 2 | -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats-assert/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats-assert/.travis.yml -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats-assert/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats-assert/CHANGELOG.md -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats-assert/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats-assert/LICENSE -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats-assert/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats-assert/README.md -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats-assert/load.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats-assert/load.bash -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats-assert/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats-assert/package.json -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats-assert/script/install-bats.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats-assert/script/install-bats.sh -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats-assert/src/assert.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats-assert/src/assert.bash -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats-assert/test/50-assert-11-assert.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats-assert/test/50-assert-11-assert.bats -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats-assert/test/50-assert-12-assert_equal.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats-assert/test/50-assert-12-assert_equal.bats -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats-assert/test/50-assert-13-assert_success.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats-assert/test/50-assert-13-assert_success.bats -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats-assert/test/50-assert-14-assert_failure.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats-assert/test/50-assert-14-assert_failure.bats -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats-assert/test/50-assert-15-assert_output.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats-assert/test/50-assert-15-assert_output.bats -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats-assert/test/50-assert-16-refute_output.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats-assert/test/50-assert-16-refute_output.bats -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats-assert/test/50-assert-17-assert_line.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats-assert/test/50-assert-17-assert_line.bats -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats-assert/test/50-assert-18-refute_line.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats-assert/test/50-assert-18-refute_line.bats -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats-assert/test/50-assert-19-refute.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats-assert/test/50-assert-19-refute.bats -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats-assert/test/test_helper.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats-assert/test/test_helper.bash -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats-support/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats-support/.travis.yml -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats-support/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats-support/CHANGELOG.md -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats-support/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats-support/LICENSE -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats-support/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats-support/README.md -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats-support/load.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats-support/load.bash -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats-support/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats-support/package.json -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats-support/script/install-bats.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats-support/script/install-bats.sh -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats-support/src/error.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats-support/src/error.bash -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats-support/src/lang.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats-support/src/lang.bash -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats-support/src/output.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats-support/src/output.bash -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats-support/test/50-output-10-batslib_err.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats-support/test/50-output-10-batslib_err.bats -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats-support/test/50-output-11-batslib_count_lines.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats-support/test/50-output-11-batslib_count_lines.bats -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats-support/test/50-output-12-batslib_is_single_line.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats-support/test/50-output-12-batslib_is_single_line.bats -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats-support/test/50-output-13-batslib_get_max_single_line_key_width.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats-support/test/50-output-13-batslib_get_max_single_line_key_width.bats -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats-support/test/50-output-14-batslib_print_kv_single.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats-support/test/50-output-14-batslib_print_kv_single.bats -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats-support/test/50-output-15-batslib_print_kv_multi.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats-support/test/50-output-15-batslib_print_kv_multi.bats -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats-support/test/50-output-16-batslib_print_kv_single_or_multi.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats-support/test/50-output-16-batslib_print_kv_single_or_multi.bats -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats-support/test/50-output-17-batslib_prefix.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats-support/test/50-output-17-batslib_prefix.bats -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats-support/test/50-output-18-batslib_mark.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats-support/test/50-output-18-batslib_mark.bats -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats-support/test/50-output-19-batslib_decorate.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats-support/test/50-output-19-batslib_decorate.bats -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats-support/test/51-error-10-fail.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats-support/test/51-error-10-fail.bats -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats-support/test/52-lang-10-batslib_is_caller.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats-support/test/52-lang-10-batslib_is_caller.bats -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats-support/test/test_helper.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats-support/test/test_helper.bash -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats/.gitattributes -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats/.travis.yml -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats/CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats/CONDUCT.md -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats/LICENSE -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats/README.md -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats/bin/bats: -------------------------------------------------------------------------------- 1 | ../libexec/bats -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats/install.sh -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats/libexec/bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats/libexec/bats -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats/libexec/bats-exec-suite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats/libexec/bats-exec-suite -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats/libexec/bats-exec-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats/libexec/bats-exec-test -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats/libexec/bats-format-tap-stream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats/libexec/bats-format-tap-stream -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats/libexec/bats-preprocess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats/libexec/bats-preprocess -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats/man/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats/man/Makefile -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats/man/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats/man/README.md -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats/man/bats.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats/man/bats.1 -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats/man/bats.1.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats/man/bats.1.ronn -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats/man/bats.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats/man/bats.7 -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats/man/bats.7.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats/man/bats.7.ronn -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats/package.json -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats/test/bats.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats/test/bats.bats -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats/test/fixtures/bats/dos_line.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats/test/fixtures/bats/dos_line.bats -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats/test/fixtures/bats/empty.bats: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats/test/fixtures/bats/environment.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats/test/fixtures/bats/environment.bats -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats/test/fixtures/bats/failing.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats/test/fixtures/bats/failing.bats -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats/test/fixtures/bats/failing_and_passing.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats/test/fixtures/bats/failing_and_passing.bats -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats/test/fixtures/bats/failing_helper.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats/test/fixtures/bats/failing_helper.bats -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats/test/fixtures/bats/failing_setup.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats/test/fixtures/bats/failing_setup.bats -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats/test/fixtures/bats/failing_teardown.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats/test/fixtures/bats/failing_teardown.bats -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats/test/fixtures/bats/intact.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats/test/fixtures/bats/intact.bats -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats/test/fixtures/bats/invalid_tap.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats/test/fixtures/bats/invalid_tap.bats -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats/test/fixtures/bats/load.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats/test/fixtures/bats/load.bats -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats/test/fixtures/bats/loop_keep_IFS.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats/test/fixtures/bats/loop_keep_IFS.bats -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats/test/fixtures/bats/output.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats/test/fixtures/bats/output.bats -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats/test/fixtures/bats/passing.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats/test/fixtures/bats/passing.bats -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats/test/fixtures/bats/passing_and_failing.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats/test/fixtures/bats/passing_and_failing.bats -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats/test/fixtures/bats/passing_and_skipping.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats/test/fixtures/bats/passing_and_skipping.bats -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats/test/fixtures/bats/passing_failing_and_skipping.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats/test/fixtures/bats/passing_failing_and_skipping.bats -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats/test/fixtures/bats/setup.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats/test/fixtures/bats/setup.bats -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats/test/fixtures/bats/single_line.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats/test/fixtures/bats/single_line.bats -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats/test/fixtures/bats/skipped.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats/test/fixtures/bats/skipped.bats -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats/test/fixtures/bats/teardown.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats/test/fixtures/bats/teardown.bats -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats/test/fixtures/bats/test_helper.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats/test/fixtures/bats/test_helper.bash -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats/test/fixtures/bats/without_trailing_newline.bats: -------------------------------------------------------------------------------- 1 | @test "truth" { 2 | true 3 | } -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats/test/fixtures/suite/empty/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats/test/fixtures/suite/multiple/a.bats: -------------------------------------------------------------------------------- 1 | @test "truth" { 2 | true 3 | } 4 | -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats/test/fixtures/suite/multiple/b.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats/test/fixtures/suite/multiple/b.bats -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats/test/fixtures/suite/single/test.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats/test/fixtures/suite/single/test.bats -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats/test/suite.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats/test/suite.bats -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/libs/bats/test/test_helper.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/libs/bats/test/test_helper.bash -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/test.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/test.bats -------------------------------------------------------------------------------- /tests/devtools/mcd-cli/test/test_helper.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/mcd-cli/test/test_helper.bash -------------------------------------------------------------------------------- /tests/devtools/test-chain-guide/cdp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/test-chain-guide/cdp.js -------------------------------------------------------------------------------- /tests/devtools/test-chain-guide/cdp.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/test-chain-guide/cdp.test.js -------------------------------------------------------------------------------- /tests/devtools/test-chain-guide/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/test-chain-guide/package.json -------------------------------------------------------------------------------- /tests/devtools/test-chain-guide/test-chain-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/devtools/test-chain-guide/test-chain-guide.md -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/mcd-seth-cdp-manager.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/mcd-seth-cdp-manager.MD -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/account/mcd-cli-test-keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/account/mcd-cli-test-keystore -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/account/pass: -------------------------------------------------------------------------------- 1 | mcd-cli-test 2 | -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats-assert/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats-assert/.travis.yml -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats-assert/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats-assert/CHANGELOG.md -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats-assert/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats-assert/LICENSE -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats-assert/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats-assert/README.md -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats-assert/load.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats-assert/load.bash -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats-assert/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats-assert/package.json -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats-assert/script/install-bats.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats-assert/script/install-bats.sh -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats-assert/src/assert.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats-assert/src/assert.bash -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats-assert/test/50-assert-11-assert.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats-assert/test/50-assert-11-assert.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats-assert/test/50-assert-12-assert_equal.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats-assert/test/50-assert-12-assert_equal.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats-assert/test/50-assert-13-assert_success.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats-assert/test/50-assert-13-assert_success.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats-assert/test/50-assert-14-assert_failure.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats-assert/test/50-assert-14-assert_failure.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats-assert/test/50-assert-15-assert_output.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats-assert/test/50-assert-15-assert_output.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats-assert/test/50-assert-16-refute_output.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats-assert/test/50-assert-16-refute_output.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats-assert/test/50-assert-17-assert_line.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats-assert/test/50-assert-17-assert_line.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats-assert/test/50-assert-18-refute_line.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats-assert/test/50-assert-18-refute_line.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats-assert/test/50-assert-19-refute.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats-assert/test/50-assert-19-refute.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats-assert/test/test_helper.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats-assert/test/test_helper.bash -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats-support/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats-support/.travis.yml -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats-support/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats-support/CHANGELOG.md -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats-support/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats-support/LICENSE -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats-support/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats-support/README.md -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats-support/load.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats-support/load.bash -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats-support/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats-support/package.json -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats-support/script/install-bats.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats-support/script/install-bats.sh -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats-support/src/error.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats-support/src/error.bash -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats-support/src/lang.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats-support/src/lang.bash -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats-support/src/output.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats-support/src/output.bash -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats-support/test/50-output-10-batslib_err.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats-support/test/50-output-10-batslib_err.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats-support/test/50-output-11-batslib_count_lines.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats-support/test/50-output-11-batslib_count_lines.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats-support/test/50-output-12-batslib_is_single_line.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats-support/test/50-output-12-batslib_is_single_line.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats-support/test/50-output-13-batslib_get_max_single_line_key_width.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats-support/test/50-output-13-batslib_get_max_single_line_key_width.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats-support/test/50-output-14-batslib_print_kv_single.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats-support/test/50-output-14-batslib_print_kv_single.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats-support/test/50-output-15-batslib_print_kv_multi.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats-support/test/50-output-15-batslib_print_kv_multi.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats-support/test/50-output-16-batslib_print_kv_single_or_multi.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats-support/test/50-output-16-batslib_print_kv_single_or_multi.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats-support/test/50-output-17-batslib_prefix.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats-support/test/50-output-17-batslib_prefix.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats-support/test/50-output-18-batslib_mark.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats-support/test/50-output-18-batslib_mark.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats-support/test/50-output-19-batslib_decorate.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats-support/test/50-output-19-batslib_decorate.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats-support/test/51-error-10-fail.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats-support/test/51-error-10-fail.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats-support/test/52-lang-10-batslib_is_caller.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats-support/test/52-lang-10-batslib_is_caller.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats-support/test/test_helper.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats-support/test/test_helper.bash -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats/.gitattributes -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats/.travis.yml -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats/CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats/CONDUCT.md -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats/LICENSE -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats/README.md -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats/bin/bats: -------------------------------------------------------------------------------- 1 | ../libexec/bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats/install.sh -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats/libexec/bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats/libexec/bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats/libexec/bats-exec-suite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats/libexec/bats-exec-suite -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats/libexec/bats-exec-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats/libexec/bats-exec-test -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats/libexec/bats-format-tap-stream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats/libexec/bats-format-tap-stream -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats/libexec/bats-preprocess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats/libexec/bats-preprocess -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats/man/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats/man/Makefile -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats/man/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats/man/README.md -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats/man/bats.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats/man/bats.1 -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats/man/bats.1.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats/man/bats.1.ronn -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats/man/bats.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats/man/bats.7 -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats/man/bats.7.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats/man/bats.7.ronn -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats/package.json -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats/test/bats.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats/test/bats.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats/test/fixtures/bats/dos_line.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats/test/fixtures/bats/dos_line.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats/test/fixtures/bats/empty.bats: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats/test/fixtures/bats/environment.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats/test/fixtures/bats/environment.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats/test/fixtures/bats/failing.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats/test/fixtures/bats/failing.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats/test/fixtures/bats/failing_and_passing.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats/test/fixtures/bats/failing_and_passing.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats/test/fixtures/bats/failing_helper.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats/test/fixtures/bats/failing_helper.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats/test/fixtures/bats/failing_setup.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats/test/fixtures/bats/failing_setup.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats/test/fixtures/bats/failing_teardown.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats/test/fixtures/bats/failing_teardown.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats/test/fixtures/bats/intact.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats/test/fixtures/bats/intact.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats/test/fixtures/bats/invalid_tap.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats/test/fixtures/bats/invalid_tap.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats/test/fixtures/bats/load.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats/test/fixtures/bats/load.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats/test/fixtures/bats/loop_keep_IFS.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats/test/fixtures/bats/loop_keep_IFS.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats/test/fixtures/bats/output.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats/test/fixtures/bats/output.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats/test/fixtures/bats/passing.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats/test/fixtures/bats/passing.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats/test/fixtures/bats/passing_and_failing.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats/test/fixtures/bats/passing_and_failing.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats/test/fixtures/bats/passing_and_skipping.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats/test/fixtures/bats/passing_and_skipping.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats/test/fixtures/bats/passing_failing_and_skipping.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats/test/fixtures/bats/passing_failing_and_skipping.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats/test/fixtures/bats/setup.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats/test/fixtures/bats/setup.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats/test/fixtures/bats/single_line.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats/test/fixtures/bats/single_line.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats/test/fixtures/bats/skipped.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats/test/fixtures/bats/skipped.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats/test/fixtures/bats/teardown.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats/test/fixtures/bats/teardown.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats/test/fixtures/bats/test_helper.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats/test/fixtures/bats/test_helper.bash -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats/test/fixtures/bats/without_trailing_newline.bats: -------------------------------------------------------------------------------- 1 | @test "truth" { 2 | true 3 | } -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats/test/fixtures/suite/empty/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats/test/fixtures/suite/multiple/a.bats: -------------------------------------------------------------------------------- 1 | @test "truth" { 2 | true 3 | } 4 | -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats/test/fixtures/suite/multiple/b.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats/test/fixtures/suite/multiple/b.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats/test/fixtures/suite/single/test.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats/test/fixtures/suite/single/test.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats/test/suite.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats/test/suite.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/libs/bats/test/test_helper.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/libs/bats/test/test_helper.bash -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/test.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/test.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth-cdp-manager/test/test_helper.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth-cdp-manager/test/test_helper.bash -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/mcd-seth.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/mcd-seth.MD -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/account/mcd-cli-test-keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/account/mcd-cli-test-keystore -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/account/pass: -------------------------------------------------------------------------------- 1 | mcd-cli-test 2 | -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats-assert/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats-assert/.travis.yml -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats-assert/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats-assert/CHANGELOG.md -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats-assert/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats-assert/LICENSE -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats-assert/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats-assert/README.md -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats-assert/load.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats-assert/load.bash -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats-assert/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats-assert/package.json -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats-assert/script/install-bats.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats-assert/script/install-bats.sh -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats-assert/src/assert.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats-assert/src/assert.bash -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats-assert/test/50-assert-11-assert.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats-assert/test/50-assert-11-assert.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats-assert/test/50-assert-12-assert_equal.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats-assert/test/50-assert-12-assert_equal.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats-assert/test/50-assert-13-assert_success.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats-assert/test/50-assert-13-assert_success.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats-assert/test/50-assert-14-assert_failure.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats-assert/test/50-assert-14-assert_failure.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats-assert/test/50-assert-15-assert_output.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats-assert/test/50-assert-15-assert_output.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats-assert/test/50-assert-16-refute_output.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats-assert/test/50-assert-16-refute_output.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats-assert/test/50-assert-17-assert_line.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats-assert/test/50-assert-17-assert_line.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats-assert/test/50-assert-18-refute_line.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats-assert/test/50-assert-18-refute_line.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats-assert/test/50-assert-19-refute.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats-assert/test/50-assert-19-refute.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats-assert/test/test_helper.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats-assert/test/test_helper.bash -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats-support/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats-support/.travis.yml -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats-support/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats-support/CHANGELOG.md -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats-support/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats-support/LICENSE -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats-support/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats-support/README.md -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats-support/load.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats-support/load.bash -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats-support/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats-support/package.json -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats-support/script/install-bats.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats-support/script/install-bats.sh -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats-support/src/error.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats-support/src/error.bash -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats-support/src/lang.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats-support/src/lang.bash -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats-support/src/output.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats-support/src/output.bash -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats-support/test/50-output-10-batslib_err.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats-support/test/50-output-10-batslib_err.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats-support/test/50-output-11-batslib_count_lines.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats-support/test/50-output-11-batslib_count_lines.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats-support/test/50-output-12-batslib_is_single_line.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats-support/test/50-output-12-batslib_is_single_line.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats-support/test/50-output-13-batslib_get_max_single_line_key_width.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats-support/test/50-output-13-batslib_get_max_single_line_key_width.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats-support/test/50-output-14-batslib_print_kv_single.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats-support/test/50-output-14-batslib_print_kv_single.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats-support/test/50-output-15-batslib_print_kv_multi.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats-support/test/50-output-15-batslib_print_kv_multi.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats-support/test/50-output-16-batslib_print_kv_single_or_multi.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats-support/test/50-output-16-batslib_print_kv_single_or_multi.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats-support/test/50-output-17-batslib_prefix.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats-support/test/50-output-17-batslib_prefix.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats-support/test/50-output-18-batslib_mark.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats-support/test/50-output-18-batslib_mark.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats-support/test/50-output-19-batslib_decorate.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats-support/test/50-output-19-batslib_decorate.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats-support/test/51-error-10-fail.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats-support/test/51-error-10-fail.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats-support/test/52-lang-10-batslib_is_caller.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats-support/test/52-lang-10-batslib_is_caller.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats-support/test/test_helper.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats-support/test/test_helper.bash -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats/.gitattributes -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats/.travis.yml -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats/CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats/CONDUCT.md -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats/LICENSE -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats/README.md -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats/bin/bats: -------------------------------------------------------------------------------- 1 | ../libexec/bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats/install.sh -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats/libexec/bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats/libexec/bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats/libexec/bats-exec-suite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats/libexec/bats-exec-suite -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats/libexec/bats-exec-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats/libexec/bats-exec-test -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats/libexec/bats-format-tap-stream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats/libexec/bats-format-tap-stream -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats/libexec/bats-preprocess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats/libexec/bats-preprocess -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats/man/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats/man/Makefile -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats/man/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats/man/README.md -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats/man/bats.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats/man/bats.1 -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats/man/bats.1.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats/man/bats.1.ronn -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats/man/bats.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats/man/bats.7 -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats/man/bats.7.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats/man/bats.7.ronn -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats/package.json -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats/test/bats.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats/test/bats.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats/test/fixtures/bats/dos_line.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats/test/fixtures/bats/dos_line.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats/test/fixtures/bats/empty.bats: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats/test/fixtures/bats/environment.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats/test/fixtures/bats/environment.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats/test/fixtures/bats/failing.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats/test/fixtures/bats/failing.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats/test/fixtures/bats/failing_and_passing.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats/test/fixtures/bats/failing_and_passing.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats/test/fixtures/bats/failing_helper.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats/test/fixtures/bats/failing_helper.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats/test/fixtures/bats/failing_setup.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats/test/fixtures/bats/failing_setup.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats/test/fixtures/bats/failing_teardown.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats/test/fixtures/bats/failing_teardown.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats/test/fixtures/bats/intact.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats/test/fixtures/bats/intact.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats/test/fixtures/bats/invalid_tap.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats/test/fixtures/bats/invalid_tap.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats/test/fixtures/bats/load.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats/test/fixtures/bats/load.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats/test/fixtures/bats/loop_keep_IFS.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats/test/fixtures/bats/loop_keep_IFS.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats/test/fixtures/bats/output.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats/test/fixtures/bats/output.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats/test/fixtures/bats/passing.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats/test/fixtures/bats/passing.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats/test/fixtures/bats/passing_and_failing.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats/test/fixtures/bats/passing_and_failing.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats/test/fixtures/bats/passing_and_skipping.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats/test/fixtures/bats/passing_and_skipping.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats/test/fixtures/bats/passing_failing_and_skipping.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats/test/fixtures/bats/passing_failing_and_skipping.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats/test/fixtures/bats/setup.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats/test/fixtures/bats/setup.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats/test/fixtures/bats/single_line.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats/test/fixtures/bats/single_line.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats/test/fixtures/bats/skipped.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats/test/fixtures/bats/skipped.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats/test/fixtures/bats/teardown.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats/test/fixtures/bats/teardown.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats/test/fixtures/bats/test_helper.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats/test/fixtures/bats/test_helper.bash -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats/test/fixtures/bats/without_trailing_newline.bats: -------------------------------------------------------------------------------- 1 | @test "truth" { 2 | true 3 | } -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats/test/fixtures/suite/empty/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats/test/fixtures/suite/multiple/a.bats: -------------------------------------------------------------------------------- 1 | @test "truth" { 2 | true 3 | } 4 | -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats/test/fixtures/suite/multiple/b.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats/test/fixtures/suite/multiple/b.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats/test/fixtures/suite/single/test.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats/test/fixtures/suite/single/test.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats/test/suite.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats/test/suite.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/libs/bats/test/test_helper.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/libs/bats/test/test_helper.bash -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/test.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/test.bats -------------------------------------------------------------------------------- /tests/mcd/mcd-seth/test/test_helper.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/mcd/mcd-seth/test/test_helper.bash -------------------------------------------------------------------------------- /tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/tests/package.json -------------------------------------------------------------------------------- /vault/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/vault/README.md -------------------------------------------------------------------------------- /vault/cdp-manager-guide/cdp-manager-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/vault/cdp-manager-guide/cdp-manager-guide.md -------------------------------------------------------------------------------- /vault/monitoring-collateral-types-and-vaults/monitoring-collateral-types-and-vaults.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/vault/monitoring-collateral-types-and-vaults/monitoring-collateral-types-and-vaults.md -------------------------------------------------------------------------------- /vault/vault-integration-guide/img/DepositETH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/vault/vault-integration-guide/img/DepositETH.png -------------------------------------------------------------------------------- /vault/vault-integration-guide/img/GenerateDAI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/vault/vault-integration-guide/img/GenerateDAI.png -------------------------------------------------------------------------------- /vault/vault-integration-guide/img/OpenVaultGenerateDai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/vault/vault-integration-guide/img/OpenVaultGenerateDai.png -------------------------------------------------------------------------------- /vault/vault-integration-guide/img/PayBackAllDAIAndWithdrawETH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/vault/vault-integration-guide/img/PayBackAllDAIAndWithdrawETH.png -------------------------------------------------------------------------------- /vault/vault-integration-guide/img/PayBackDai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/vault/vault-integration-guide/img/PayBackDai.png -------------------------------------------------------------------------------- /vault/vault-integration-guide/img/SetupDSProxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/vault/vault-integration-guide/img/SetupDSProxy.png -------------------------------------------------------------------------------- /vault/vault-integration-guide/img/SingleETHVaultUserFlow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/vault/vault-integration-guide/img/SingleETHVaultUserFlow.png -------------------------------------------------------------------------------- /vault/vault-integration-guide/img/WithdrawETH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/vault/vault-integration-guide/img/WithdrawETH.png -------------------------------------------------------------------------------- /vault/vault-integration-guide/img/cdpguide-package.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/vault/vault-integration-guide/img/cdpguide-package.png -------------------------------------------------------------------------------- /vault/vault-integration-guide/sequence-diagrams/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/vault/vault-integration-guide/sequence-diagrams/README.md -------------------------------------------------------------------------------- /vault/vault-integration-guide/vault-integration-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/developerguides/HEAD/vault/vault-integration-guide/vault-integration-guide.md --------------------------------------------------------------------------------