🎚 Peripheral smart contracts for interacting with CryptoSwap V3
npm install @cryptoswapdex/v3-periphery@cryptoswapdex/v3-periphery
@cryptoswapdex/v3-periphery/artifacts/contracts//.json.
typescript
import {
abi as SWAP_ROUTER_ABI,
bytecode as SWAP_ROUTER_BYTECODE,
} from '@cryptoswapdex/v3-periphery/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 CryptoSwap code will correctly interoperate with
your local deployment.
Using solidity interfaces
The CryptoSwap v3 periphery interfaces are available for import into solidity smart contracts
via the npm artifact @cryptoswapdex/v3-periphery, e.g.:
`solidity
import '@cryptoswapdex/v3-periphery/contracts/interfaces/ISwapRouter.sol';
contract MyContract {
ISwapRouter router;
function doSomethingWithSwapRouter() {
// router.exactInput(...);
}
}
``