I recently created a BEP20 token on remix etherium. But instead of writing the whole code, I used import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol"
and added some 5-6 lines of my own.
If by any means, the GitHub repo gets deleted or shifted, will it affect my token? Will it stop working or could there be a loss of coins? If yes, how can I prevent this?
Also, while approving my contract on bscscan.com, should I put the contract code with the
import
statement? Because then it would be only 10 lines. Or should I paste the code from openZeppelin.git + extra added lines?