Reputation: 1
Nowadays, I tried to deploy smart contract on Mainnet but I cant deploy it successfully. why? and how can I deploy program on mainnet?
Upvotes: 0
Views: 568
Reputation: 8472
The current tools perform a fee check on every single message sent to deploy the program, which can make things take much longer and timeout many of the signed transactions.
As a temporary workaround, if you're sure the funding account has enough SOL, you can use:
solana program deploy --skip-fee-check <rest of your parameters here
Upvotes: 1