This repository contains the core smart contracts for the Mauve Protocol. For higher level contracts, see the mauve-periphery repository.
In order to deploy this code to a local testnet, you should install the npm package
@violetprotocol/mauve-core
and import the factory bytecode located at
@violetprotocol/mauve-core/artifacts/contracts/MauveFactory.sol/MauveFactory.json
.
For example:
import {
abi as FACTORY_ABI,
bytecode as FACTORY_BYTECODE,
} from '@violetprotocol/mauve-core/artifacts/contracts/MauveFactory.sol/MauveFactory.json'
// deploy the bytecode
This will ensure that you are testing against the same bytecode that is deployed to mainnet and public testnets, and all Mauve code will correctly interoperate with your local deployment.
The Mauve interfaces are available for import into solidity smart contracts
via the npm artifact @violetprotocol/mauve-core
, e.g.:
import '@violetprotocol/mauve-core/contracts/interfaces/IMauvePool.sol';
contract MyContract {
IMauvePool pool;
function doSomethingWithPool() {
// pool.swap(...);
}
}
The primary license for Mauve Core is the Business Source License 1.1 (BUSL-1.1
), see LICENSE
.
- All files in
contracts/interfaces/
are licensed underGPL-2.0-or-later
(as indicated in their SPDX headers), seecontracts/interfaces/LICENSE
- Several files in
contracts/libraries/
are licensed underGPL-2.0-or-later
(as indicated in their SPDX headers), seecontracts/libraries/LICENSE_GPL
contracts/libraries/FullMath.sol
is licensed underMIT
(as indicated in its SPDX header), seecontracts/libraries/LICENSE_MIT
- All files in
contracts/test
remain unlicensed.