"Response errors; TransactionGasLimit" error during deployment of contract on beta-4

Hi guys, I’m trying to deploy my token factory contract (Bytecode size: 7480 bytes) on beta-4
But during deployment I got a “Response errors; TransactionGasLimit” error with 5eth on a balance

My output:

>>>forc deploy --node-url http://beta-4.fuel.network/graphql --gas-price 1                                  
 Compiling library core (/Users/alexey/.forc/git/checkouts/std-9be0d6062747ea7/241d30f7cde5cdd1f378eb2bc1daae945f329d0c/sway-lib-core)
 Compiling library std (git+https://github.com/fuellabs/sway?tag=v0.44.0#241d30f7cde5cdd1f378eb2bc1daae945f329d0c)
 Compiling contract token-factory (/Users/alexey/projects/fuel/src-20/contract)
  Finished debug in 1.56434575s
  contract token-factory
      Bytecode size: 7480 bytes

Please provide the password of your encrypted wallet vault at "/Users/alexey/.fuel/wallets/.wallet": 

Account 0 -- fuel1tnt6jrwudexfhfvuprule40vt8c6hxvcpz9zs9m089vq83aag56qfvvrx8:
  Asset ID                                                           Amount
  0000000000000000000000000000000000000000000000000000000000000000 5000000000

Please provide the index of account to use for signing: 0
Do you agree to sign this transaction with fuel1tnt6jrwudexfhfvuprule40vt8c6hxvcpz9zs9m089vq83aag56qfvvrx8? [y/N]: y
Error: Decode error: Custom { kind: Other, error: "Response errors; TransactionGasLimit" }

My toolchain

Default host: aarch64-apple-darwin
fuelup home: /Users/alexey/.fuelup

installed toolchains
--------------------
beta-3-aarch64-apple-darwin
beta-4-rc.2-aarch64-apple-darwin (default)
latest-aarch64-apple-darwin
hotfix
my-custom-toolchain

active toolchain
-----------------
beta-4-rc.2-aarch64-apple-darwin (default)
  forc : 0.44.0
    - forc-client
      - forc-deploy : 0.44.0
      - forc-run : 0.44.0
    - forc-doc : 0.44.0
    - forc-explore : 0.28.1
    - forc-fmt : 0.44.0
    - forc-index : 0.19.5
    - forc-lsp : 0.44.0
    - forc-tx : 0.44.0
    - forc-wallet : 0.2.5
  fuel-core : 0.20.4
  fuel-core-keygen : Error getting version string
  fuel-indexer : 0.19.5

fuels versions
---------------
forc : 0.45
forc-wallet : 0.45

P.S.
Also, I tried to deploy a super mega simple counter contract on beta-4:

but got the same error:

>>> forc deploy --node-url http://beta-4.fuel.network/graphql --gas-price 1                                                     
 Compiling library core (/Users/alexey/.forc/git/checkouts/std-9be0d6062747ea7/241d30f7cde5cdd1f378eb2bc1daae945f329d0c/sway-lib-core)
 Compiling library std (git+https://github.com/fuellabs/sway?tag=v0.44.0#241d30f7cde5cdd1f378eb2bc1daae945f329d0c)
 Compiling contract counter-contract (/Users/alexey/Desktop/fuel-counter-contract)
  Finished debug in 1.463233916s
  contract counter-contract
      Bytecode size: 2204 bytes

Please provide the password of your encrypted wallet vault at "/Users/alexey/.fuel/wallets/.wallet": 

Account 0 -- fuel1tnt6jrwudexfhfvuprule40vt8c6hxvcpz9zs9m089vq83aag56qfvvrx8:
  Asset ID                                                           Amount
  0000000000000000000000000000000000000000000000000000000000000000 5000000000

Please provide the index of account to use for signing: 0
Do you agree to sign this transaction with fuel1tnt6jrwudexfhfvuprule40vt8c6hxvcpz9zs9m089vq83aag56qfvvrx8? [y/N]: y
Error: Decode error: Custom { kind: Other, error: "Response errors; TransactionGasLimit" }

That works with gas limit 10m

forc deploy --node-url http://beta-4.fuel.network/graphql --gas-price 1 --gas-limit 10000000    

This topic was automatically closed 20 days after the last reply. New replies are no longer allowed.