Remix Gas Allowance error

otiliamarculescuxx
0
0

have this basic contract made on Openzeppelin Wizard , but everytime i try to deploy it on Mainnet i get the same error " exceeds gas allowance".I succesfully deployed it on Goerli. I've tried everything online but can t solve it.

// SPDX-License-Identifier: MIT 

pragma solidity ^0.8.9;

import "@openzeppelin/[email protected]/token/ERC20/ERC20.sol"; import"@openzeppelin/[email protected]/token/ERC20/extensions/ERC20Burnable.sol";

contract Muiasa is ERC20, ERC20Burnable { constructor() ERC20("Muiasa", "MUI") { _mint(msg.sender, 1000000000 * 10 ** decimals()); } }

Please help me.