Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/AstarNetwork/wasm-showcase-dapps
https://github.com/AstarNetwork/wasm-showcase-dapps
Last synced: 11 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/AstarNetwork/wasm-showcase-dapps
- Owner: AstarNetwork
- Created: 2022-08-29T15:56:03.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-03-28T08:11:58.000Z (over 1 year ago)
- Last Synced: 2024-08-01T16:23:00.853Z (3 months ago)
- Language: Rust
- Size: 23.7 MB
- Stars: 8
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### This repository is not maintained anymore but stays here for legacy. All dApps were moved and are maintained in [Swanky dApps repository](https://github.com/orgs/swanky-dapps/repositories)
# Astar WASM showcase dApps
This repository contains examples of ink! contracts and their respective UIs that can be deployed on Astar network.
If you are looking for unaudited production ready dApps (ink! + UI) this repo is for you.#### Contribute to this repository
contributions are welcome:
- If you find an issue or a refactor idea please open an issue
- If you want to add your own example open a Pull Request## dApps
#### Uniswap-V2 - DEX
This repository host the first version of DEX. For latest DEX please go to the new repository: [Swanky dApps - DEX](https://github.com/swanky-dapps/dex)### Farming
A farming dApp line by line implementation of [ArthSwap master chef](https://github.com/ArthSwap/ArthSwap-MasterChef) adapted from
[sushiswap](https://github.com/sushiswap/sushiswap/blob/archieve/canary/contracts/MasterChefV2.sol)#### DAO
On Chain governance based on [Governor](https://github.com/OpenZeppelin/openzeppelin-contracts/tree/master/contracts/governance) contracts of OpenZeppelin#### Tests
The test folder contains integration tests for the contracts. Tests are made with two different test frameworks, redspot and typechain.**Runs the tests**
1. Run a local node \
Please use [swanky-node](https://github.com/AstarNetwork/swanky-node/releases)
2. The integration tests uses typechain. Node version should be >= 16
```bash
yarn install
yarn compile
yarn test:typechain
```