You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[profile.default]
src = "src"
out = "out"
libs = ["lib"]
remappings = ["@chainlink/contracts = D:/solidity/foundry_test/lib/chainlink-brownie-contracts/contracts"]
# See more config options https://github.com/foundry-rs/foundry/blob/master/crates/config/README.md#all-options
Command is forge build
Error
Error (6275): Source "src/SimpleStorage.sol" not found: File not found. Searched the following locations: "/solidity/foundry_test".
ParserError: Source "src/SimpleStorage.sol" not found: File not found. Searched the following locations: "/solidity/foundry_test".
--> script/DeploySimpleStorage.s.sol:6:1:
|
6 | import {SimpleStorage} from "../src/SimpleStorage.sol";
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Error (6275): Source "@chainlink/contracts/src/v0.8/shared/interfaces/AggregatorV3Interface.sol" not found: File not found. Searched the following locations: "/solidity/foundry_test".
ParserError: Source "@chainlink/contracts/src/v0.8/shared/interfaces/AggregatorV3Interface.sol" not found: File not found. Searched the following locations: "/solidity/foundry_test".
--> src/FundMe.sol:5:1:
|
5 | import {AggregatorV3Interface} from "@chainlink/contracts/src/v0.8/shared/interfaces/AggregatorV3Interface.sol";
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Error (6275): Source "src/PriceConverter.sol" not found: File not found. Searched the following locations: "/solidity/foundry_test".
ParserError: Source "src/PriceConverter.sol" not found: File not found. Searched the following locations: "/solidity/foundry_test".
--> src/FundMe.sol:6:1:
|
6 | import {PriceConverter} from "./PriceConverter.sol";
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Error (6275): Source "@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.sol" not found: File not found. Searched the following locations: "/solidity/foundry_test".
ParserError: Source "@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.sol" not found: File not found. Searched the following locations: "/solidity/foundry_test".
--> src/PriceConvetor.sol:4:1:
|
4 | import {AggregatorV3Interface} from "@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.sol";
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Output
[⠔] Unable to resolve imports:
"../src/SimpleStorage.sol" in "D:/solidity/foundry_test/script\DeploySimpleStorage.s.sol"
"./PriceConverter.sol" in "D:/solidity/foundry_test/src\FundMe.sol"
"@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.sol" in "D:/solidity/foundry_test/src\PriceConvetor.sol"
"@chainlink/contracts/src/v0.8/shared/interfaces/AggregatorV3Interface.sol" in "D:/solidity/foundry_test/src\FundMe.sol"
with remappings:
@chainlink/contracts /=D:/solidity/foundry_test/ D:/solidity/foundry_test/lib/chainlink-brownie-contracts/contracts/
chainlink-brownie-contracts/=D:/solidity/foundry_test/lib/chainlink-brownie-contracts/
forge-std/=D:/solidity/foundry_test/lib/forge-std/src/
[⠢] Compiling 22 files with Solc 0.8.19
[⠆] Solc 0.8.19 finished in 657.73ms
Error:
Compiler run failed:
Error (6275): Source "src/SimpleStorage.sol" not found: File not found. Searched the following locations: "/solidity/foundry_test".
ParserError: Source "src/SimpleStorage.sol" not found: File not found. Searched the following locations: "/solidity/foundry_test".
--> script/DeploySimpleStorage.s.sol:6:1:
|
6 | import {SimpleStorage} from "../src/SimpleStorage.sol";
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Error (6275): Source "@chainlink/contracts/src/v0.8/shared/interfaces/AggregatorV3Interface.sol" not found: File not found. Searched the following locations: "/solidity/foundry_test".
ParserError: Source "@chainlink/contracts/src/v0.8/shared/interfaces/AggregatorV3Interface.sol" not found: File not found. Searched the following locations: "/solidity/foundry_test".
--> src/FundMe.sol:5:1:
|
5 | import {AggregatorV3Interface} from "@chainlink/contracts/src/v0.8/shared/interfaces/AggregatorV3Interface.sol";
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Error (6275): Source "src/PriceConverter.sol" not found: File not found. Searched the following locations: "/solidity/foundry_test".
ParserError: Source "src/PriceConverter.sol" not found: File not found. Searched the following locations: "/solidity/foundry_test".
--> src/FundMe.sol:6:1:
|
6 | import {PriceConverter} from "./PriceConverter.sol";
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Error (6275): Source "@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.sol" not found: File not found. Searched the following locations: "/solidity/foundry_test".
ParserError: Source "@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.sol" not found: File not found. Searched the following locations: "/solidity/foundry_test".
--> src/PriceConvetor.sol:4:1:
|
4 | import {AggregatorV3Interface} from "@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.sol";
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
I have updated the toml file as per the video
i have downloaded the chainlink files as per the video
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Lesson 7
3.Finishing the setup
toml file
Command is
forge build
Error
Output
I have updated the toml file as per the video
i have downloaded the chainlink files as per the video
Beta Was this translation helpful? Give feedback.
All reactions