@moonwalkerswap/v1-core
v1.0.0
Published
🚀 Core smart contracts of Moonwalkerswap V1
Downloads
1
Readme
Moonwalkerswap V1
This repository contains the core smart contracts for the MoonWalkerJim V1 Protocol. For higher level contracts, see the Moonwalkerswap-v1-periphery repository.
Bug bounty
This repository is subject to the MoonWalkerJim V1 bug bounty program, per the terms defined here.
Local deployment
In order to deploy this code to a local testnet, you should install the npm package
@Moonwalkerswap/v1-core
and import the factory bytecode located at
@Moonwalkerswap/v1-core/artifacts/contracts/MoonwalkerFactory.sol/MoonwalkerFactory.json
.
For example:
import {
abi as FACTORY_ABI,
bytecode as FACTORY_BYTECODE,
} from '@Moonwalkerswap/v1-core/artifacts/contracts/MoonwalkerFactory.sol/MoonwalkerFactory.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 MoonWalkerJim code will correctly interoperate with your local deployment.
Using solidity interfaces
The MoonWalkerJim v1 interfaces are available for import into solidity smart contracts
via the npm artifact @Moonwalkerswap/v1-core
, e.g.:
import '@Moonwalkerswap/v1-core/contracts/interfaces/IMoonwalkerPool.sol';
contract MyContract {
IMoonwalkerPool pool;
function doSomethingWithPool() {
// pool.swap(...);
}
}
Licensing
The primary license for MoonWalkerJim V1 Core is the MIT (MIT
)(./LICENSE).
Exceptions
- All files in
contracts/interfaces/
are licensed underMIT
(as indicated in their SPDX headers), seecontracts/interfaces/LICENSE
- Several files in
contracts/libraries/
are licensed underMIT
(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.