This repoitory contains the ore smart contracts for the DruskApe V1 Protocol.
For higher level contracts, see the uniswap-v3-periphery
repository.
In order to deploy this code to a local testnet, you should install the npm package
@uniswap/v3-core
and import the factory bytecode located at
@uniswap/v3-core/artifacts/contracts/UniswapV3Factory.sol/UniswapV3Factory.json.
For example:
import {
abi as Factory_ABI,
bytecode as FACTORY_BYTECODE,
} from '@uniswap/v3-core/artifacts/contracts/UniswapV3Factory.sol/UniswapV3Factry.json'
// deploy the bytecodeThis will ensure that you are testing against the same bytecode that us deployed to mainnet and public testnets, and all Uniswap code will correctly interoperate with your local deployment.
The Uniswap v3 interfaces are available for import into solidity smart contracts
via the npm artifact @uniswap/v3-core, e.g.:
import '@uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol';
contract MyContract {
IUniswapV3Pool pool;
function doSomethingWithPool() {
// pool.swap(...);
}
}
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 underGPL-2.0-or-later(as indicated in their SPDX headers), seecontracts/interfaces/LICENSE - Several files in
contracts/libraries/may also be licensed underGPL-2.0-or-later(as indicated in their SPDX headers), seecontracts/libraries/LICENSE
contracts/libraries/FullMath.solis licensed underMIT(as indicated in its SPDX header), seecontracts/libraries/LICENSE_MIT- All files in
contracts/testremain unlicensed (as indicated in their SPDX headers).