@skip-go/client 0.14.2 → 0.14.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -1981,12 +1981,13 @@ declare class SkipClient {
1981
1981
  * Validate gas balance for cosmos messages returns a fee asset and StdFee to be used
1982
1982
  *
1983
1983
  */
1984
- validateCosmosGasBalance({ chainID, signerAddress, client, messages, getFallbackGasAmount, }: {
1984
+ validateCosmosGasBalance({ chainID, signerAddress, client, messages, getFallbackGasAmount, txIndex }: {
1985
1985
  chainID: string;
1986
1986
  signerAddress: string;
1987
1987
  client: SigningStargateClient;
1988
1988
  messages?: CosmosMsg[];
1989
1989
  getFallbackGasAmount?: GetFallbackGasAmount;
1990
+ txIndex?: number;
1990
1991
  }): Promise<{
1991
1992
  error: string;
1992
1993
  asset: FeeAsset;