Make the same for all other networks in hardhat config
note 1: we can verify contracts using flags yarn verify --network baseSepolia --api-url <API_URL> --api-key <API_KEY> but it's very inconvenient
note 2: to make yarn hardhat:verify work, see docs . Better in separate PR
To make verify possible on other networks/testnets, hardhat config should be updated like below
so
yarn verify --network baseSepolia
will work.Make the same for all other networks in hardhat config
note 1: we can verify contracts using flags
yarn verify --network baseSepolia --api-url <API_URL> --api-key <API_KEY>
but it's very inconvenient note 2: to makeyarn hardhat:verify
work, see docs . Better in separate PR