Implementation of Alkemi Reserve Contracts in Solidity. dapp.alkemi.tech
For local development of alkemi-reserve-contracts
you can setup the development environment on your machine.
For local development it is recommended to use ganache to run a local development chain. Using the ganache simulator no full Ethereum node is required.
As a pre-requisite, you need:
- Node.js
- npm
Clone the project and install all dependencies:
git clone git@github.com:project-alkemi/alkemi-reserve-contracts.git
cd alkemi-reserve-contracts/
# install project dependencies
$ npm i
Compile the solidity contracts:
$ npm run compile
In a new terminal, launch an Ethereum RPC client, we use the default ganache-cli command to configure and run a local development ganache:
$ npm run ganache
Switch back to your other terminal and deploy the contracts:
$ npm run deploy
Run tests with:
$ npm run test
Linting is setup for JavaScript
with ESLint & Solidity with Solhint and Prettier.
# lint solidity contracts
$ npm run prettier:contracts
# lint tests
$ npm run lint:tests
Code style is enforced through the CI test process, builds will fail if there're any linting errors.
The contract addresses deployed on Rinkeby
Test Network:
Contract | Address |
---|---|
AlkemiToken | 0x4adFFe7bB8DbB140ae545B1A26f16c86bAfa295f |
AlkemiPrime | 0x6C427C15219DA3cc5F44c1c66D4cB79661628181 |
AlkemiNetwork | 0x9f05c4Bf275051D588A326A481620C8d5E34B61B |
OracleGuard | 0xc497f40D1B7db6FA5017373f1a0Ec6d53126Da23 |
AlkemiOracle | 0xdF696d4ab3F4d591c92E1e31C74b82BABE8e2Ad6 |
The contract addresses deployed on Kovan
Test Network:
Contract | Address |
---|---|
AlkemiToken | 0x60B3f59bD5B0F3BC99AfBF28AB53aA6C3C5baad5 |
AlkemiPrime | 0x1D237aA864E2E6d3296A2e37AaFD64fc1A8C95bB |
AlkemiNetwork | 0xA1C1C69b7aB2C60a149BAA72a1cBFF6388fd7C80 |
OracleGuard | 0x439ee3303e3496b08DD78613BD943F0aA6cbBC87 |
AlkemiOracle | 0x3E3ebCB5D911DD3e9455034C7C0510F089C85fBa |
The contract addresses deployed on Mainnet
Mainnet:
Contract | Address |
---|---|
AlkemiToken | 0x0000000000000000000000000000000000000000 |
AlkemiPrime | 0x0000000000000000000000000000000000000000 |
AlkemiNetwork | 0x0000000000000000000000000000000000000000 |
OracleGuard | 0x0000000000000000000000000000000000000000 |
AlkemiOracle | 0x0000000000000000000000000000000000000000 |
If you come across an issue with Alkemi Protocol contracts, do a search in the Issues tab of this repo to make sure it hasn't been reported before. Follow these steps to help us prevent duplicate issues and unnecessary notifications going to the many people watching this repo:
- If the issue you found has been reported and is still open, and the details match your issue, give a "thumbs up" to the relevant posts in the issue thread to signal that you have the same issue. No further action is required on your part.
- If the issue you found has been reported and is still open, but the issue is missing some details, you can add a comment to the issue thread describing the additional details.
- If the issue you found has been reported but has been closed, you can comment on the closed issue thread and ask to have the issue reopened because you are still experiencing the issue. Alternatively, you can open a new issue, reference the closed issue by number or link, and state that you are still experiencing the issue. Provide any additional details in your post so we can better understand the issue and how to fix it.
MIT License
Copyright (c) 2019 Alkemi
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.