Develop:
Gnosis Protocol JS
Gnosis Protocol JS it's library, with typescript support for Gnosis Protocol.
Gnosis Protocol introduces a new, fully decentralized exchange mechanism for ERC20 tokens with the following
properties:
- Batch auctions
- Multidimensional order books with ring trades
- Uniform clearing prices in every batch
This library provides:
- Typescrypt version of the contracts of Gnosis Protocol
- Some handy utils and constants
Usage
yarn add @cowprotocol/cow-js --save
npm install @cowprotocol/cow-js --save
Import the contract:
import { BatchExchangeContract } from ' @cowprotocol/cow-js'
const web3 = new Web3()
const batchExchangeContract = new BatchExchangeContract({ web3 })
const batchExchangeContract = new BatchExchangeContract({ web3, address: '0x89593E017D4A88c60347257DAfB95384a422da09' })
Issues
If you find any issue, or you want to request a feature use https://github.com/gnosis/dex-js/issues
Pull requests are welcomed and are the best way to suggest new features.
Collaborate
Build
yarn install
yarn build
yarn build:watch
Run test
yarn install
yarn test