Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wyvernprotocol/wyvern-v3
Wyvern Protocol v3.1, Ethereum implementation
https://github.com/wyvernprotocol/wyvern-v3
dex ethereum nft wyvern
Last synced: about 1 month ago
JSON representation
Wyvern Protocol v3.1, Ethereum implementation
- Host: GitHub
- URL: https://github.com/wyvernprotocol/wyvern-v3
- Owner: wyvernprotocol
- License: mit
- Created: 2018-07-14T07:48:38.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-05-29T20:27:56.000Z (7 months ago)
- Last Synced: 2024-08-01T21:44:05.623Z (4 months ago)
- Topics: dex, ethereum, nft, wyvern
- Language: JavaScript
- Homepage: https://wyvernprotocol.com
- Size: 4.86 MB
- Stars: 296
- Watchers: 18
- Forks: 120
- Open Issues: 31
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
- Audit: audits/v3.0/AUDIT_SPEC.md
Awesome Lists containing this project
- awesome-solidity - wyvernprotocol/wyvern-v3 - Core smart contracts for Wyvern v3, a decentralized digital asset exchange protocol. (Resources)
- awesome-solidity - wyvernprotocol/wyvern-v3 - Core smart contracts for Wyvern v3, a decentralized digital asset exchange protocol. (Resources)
- awesome-solidity - wyvernprotocol/wyvern-v3 - Core smart contracts for Wyvern v3, a decentralized digital asset exchange protocol. (Resources)
README
Wyvern v3.1
-----------![Project Wyvern Logo](https://media.githubusercontent.com/media/ProjectWyvern/wyvern-branding/master/logo/logo-square-red-transparent-200x200.png?raw=true "Project Wyvern Logo")
[![https://img.shields.io/github/license/wyvernprotocol/wyvern-v3.svg](https://img.shields.io/github/license/wyvernprotocol/wyvern-v3.svg)](https://opensource.org/licenses/MIT) [![Build Status](https://travis-ci.org/wyvernprotocol/wyvern-v3.svg?branch=master)](https://travis-ci.org/wyvernprotocol/wyvern-v3) [![Coverage Status](https://coveralls.io/repos/github/wyvernprotocol/wyvern-v3/badge.svg?branch=master)](https://coveralls.io/github/wyvernprotocol/wyvern-v3?branch=master)
This is version 3.1 of the Wyvern decentralized exchange protocol, designed to maximize the ease of positive-utility-sum multiparty transactions on a distributed ledger.
Check out documentation [here](https://wyvernprotocol.com/docs).
Deployed contract addresses can be found in [config.json](config.json).
### Development
#### Setup
Install dependencies with [Yarn](https://yarnpkg.com/en/):
```bash
yarn
```#### Testing
Run testrpc (ganache-cli) to provide a simulated EVM:
```bash
yarn testrpc
```In a separate terminal, run the testuite:
```bash
yarn test
```#### Linting
Lint all Solidity files with:
```bash
yarn lint
```#### Static Analysis
Run static analysis tooling with:
```bash
yarn analyze
```#### Deployment
Edit [truffle.js](truffle.js) according to your deployment plans, then run:
```bash
yarn run truffle deploy --network [network]
```