create-eth-app
create-eth-app copied to clipboard
Create Ethereum-powered apps with one command
For each new DeFi template, the repo grows twice as much as in size because the ABIs and the addresses are duplicated across the UI frameworks. We should build a...
In the default subgraph template (specifically [subgraph.yaml](https://github.com/paulrberg/create-eth-app/blob/develop/templates/react/default/packages/subgraph/subgraph.yaml)) the repository is pointing to `sablierhq/sablier-subgraph`. This will cause all instances of CEA to declare that as the project repo (e.g. [EPNS](https://github.com/ethereum-push-notification-service/epns-incentives-dapp/tree/master/packages/subgraph)). You...
The [parseTemplate][1] function is one of the most important functions in the whole code base, but we have written exactly zero tests for it. [1]: https://github.com/PaulRBerg/create-eth-app/blob/v1.6.1/src/helpers/templates.ts#L34-L69
Half my errors are missing/adding an extra comma or forgetting to escape a double quote but these aren't picked up in the test suite currently.
Create Eth App is powerful - it lets you choose-your-own-adventure via the `--framework` and `--template` CLI arguments. However, these options are not allowed when running Create Eth App with no...
My rationale for this is three-fold: + Small payoff but huge maintenance cost + People find the testnet addresses superfluous (as per [my Twitter poll](https://twitter.com/PaulRBerg/status/1327233842797744130)) + If the developer is...
As mentioned in #61, we have two copies of `ipfs.js`. If we're going to be adding extra helper scripts in future it's worth creating a single folder to store them...
As expounded in #86, writing e2e tests for Create Eth App is no easy feat. Some considerations: + Settle on *what* we want to test: template installation, functional package.json scripts,...
The path that the user feeds to Create Eth App may not be writable on the user's file system. Add a check [similar to how Create Next App did it][1]....