From 10e9de92d126b33c7be7cbb86273ba882f5e1800 Mon Sep 17 00:00:00 2001 From: Manolis Liolios Date: Fri, 7 Jul 2023 00:39:07 +0300 Subject: [PATCH] Fix gas budget --- scripts/airdrop/helper.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/airdrop/helper.ts b/scripts/airdrop/helper.ts index cdd7526e..7022f56e 100644 --- a/scripts/airdrop/helper.ts +++ b/scripts/airdrop/helper.ts @@ -169,7 +169,7 @@ export const prepareMultisigTx = async ( if(!gasObjectId) throw new Error("No gas object supplied for a mainnet transaction"); // set the gas budget. - tx.setGasBudget(9_000_000); + tx.setGasBudget(9_000_000_000); // set the sender to be the admin address from config. tx.setSenderIfNotSet(config.adminAddress as string);