@rifcoin/toolkit

1.0.2ย โ€ขย Publicย โ€ขย Published

rifcoin toolkit

Tests Lint

This repository contains the periphery smart contracts for the Rifcoin Swap Protocol. For the lower level core contracts, see the swap repository.

Local deployment

In order to deploy this code to a local testnet, you should install the npm package @rifcoin/toolkit and import bytecode imported from artifacts located at @rifcoin/toolkit/artifacts/contracts/*/*.json. For example:

import {
  abi as SWAP_ROUTER_ABI,
  bytecode as SWAP_ROUTER_BYTECODE,
} from '@rifcoin/toolkit/artifacts/contracts/SwapRouter.sol/SwapRouter.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 Uniswap code will correctly interoperate with your local deployment.

Using solidity interfaces

The rifcoin toolkit interfaces are available for import into solidity smart contracts via the npm artifact @rifcoin/toolkit, e.g.:

import '@rifcoin/toolkit/contracts/interfaces/ISwapRouter.sol';

contract MyContract {
  ISwapRouter router;

  function doSomethingWithSwapRouter() {
    // router.exactInput(...);
  }
}

Readme

Keywords

Package Sidebar

Install

npm i @rifcoin/toolkit

Homepage

rifcoin.io/

Weekly Downloads

0

Version

1.0.2

License

MIT

Unpacked Size

45.3 MB

Total Files

576

Last publish

Collaborators

  • lamallam