https://github.com/wyvernprotocol/wyvern-v3
Wyvern Protocol v3.1, Ethereum implementation
https://github.com/wyvernprotocol/wyvern-v3
dex ethereum nft wyvern
Last synced: 2 months 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 (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2024-05-29T20:27:56.000Z (about 1 year ago)
- Last Synced: 2024-11-08T06:41:32.788Z (7 months ago)
- Topics: dex, ethereum, nft, wyvern
- Language: JavaScript
- Homepage: https://wyvernprotocol.com
- Size: 4.86 MB
- Stars: 297
- Watchers: 18
- Forks: 121
- 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)
- 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
-----------
[](https://opensource.org/licenses/MIT) [](https://travis-ci.org/wyvernprotocol/wyvern-v3) [](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]
```