Skip to content

Commit

Permalink
a
Browse files Browse the repository at this point in the history
  • Loading branch information
6boris committed Oct 12, 2023
1 parent af61ca5 commit d029884
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,6 @@
[submodule "foundry/lib/openzeppelin-contracts-v4.7.1"]
path = foundry/lib/openzeppelin-contracts-v4.7.1
url = https://github.com/OpenZeppelin/openzeppelin-contracts
[submodule "foundry/lib/safe-contracts-v1.3.0"]
path = foundry/lib/safe-contracts-v1.3.0
url = https://github.com/safe-global/safe-contracts
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ git submodule add https://github.com/OpenZeppelin/openzeppelin-contracts foundry

git submodule add https://github.com/OpenZeppelin/openzeppelin-contracts-upgradeable foundry/lib/openzeppelin-contracts-upgradeable-v4.7.1

git submodule add https://github.com/safe-global/safe-contracts foundry/lib/safe-contracts-v1.3.0



forge install safe-global/[email protected] --no-commit

```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,10 @@ pragma solidity ^0.8.0;
import { Ownable } from "@solady/auth/Ownable.sol";
import { SafeTransferLib } from "@solady/utils/SafeTransferLib.sol";
import { IERC20 } from "@openzeppelin/contracts-v4.7.1/token/ERC20/IERC20.sol";
import { GnosisSafe } from "@gnosis/safe-contracts/GnosisSafe.sol";
import { GnosisSafeProxy, IProxyCreationCallback } from "@gnosis/safe-contracts/proxies/IProxyCreationCallback.sol";
import { GnosisSafe } from "@gnosis/safe-contracts-v1.3.0/GnosisSafe.sol";
import {
GnosisSafeProxy, IProxyCreationCallback
} from "@gnosis/safe-contracts-v1.3.0/proxies/IProxyCreationCallback.sol";

/**
* @title WalletRegistry
Expand Down
1 change: 1 addition & 0 deletions foundry/lib/safe-contracts-v1.3.0
Submodule safe-contracts-v1.3.0 added at 186a21
1 change: 1 addition & 0 deletions remappings.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ forge-std=foundry/lib/forge-std/src
@prb/test=foundry/lib/prb-test/src

@gnosis/safe-contracts=foundry/lib/safe-contracts/contracts
@gnosis/safe-contracts-v1.3.0=foundry/lib/safe-contracts-v1.3.0/contracts

@openzeppelin/contracts=foundry/lib/openzeppelin-contracts/contracts
@openzeppelin/contracts-v4.7.1=foundry/lib/openzeppelin-contracts-v4.7.1/contracts
Expand Down

0 comments on commit d029884

Please sign in to comment.