I have a smart contract that imports another, and I'm wondering how to deploy them to a testnet.
Right now, one contract imports the other locally;
import "./firstContract.sol"
contract secondContract is firstContract {
...
}
What would I chance the import "./firstContract.sol" line to once the first contract is deployed to a testnet via remix, and I want to deploy the second contract?
I found some documentation on it but it doesn't quite have what I'm looking for.