├── .eslintrc ├── .travis.yml ├── LICENSE ├── README.md ├── accounts ├── .gitignore ├── README.md ├── package.json ├── public │ ├── favicon.png │ ├── index.html │ └── manifest.json ├── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── index.css │ ├── index.js │ ├── registerServiceWorker.js │ └── setupMaker.js └── yarn.lock ├── dsr ├── .gitignore ├── README.md ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ └── manifest.json ├── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── components │ │ └── DsrDemo.js │ ├── index.css │ ├── index.js │ ├── logo.svg │ ├── serviceWorker.js │ └── utils │ │ ├── dsToken.abi.json │ │ └── web3.js └── yarn.lock ├── leverage ├── .gitignore ├── README.md ├── lib │ ├── index.js │ └── leverage.js ├── package.json ├── test │ └── leverage.test.js └── yarn.lock ├── mcd-dai ├── .gitignore ├── README.md ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ └── manifest.json └── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── components │ └── UserInfo.js │ ├── index.css │ ├── index.js │ ├── logo.svg │ ├── references │ └── contracts │ │ ├── goerli.json │ │ ├── kovan.json │ │ ├── rinkeby.json │ │ └── ropsten.json │ ├── serviceWorker.js │ └── utils │ ├── Faucet.json │ ├── dsToken.abi.json │ └── web3.js ├── package.json ├── react-example ├── .env.example ├── .gitignore ├── README.md ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ └── manifest.json ├── src │ ├── actions │ │ └── index.js │ ├── components │ │ ├── App.css │ │ ├── App.js │ │ ├── CreateMaker.js │ │ ├── DrawDai.js │ │ ├── LockEth.js │ │ ├── OpenCdp.js │ │ ├── ShutCdp.js │ │ ├── StartButton.js │ │ └── WipeDebt.js │ ├── index.css │ ├── index.js │ ├── logo.svg │ ├── reducers │ │ └── index.js │ └── registerServiceWorker.js └── yarn.lock ├── topup ├── .gitignore ├── index.js ├── package.json ├── src │ ├── cli.js │ └── topup.js ├── test │ └── topup.test.js └── yarn.lock └── wyre ├── .gitignore ├── README.md ├── dai.js ├── main.js ├── package.json └── wyre.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/.eslintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/README.md -------------------------------------------------------------------------------- /accounts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/accounts/.gitignore -------------------------------------------------------------------------------- /accounts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/accounts/README.md -------------------------------------------------------------------------------- /accounts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/accounts/package.json -------------------------------------------------------------------------------- /accounts/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/accounts/public/favicon.png -------------------------------------------------------------------------------- /accounts/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/accounts/public/index.html -------------------------------------------------------------------------------- /accounts/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/accounts/public/manifest.json -------------------------------------------------------------------------------- /accounts/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/accounts/src/App.css -------------------------------------------------------------------------------- /accounts/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/accounts/src/App.js -------------------------------------------------------------------------------- /accounts/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/accounts/src/App.test.js -------------------------------------------------------------------------------- /accounts/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/accounts/src/index.css -------------------------------------------------------------------------------- /accounts/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/accounts/src/index.js -------------------------------------------------------------------------------- /accounts/src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/accounts/src/registerServiceWorker.js -------------------------------------------------------------------------------- /accounts/src/setupMaker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/accounts/src/setupMaker.js -------------------------------------------------------------------------------- /accounts/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/accounts/yarn.lock -------------------------------------------------------------------------------- /dsr/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/dsr/.gitignore -------------------------------------------------------------------------------- /dsr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/dsr/README.md -------------------------------------------------------------------------------- /dsr/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/dsr/package.json -------------------------------------------------------------------------------- /dsr/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/dsr/public/favicon.ico -------------------------------------------------------------------------------- /dsr/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/dsr/public/index.html -------------------------------------------------------------------------------- /dsr/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/dsr/public/manifest.json -------------------------------------------------------------------------------- /dsr/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/dsr/src/App.css -------------------------------------------------------------------------------- /dsr/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/dsr/src/App.js -------------------------------------------------------------------------------- /dsr/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/dsr/src/App.test.js -------------------------------------------------------------------------------- /dsr/src/components/DsrDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/dsr/src/components/DsrDemo.js -------------------------------------------------------------------------------- /dsr/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/dsr/src/index.css -------------------------------------------------------------------------------- /dsr/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/dsr/src/index.js -------------------------------------------------------------------------------- /dsr/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/dsr/src/logo.svg -------------------------------------------------------------------------------- /dsr/src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/dsr/src/serviceWorker.js -------------------------------------------------------------------------------- /dsr/src/utils/dsToken.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/dsr/src/utils/dsToken.abi.json -------------------------------------------------------------------------------- /dsr/src/utils/web3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/dsr/src/utils/web3.js -------------------------------------------------------------------------------- /dsr/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/dsr/yarn.lock -------------------------------------------------------------------------------- /leverage/.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | yarn-error.log 4 | -------------------------------------------------------------------------------- /leverage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/leverage/README.md -------------------------------------------------------------------------------- /leverage/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/leverage/lib/index.js -------------------------------------------------------------------------------- /leverage/lib/leverage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/leverage/lib/leverage.js -------------------------------------------------------------------------------- /leverage/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/leverage/package.json -------------------------------------------------------------------------------- /leverage/test/leverage.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/leverage/test/leverage.test.js -------------------------------------------------------------------------------- /leverage/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/leverage/yarn.lock -------------------------------------------------------------------------------- /mcd-dai/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/mcd-dai/.gitignore -------------------------------------------------------------------------------- /mcd-dai/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/mcd-dai/README.md -------------------------------------------------------------------------------- /mcd-dai/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/mcd-dai/package.json -------------------------------------------------------------------------------- /mcd-dai/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/mcd-dai/public/favicon.ico -------------------------------------------------------------------------------- /mcd-dai/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/mcd-dai/public/index.html -------------------------------------------------------------------------------- /mcd-dai/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/mcd-dai/public/manifest.json -------------------------------------------------------------------------------- /mcd-dai/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/mcd-dai/src/App.css -------------------------------------------------------------------------------- /mcd-dai/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/mcd-dai/src/App.js -------------------------------------------------------------------------------- /mcd-dai/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/mcd-dai/src/App.test.js -------------------------------------------------------------------------------- /mcd-dai/src/components/UserInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/mcd-dai/src/components/UserInfo.js -------------------------------------------------------------------------------- /mcd-dai/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/mcd-dai/src/index.css -------------------------------------------------------------------------------- /mcd-dai/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/mcd-dai/src/index.js -------------------------------------------------------------------------------- /mcd-dai/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/mcd-dai/src/logo.svg -------------------------------------------------------------------------------- /mcd-dai/src/references/contracts/goerli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/mcd-dai/src/references/contracts/goerli.json -------------------------------------------------------------------------------- /mcd-dai/src/references/contracts/kovan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/mcd-dai/src/references/contracts/kovan.json -------------------------------------------------------------------------------- /mcd-dai/src/references/contracts/rinkeby.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/mcd-dai/src/references/contracts/rinkeby.json -------------------------------------------------------------------------------- /mcd-dai/src/references/contracts/ropsten.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/mcd-dai/src/references/contracts/ropsten.json -------------------------------------------------------------------------------- /mcd-dai/src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/mcd-dai/src/serviceWorker.js -------------------------------------------------------------------------------- /mcd-dai/src/utils/Faucet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/mcd-dai/src/utils/Faucet.json -------------------------------------------------------------------------------- /mcd-dai/src/utils/dsToken.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/mcd-dai/src/utils/dsToken.abi.json -------------------------------------------------------------------------------- /mcd-dai/src/utils/web3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/mcd-dai/src/utils/web3.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/package.json -------------------------------------------------------------------------------- /react-example/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/react-example/.env.example -------------------------------------------------------------------------------- /react-example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/react-example/.gitignore -------------------------------------------------------------------------------- /react-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/react-example/README.md -------------------------------------------------------------------------------- /react-example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/react-example/package.json -------------------------------------------------------------------------------- /react-example/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/react-example/public/favicon.ico -------------------------------------------------------------------------------- /react-example/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/react-example/public/index.html -------------------------------------------------------------------------------- /react-example/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/react-example/public/manifest.json -------------------------------------------------------------------------------- /react-example/src/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/react-example/src/actions/index.js -------------------------------------------------------------------------------- /react-example/src/components/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/react-example/src/components/App.css -------------------------------------------------------------------------------- /react-example/src/components/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/react-example/src/components/App.js -------------------------------------------------------------------------------- /react-example/src/components/CreateMaker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/react-example/src/components/CreateMaker.js -------------------------------------------------------------------------------- /react-example/src/components/DrawDai.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/react-example/src/components/DrawDai.js -------------------------------------------------------------------------------- /react-example/src/components/LockEth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/react-example/src/components/LockEth.js -------------------------------------------------------------------------------- /react-example/src/components/OpenCdp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/react-example/src/components/OpenCdp.js -------------------------------------------------------------------------------- /react-example/src/components/ShutCdp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/react-example/src/components/ShutCdp.js -------------------------------------------------------------------------------- /react-example/src/components/StartButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/react-example/src/components/StartButton.js -------------------------------------------------------------------------------- /react-example/src/components/WipeDebt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/react-example/src/components/WipeDebt.js -------------------------------------------------------------------------------- /react-example/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/react-example/src/index.css -------------------------------------------------------------------------------- /react-example/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/react-example/src/index.js -------------------------------------------------------------------------------- /react-example/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/react-example/src/logo.svg -------------------------------------------------------------------------------- /react-example/src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/react-example/src/reducers/index.js -------------------------------------------------------------------------------- /react-example/src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/react-example/src/registerServiceWorker.js -------------------------------------------------------------------------------- /react-example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/react-example/yarn.lock -------------------------------------------------------------------------------- /topup/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | yarn-error.log 3 | -------------------------------------------------------------------------------- /topup/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/topup/index.js -------------------------------------------------------------------------------- /topup/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/topup/package.json -------------------------------------------------------------------------------- /topup/src/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/topup/src/cli.js -------------------------------------------------------------------------------- /topup/src/topup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/topup/src/topup.js -------------------------------------------------------------------------------- /topup/test/topup.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/topup/test/topup.test.js -------------------------------------------------------------------------------- /topup/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/topup/yarn.lock -------------------------------------------------------------------------------- /wyre/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/wyre/.gitignore -------------------------------------------------------------------------------- /wyre/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/wyre/README.md -------------------------------------------------------------------------------- /wyre/dai.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/wyre/dai.js -------------------------------------------------------------------------------- /wyre/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/wyre/main.js -------------------------------------------------------------------------------- /wyre/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/wyre/package.json -------------------------------------------------------------------------------- /wyre/wyre.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/integration-examples/HEAD/wyre/wyre.js --------------------------------------------------------------------------------