@moonwalkerswap/v1-core

🚀 Core smart contracts of Moonwalkerswap V1

Usage no npm install needed!

<script type="module">
  import moonwalkerswapV1Core from 'https://cdn.skypack.dev/@moonwalkerswap/v1-core';
</script>

README

Moonwalkerswap V1

Lint Tests Fuzz Testing Mythx npm version

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