Skip to content

Commit

Permalink
chore: add audits (#104)
Browse files Browse the repository at this point in the history
  • Loading branch information
kassandraoftroy authored Jan 5, 2023
1 parent 2b15a3c commit 8643eaa
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ yarn test

## Audits

Two security audits were recently performed- audit reports coming soon.
Two security audits were performed on the smart contracts in this repository. The auditors were [WatchPug](https://www.watchpug.org/) and [Statemind](https://statemind.io/) and the comprehensive audit reports can be found in the `audit/` directory.

## Licensing

Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added audit/arrakis-v2-core-and-palm.pdf
Binary file not shown.
14 changes: 6 additions & 8 deletions src/addresses.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import { ethers } from "hardhat";

/* eslint-disable @typescript-eslint/naming-convention */
export interface Addresses {
UniswapV3Factory: string;
Expand Down Expand Up @@ -34,7 +32,7 @@ export const getAddresses = (network: string): Addresses => {
UniswapV3Factory: "0x1F98431c8aD98523631AE4a59f267346ea31F984",
SwapRouter: "0xE592427A0AEce92De3Edee1F18E0157C05861564",
WETH: "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2",
WMATIC: ethers.constants.AddressZero.toString(),
WMATIC: "",
USDC: "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
ArrakisV2Implementation: "0xb5C3B286dD591282Fe87Dfab0613488e1b6B09Ba",
ArrakisV2Beacon: "0x891E7E4baFfeF0ef7bc4b1E85d122bDd7363b8B3",
Expand All @@ -60,7 +58,7 @@ export const getAddresses = (network: string): Addresses => {
UniswapV3Factory: "0x1F98431c8aD98523631AE4a59f267346ea31F984",
SwapRouter: "0xE592427A0AEce92De3Edee1F18E0157C05861564",
WETH: "0x4200000000000000000000000000000000000006",
WMATIC: ethers.constants.AddressZero.toString(),
WMATIC: "",
USDC: "0x7F5c764cBc14f9669B88837ca1490cCa17c31607",
ArrakisV2Implementation: "0xb5C3B286dD591282Fe87Dfab0613488e1b6B09Ba",
ArrakisV2Beacon: "0x891E7E4baFfeF0ef7bc4b1E85d122bDd7363b8B3",
Expand All @@ -73,7 +71,7 @@ export const getAddresses = (network: string): Addresses => {
UniswapV3Factory: "0x1F98431c8aD98523631AE4a59f267346ea31F984",
SwapRouter: "0xE592427A0AEce92De3Edee1F18E0157C05861564",
WETH: "0x82aF49447D8a07e3bd95BD0d56f35241523fBab1",
WMATIC: ethers.constants.AddressZero.toString(),
WMATIC: "",
USDC: "0xFF970A61A04b1cA14834A43f5dE4533eBDDB5CC8",
ArrakisV2Implementation: "0xb5C3B286dD591282Fe87Dfab0613488e1b6B09Ba",
ArrakisV2Beacon: "0x891E7E4baFfeF0ef7bc4b1E85d122bDd7363b8B3",
Expand All @@ -85,9 +83,9 @@ export const getAddresses = (network: string): Addresses => {
return {
UniswapV3Factory: "0x1F98431c8aD98523631AE4a59f267346ea31F984",
SwapRouter: "0xE592427A0AEce92De3Edee1F18E0157C05861564",
WETH: ethers.constants.AddressZero.toString(),
WMATIC: ethers.constants.AddressZero.toString(),
USDC: ethers.constants.AddressZero.toString(),
WETH: "",
WMATIC: "",
USDC: "",
ArrakisV2Implementation: "0xb5C3B286dD591282Fe87Dfab0613488e1b6B09Ba",
ArrakisV2Beacon: "0x891E7E4baFfeF0ef7bc4b1E85d122bDd7363b8B3",
ArrakisV2Factory: "0x055B6d3919042Be29C5F044A55529933e1273A88",
Expand Down

0 comments on commit 8643eaa

Please sign in to comment.