I have tried to call simulate function and faced error “Error: not enough resources to fit the target:” when I have attached just generated seed phrase
import { Provider, Wallet } from "fuels";
const mn = Mnemonic.generate();
const seed = Mnemonic.mnemonicToSeed(mn);
const wallet = Wallet.fromSeed(seed, "", new Provider(NODE_URL));
const tokenContract = TokenAbi__factory.connect(b.assetId, wallet);
tokenContract.functions.already_minted(b256Address).simulate()
But after I have minted some ETH for new address this error disappeared.
Is there any way to check contract state without providing any signature ?