From 0df3dc83258133e690b45198546143c4fe06a1e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Friedemann=20F=C3=BCrst?= <59653747+friedemannf@users.noreply.github.com> Date: Thu, 2 Apr 2026 10:35:19 +0200 Subject: [PATCH] Bump default deploy gas to 20M --- bindings/bind/deploy.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/bind/deploy.go b/bindings/bind/deploy.go index 9b5e4e53..84495f5a 100644 --- a/bindings/bind/deploy.go +++ b/bindings/bind/deploy.go @@ -21,7 +21,7 @@ const ( // DefaultDeployMaxGasAmount is the default max gas for package deployment transactions. // The SDK default (100_000) is too low for deploying Move packages which involve // resource account creation + code publishing. Unused gas is not charged on Aptos. - DefaultDeployMaxGasAmount = uint64(2_000_000) + DefaultDeployMaxGasAmount = uint64(20_000_000) ) // withDefaultDeployGas prepends DefaultDeployMaxGasAmount to options if no