hello guys, this may be a simple question but I couldn't find any information about this.
I'm deploying my upgradeable contract with OpenZeppelin Defender successfully, but when I try to run my automated tests, even the simplest test gets me to this error because I'm trying to run them locally.
Is it possible to run the Defender deployment of a Proxy and perform automated local tests?
Thanks!
this is the run command
npx hardhat run --network hardhat scripts/deploy.ts
and in my config I only have this
networks: {
sepolia: {
url: "https://ethereum-sepolia.publicnode.com",
chainId: 11155111,
},
hardhat: {},
}