https://github.com/numtel/optimeme
No-code NFT deployments
https://github.com/numtel/optimeme
Last synced: about 1 year ago
JSON representation
No-code NFT deployments
- Host: GitHub
- URL: https://github.com/numtel/optimeme
- Owner: numtel
- License: mit
- Created: 2022-11-05T10:53:07.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-11-06T09:26:48.000Z (over 3 years ago)
- Last Synced: 2025-02-15T04:42:38.829Z (about 1 year ago)
- Language: Solidity
- Homepage: https://optimeme.xyz
- Size: 1.17 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Optimeme Factory
## Installation
```
$ git clone https://github.com/numtel/optimeme.git
$ cd optimeme
$ yarn
```
Download the `solc` compiler. This is used instead of `solc-js` because it is much faster. Binaries for other systems can be found in the [Ethereum foundation repository](https://github.com/ethereum/solc-bin/).
```
$ curl -o solc https://binaries.soliditylang.org/linux-amd64/solc-linux-amd64-v0.8.13+commit.abaa5c0e
$ chmod +x solc
```
## Start Frontend
No build steps, can serve `src` directory with any webserver.
```
# Use npm lite-server on port 3000
# yarn run dev
```
## Testing Contracts
```
# Build contracts before running tests
$ yarn run build-test
$ yarn run build-dev
$ yarn test
```