@rifcoin/toolkit
v1.0.2
Published
🎚 toolkit smart contracts for interacting with Rifcoin swap
Downloads
2
Readme
rifcoin toolkit
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(...);
}
}