├── .commitlintrc.yaml ├── .czrc ├── .editorconfig ├── .eslintignore ├── .eslintrc.yaml ├── .gitattributes ├── .github ├── CODE_OF_CONDUCT.md ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── feature-request.md │ └── something-else.md └── workflows │ └── integration.yaml ├── .gitignore ├── .husky ├── .gitignore ├── commit-msg └── pre-commit ├── .jest ├── env.js └── setup.js ├── .lintstagedrc ├── .prettierignore ├── .prettierrc.yaml ├── .yarn ├── plugins │ └── @yarnpkg │ │ └── plugin-interactive-tools.cjs └── releases │ └── yarn-3.2.0.cjs ├── .yarnrc.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── handlebars ├── react │ ├── README.md.hbs │ ├── package.json.hbs │ └── packages │ │ ├── contracts │ │ ├── README.md.hbs │ │ ├── package.json.hbs │ │ └── src │ │ │ └── index.js.hbs │ │ └── react-app │ │ ├── README.md.hbs │ │ ├── package.json.hbs │ │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ │ └── src │ │ ├── App.js.hbs │ │ ├── App.test.js │ │ ├── components │ │ └── index.js │ │ ├── ethereumLogo.png │ │ ├── index.css │ │ ├── index.js.hbs │ │ └── setupTests.js └── vue │ ├── .eslintrc │ ├── README.md.hbs │ ├── package.json.hbs │ └── packages │ ├── contracts │ ├── README.md.hbs │ ├── package.json.hbs │ └── src │ │ └── index.js.hbs │ └── vue-app │ ├── README.md.hbs │ ├── babel.config.js │ ├── package.json.hbs │ ├── public │ ├── favicon.ico │ └── index.html │ ├── src │ ├── App.vue │ ├── assets │ │ └── ethereumLogo.png │ ├── components │ │ └── HelloWorld.vue.hbs │ └── main.js.hbs │ └── vue.config.js ├── jest.config.ts ├── package.json ├── screencast.gif ├── src ├── createEthApp.ts ├── gitignore ├── helpers │ ├── constants.ts │ ├── directories.ts │ ├── env.ts │ ├── errors.ts │ ├── frameworks.ts │ ├── git.ts │ ├── networking.ts │ ├── npm.ts │ ├── templates.ts │ ├── url.ts │ └── yarn.ts └── index.ts ├── templates ├── react │ ├── aave │ │ ├── README.md.ctx │ │ ├── package.json.ctx │ │ └── packages │ │ │ ├── contracts │ │ │ ├── README.md.ctx │ │ │ ├── package.json.ctx │ │ │ └── src │ │ │ │ ├── abis.js │ │ │ │ ├── abis │ │ │ │ ├── aToken.json │ │ │ │ ├── lendingPool.json │ │ │ │ ├── lendingPoolAddressesProvider.json │ │ │ │ └── lendingPoolCore.json │ │ │ │ ├── addresses.js │ │ │ │ └── index.js.ctx │ │ │ └── react-app │ │ │ ├── README.md.ctx │ │ │ ├── package.json.ctx │ │ │ └── src │ │ │ ├── App.js.ctx │ │ │ ├── graphql │ │ │ └── subgraph.js │ │ │ └── index.js.ctx │ ├── chainlink │ │ ├── README.md.ctx │ │ ├── package.json.ctx │ │ └── packages │ │ │ ├── contracts │ │ │ ├── README.md.ctx │ │ │ ├── package.json.ctx │ │ │ └── src │ │ │ │ ├── abis.js │ │ │ │ ├── abis │ │ │ │ └── .gitkeep │ │ │ │ ├── addresses.js │ │ │ │ └── index.js.ctx │ │ │ └── react-app │ │ │ ├── README.md.ctx │ │ │ ├── package.json.ctx │ │ │ └── src │ │ │ ├── App.js.ctx │ │ │ ├── graphql │ │ │ └── subgraph.js │ │ │ └── index.js.ctx │ ├── compound │ │ ├── README.md.ctx │ │ ├── package.json.ctx │ │ └── packages │ │ │ ├── contracts │ │ │ ├── README.md.ctx │ │ │ ├── package.json.ctx │ │ │ └── src │ │ │ │ ├── abis.js │ │ │ │ ├── abis │ │ │ │ ├── COMP.json │ │ │ │ ├── cBAT.json │ │ │ │ ├── cDAI.json │ │ │ │ ├── cETH.json │ │ │ │ ├── cREP.json │ │ │ │ ├── cSAI.json │ │ │ │ ├── cUSDC.json │ │ │ │ ├── cUSDT.json │ │ │ │ ├── cWBTC.json │ │ │ │ ├── cZRX.json │ │ │ │ ├── comptroller.json │ │ │ │ ├── governance.json │ │ │ │ ├── priceOracle.json │ │ │ │ └── timelock.json │ │ │ │ ├── addresses.js │ │ │ │ └── index.js.ctx │ │ │ └── react-app │ │ │ ├── README.md.ctx │ │ │ ├── package.json.ctx │ │ │ └── src │ │ │ ├── App.js.ctx │ │ │ ├── graphql │ │ │ └── subgraph.js │ │ │ └── index.js.ctx │ ├── default │ │ ├── .gitignore │ │ ├── README.md │ │ ├── README.md.ctx │ │ ├── package.json.ctx │ │ └── packages │ │ │ ├── contracts │ │ │ ├── README.md.ctx │ │ │ ├── package.json.ctx │ │ │ └── src │ │ │ │ ├── abis.js │ │ │ │ ├── abis │ │ │ │ ├── erc20.json │ │ │ │ └── ownable.json │ │ │ │ ├── addresses.js │ │ │ │ └── index.js.ctx │ │ │ ├── react-app │ │ │ ├── README.md.ctx │ │ │ ├── package.json.ctx │ │ │ └── src │ │ │ │ ├── App.js.ctx │ │ │ │ ├── graphql │ │ │ │ └── subgraph.js │ │ │ │ └── index.js.ctx │ │ │ └── subgraph │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── schema.graphql │ │ │ ├── src │ │ │ └── mappings │ │ │ │ ├── tokens.ts │ │ │ │ └── transfers.ts │ │ │ └── subgraph.yaml │ ├── kyber │ │ ├── README.md.ctx │ │ ├── package.json.ctx │ │ └── packages │ │ │ ├── contracts │ │ │ ├── README.md.ctx │ │ │ ├── package.json.ctx │ │ │ └── src │ │ │ │ ├── abis.js │ │ │ │ ├── abis │ │ │ │ ├── conversionRates.json │ │ │ │ ├── erc20.json │ │ │ │ ├── kyberFeeHandler.json │ │ │ │ ├── kyberHintHandler.json │ │ │ │ ├── kyberNetworkProxyV1.json │ │ │ │ ├── kyberNetworkProxyV2.json │ │ │ │ ├── kyberReserve.json │ │ │ │ ├── kyberStorage.json │ │ │ │ ├── liquidityConversionRates.json │ │ │ │ ├── sanityRates.json │ │ │ │ └── simpleKyberProxy.json │ │ │ │ ├── addresses.js │ │ │ │ └── index.js.ctx │ │ │ └── react-app │ │ │ ├── README.md.ctx │ │ │ ├── package.json.ctx │ │ │ └── src │ │ │ ├── App.js.ctx │ │ │ ├── graphql │ │ │ └── subgraph.js │ │ │ └── index.js.ctx │ ├── maker │ │ ├── README.md.ctx │ │ ├── package.json.ctx │ │ └── packages │ │ │ ├── contracts │ │ │ ├── README.md.ctx │ │ │ ├── package.json.ctx │ │ │ └── src │ │ │ │ ├── abis.js │ │ │ │ ├── abis │ │ │ │ ├── cat.json │ │ │ │ ├── dai.json │ │ │ │ ├── daiJoin.json │ │ │ │ ├── dsProxy.json │ │ │ │ ├── dssCdpManager.json │ │ │ │ ├── dssProxyActions.json │ │ │ │ ├── dssProxyActionsDsr.json │ │ │ │ ├── erc20.json │ │ │ │ ├── erc20Events.json │ │ │ │ ├── ethJoin.json │ │ │ │ ├── jug.json │ │ │ │ ├── pot.json │ │ │ │ ├── proxyActions.json │ │ │ │ ├── proxyRegistry.json │ │ │ │ ├── spotter.json │ │ │ │ └── vat.json │ │ │ │ ├── addresses.js │ │ │ │ └── index.js.ctx │ │ │ └── react-app │ │ │ ├── README.md.ctx │ │ │ ├── package.json.ctx │ │ │ └── src │ │ │ ├── App.js.ctx │ │ │ ├── graphql │ │ │ └── subgraph.js │ │ │ └── index.js.ctx │ ├── mstable │ │ ├── README.md.ctx │ │ ├── package.json.ctx │ │ └── packages │ │ │ ├── contracts │ │ │ ├── README.md.ctx │ │ │ ├── package.json.ctx │ │ │ └── src │ │ │ │ ├── abis.js │ │ │ │ ├── abis │ │ │ │ ├── mAsset.json │ │ │ │ ├── metaToken.json │ │ │ │ ├── nexus.json │ │ │ │ ├── savingsContract.json │ │ │ │ └── savingsManager.json │ │ │ │ ├── addresses.js │ │ │ │ └── index.js.ctx │ │ │ └── react-app │ │ │ ├── README.md.ctx │ │ │ ├── package.json.ctx │ │ │ └── src │ │ │ ├── App.js.ctx │ │ │ ├── graphql │ │ │ └── subgraph.js │ │ │ └── index.js.ctx │ ├── sablier-v1 │ │ ├── README.md.ctx │ │ ├── package.json.ctx │ │ └── packages │ │ │ ├── contracts │ │ │ ├── README.md.ctx │ │ │ ├── package.json.ctx │ │ │ └── src │ │ │ │ ├── abis.js │ │ │ │ ├── abis │ │ │ │ ├── erc20.json │ │ │ │ ├── payroll.json │ │ │ │ └── sablier.json │ │ │ │ ├── addresses.js │ │ │ │ └── index.js.ctx │ │ │ └── react-app │ │ │ ├── README.md.ctx │ │ │ ├── package.json.ctx │ │ │ └── src │ │ │ ├── App.js.ctx │ │ │ ├── graphql │ │ │ └── subgraph.js │ │ │ └── index.js.ctx │ ├── synthetix │ │ ├── README.md.ctx │ │ ├── package.json.ctx │ │ └── packages │ │ │ ├── contracts │ │ │ ├── README.md.ctx │ │ │ ├── package.json.ctx │ │ │ └── src │ │ │ │ ├── abis.js │ │ │ │ ├── abis │ │ │ │ ├── readProxy.json │ │ │ │ └── snx.json │ │ │ │ ├── addresses.js │ │ │ │ └── index.js.ctx │ │ │ └── react-app │ │ │ ├── README.md.ctx │ │ │ ├── package.json.ctx │ │ │ └── src │ │ │ ├── App.js.ctx │ │ │ ├── graphql │ │ │ └── subgraph.js │ │ │ └── index.js.ctx │ └── uniswap-v2 │ │ ├── README.md.ctx │ │ ├── package.json.ctx │ │ └── packages │ │ ├── contracts │ │ ├── README.md.ctx │ │ ├── package.json.ctx │ │ └── src │ │ │ ├── abis.js │ │ │ ├── abis │ │ │ ├── erc20.json │ │ │ ├── factory.json │ │ │ ├── pair.json │ │ │ ├── router01.json │ │ │ └── router02.json │ │ │ ├── addresses.js │ │ │ └── index.js.ctx │ │ └── react-app │ │ ├── README.md.ctx │ │ ├── package.json.ctx │ │ └── src │ │ ├── App.js.ctx │ │ ├── graphql │ │ └── subgraph.js │ │ └── index.js.ctx └── vue │ ├── aave │ ├── README.md.ctx │ ├── package.json.ctx │ └── packages │ │ ├── contracts │ │ ├── README.md.ctx │ │ ├── package.json.ctx │ │ └── src │ │ │ ├── abis.js │ │ │ ├── abis │ │ │ ├── aToken.json │ │ │ ├── lendingPool.json │ │ │ ├── lendingPoolAddressesProvider.json │ │ │ └── lendingPoolCore.json │ │ │ ├── addresses.js │ │ │ └── index.js.ctx │ │ └── vue-app │ │ ├── README.md.ctx │ │ ├── package.json.ctx │ │ └── src │ │ ├── components │ │ └── HelloWorld.vue.ctx │ │ ├── graphql │ │ └── subgraph.js │ │ └── main.js.ctx │ ├── chainlink │ ├── README.md.ctx │ ├── package.json.ctx │ └── packages │ │ ├── contracts │ │ ├── README.md.ctx │ │ ├── package.json.ctx │ │ └── src │ │ │ ├── abis.js │ │ │ ├── abis │ │ │ └── .gitkeep │ │ │ ├── addresses.js │ │ │ └── index.js.ctx │ │ └── vue-app │ │ ├── README.md.ctx │ │ ├── package.json.ctx │ │ └── src │ │ ├── components │ │ └── HelloWorld.vue.ctx │ │ ├── graphql │ │ └── subgraph.js │ │ └── main.js.ctx │ ├── compound │ ├── README.md.ctx │ ├── package.json.ctx │ └── packages │ │ ├── contracts │ │ ├── README.md.ctx │ │ ├── package.json.ctx │ │ └── src │ │ │ ├── abis.js │ │ │ ├── abis │ │ │ ├── COMP.json │ │ │ ├── cBAT.json │ │ │ ├── cDAI.json │ │ │ ├── cETH.json │ │ │ ├── cREP.json │ │ │ ├── cSAI.json │ │ │ ├── cUSDC.json │ │ │ ├── cUSDT.json │ │ │ ├── cWBTC.json │ │ │ ├── cZRX.json │ │ │ ├── comptroller.json │ │ │ ├── governance.json │ │ │ ├── priceOracle.json │ │ │ └── timelock.json │ │ │ ├── addresses.js │ │ │ └── index.js.ctx │ │ └── vue-app │ │ ├── README.md.ctx │ │ ├── package.json.ctx │ │ └── src │ │ ├── components │ │ └── HelloWorld.vue.ctx │ │ ├── graphql │ │ └── subgraph.js │ │ └── main.js.ctx │ ├── default │ ├── .gitignore │ ├── README.md │ ├── README.md.ctx │ ├── package.json.ctx │ └── packages │ │ ├── contracts │ │ ├── README.md.ctx │ │ ├── package.json.ctx │ │ └── src │ │ │ ├── abis.js │ │ │ ├── abis │ │ │ ├── erc20.json │ │ │ └── ownable.json │ │ │ ├── addresses.js │ │ │ └── index.js.ctx │ │ ├── subgraph │ │ ├── README.md │ │ ├── package.json │ │ ├── schema.graphql │ │ ├── src │ │ │ └── mappings │ │ │ │ ├── tokens.ts │ │ │ │ └── transfers.ts │ │ └── subgraph.yaml │ │ └── vue-app │ │ ├── README.md.ctx │ │ ├── package.json.ctx │ │ └── src │ │ ├── components │ │ └── HelloWorld.vue.ctx │ │ ├── graphql │ │ └── subgraph.js │ │ └── main.js.ctx │ ├── kyber │ ├── README.md.ctx │ ├── package.json.ctx │ └── packages │ │ ├── contracts │ │ ├── README.md.ctx │ │ ├── package.json.ctx │ │ └── src │ │ │ ├── abis.js │ │ │ ├── abis │ │ │ ├── conversionRates.json │ │ │ ├── erc20.json │ │ │ ├── kyberFeeHandler.json │ │ │ ├── kyberHintHandler.json │ │ │ ├── kyberNetworkProxyV1.json │ │ │ ├── kyberNetworkProxyV2.json │ │ │ ├── kyberReserve.json │ │ │ ├── kyberStorage.json │ │ │ ├── liquidityConversionRates.json │ │ │ ├── sanityRates.json │ │ │ └── simpleKyberProxy.json │ │ │ ├── addresses.js │ │ │ └── index.js.ctx │ │ └── vue-app │ │ ├── README.md.ctx │ │ ├── package.json.ctx │ │ └── src │ │ ├── components │ │ └── HelloWorld.vue.ctx │ │ ├── graphql │ │ └── subgraph.js │ │ └── main.js.ctx │ ├── maker │ ├── README.md.ctx │ ├── package.json.ctx │ └── packages │ │ ├── contracts │ │ ├── README.md.ctx │ │ ├── package.json.ctx │ │ └── src │ │ │ ├── abis.js │ │ │ ├── abis │ │ │ ├── cat.json │ │ │ ├── dai.json │ │ │ ├── daiJoin.json │ │ │ ├── dsProxy.json │ │ │ ├── dssCdpManager.json │ │ │ ├── dssProxyActions.json │ │ │ ├── dssProxyActionsDsr.json │ │ │ ├── erc20.json │ │ │ ├── erc20Events.json │ │ │ ├── ethJoin.json │ │ │ ├── jug.json │ │ │ ├── pot.json │ │ │ ├── proxyActions.json │ │ │ ├── proxyRegistry.json │ │ │ ├── spotter.json │ │ │ └── vat.json │ │ │ ├── addresses.js │ │ │ └── index.js.ctx │ │ └── vue-app │ │ ├── README.md.ctx │ │ ├── package.json.ctx │ │ └── src │ │ ├── components │ │ └── HelloWorld.vue.ctx │ │ ├── graphql │ │ └── subgraph.js │ │ └── main.js.ctx │ ├── mstable │ ├── README.md.ctx │ ├── package.json.ctx │ └── packages │ │ ├── contracts │ │ ├── README.md.ctx │ │ ├── package.json.ctx │ │ └── src │ │ │ ├── abis.js │ │ │ ├── abis │ │ │ ├── mAsset.json │ │ │ ├── metaToken.json │ │ │ ├── nexus.json │ │ │ ├── savingsContract.json │ │ │ └── savingsManager.json │ │ │ ├── addresses.js │ │ │ └── index.js.ctx │ │ └── vue-app │ │ ├── README.md.ctx │ │ ├── package.json.ctx │ │ └── src │ │ ├── components │ │ └── HelloWorld.vue.ctx │ │ ├── graphql │ │ └── subgraph.js │ │ └── main.js.ctx │ ├── sablier-v1 │ ├── README.md.ctx │ ├── package.json.ctx │ └── packages │ │ ├── contracts │ │ ├── README.md.ctx │ │ ├── package.json.ctx │ │ └── src │ │ │ ├── abis.js │ │ │ ├── abis │ │ │ ├── erc20.json │ │ │ ├── payroll.json │ │ │ └── sablier.json │ │ │ ├── addresses.js │ │ │ └── index.js.ctx │ │ └── vue-app │ │ ├── README.md.ctx │ │ ├── package.json.ctx │ │ └── src │ │ ├── components │ │ └── HelloWorld.vue.ctx │ │ ├── graphql │ │ └── subgraph.js │ │ └── main.js.ctx │ ├── synthetix │ ├── README.md.ctx │ ├── package.json.ctx │ └── packages │ │ ├── contracts │ │ ├── README.md.ctx │ │ ├── package.json.ctx │ │ └── src │ │ │ ├── abis.js │ │ │ ├── abis │ │ │ ├── readProxy.json │ │ │ └── snx.json │ │ │ ├── addresses.js │ │ │ └── index.js.ctx │ │ └── vue-app │ │ ├── README.md.ctx │ │ ├── package.json.ctx │ │ └── src │ │ ├── components │ │ └── HelloWorld.vue.ctx │ │ ├── graphql │ │ └── subgraph.js │ │ └── main.js.ctx │ └── uniswap-v2 │ ├── README.md.ctx │ ├── package.json.ctx │ └── packages │ ├── contracts │ ├── README.md.ctx │ ├── package.json.ctx │ └── src │ │ ├── abis.js │ │ ├── abis │ │ ├── erc20.json │ │ ├── factory.json │ │ ├── pair.json │ │ ├── router01.json │ │ └── router02.json │ │ ├── addresses.js │ │ └── index.js.ctx │ └── vue-app │ ├── README.md.ctx │ ├── package.json.ctx │ └── src │ ├── components │ └── HelloWorld.vue.ctx │ ├── graphql │ └── subgraph.js │ └── main.js.ctx ├── test ├── __mocks__ │ ├── url-exist.ts │ └── validate-npm-package-name.ts ├── integration │ ├── frameworks.test.ts │ └── templates.test.ts └── unit │ ├── directories.test.ts │ ├── env.test.ts │ ├── git.test.ts │ ├── networking.test.ts │ ├── npm.test.ts │ └── yarn.test.ts ├── tsconfig.json ├── types ├── promisepipe.d.ts └── validateNpmPackageName.d.ts └── yarn.lock /.commitlintrc.yaml: -------------------------------------------------------------------------------- 1 | extends: 2 | - "@commitlint/config-conventional" 3 | -------------------------------------------------------------------------------- /.czrc: -------------------------------------------------------------------------------- 1 | { 2 | "path": "cz-conventional-changelog" 3 | } 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/.eslintrc.yaml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sol diff linguist-language=Solidity 2 | -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/something-else.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/.github/ISSUE_TEMPLATE/something-else.md -------------------------------------------------------------------------------- /.github/workflows/integration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/.github/workflows/integration.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | yarn dlx commitlint --edit $1 5 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | yarn dlx lint-staged 5 | -------------------------------------------------------------------------------- /.jest/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/.jest/env.js -------------------------------------------------------------------------------- /.jest/setup.js: -------------------------------------------------------------------------------- 1 | jest.setTimeout(180000); 2 | -------------------------------------------------------------------------------- /.lintstagedrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/.lintstagedrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | # folders 2 | dist/ 3 | node_modules/ 4 | 5 | # files 6 | *.hbs 7 | -------------------------------------------------------------------------------- /.prettierrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/.prettierrc.yaml -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs -------------------------------------------------------------------------------- /.yarn/releases/yarn-3.2.0.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/.yarn/releases/yarn-3.2.0.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/README.md -------------------------------------------------------------------------------- /handlebars/react/README.md.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/handlebars/react/README.md.hbs -------------------------------------------------------------------------------- /handlebars/react/package.json.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/handlebars/react/package.json.hbs -------------------------------------------------------------------------------- /handlebars/react/packages/contracts/README.md.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/handlebars/react/packages/contracts/README.md.hbs -------------------------------------------------------------------------------- /handlebars/react/packages/contracts/package.json.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/handlebars/react/packages/contracts/package.json.hbs -------------------------------------------------------------------------------- /handlebars/react/packages/contracts/src/index.js.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/handlebars/react/packages/contracts/src/index.js.hbs -------------------------------------------------------------------------------- /handlebars/react/packages/react-app/README.md.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/handlebars/react/packages/react-app/README.md.hbs -------------------------------------------------------------------------------- /handlebars/react/packages/react-app/package.json.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/handlebars/react/packages/react-app/package.json.hbs -------------------------------------------------------------------------------- /handlebars/react/packages/react-app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/handlebars/react/packages/react-app/public/favicon.ico -------------------------------------------------------------------------------- /handlebars/react/packages/react-app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/handlebars/react/packages/react-app/public/index.html -------------------------------------------------------------------------------- /handlebars/react/packages/react-app/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/handlebars/react/packages/react-app/public/logo192.png -------------------------------------------------------------------------------- /handlebars/react/packages/react-app/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/handlebars/react/packages/react-app/public/logo512.png -------------------------------------------------------------------------------- /handlebars/react/packages/react-app/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/handlebars/react/packages/react-app/public/manifest.json -------------------------------------------------------------------------------- /handlebars/react/packages/react-app/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/handlebars/react/packages/react-app/public/robots.txt -------------------------------------------------------------------------------- /handlebars/react/packages/react-app/src/App.js.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/handlebars/react/packages/react-app/src/App.js.hbs -------------------------------------------------------------------------------- /handlebars/react/packages/react-app/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/handlebars/react/packages/react-app/src/App.test.js -------------------------------------------------------------------------------- /handlebars/react/packages/react-app/src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/handlebars/react/packages/react-app/src/components/index.js -------------------------------------------------------------------------------- /handlebars/react/packages/react-app/src/ethereumLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/handlebars/react/packages/react-app/src/ethereumLogo.png -------------------------------------------------------------------------------- /handlebars/react/packages/react-app/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/handlebars/react/packages/react-app/src/index.css -------------------------------------------------------------------------------- /handlebars/react/packages/react-app/src/index.js.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/handlebars/react/packages/react-app/src/index.js.hbs -------------------------------------------------------------------------------- /handlebars/react/packages/react-app/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/handlebars/react/packages/react-app/src/setupTests.js -------------------------------------------------------------------------------- /handlebars/vue/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/handlebars/vue/.eslintrc -------------------------------------------------------------------------------- /handlebars/vue/README.md.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/handlebars/vue/README.md.hbs -------------------------------------------------------------------------------- /handlebars/vue/package.json.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/handlebars/vue/package.json.hbs -------------------------------------------------------------------------------- /handlebars/vue/packages/contracts/README.md.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/handlebars/vue/packages/contracts/README.md.hbs -------------------------------------------------------------------------------- /handlebars/vue/packages/contracts/package.json.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/handlebars/vue/packages/contracts/package.json.hbs -------------------------------------------------------------------------------- /handlebars/vue/packages/contracts/src/index.js.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/handlebars/vue/packages/contracts/src/index.js.hbs -------------------------------------------------------------------------------- /handlebars/vue/packages/vue-app/README.md.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/handlebars/vue/packages/vue-app/README.md.hbs -------------------------------------------------------------------------------- /handlebars/vue/packages/vue-app/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/handlebars/vue/packages/vue-app/babel.config.js -------------------------------------------------------------------------------- /handlebars/vue/packages/vue-app/package.json.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/handlebars/vue/packages/vue-app/package.json.hbs -------------------------------------------------------------------------------- /handlebars/vue/packages/vue-app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/handlebars/vue/packages/vue-app/public/favicon.ico -------------------------------------------------------------------------------- /handlebars/vue/packages/vue-app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/handlebars/vue/packages/vue-app/public/index.html -------------------------------------------------------------------------------- /handlebars/vue/packages/vue-app/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/handlebars/vue/packages/vue-app/src/App.vue -------------------------------------------------------------------------------- /handlebars/vue/packages/vue-app/src/assets/ethereumLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/handlebars/vue/packages/vue-app/src/assets/ethereumLogo.png -------------------------------------------------------------------------------- /handlebars/vue/packages/vue-app/src/components/HelloWorld.vue.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/handlebars/vue/packages/vue-app/src/components/HelloWorld.vue.hbs -------------------------------------------------------------------------------- /handlebars/vue/packages/vue-app/src/main.js.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/handlebars/vue/packages/vue-app/src/main.js.hbs -------------------------------------------------------------------------------- /handlebars/vue/packages/vue-app/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/handlebars/vue/packages/vue-app/vue.config.js -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/jest.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/package.json -------------------------------------------------------------------------------- /screencast.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/screencast.gif -------------------------------------------------------------------------------- /src/createEthApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/src/createEthApp.ts -------------------------------------------------------------------------------- /src/gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/src/gitignore -------------------------------------------------------------------------------- /src/helpers/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/src/helpers/constants.ts -------------------------------------------------------------------------------- /src/helpers/directories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/src/helpers/directories.ts -------------------------------------------------------------------------------- /src/helpers/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/src/helpers/env.ts -------------------------------------------------------------------------------- /src/helpers/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/src/helpers/errors.ts -------------------------------------------------------------------------------- /src/helpers/frameworks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/src/helpers/frameworks.ts -------------------------------------------------------------------------------- /src/helpers/git.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/src/helpers/git.ts -------------------------------------------------------------------------------- /src/helpers/networking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/src/helpers/networking.ts -------------------------------------------------------------------------------- /src/helpers/npm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/src/helpers/npm.ts -------------------------------------------------------------------------------- /src/helpers/templates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/src/helpers/templates.ts -------------------------------------------------------------------------------- /src/helpers/url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/src/helpers/url.ts -------------------------------------------------------------------------------- /src/helpers/yarn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/src/helpers/yarn.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/src/index.ts -------------------------------------------------------------------------------- /templates/react/aave/README.md.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/aave/README.md.ctx -------------------------------------------------------------------------------- /templates/react/aave/package.json.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/aave/package.json.ctx -------------------------------------------------------------------------------- /templates/react/aave/packages/contracts/README.md.ctx: -------------------------------------------------------------------------------- 1 | { 2 | "title": "@aave-app/contracts" 3 | } 4 | -------------------------------------------------------------------------------- /templates/react/aave/packages/contracts/package.json.ctx: -------------------------------------------------------------------------------- 1 | { 2 | "packageName": "@aave-app/contracts" 3 | } 4 | -------------------------------------------------------------------------------- /templates/react/aave/packages/contracts/src/abis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/aave/packages/contracts/src/abis.js -------------------------------------------------------------------------------- /templates/react/aave/packages/contracts/src/abis/aToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/aave/packages/contracts/src/abis/aToken.json -------------------------------------------------------------------------------- /templates/react/aave/packages/contracts/src/abis/lendingPool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/aave/packages/contracts/src/abis/lendingPool.json -------------------------------------------------------------------------------- /templates/react/aave/packages/contracts/src/abis/lendingPoolAddressesProvider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/aave/packages/contracts/src/abis/lendingPoolAddressesProvider.json -------------------------------------------------------------------------------- /templates/react/aave/packages/contracts/src/abis/lendingPoolCore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/aave/packages/contracts/src/abis/lendingPoolCore.json -------------------------------------------------------------------------------- /templates/react/aave/packages/contracts/src/addresses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/aave/packages/contracts/src/addresses.js -------------------------------------------------------------------------------- /templates/react/aave/packages/contracts/src/index.js.ctx: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /templates/react/aave/packages/react-app/README.md.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/aave/packages/react-app/README.md.ctx -------------------------------------------------------------------------------- /templates/react/aave/packages/react-app/package.json.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/aave/packages/react-app/package.json.ctx -------------------------------------------------------------------------------- /templates/react/aave/packages/react-app/src/App.js.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/aave/packages/react-app/src/App.js.ctx -------------------------------------------------------------------------------- /templates/react/aave/packages/react-app/src/graphql/subgraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/aave/packages/react-app/src/graphql/subgraph.js -------------------------------------------------------------------------------- /templates/react/aave/packages/react-app/src/index.js.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/aave/packages/react-app/src/index.js.ctx -------------------------------------------------------------------------------- /templates/react/chainlink/README.md.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/chainlink/README.md.ctx -------------------------------------------------------------------------------- /templates/react/chainlink/package.json.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/chainlink/package.json.ctx -------------------------------------------------------------------------------- /templates/react/chainlink/packages/contracts/README.md.ctx: -------------------------------------------------------------------------------- 1 | { 2 | "title": "@chainlink-app/contracts" 3 | } 4 | -------------------------------------------------------------------------------- /templates/react/chainlink/packages/contracts/package.json.ctx: -------------------------------------------------------------------------------- 1 | { 2 | "packageName": "@chainlink-app/contracts" 3 | } 4 | -------------------------------------------------------------------------------- /templates/react/chainlink/packages/contracts/src/abis.js: -------------------------------------------------------------------------------- 1 | export default {}; 2 | -------------------------------------------------------------------------------- /templates/react/chainlink/packages/contracts/src/abis/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/react/chainlink/packages/contracts/src/addresses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/chainlink/packages/contracts/src/addresses.js -------------------------------------------------------------------------------- /templates/react/chainlink/packages/contracts/src/index.js.ctx: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /templates/react/chainlink/packages/react-app/README.md.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/chainlink/packages/react-app/README.md.ctx -------------------------------------------------------------------------------- /templates/react/chainlink/packages/react-app/package.json.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/chainlink/packages/react-app/package.json.ctx -------------------------------------------------------------------------------- /templates/react/chainlink/packages/react-app/src/App.js.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/chainlink/packages/react-app/src/App.js.ctx -------------------------------------------------------------------------------- /templates/react/chainlink/packages/react-app/src/graphql/subgraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/chainlink/packages/react-app/src/graphql/subgraph.js -------------------------------------------------------------------------------- /templates/react/chainlink/packages/react-app/src/index.js.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/chainlink/packages/react-app/src/index.js.ctx -------------------------------------------------------------------------------- /templates/react/compound/README.md.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/compound/README.md.ctx -------------------------------------------------------------------------------- /templates/react/compound/package.json.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/compound/package.json.ctx -------------------------------------------------------------------------------- /templates/react/compound/packages/contracts/README.md.ctx: -------------------------------------------------------------------------------- 1 | { 2 | "title": "@compound-app/contracts" 3 | } 4 | -------------------------------------------------------------------------------- /templates/react/compound/packages/contracts/package.json.ctx: -------------------------------------------------------------------------------- 1 | { 2 | "packageName": "@compound-app/contracts" 3 | } 4 | -------------------------------------------------------------------------------- /templates/react/compound/packages/contracts/src/abis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/compound/packages/contracts/src/abis.js -------------------------------------------------------------------------------- /templates/react/compound/packages/contracts/src/abis/COMP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/compound/packages/contracts/src/abis/COMP.json -------------------------------------------------------------------------------- /templates/react/compound/packages/contracts/src/abis/cBAT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/compound/packages/contracts/src/abis/cBAT.json -------------------------------------------------------------------------------- /templates/react/compound/packages/contracts/src/abis/cDAI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/compound/packages/contracts/src/abis/cDAI.json -------------------------------------------------------------------------------- /templates/react/compound/packages/contracts/src/abis/cETH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/compound/packages/contracts/src/abis/cETH.json -------------------------------------------------------------------------------- /templates/react/compound/packages/contracts/src/abis/cREP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/compound/packages/contracts/src/abis/cREP.json -------------------------------------------------------------------------------- /templates/react/compound/packages/contracts/src/abis/cSAI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/compound/packages/contracts/src/abis/cSAI.json -------------------------------------------------------------------------------- /templates/react/compound/packages/contracts/src/abis/cUSDC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/compound/packages/contracts/src/abis/cUSDC.json -------------------------------------------------------------------------------- /templates/react/compound/packages/contracts/src/abis/cUSDT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/compound/packages/contracts/src/abis/cUSDT.json -------------------------------------------------------------------------------- /templates/react/compound/packages/contracts/src/abis/cWBTC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/compound/packages/contracts/src/abis/cWBTC.json -------------------------------------------------------------------------------- /templates/react/compound/packages/contracts/src/abis/cZRX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/compound/packages/contracts/src/abis/cZRX.json -------------------------------------------------------------------------------- /templates/react/compound/packages/contracts/src/abis/comptroller.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/compound/packages/contracts/src/abis/comptroller.json -------------------------------------------------------------------------------- /templates/react/compound/packages/contracts/src/abis/governance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/compound/packages/contracts/src/abis/governance.json -------------------------------------------------------------------------------- /templates/react/compound/packages/contracts/src/abis/priceOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/compound/packages/contracts/src/abis/priceOracle.json -------------------------------------------------------------------------------- /templates/react/compound/packages/contracts/src/abis/timelock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/compound/packages/contracts/src/abis/timelock.json -------------------------------------------------------------------------------- /templates/react/compound/packages/contracts/src/addresses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/compound/packages/contracts/src/addresses.js -------------------------------------------------------------------------------- /templates/react/compound/packages/contracts/src/index.js.ctx: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /templates/react/compound/packages/react-app/README.md.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/compound/packages/react-app/README.md.ctx -------------------------------------------------------------------------------- /templates/react/compound/packages/react-app/package.json.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/compound/packages/react-app/package.json.ctx -------------------------------------------------------------------------------- /templates/react/compound/packages/react-app/src/App.js.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/compound/packages/react-app/src/App.js.ctx -------------------------------------------------------------------------------- /templates/react/compound/packages/react-app/src/graphql/subgraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/compound/packages/react-app/src/graphql/subgraph.js -------------------------------------------------------------------------------- /templates/react/compound/packages/react-app/src/index.js.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/compound/packages/react-app/src/index.js.ctx -------------------------------------------------------------------------------- /templates/react/default/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/default/.gitignore -------------------------------------------------------------------------------- /templates/react/default/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/default/README.md -------------------------------------------------------------------------------- /templates/react/default/README.md.ctx: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /templates/react/default/package.json.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/default/package.json.ctx -------------------------------------------------------------------------------- /templates/react/default/packages/contracts/README.md.ctx: -------------------------------------------------------------------------------- 1 | { 2 | "title": "@my-app/contracts" 3 | } 4 | -------------------------------------------------------------------------------- /templates/react/default/packages/contracts/package.json.ctx: -------------------------------------------------------------------------------- 1 | { 2 | "packageName": "@my-app/contracts" 3 | } 4 | -------------------------------------------------------------------------------- /templates/react/default/packages/contracts/src/abis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/default/packages/contracts/src/abis.js -------------------------------------------------------------------------------- /templates/react/default/packages/contracts/src/abis/erc20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/default/packages/contracts/src/abis/erc20.json -------------------------------------------------------------------------------- /templates/react/default/packages/contracts/src/abis/ownable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/default/packages/contracts/src/abis/ownable.json -------------------------------------------------------------------------------- /templates/react/default/packages/contracts/src/addresses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/default/packages/contracts/src/addresses.js -------------------------------------------------------------------------------- /templates/react/default/packages/contracts/src/index.js.ctx: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /templates/react/default/packages/react-app/README.md.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/default/packages/react-app/README.md.ctx -------------------------------------------------------------------------------- /templates/react/default/packages/react-app/package.json.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/default/packages/react-app/package.json.ctx -------------------------------------------------------------------------------- /templates/react/default/packages/react-app/src/App.js.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/default/packages/react-app/src/App.js.ctx -------------------------------------------------------------------------------- /templates/react/default/packages/react-app/src/graphql/subgraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/default/packages/react-app/src/graphql/subgraph.js -------------------------------------------------------------------------------- /templates/react/default/packages/react-app/src/index.js.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/default/packages/react-app/src/index.js.ctx -------------------------------------------------------------------------------- /templates/react/default/packages/subgraph/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/default/packages/subgraph/README.md -------------------------------------------------------------------------------- /templates/react/default/packages/subgraph/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/default/packages/subgraph/package.json -------------------------------------------------------------------------------- /templates/react/default/packages/subgraph/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/default/packages/subgraph/schema.graphql -------------------------------------------------------------------------------- /templates/react/default/packages/subgraph/src/mappings/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/default/packages/subgraph/src/mappings/tokens.ts -------------------------------------------------------------------------------- /templates/react/default/packages/subgraph/src/mappings/transfers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/default/packages/subgraph/src/mappings/transfers.ts -------------------------------------------------------------------------------- /templates/react/default/packages/subgraph/subgraph.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/default/packages/subgraph/subgraph.yaml -------------------------------------------------------------------------------- /templates/react/kyber/README.md.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/kyber/README.md.ctx -------------------------------------------------------------------------------- /templates/react/kyber/package.json.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/kyber/package.json.ctx -------------------------------------------------------------------------------- /templates/react/kyber/packages/contracts/README.md.ctx: -------------------------------------------------------------------------------- 1 | { 2 | "title": "@kyber-app/contracts" 3 | } 4 | -------------------------------------------------------------------------------- /templates/react/kyber/packages/contracts/package.json.ctx: -------------------------------------------------------------------------------- 1 | { 2 | "packageName": "@kyber-app/contracts" 3 | } 4 | -------------------------------------------------------------------------------- /templates/react/kyber/packages/contracts/src/abis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/kyber/packages/contracts/src/abis.js -------------------------------------------------------------------------------- /templates/react/kyber/packages/contracts/src/abis/conversionRates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/kyber/packages/contracts/src/abis/conversionRates.json -------------------------------------------------------------------------------- /templates/react/kyber/packages/contracts/src/abis/erc20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/kyber/packages/contracts/src/abis/erc20.json -------------------------------------------------------------------------------- /templates/react/kyber/packages/contracts/src/abis/kyberFeeHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/kyber/packages/contracts/src/abis/kyberFeeHandler.json -------------------------------------------------------------------------------- /templates/react/kyber/packages/contracts/src/abis/kyberHintHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/kyber/packages/contracts/src/abis/kyberHintHandler.json -------------------------------------------------------------------------------- /templates/react/kyber/packages/contracts/src/abis/kyberNetworkProxyV1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/kyber/packages/contracts/src/abis/kyberNetworkProxyV1.json -------------------------------------------------------------------------------- /templates/react/kyber/packages/contracts/src/abis/kyberNetworkProxyV2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/kyber/packages/contracts/src/abis/kyberNetworkProxyV2.json -------------------------------------------------------------------------------- /templates/react/kyber/packages/contracts/src/abis/kyberReserve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/kyber/packages/contracts/src/abis/kyberReserve.json -------------------------------------------------------------------------------- /templates/react/kyber/packages/contracts/src/abis/kyberStorage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/kyber/packages/contracts/src/abis/kyberStorage.json -------------------------------------------------------------------------------- /templates/react/kyber/packages/contracts/src/abis/liquidityConversionRates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/kyber/packages/contracts/src/abis/liquidityConversionRates.json -------------------------------------------------------------------------------- /templates/react/kyber/packages/contracts/src/abis/sanityRates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/kyber/packages/contracts/src/abis/sanityRates.json -------------------------------------------------------------------------------- /templates/react/kyber/packages/contracts/src/abis/simpleKyberProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/kyber/packages/contracts/src/abis/simpleKyberProxy.json -------------------------------------------------------------------------------- /templates/react/kyber/packages/contracts/src/addresses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/kyber/packages/contracts/src/addresses.js -------------------------------------------------------------------------------- /templates/react/kyber/packages/contracts/src/index.js.ctx: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /templates/react/kyber/packages/react-app/README.md.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/kyber/packages/react-app/README.md.ctx -------------------------------------------------------------------------------- /templates/react/kyber/packages/react-app/package.json.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/kyber/packages/react-app/package.json.ctx -------------------------------------------------------------------------------- /templates/react/kyber/packages/react-app/src/App.js.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/kyber/packages/react-app/src/App.js.ctx -------------------------------------------------------------------------------- /templates/react/kyber/packages/react-app/src/graphql/subgraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/kyber/packages/react-app/src/graphql/subgraph.js -------------------------------------------------------------------------------- /templates/react/kyber/packages/react-app/src/index.js.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/kyber/packages/react-app/src/index.js.ctx -------------------------------------------------------------------------------- /templates/react/maker/README.md.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/maker/README.md.ctx -------------------------------------------------------------------------------- /templates/react/maker/package.json.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/maker/package.json.ctx -------------------------------------------------------------------------------- /templates/react/maker/packages/contracts/README.md.ctx: -------------------------------------------------------------------------------- 1 | { 2 | "title": "@maker-app/contracts" 3 | } 4 | -------------------------------------------------------------------------------- /templates/react/maker/packages/contracts/package.json.ctx: -------------------------------------------------------------------------------- 1 | { 2 | "packageName": "@maker-app/contracts" 3 | } 4 | -------------------------------------------------------------------------------- /templates/react/maker/packages/contracts/src/abis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/maker/packages/contracts/src/abis.js -------------------------------------------------------------------------------- /templates/react/maker/packages/contracts/src/abis/cat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/maker/packages/contracts/src/abis/cat.json -------------------------------------------------------------------------------- /templates/react/maker/packages/contracts/src/abis/dai.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/maker/packages/contracts/src/abis/dai.json -------------------------------------------------------------------------------- /templates/react/maker/packages/contracts/src/abis/daiJoin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/maker/packages/contracts/src/abis/daiJoin.json -------------------------------------------------------------------------------- /templates/react/maker/packages/contracts/src/abis/dsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/maker/packages/contracts/src/abis/dsProxy.json -------------------------------------------------------------------------------- /templates/react/maker/packages/contracts/src/abis/dssCdpManager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/maker/packages/contracts/src/abis/dssCdpManager.json -------------------------------------------------------------------------------- /templates/react/maker/packages/contracts/src/abis/dssProxyActions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/maker/packages/contracts/src/abis/dssProxyActions.json -------------------------------------------------------------------------------- /templates/react/maker/packages/contracts/src/abis/dssProxyActionsDsr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/maker/packages/contracts/src/abis/dssProxyActionsDsr.json -------------------------------------------------------------------------------- /templates/react/maker/packages/contracts/src/abis/erc20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/maker/packages/contracts/src/abis/erc20.json -------------------------------------------------------------------------------- /templates/react/maker/packages/contracts/src/abis/erc20Events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/maker/packages/contracts/src/abis/erc20Events.json -------------------------------------------------------------------------------- /templates/react/maker/packages/contracts/src/abis/ethJoin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/maker/packages/contracts/src/abis/ethJoin.json -------------------------------------------------------------------------------- /templates/react/maker/packages/contracts/src/abis/jug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/maker/packages/contracts/src/abis/jug.json -------------------------------------------------------------------------------- /templates/react/maker/packages/contracts/src/abis/pot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/maker/packages/contracts/src/abis/pot.json -------------------------------------------------------------------------------- /templates/react/maker/packages/contracts/src/abis/proxyActions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/maker/packages/contracts/src/abis/proxyActions.json -------------------------------------------------------------------------------- /templates/react/maker/packages/contracts/src/abis/proxyRegistry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/maker/packages/contracts/src/abis/proxyRegistry.json -------------------------------------------------------------------------------- /templates/react/maker/packages/contracts/src/abis/spotter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/maker/packages/contracts/src/abis/spotter.json -------------------------------------------------------------------------------- /templates/react/maker/packages/contracts/src/abis/vat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/maker/packages/contracts/src/abis/vat.json -------------------------------------------------------------------------------- /templates/react/maker/packages/contracts/src/addresses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/maker/packages/contracts/src/addresses.js -------------------------------------------------------------------------------- /templates/react/maker/packages/contracts/src/index.js.ctx: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /templates/react/maker/packages/react-app/README.md.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/maker/packages/react-app/README.md.ctx -------------------------------------------------------------------------------- /templates/react/maker/packages/react-app/package.json.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/maker/packages/react-app/package.json.ctx -------------------------------------------------------------------------------- /templates/react/maker/packages/react-app/src/App.js.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/maker/packages/react-app/src/App.js.ctx -------------------------------------------------------------------------------- /templates/react/maker/packages/react-app/src/graphql/subgraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/maker/packages/react-app/src/graphql/subgraph.js -------------------------------------------------------------------------------- /templates/react/maker/packages/react-app/src/index.js.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/maker/packages/react-app/src/index.js.ctx -------------------------------------------------------------------------------- /templates/react/mstable/README.md.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/mstable/README.md.ctx -------------------------------------------------------------------------------- /templates/react/mstable/package.json.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/mstable/package.json.ctx -------------------------------------------------------------------------------- /templates/react/mstable/packages/contracts/README.md.ctx: -------------------------------------------------------------------------------- 1 | { 2 | "title": "@mstable-app/contracts" 3 | } 4 | -------------------------------------------------------------------------------- /templates/react/mstable/packages/contracts/package.json.ctx: -------------------------------------------------------------------------------- 1 | { 2 | "packageName": "@mstable-app/contracts" 3 | } 4 | -------------------------------------------------------------------------------- /templates/react/mstable/packages/contracts/src/abis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/mstable/packages/contracts/src/abis.js -------------------------------------------------------------------------------- /templates/react/mstable/packages/contracts/src/abis/mAsset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/mstable/packages/contracts/src/abis/mAsset.json -------------------------------------------------------------------------------- /templates/react/mstable/packages/contracts/src/abis/metaToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/mstable/packages/contracts/src/abis/metaToken.json -------------------------------------------------------------------------------- /templates/react/mstable/packages/contracts/src/abis/nexus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/mstable/packages/contracts/src/abis/nexus.json -------------------------------------------------------------------------------- /templates/react/mstable/packages/contracts/src/abis/savingsContract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/mstable/packages/contracts/src/abis/savingsContract.json -------------------------------------------------------------------------------- /templates/react/mstable/packages/contracts/src/abis/savingsManager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/mstable/packages/contracts/src/abis/savingsManager.json -------------------------------------------------------------------------------- /templates/react/mstable/packages/contracts/src/addresses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/mstable/packages/contracts/src/addresses.js -------------------------------------------------------------------------------- /templates/react/mstable/packages/contracts/src/index.js.ctx: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /templates/react/mstable/packages/react-app/README.md.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/mstable/packages/react-app/README.md.ctx -------------------------------------------------------------------------------- /templates/react/mstable/packages/react-app/package.json.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/mstable/packages/react-app/package.json.ctx -------------------------------------------------------------------------------- /templates/react/mstable/packages/react-app/src/App.js.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/mstable/packages/react-app/src/App.js.ctx -------------------------------------------------------------------------------- /templates/react/mstable/packages/react-app/src/graphql/subgraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/mstable/packages/react-app/src/graphql/subgraph.js -------------------------------------------------------------------------------- /templates/react/mstable/packages/react-app/src/index.js.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/mstable/packages/react-app/src/index.js.ctx -------------------------------------------------------------------------------- /templates/react/sablier-v1/README.md.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/sablier-v1/README.md.ctx -------------------------------------------------------------------------------- /templates/react/sablier-v1/package.json.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/sablier-v1/package.json.ctx -------------------------------------------------------------------------------- /templates/react/sablier-v1/packages/contracts/README.md.ctx: -------------------------------------------------------------------------------- 1 | { 2 | "title": "@sablier-v1-app/contracts" 3 | } 4 | -------------------------------------------------------------------------------- /templates/react/sablier-v1/packages/contracts/package.json.ctx: -------------------------------------------------------------------------------- 1 | { 2 | "packageName": "@sablier-v1-app/contracts" 3 | } 4 | -------------------------------------------------------------------------------- /templates/react/sablier-v1/packages/contracts/src/abis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/sablier-v1/packages/contracts/src/abis.js -------------------------------------------------------------------------------- /templates/react/sablier-v1/packages/contracts/src/abis/erc20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/sablier-v1/packages/contracts/src/abis/erc20.json -------------------------------------------------------------------------------- /templates/react/sablier-v1/packages/contracts/src/abis/payroll.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/sablier-v1/packages/contracts/src/abis/payroll.json -------------------------------------------------------------------------------- /templates/react/sablier-v1/packages/contracts/src/abis/sablier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/sablier-v1/packages/contracts/src/abis/sablier.json -------------------------------------------------------------------------------- /templates/react/sablier-v1/packages/contracts/src/addresses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/sablier-v1/packages/contracts/src/addresses.js -------------------------------------------------------------------------------- /templates/react/sablier-v1/packages/contracts/src/index.js.ctx: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /templates/react/sablier-v1/packages/react-app/README.md.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/sablier-v1/packages/react-app/README.md.ctx -------------------------------------------------------------------------------- /templates/react/sablier-v1/packages/react-app/package.json.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/sablier-v1/packages/react-app/package.json.ctx -------------------------------------------------------------------------------- /templates/react/sablier-v1/packages/react-app/src/App.js.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/sablier-v1/packages/react-app/src/App.js.ctx -------------------------------------------------------------------------------- /templates/react/sablier-v1/packages/react-app/src/graphql/subgraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/sablier-v1/packages/react-app/src/graphql/subgraph.js -------------------------------------------------------------------------------- /templates/react/sablier-v1/packages/react-app/src/index.js.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/sablier-v1/packages/react-app/src/index.js.ctx -------------------------------------------------------------------------------- /templates/react/synthetix/README.md.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/synthetix/README.md.ctx -------------------------------------------------------------------------------- /templates/react/synthetix/package.json.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/synthetix/package.json.ctx -------------------------------------------------------------------------------- /templates/react/synthetix/packages/contracts/README.md.ctx: -------------------------------------------------------------------------------- 1 | { 2 | "title": "@synthetix-app/contracts" 3 | } 4 | -------------------------------------------------------------------------------- /templates/react/synthetix/packages/contracts/package.json.ctx: -------------------------------------------------------------------------------- 1 | { 2 | "packageName": "@synthetix-app/contracts" 3 | } 4 | -------------------------------------------------------------------------------- /templates/react/synthetix/packages/contracts/src/abis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/synthetix/packages/contracts/src/abis.js -------------------------------------------------------------------------------- /templates/react/synthetix/packages/contracts/src/abis/readProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/synthetix/packages/contracts/src/abis/readProxy.json -------------------------------------------------------------------------------- /templates/react/synthetix/packages/contracts/src/abis/snx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/synthetix/packages/contracts/src/abis/snx.json -------------------------------------------------------------------------------- /templates/react/synthetix/packages/contracts/src/addresses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/synthetix/packages/contracts/src/addresses.js -------------------------------------------------------------------------------- /templates/react/synthetix/packages/contracts/src/index.js.ctx: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /templates/react/synthetix/packages/react-app/README.md.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/synthetix/packages/react-app/README.md.ctx -------------------------------------------------------------------------------- /templates/react/synthetix/packages/react-app/package.json.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/synthetix/packages/react-app/package.json.ctx -------------------------------------------------------------------------------- /templates/react/synthetix/packages/react-app/src/App.js.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/synthetix/packages/react-app/src/App.js.ctx -------------------------------------------------------------------------------- /templates/react/synthetix/packages/react-app/src/graphql/subgraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/synthetix/packages/react-app/src/graphql/subgraph.js -------------------------------------------------------------------------------- /templates/react/synthetix/packages/react-app/src/index.js.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/synthetix/packages/react-app/src/index.js.ctx -------------------------------------------------------------------------------- /templates/react/uniswap-v2/README.md.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/uniswap-v2/README.md.ctx -------------------------------------------------------------------------------- /templates/react/uniswap-v2/package.json.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/uniswap-v2/package.json.ctx -------------------------------------------------------------------------------- /templates/react/uniswap-v2/packages/contracts/README.md.ctx: -------------------------------------------------------------------------------- 1 | { 2 | "title": "@uniswap-v2-app/contracts" 3 | } 4 | -------------------------------------------------------------------------------- /templates/react/uniswap-v2/packages/contracts/package.json.ctx: -------------------------------------------------------------------------------- 1 | { 2 | "packageName": "@uniswap-v2-app/contracts" 3 | } 4 | -------------------------------------------------------------------------------- /templates/react/uniswap-v2/packages/contracts/src/abis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/uniswap-v2/packages/contracts/src/abis.js -------------------------------------------------------------------------------- /templates/react/uniswap-v2/packages/contracts/src/abis/erc20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/uniswap-v2/packages/contracts/src/abis/erc20.json -------------------------------------------------------------------------------- /templates/react/uniswap-v2/packages/contracts/src/abis/factory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/uniswap-v2/packages/contracts/src/abis/factory.json -------------------------------------------------------------------------------- /templates/react/uniswap-v2/packages/contracts/src/abis/pair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/uniswap-v2/packages/contracts/src/abis/pair.json -------------------------------------------------------------------------------- /templates/react/uniswap-v2/packages/contracts/src/abis/router01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/uniswap-v2/packages/contracts/src/abis/router01.json -------------------------------------------------------------------------------- /templates/react/uniswap-v2/packages/contracts/src/abis/router02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/uniswap-v2/packages/contracts/src/abis/router02.json -------------------------------------------------------------------------------- /templates/react/uniswap-v2/packages/contracts/src/addresses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/uniswap-v2/packages/contracts/src/addresses.js -------------------------------------------------------------------------------- /templates/react/uniswap-v2/packages/contracts/src/index.js.ctx: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /templates/react/uniswap-v2/packages/react-app/README.md.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/uniswap-v2/packages/react-app/README.md.ctx -------------------------------------------------------------------------------- /templates/react/uniswap-v2/packages/react-app/package.json.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/uniswap-v2/packages/react-app/package.json.ctx -------------------------------------------------------------------------------- /templates/react/uniswap-v2/packages/react-app/src/App.js.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/uniswap-v2/packages/react-app/src/App.js.ctx -------------------------------------------------------------------------------- /templates/react/uniswap-v2/packages/react-app/src/graphql/subgraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/uniswap-v2/packages/react-app/src/graphql/subgraph.js -------------------------------------------------------------------------------- /templates/react/uniswap-v2/packages/react-app/src/index.js.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/react/uniswap-v2/packages/react-app/src/index.js.ctx -------------------------------------------------------------------------------- /templates/vue/aave/README.md.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/aave/README.md.ctx -------------------------------------------------------------------------------- /templates/vue/aave/package.json.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/aave/package.json.ctx -------------------------------------------------------------------------------- /templates/vue/aave/packages/contracts/README.md.ctx: -------------------------------------------------------------------------------- 1 | { 2 | "title": "@aave-app/contracts" 3 | } 4 | -------------------------------------------------------------------------------- /templates/vue/aave/packages/contracts/package.json.ctx: -------------------------------------------------------------------------------- 1 | { 2 | "packageName": "@aave-app/contracts" 3 | } 4 | -------------------------------------------------------------------------------- /templates/vue/aave/packages/contracts/src/abis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/aave/packages/contracts/src/abis.js -------------------------------------------------------------------------------- /templates/vue/aave/packages/contracts/src/abis/aToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/aave/packages/contracts/src/abis/aToken.json -------------------------------------------------------------------------------- /templates/vue/aave/packages/contracts/src/abis/lendingPool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/aave/packages/contracts/src/abis/lendingPool.json -------------------------------------------------------------------------------- /templates/vue/aave/packages/contracts/src/abis/lendingPoolAddressesProvider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/aave/packages/contracts/src/abis/lendingPoolAddressesProvider.json -------------------------------------------------------------------------------- /templates/vue/aave/packages/contracts/src/abis/lendingPoolCore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/aave/packages/contracts/src/abis/lendingPoolCore.json -------------------------------------------------------------------------------- /templates/vue/aave/packages/contracts/src/addresses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/aave/packages/contracts/src/addresses.js -------------------------------------------------------------------------------- /templates/vue/aave/packages/contracts/src/index.js.ctx: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /templates/vue/aave/packages/vue-app/README.md.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/aave/packages/vue-app/README.md.ctx -------------------------------------------------------------------------------- /templates/vue/aave/packages/vue-app/package.json.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/aave/packages/vue-app/package.json.ctx -------------------------------------------------------------------------------- /templates/vue/aave/packages/vue-app/src/components/HelloWorld.vue.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/aave/packages/vue-app/src/components/HelloWorld.vue.ctx -------------------------------------------------------------------------------- /templates/vue/aave/packages/vue-app/src/graphql/subgraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/aave/packages/vue-app/src/graphql/subgraph.js -------------------------------------------------------------------------------- /templates/vue/aave/packages/vue-app/src/main.js.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/aave/packages/vue-app/src/main.js.ctx -------------------------------------------------------------------------------- /templates/vue/chainlink/README.md.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/chainlink/README.md.ctx -------------------------------------------------------------------------------- /templates/vue/chainlink/package.json.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/chainlink/package.json.ctx -------------------------------------------------------------------------------- /templates/vue/chainlink/packages/contracts/README.md.ctx: -------------------------------------------------------------------------------- 1 | { 2 | "title": "@chainlink-app/contracts" 3 | } 4 | -------------------------------------------------------------------------------- /templates/vue/chainlink/packages/contracts/package.json.ctx: -------------------------------------------------------------------------------- 1 | { 2 | "packageName": "@chainlink-app/contracts" 3 | } 4 | -------------------------------------------------------------------------------- /templates/vue/chainlink/packages/contracts/src/abis.js: -------------------------------------------------------------------------------- 1 | export default {}; 2 | -------------------------------------------------------------------------------- /templates/vue/chainlink/packages/contracts/src/abis/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/vue/chainlink/packages/contracts/src/addresses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/chainlink/packages/contracts/src/addresses.js -------------------------------------------------------------------------------- /templates/vue/chainlink/packages/contracts/src/index.js.ctx: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /templates/vue/chainlink/packages/vue-app/README.md.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/chainlink/packages/vue-app/README.md.ctx -------------------------------------------------------------------------------- /templates/vue/chainlink/packages/vue-app/package.json.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/chainlink/packages/vue-app/package.json.ctx -------------------------------------------------------------------------------- /templates/vue/chainlink/packages/vue-app/src/components/HelloWorld.vue.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/chainlink/packages/vue-app/src/components/HelloWorld.vue.ctx -------------------------------------------------------------------------------- /templates/vue/chainlink/packages/vue-app/src/graphql/subgraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/chainlink/packages/vue-app/src/graphql/subgraph.js -------------------------------------------------------------------------------- /templates/vue/chainlink/packages/vue-app/src/main.js.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/chainlink/packages/vue-app/src/main.js.ctx -------------------------------------------------------------------------------- /templates/vue/compound/README.md.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/compound/README.md.ctx -------------------------------------------------------------------------------- /templates/vue/compound/package.json.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/compound/package.json.ctx -------------------------------------------------------------------------------- /templates/vue/compound/packages/contracts/README.md.ctx: -------------------------------------------------------------------------------- 1 | { 2 | "title": "@compound-app/contracts" 3 | } 4 | -------------------------------------------------------------------------------- /templates/vue/compound/packages/contracts/package.json.ctx: -------------------------------------------------------------------------------- 1 | { 2 | "packageName": "@compound-app/contracts" 3 | } 4 | -------------------------------------------------------------------------------- /templates/vue/compound/packages/contracts/src/abis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/compound/packages/contracts/src/abis.js -------------------------------------------------------------------------------- /templates/vue/compound/packages/contracts/src/abis/COMP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/compound/packages/contracts/src/abis/COMP.json -------------------------------------------------------------------------------- /templates/vue/compound/packages/contracts/src/abis/cBAT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/compound/packages/contracts/src/abis/cBAT.json -------------------------------------------------------------------------------- /templates/vue/compound/packages/contracts/src/abis/cDAI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/compound/packages/contracts/src/abis/cDAI.json -------------------------------------------------------------------------------- /templates/vue/compound/packages/contracts/src/abis/cETH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/compound/packages/contracts/src/abis/cETH.json -------------------------------------------------------------------------------- /templates/vue/compound/packages/contracts/src/abis/cREP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/compound/packages/contracts/src/abis/cREP.json -------------------------------------------------------------------------------- /templates/vue/compound/packages/contracts/src/abis/cSAI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/compound/packages/contracts/src/abis/cSAI.json -------------------------------------------------------------------------------- /templates/vue/compound/packages/contracts/src/abis/cUSDC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/compound/packages/contracts/src/abis/cUSDC.json -------------------------------------------------------------------------------- /templates/vue/compound/packages/contracts/src/abis/cUSDT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/compound/packages/contracts/src/abis/cUSDT.json -------------------------------------------------------------------------------- /templates/vue/compound/packages/contracts/src/abis/cWBTC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/compound/packages/contracts/src/abis/cWBTC.json -------------------------------------------------------------------------------- /templates/vue/compound/packages/contracts/src/abis/cZRX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/compound/packages/contracts/src/abis/cZRX.json -------------------------------------------------------------------------------- /templates/vue/compound/packages/contracts/src/abis/comptroller.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/compound/packages/contracts/src/abis/comptroller.json -------------------------------------------------------------------------------- /templates/vue/compound/packages/contracts/src/abis/governance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/compound/packages/contracts/src/abis/governance.json -------------------------------------------------------------------------------- /templates/vue/compound/packages/contracts/src/abis/priceOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/compound/packages/contracts/src/abis/priceOracle.json -------------------------------------------------------------------------------- /templates/vue/compound/packages/contracts/src/abis/timelock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/compound/packages/contracts/src/abis/timelock.json -------------------------------------------------------------------------------- /templates/vue/compound/packages/contracts/src/addresses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/compound/packages/contracts/src/addresses.js -------------------------------------------------------------------------------- /templates/vue/compound/packages/contracts/src/index.js.ctx: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /templates/vue/compound/packages/vue-app/README.md.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/compound/packages/vue-app/README.md.ctx -------------------------------------------------------------------------------- /templates/vue/compound/packages/vue-app/package.json.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/compound/packages/vue-app/package.json.ctx -------------------------------------------------------------------------------- /templates/vue/compound/packages/vue-app/src/components/HelloWorld.vue.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/compound/packages/vue-app/src/components/HelloWorld.vue.ctx -------------------------------------------------------------------------------- /templates/vue/compound/packages/vue-app/src/graphql/subgraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/compound/packages/vue-app/src/graphql/subgraph.js -------------------------------------------------------------------------------- /templates/vue/compound/packages/vue-app/src/main.js.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/compound/packages/vue-app/src/main.js.ctx -------------------------------------------------------------------------------- /templates/vue/default/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/default/.gitignore -------------------------------------------------------------------------------- /templates/vue/default/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/vue/default/README.md.ctx: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /templates/vue/default/package.json.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/default/package.json.ctx -------------------------------------------------------------------------------- /templates/vue/default/packages/contracts/README.md.ctx: -------------------------------------------------------------------------------- 1 | { 2 | "title": "@my-app/contracts" 3 | } 4 | -------------------------------------------------------------------------------- /templates/vue/default/packages/contracts/package.json.ctx: -------------------------------------------------------------------------------- 1 | { 2 | "packageName": "@my-app/contracts" 3 | } 4 | -------------------------------------------------------------------------------- /templates/vue/default/packages/contracts/src/abis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/default/packages/contracts/src/abis.js -------------------------------------------------------------------------------- /templates/vue/default/packages/contracts/src/abis/erc20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/default/packages/contracts/src/abis/erc20.json -------------------------------------------------------------------------------- /templates/vue/default/packages/contracts/src/abis/ownable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/default/packages/contracts/src/abis/ownable.json -------------------------------------------------------------------------------- /templates/vue/default/packages/contracts/src/addresses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/default/packages/contracts/src/addresses.js -------------------------------------------------------------------------------- /templates/vue/default/packages/contracts/src/index.js.ctx: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /templates/vue/default/packages/subgraph/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/default/packages/subgraph/README.md -------------------------------------------------------------------------------- /templates/vue/default/packages/subgraph/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/default/packages/subgraph/package.json -------------------------------------------------------------------------------- /templates/vue/default/packages/subgraph/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/default/packages/subgraph/schema.graphql -------------------------------------------------------------------------------- /templates/vue/default/packages/subgraph/src/mappings/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/default/packages/subgraph/src/mappings/tokens.ts -------------------------------------------------------------------------------- /templates/vue/default/packages/subgraph/src/mappings/transfers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/default/packages/subgraph/src/mappings/transfers.ts -------------------------------------------------------------------------------- /templates/vue/default/packages/subgraph/subgraph.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/default/packages/subgraph/subgraph.yaml -------------------------------------------------------------------------------- /templates/vue/default/packages/vue-app/README.md.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/default/packages/vue-app/README.md.ctx -------------------------------------------------------------------------------- /templates/vue/default/packages/vue-app/package.json.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/default/packages/vue-app/package.json.ctx -------------------------------------------------------------------------------- /templates/vue/default/packages/vue-app/src/components/HelloWorld.vue.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/default/packages/vue-app/src/components/HelloWorld.vue.ctx -------------------------------------------------------------------------------- /templates/vue/default/packages/vue-app/src/graphql/subgraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/default/packages/vue-app/src/graphql/subgraph.js -------------------------------------------------------------------------------- /templates/vue/default/packages/vue-app/src/main.js.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/default/packages/vue-app/src/main.js.ctx -------------------------------------------------------------------------------- /templates/vue/kyber/README.md.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/kyber/README.md.ctx -------------------------------------------------------------------------------- /templates/vue/kyber/package.json.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/kyber/package.json.ctx -------------------------------------------------------------------------------- /templates/vue/kyber/packages/contracts/README.md.ctx: -------------------------------------------------------------------------------- 1 | { 2 | "title": "@kyber-app/contracts" 3 | } 4 | -------------------------------------------------------------------------------- /templates/vue/kyber/packages/contracts/package.json.ctx: -------------------------------------------------------------------------------- 1 | { 2 | "packageName": "@kyber-app/contracts" 3 | } 4 | -------------------------------------------------------------------------------- /templates/vue/kyber/packages/contracts/src/abis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/kyber/packages/contracts/src/abis.js -------------------------------------------------------------------------------- /templates/vue/kyber/packages/contracts/src/abis/conversionRates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/kyber/packages/contracts/src/abis/conversionRates.json -------------------------------------------------------------------------------- /templates/vue/kyber/packages/contracts/src/abis/erc20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/kyber/packages/contracts/src/abis/erc20.json -------------------------------------------------------------------------------- /templates/vue/kyber/packages/contracts/src/abis/kyberFeeHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/kyber/packages/contracts/src/abis/kyberFeeHandler.json -------------------------------------------------------------------------------- /templates/vue/kyber/packages/contracts/src/abis/kyberHintHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/kyber/packages/contracts/src/abis/kyberHintHandler.json -------------------------------------------------------------------------------- /templates/vue/kyber/packages/contracts/src/abis/kyberNetworkProxyV1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/kyber/packages/contracts/src/abis/kyberNetworkProxyV1.json -------------------------------------------------------------------------------- /templates/vue/kyber/packages/contracts/src/abis/kyberNetworkProxyV2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/kyber/packages/contracts/src/abis/kyberNetworkProxyV2.json -------------------------------------------------------------------------------- /templates/vue/kyber/packages/contracts/src/abis/kyberReserve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/kyber/packages/contracts/src/abis/kyberReserve.json -------------------------------------------------------------------------------- /templates/vue/kyber/packages/contracts/src/abis/kyberStorage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/kyber/packages/contracts/src/abis/kyberStorage.json -------------------------------------------------------------------------------- /templates/vue/kyber/packages/contracts/src/abis/liquidityConversionRates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/kyber/packages/contracts/src/abis/liquidityConversionRates.json -------------------------------------------------------------------------------- /templates/vue/kyber/packages/contracts/src/abis/sanityRates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/kyber/packages/contracts/src/abis/sanityRates.json -------------------------------------------------------------------------------- /templates/vue/kyber/packages/contracts/src/abis/simpleKyberProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/kyber/packages/contracts/src/abis/simpleKyberProxy.json -------------------------------------------------------------------------------- /templates/vue/kyber/packages/contracts/src/addresses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/kyber/packages/contracts/src/addresses.js -------------------------------------------------------------------------------- /templates/vue/kyber/packages/contracts/src/index.js.ctx: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /templates/vue/kyber/packages/vue-app/README.md.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/kyber/packages/vue-app/README.md.ctx -------------------------------------------------------------------------------- /templates/vue/kyber/packages/vue-app/package.json.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/kyber/packages/vue-app/package.json.ctx -------------------------------------------------------------------------------- /templates/vue/kyber/packages/vue-app/src/components/HelloWorld.vue.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/kyber/packages/vue-app/src/components/HelloWorld.vue.ctx -------------------------------------------------------------------------------- /templates/vue/kyber/packages/vue-app/src/graphql/subgraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/kyber/packages/vue-app/src/graphql/subgraph.js -------------------------------------------------------------------------------- /templates/vue/kyber/packages/vue-app/src/main.js.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/kyber/packages/vue-app/src/main.js.ctx -------------------------------------------------------------------------------- /templates/vue/maker/README.md.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/maker/README.md.ctx -------------------------------------------------------------------------------- /templates/vue/maker/package.json.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/maker/package.json.ctx -------------------------------------------------------------------------------- /templates/vue/maker/packages/contracts/README.md.ctx: -------------------------------------------------------------------------------- 1 | { 2 | "title": "@maker-app/contracts" 3 | } 4 | -------------------------------------------------------------------------------- /templates/vue/maker/packages/contracts/package.json.ctx: -------------------------------------------------------------------------------- 1 | { 2 | "packageName": "@maker-app/contracts" 3 | } 4 | -------------------------------------------------------------------------------- /templates/vue/maker/packages/contracts/src/abis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/maker/packages/contracts/src/abis.js -------------------------------------------------------------------------------- /templates/vue/maker/packages/contracts/src/abis/cat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/maker/packages/contracts/src/abis/cat.json -------------------------------------------------------------------------------- /templates/vue/maker/packages/contracts/src/abis/dai.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/maker/packages/contracts/src/abis/dai.json -------------------------------------------------------------------------------- /templates/vue/maker/packages/contracts/src/abis/daiJoin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/maker/packages/contracts/src/abis/daiJoin.json -------------------------------------------------------------------------------- /templates/vue/maker/packages/contracts/src/abis/dsProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/maker/packages/contracts/src/abis/dsProxy.json -------------------------------------------------------------------------------- /templates/vue/maker/packages/contracts/src/abis/dssCdpManager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/maker/packages/contracts/src/abis/dssCdpManager.json -------------------------------------------------------------------------------- /templates/vue/maker/packages/contracts/src/abis/dssProxyActions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/maker/packages/contracts/src/abis/dssProxyActions.json -------------------------------------------------------------------------------- /templates/vue/maker/packages/contracts/src/abis/dssProxyActionsDsr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/maker/packages/contracts/src/abis/dssProxyActionsDsr.json -------------------------------------------------------------------------------- /templates/vue/maker/packages/contracts/src/abis/erc20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/maker/packages/contracts/src/abis/erc20.json -------------------------------------------------------------------------------- /templates/vue/maker/packages/contracts/src/abis/erc20Events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/maker/packages/contracts/src/abis/erc20Events.json -------------------------------------------------------------------------------- /templates/vue/maker/packages/contracts/src/abis/ethJoin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/maker/packages/contracts/src/abis/ethJoin.json -------------------------------------------------------------------------------- /templates/vue/maker/packages/contracts/src/abis/jug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/maker/packages/contracts/src/abis/jug.json -------------------------------------------------------------------------------- /templates/vue/maker/packages/contracts/src/abis/pot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/maker/packages/contracts/src/abis/pot.json -------------------------------------------------------------------------------- /templates/vue/maker/packages/contracts/src/abis/proxyActions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/maker/packages/contracts/src/abis/proxyActions.json -------------------------------------------------------------------------------- /templates/vue/maker/packages/contracts/src/abis/proxyRegistry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/maker/packages/contracts/src/abis/proxyRegistry.json -------------------------------------------------------------------------------- /templates/vue/maker/packages/contracts/src/abis/spotter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/maker/packages/contracts/src/abis/spotter.json -------------------------------------------------------------------------------- /templates/vue/maker/packages/contracts/src/abis/vat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/maker/packages/contracts/src/abis/vat.json -------------------------------------------------------------------------------- /templates/vue/maker/packages/contracts/src/addresses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/maker/packages/contracts/src/addresses.js -------------------------------------------------------------------------------- /templates/vue/maker/packages/contracts/src/index.js.ctx: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /templates/vue/maker/packages/vue-app/README.md.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/maker/packages/vue-app/README.md.ctx -------------------------------------------------------------------------------- /templates/vue/maker/packages/vue-app/package.json.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/maker/packages/vue-app/package.json.ctx -------------------------------------------------------------------------------- /templates/vue/maker/packages/vue-app/src/components/HelloWorld.vue.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/maker/packages/vue-app/src/components/HelloWorld.vue.ctx -------------------------------------------------------------------------------- /templates/vue/maker/packages/vue-app/src/graphql/subgraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/maker/packages/vue-app/src/graphql/subgraph.js -------------------------------------------------------------------------------- /templates/vue/maker/packages/vue-app/src/main.js.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/maker/packages/vue-app/src/main.js.ctx -------------------------------------------------------------------------------- /templates/vue/mstable/README.md.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/mstable/README.md.ctx -------------------------------------------------------------------------------- /templates/vue/mstable/package.json.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/mstable/package.json.ctx -------------------------------------------------------------------------------- /templates/vue/mstable/packages/contracts/README.md.ctx: -------------------------------------------------------------------------------- 1 | { 2 | "title": "@mstable-app/contracts" 3 | } 4 | -------------------------------------------------------------------------------- /templates/vue/mstable/packages/contracts/package.json.ctx: -------------------------------------------------------------------------------- 1 | { 2 | "packageName": "@mstable-app/contracts" 3 | } 4 | -------------------------------------------------------------------------------- /templates/vue/mstable/packages/contracts/src/abis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/mstable/packages/contracts/src/abis.js -------------------------------------------------------------------------------- /templates/vue/mstable/packages/contracts/src/abis/mAsset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/mstable/packages/contracts/src/abis/mAsset.json -------------------------------------------------------------------------------- /templates/vue/mstable/packages/contracts/src/abis/metaToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/mstable/packages/contracts/src/abis/metaToken.json -------------------------------------------------------------------------------- /templates/vue/mstable/packages/contracts/src/abis/nexus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/mstable/packages/contracts/src/abis/nexus.json -------------------------------------------------------------------------------- /templates/vue/mstable/packages/contracts/src/abis/savingsContract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/mstable/packages/contracts/src/abis/savingsContract.json -------------------------------------------------------------------------------- /templates/vue/mstable/packages/contracts/src/abis/savingsManager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/mstable/packages/contracts/src/abis/savingsManager.json -------------------------------------------------------------------------------- /templates/vue/mstable/packages/contracts/src/addresses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/mstable/packages/contracts/src/addresses.js -------------------------------------------------------------------------------- /templates/vue/mstable/packages/contracts/src/index.js.ctx: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /templates/vue/mstable/packages/vue-app/README.md.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/mstable/packages/vue-app/README.md.ctx -------------------------------------------------------------------------------- /templates/vue/mstable/packages/vue-app/package.json.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/mstable/packages/vue-app/package.json.ctx -------------------------------------------------------------------------------- /templates/vue/mstable/packages/vue-app/src/components/HelloWorld.vue.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/mstable/packages/vue-app/src/components/HelloWorld.vue.ctx -------------------------------------------------------------------------------- /templates/vue/mstable/packages/vue-app/src/graphql/subgraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/mstable/packages/vue-app/src/graphql/subgraph.js -------------------------------------------------------------------------------- /templates/vue/mstable/packages/vue-app/src/main.js.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/mstable/packages/vue-app/src/main.js.ctx -------------------------------------------------------------------------------- /templates/vue/sablier-v1/README.md.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/sablier-v1/README.md.ctx -------------------------------------------------------------------------------- /templates/vue/sablier-v1/package.json.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/sablier-v1/package.json.ctx -------------------------------------------------------------------------------- /templates/vue/sablier-v1/packages/contracts/README.md.ctx: -------------------------------------------------------------------------------- 1 | { 2 | "title": "@sablier-v1-app/contracts" 3 | } 4 | -------------------------------------------------------------------------------- /templates/vue/sablier-v1/packages/contracts/package.json.ctx: -------------------------------------------------------------------------------- 1 | { 2 | "packageName": "@sablier-v1-app/contracts" 3 | } 4 | -------------------------------------------------------------------------------- /templates/vue/sablier-v1/packages/contracts/src/abis.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/vue/sablier-v1/packages/contracts/src/abis/erc20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/sablier-v1/packages/contracts/src/abis/erc20.json -------------------------------------------------------------------------------- /templates/vue/sablier-v1/packages/contracts/src/abis/payroll.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/sablier-v1/packages/contracts/src/abis/payroll.json -------------------------------------------------------------------------------- /templates/vue/sablier-v1/packages/contracts/src/abis/sablier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/sablier-v1/packages/contracts/src/abis/sablier.json -------------------------------------------------------------------------------- /templates/vue/sablier-v1/packages/contracts/src/addresses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/sablier-v1/packages/contracts/src/addresses.js -------------------------------------------------------------------------------- /templates/vue/sablier-v1/packages/contracts/src/index.js.ctx: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /templates/vue/sablier-v1/packages/vue-app/README.md.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/sablier-v1/packages/vue-app/README.md.ctx -------------------------------------------------------------------------------- /templates/vue/sablier-v1/packages/vue-app/package.json.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/sablier-v1/packages/vue-app/package.json.ctx -------------------------------------------------------------------------------- /templates/vue/sablier-v1/packages/vue-app/src/components/HelloWorld.vue.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/sablier-v1/packages/vue-app/src/components/HelloWorld.vue.ctx -------------------------------------------------------------------------------- /templates/vue/sablier-v1/packages/vue-app/src/graphql/subgraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/sablier-v1/packages/vue-app/src/graphql/subgraph.js -------------------------------------------------------------------------------- /templates/vue/sablier-v1/packages/vue-app/src/main.js.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/sablier-v1/packages/vue-app/src/main.js.ctx -------------------------------------------------------------------------------- /templates/vue/synthetix/README.md.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/synthetix/README.md.ctx -------------------------------------------------------------------------------- /templates/vue/synthetix/package.json.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/synthetix/package.json.ctx -------------------------------------------------------------------------------- /templates/vue/synthetix/packages/contracts/README.md.ctx: -------------------------------------------------------------------------------- 1 | { 2 | "title": "@synthetix-app/contracts" 3 | } 4 | -------------------------------------------------------------------------------- /templates/vue/synthetix/packages/contracts/package.json.ctx: -------------------------------------------------------------------------------- 1 | { 2 | "packageName": "@synthetix-app/contracts" 3 | } 4 | -------------------------------------------------------------------------------- /templates/vue/synthetix/packages/contracts/src/abis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/synthetix/packages/contracts/src/abis.js -------------------------------------------------------------------------------- /templates/vue/synthetix/packages/contracts/src/abis/readProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/synthetix/packages/contracts/src/abis/readProxy.json -------------------------------------------------------------------------------- /templates/vue/synthetix/packages/contracts/src/abis/snx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/synthetix/packages/contracts/src/abis/snx.json -------------------------------------------------------------------------------- /templates/vue/synthetix/packages/contracts/src/addresses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/synthetix/packages/contracts/src/addresses.js -------------------------------------------------------------------------------- /templates/vue/synthetix/packages/contracts/src/index.js.ctx: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /templates/vue/synthetix/packages/vue-app/README.md.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/synthetix/packages/vue-app/README.md.ctx -------------------------------------------------------------------------------- /templates/vue/synthetix/packages/vue-app/package.json.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/synthetix/packages/vue-app/package.json.ctx -------------------------------------------------------------------------------- /templates/vue/synthetix/packages/vue-app/src/components/HelloWorld.vue.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/synthetix/packages/vue-app/src/components/HelloWorld.vue.ctx -------------------------------------------------------------------------------- /templates/vue/synthetix/packages/vue-app/src/graphql/subgraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/synthetix/packages/vue-app/src/graphql/subgraph.js -------------------------------------------------------------------------------- /templates/vue/synthetix/packages/vue-app/src/main.js.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/synthetix/packages/vue-app/src/main.js.ctx -------------------------------------------------------------------------------- /templates/vue/uniswap-v2/README.md.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/uniswap-v2/README.md.ctx -------------------------------------------------------------------------------- /templates/vue/uniswap-v2/package.json.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/uniswap-v2/package.json.ctx -------------------------------------------------------------------------------- /templates/vue/uniswap-v2/packages/contracts/README.md.ctx: -------------------------------------------------------------------------------- 1 | { 2 | "title": "@uniswap-v2-app/contracts" 3 | } 4 | -------------------------------------------------------------------------------- /templates/vue/uniswap-v2/packages/contracts/package.json.ctx: -------------------------------------------------------------------------------- 1 | { 2 | "packageName": "@uniswap-v2-app/contracts" 3 | } 4 | -------------------------------------------------------------------------------- /templates/vue/uniswap-v2/packages/contracts/src/abis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/uniswap-v2/packages/contracts/src/abis.js -------------------------------------------------------------------------------- /templates/vue/uniswap-v2/packages/contracts/src/abis/erc20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/uniswap-v2/packages/contracts/src/abis/erc20.json -------------------------------------------------------------------------------- /templates/vue/uniswap-v2/packages/contracts/src/abis/factory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/uniswap-v2/packages/contracts/src/abis/factory.json -------------------------------------------------------------------------------- /templates/vue/uniswap-v2/packages/contracts/src/abis/pair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/uniswap-v2/packages/contracts/src/abis/pair.json -------------------------------------------------------------------------------- /templates/vue/uniswap-v2/packages/contracts/src/abis/router01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/uniswap-v2/packages/contracts/src/abis/router01.json -------------------------------------------------------------------------------- /templates/vue/uniswap-v2/packages/contracts/src/abis/router02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/uniswap-v2/packages/contracts/src/abis/router02.json -------------------------------------------------------------------------------- /templates/vue/uniswap-v2/packages/contracts/src/addresses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/uniswap-v2/packages/contracts/src/addresses.js -------------------------------------------------------------------------------- /templates/vue/uniswap-v2/packages/contracts/src/index.js.ctx: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /templates/vue/uniswap-v2/packages/vue-app/README.md.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/uniswap-v2/packages/vue-app/README.md.ctx -------------------------------------------------------------------------------- /templates/vue/uniswap-v2/packages/vue-app/package.json.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/uniswap-v2/packages/vue-app/package.json.ctx -------------------------------------------------------------------------------- /templates/vue/uniswap-v2/packages/vue-app/src/components/HelloWorld.vue.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/uniswap-v2/packages/vue-app/src/components/HelloWorld.vue.ctx -------------------------------------------------------------------------------- /templates/vue/uniswap-v2/packages/vue-app/src/graphql/subgraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/uniswap-v2/packages/vue-app/src/graphql/subgraph.js -------------------------------------------------------------------------------- /templates/vue/uniswap-v2/packages/vue-app/src/main.js.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/templates/vue/uniswap-v2/packages/vue-app/src/main.js.ctx -------------------------------------------------------------------------------- /test/__mocks__/url-exist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/test/__mocks__/url-exist.ts -------------------------------------------------------------------------------- /test/__mocks__/validate-npm-package-name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/test/__mocks__/validate-npm-package-name.ts -------------------------------------------------------------------------------- /test/integration/frameworks.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/test/integration/frameworks.test.ts -------------------------------------------------------------------------------- /test/integration/templates.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/test/integration/templates.test.ts -------------------------------------------------------------------------------- /test/unit/directories.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/test/unit/directories.test.ts -------------------------------------------------------------------------------- /test/unit/env.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/test/unit/env.test.ts -------------------------------------------------------------------------------- /test/unit/git.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/test/unit/git.test.ts -------------------------------------------------------------------------------- /test/unit/networking.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/test/unit/networking.test.ts -------------------------------------------------------------------------------- /test/unit/npm.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/test/unit/npm.test.ts -------------------------------------------------------------------------------- /test/unit/yarn.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/test/unit/yarn.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/promisepipe.d.ts: -------------------------------------------------------------------------------- 1 | declare module "promisepipe"; 2 | -------------------------------------------------------------------------------- /types/validateNpmPackageName.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/types/validateNpmPackageName.d.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/create-eth-app/HEAD/yarn.lock --------------------------------------------------------------------------------