{"_id":"@bede-labs/v3-periphery","name":"@bede-labs/v3-periphery","dist-tags":{"latest":"1.3.0"},"versions":{"1.3.0":{"name":"@bede-labs/v3-periphery","description":"🎚 Peripheral smart contracts for interacting with Uniswap V3","license":"GPL-2.0-or-later","publishConfig":{"access":"public"},"version":"1.3.0","homepage":"https://uniswap.org","keywords":["uniswap","periphery","v3"],"repository":{"type":"git","url":"git+https://github.com/bede-labs/uniswap-v3-periphery.git"},"engines":{"node":">=10"},"dependencies":{"@openzeppelin/contracts":"3.4.1-solc-0.7-2","@uniswap/lib":"^4.0.1-alpha","@uniswap/v2-core":"1.0.1","@uniswap/v3-core":"1.0.0","base64-sol":"1.0.1","hardhat-watcher":"^2.1.1"},"devDependencies":{"@nomiclabs/hardhat-ethers":"^2.0.2","@nomiclabs/hardhat-etherscan":"^2.1.1","@nomiclabs/hardhat-waffle":"^2.0.1","@typechain/ethers-v5":"^4.0.0","@types/chai":"^4.2.6","@types/mocha":"^5.2.7","chai":"^4.2.0","decimal.js":"^10.2.1","ethereum-waffle":"^3.0.2","ethers":"^5.0.8","hardhat":"^2.2.0","hardhat-typechain":"^0.3.5","is-svg":"^4.3.1","mocha":"^6.2.2","mocha-chai-jest-snapshot":"^1.1.0","prettier":"^2.0.5","prettier-plugin-solidity":"^1.0.0-beta.10","solhint":"^3.2.1","solhint-plugin-prettier":"^0.0.5","ts-generator":"^0.1.1","ts-node":"^8.5.4","typechain":"^4.0.0","typescript":"^3.7.3"},"scripts":{"compile":"hardhat compile","test":"hardhat test"},"bugs":{"url":"https://github.com/bede-labs/uniswap-v3-periphery/issues"},"_id":"@bede-labs/v3-periphery@1.3.0","_nodeVersion":"18.17.1","_npmVersion":"9.6.7","dist":{"integrity":"sha512-dUbJ4V/Nq0t3owIgeLTdL5nBy2HTr1Gjx41U+UPUNBXQotcRGnZrOWNjdsGl9A+FDsfDwRTF3IWlID/jQpamaA==","shasum":"7cefc19785ec8cffae0e938e04c307807f0a6e43","tarball":"https://registry.npmjs.org/@bede-labs/v3-periphery/-/v3-periphery-1.3.0.tgz","fileCount":88,"unpackedSize":695950,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIQCz7rPEGTiekrBsKxNdZ7N5zvMH5Q3Ko88XLgH1yZN7HAIgURdJ54fKABgADYrVC7bd4bDmfmIR6b4m2uwRCB/sVm4="}]},"_npmUser":{"name":"bede-labs","email":"btc.huuduy@gmail.com"},"directories":{},"maintainers":[{"name":"bede-labs","email":"btc.huuduy@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/v3-periphery_1.3.0_1740502557567_0.4291432069724539"},"_hasShrinkwrap":false}},"time":{"created":"2025-02-25T16:55:57.471Z","1.3.0":"2025-02-25T16:55:57.731Z","modified":"2025-02-25T16:55:57.981Z"},"maintainers":[{"name":"bede-labs","email":"btc.huuduy@gmail.com"}],"description":"🎚 Peripheral smart contracts for interacting with Uniswap V3","homepage":"https://uniswap.org","keywords":["uniswap","periphery","v3"],"repository":{"type":"git","url":"git+https://github.com/bede-labs/uniswap-v3-periphery.git"},"bugs":{"url":"https://github.com/bede-labs/uniswap-v3-periphery/issues"},"license":"GPL-2.0-or-later","readme":"# Uniswap V3 Periphery\n\n[![Tests](https://github.com/Uniswap/uniswap-v3-periphery/workflows/Tests/badge.svg)](https://github.com/Uniswap/uniswap-v3-periphery/actions?query=workflow%3ATests)\n[![Lint](https://github.com/Uniswap/uniswap-v3-periphery/workflows/Lint/badge.svg)](https://github.com/Uniswap/uniswap-v3-periphery/actions?query=workflow%3ALint)\n\nThis repository contains the periphery smart contracts for the Uniswap V3 Protocol.\nFor the lower level core contracts, see the [uniswap-v3-core](https://github.com/Uniswap/uniswap-v3-core)\nrepository.\n\n## Bug bounty\n\nThis repository is subject to the Uniswap V3 bug bounty program,\nper the terms defined [here](./bug-bounty.md).\n\n## Local deployment\n\nIn order to deploy this code to a local testnet, you should install the npm package\n`@uniswap/v3-periphery`\nand import bytecode imported from artifacts located at\n`@uniswap/v3-periphery/artifacts/contracts/*/*.json`.\nFor example:\n\n```typescript\nimport {\n  abi as SWAP_ROUTER_ABI,\n  bytecode as SWAP_ROUTER_BYTECODE,\n} from '@uniswap/v3-periphery/artifacts/contracts/SwapRouter.sol/SwapRouter.json'\n\n// deploy the bytecode\n```\n\nThis will ensure that you are testing against the same bytecode that is deployed to\nmainnet and public testnets, and all Uniswap code will correctly interoperate with\nyour local deployment.\n\n## Using solidity interfaces\n\nThe Uniswap v3 periphery interfaces are available for import into solidity smart contracts\nvia the npm artifact `@uniswap/v3-periphery`, e.g.:\n\n```solidity\nimport '@uniswap/v3-periphery/contracts/interfaces/ISwapRouter.sol';\n\ncontract MyContract {\n  ISwapRouter router;\n\n  function doSomethingWithSwapRouter() {\n    // router.exactInput(...);\n  }\n}\n\n```\n","readmeFilename":"README.md"}