File tree Expand file tree Collapse file tree 8 files changed +29
-7
lines changed Expand file tree Collapse file tree 8 files changed +29
-7
lines changed Original file line number Diff line number Diff line change 13
13
# Dotenv file
14
14
.env
15
15
node_modules
16
- .yarn
16
+ .yarn
17
+
18
+ dependencies /
Original file line number Diff line number Diff line change 1
1
[profile .default ]
2
+ script = " script"
2
3
src = " src"
4
+ test = " test"
3
5
out = " out"
4
- libs = [" lib" ]
6
+ libs = [" lib" , " dependencies " ]
5
7
ffi = true
6
8
7
9
# See more config options https://github.com/foundry-rs/foundry/blob/master/crates/config/README.md#all-options
@@ -20,7 +22,7 @@ bracket_spacing = true
20
22
[rpc_endpoints ]
21
23
localhost = " http://localhost:8545"
22
24
ethereum = " https://eth.llamarpc.com"
23
- ronin-mainnet = " https://api.roninchain.com/rpc"
25
+ ronin-mainnet = " https://api-archived .roninchain.com/rpc"
24
26
goerli = " https://ethereum-goerli.publicnode.com"
25
27
ronin-testnet = " https://saigon-archive.roninchain.com/rpc"
26
28
@@ -29,3 +31,7 @@ runs = 256
29
31
30
32
[invariant ]
31
33
runs = 256
34
+
35
+ [dependencies ]
36
+ "@openzeppelin-contracts" = { version = " 4.9.6" }
37
+ forge-std = { version = " 1.8.2" }
Original file line number Diff line number Diff line change
1
+ @openzeppelin-contracts-4.9.6=dependencies/@openzeppelin-contracts-4.9.6
2
+ @forge-std-1.8.2=dependencies/forge-std-1.8.2/src
Original file line number Diff line number Diff line change
1
+
2
+ [[dependencies]]
3
+ name = "@openzeppelin-contracts"
4
+ version = "4.9.6"
5
+ source = "https://soldeer-revisions.s3.amazonaws.com/@openzeppelin-contracts/4_9_6_14-03-2024_06:11:55_contracts.zip"
6
+ checksum = "57f2cae4b45b91b0847e58c36ea70aee0fb3212cc09b47279627f0764f87e5ee"
7
+
8
+ [[dependencies]]
9
+ name = "forge-std"
10
+ version = "1.8.2"
11
+ source = "https://soldeer-revisions.s3.amazonaws.com/forge-std/1_8_2_19-05-2024_18:52:07_forge-std-1.8.2.zip"
12
+ checksum = "88a37e1d79f60b8aad08c7bd50a7a5ef973fc172b1495028d0725a17f5a4976c"
Original file line number Diff line number Diff line change 1
1
// SPDX-License-Identifier: MIT
2
2
pragma solidity ^ 0.8.0 ;
3
3
4
- import { Strings } from "../../../lib/ openzeppelin-contracts/contracts /utils/Strings.sol " ;
4
+ import { Strings } from "@ openzeppelin-contracts-4.9.6 /utils/Strings.sol " ;
5
5
6
6
/**
7
7
* @title RONTransferHelper
Original file line number Diff line number Diff line change 1
1
// SPDX-License-Identifier: MIT
2
2
pragma solidity ^ 0.8.0 ;
3
3
4
- import { Strings } from "../../../lib/ openzeppelin-contracts/contracts /utils/Strings.sol " ;
4
+ import { Strings } from "@ openzeppelin-contracts-4.9.6 /utils/Strings.sol " ;
5
5
6
6
/**
7
7
* @title TransferFromHelper
Original file line number Diff line number Diff line change 1
1
// SPDX-License-Identifier: MIT
2
2
pragma solidity ^ 0.8.0 ;
3
3
4
- import { Strings } from "../../../lib/ openzeppelin-contracts/contracts /utils/Strings.sol " ;
4
+ import { Strings } from "@ openzeppelin-contracts-4.9.6 /utils/Strings.sol " ;
5
5
6
6
/**
7
7
* @title TransferHelper
Original file line number Diff line number Diff line change 1
1
// SPDX-License-Identifier: MIT
2
2
pragma solidity ^ 0.8.23 ;
3
3
4
- import { Test } from "forge-std/Test.sol " ;
4
+ import { Test } from "@ forge-std-1.8.2 /Test.sol " ;
5
5
import { LibNativeTransfer } from "src/transfers/LibNativeTransfer.sol " ;
6
6
7
7
contract LibNativeTransferTest is Test {
You can’t perform that action at this time.
0 commit comments