// migrations/NN_deploy_upgradeable_box.js
const { deployProxy } = require('@openzeppelin/truffle-upgrades');
const Product = artifacts.require('Product');
module.exports = async function (deployer) {
const instance = await deployProxy(Product);
console.log('Deployed', instance.address);
};
I used this code deploy proxy successful on kovan,but on mainnet it can’t.Can u give me some help ,tks