1.0.0 • Published 9 months ago

@aetherswap/core-contracts v1.0.0

Weekly downloads
-
License
BUSL-1.1
Repository
github
Last release
9 months ago

Aetherswap Core

Lint Tests Fuzz Testing Mythx npm version

Forked from (Uniswap V3)https://github.com/uniswap/v3-core

This repository contains the core smart contracts for the Aetherswap Protocol. For higher level contracts, see the Periphery repository.

Local deployment

In order to deploy this code to a local testnet, you should install the npm package @aetherswap/core-contracts and import the factory bytecode located at @aetherswap/core-contracts/artifacts/contracts/AetherFactory.sol/AetherFactory.json. For example:

import {
  abi as FACTORY_ABI,
  bytecode as FACTORY_BYTECODE,
} from '@aetherswap/core-contracts/artifacts/contracts/AetherFactory.sol/AetherFactory.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 Aetherswap code will correctly interoperate with your local deployment.

Using solidity interfaces

The Aetherswap interfaces are available for import into solidity smart contracts via the npm artifact @aetherswap/core-contracts, e.g.:

import '@aetherswap/core-contracts/contracts/interfaces/IAetherPool.sol';

contract MyContract {
  IAetherPool pool;

  function doSomethingWithPool() {
    // pool.swap(...);
  }
}

Licensing

The primary license for Uniswap V3 Core is the Business Source License 1.1 (BUSL-1.1), see LICENSE. However, some files are dual licensed under GPL-2.0-or-later:

  • All files in contracts/interfaces/ may also be licensed under GPL-2.0-or-later (as indicated in their SPDX headers), see contracts/interfaces/LICENSE
  • Several files in contracts/libraries/ may also be licensed under GPL-2.0-or-later (as indicated in their SPDX headers), see contracts/libraries/LICENSE

Other Exceptions

  • contracts/libraries/FullMath.sol is licensed under MIT (as indicated in its SPDX header), see contracts/libraries/LICENSE_MIT
  • All files in contracts/test remain unlicensed (as indicated in their SPDX headers).