diff --git a/packages/faucet/src/profile.ts b/packages/faucet/src/profile.ts index 0cb0a655..9b394575 100644 --- a/packages/faucet/src/profile.ts +++ b/packages/faucet/src/profile.ts @@ -43,7 +43,10 @@ export async function createClients( > => [ senderAddress, isOfflineDirectSigner(wallet) - ? await SigningStargateClient.connectWithWallet(apiUrl, wallet, {}) + ? await SigningStargateClient.connectWithWallet(apiUrl, wallet, { + gasLimits: constants.gasLimits, + gasPrice: constants.gasPrice, + }) : new SigningCosmosClient(apiUrl, senderAddress, wallet, constants.gasPrice, constants.gasLimits), ], ),