-
I can't figure out why I'm getting this error, and I hope someone can help. The contracts compile fine, but won't deploy. Here's the command I'm running, and the output:
$ RUST_BACKTRACE=full forge create --rpc-url 127.0.0.1:8545 --private-key 0xD26aAb4FCB6f76816Fe912A76788c2D14098B6b4 ./src/Factory.sol:Factory
[⠊] Compiling...
No files changed, compilation skipped
Error:
0: relative URL without a base
I managed to deploy the same contracts using remix, so the problem is in the configuration, not in the code. And my configuration is the default. Any help would be greatly appreciated. I really, really don't want to have to move to truffle or hardhat... Thanks in advance. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 10 replies
-
I'd assume it is because you need to specify the RPC as |
Beta Was this translation helpful? Give feedback.
I'd assume it is because you need to specify the RPC as
http://127.0.0.1:8545
? 🤔