@skip-go/client 0.16.22 → 0.16.23
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 +3 -1
- package/dist/index.js +137 -137
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2162,11 +2162,13 @@ declare class SkipClient {
|
|
|
2162
2162
|
getFeeInfoForChain(chainID: string): Promise<FeeAsset | undefined>;
|
|
2163
2163
|
private getDefaultGasTokenForChain;
|
|
2164
2164
|
private getStakingTokensForChain;
|
|
2165
|
-
validateGasBalances({ txs, onValidateGasBalance, getFallbackGasAmount, getCosmosSigner, simulate, }: {
|
|
2165
|
+
validateGasBalances({ txs, onValidateGasBalance, getFallbackGasAmount, getCosmosSigner, simulate, disabledChainIds, enabledChainIds, }: {
|
|
2166
2166
|
txs: Tx[];
|
|
2167
2167
|
onValidateGasBalance?: ExecuteRouteOptions["onValidateGasBalance"];
|
|
2168
2168
|
getFallbackGasAmount?: GetFallbackGasAmount;
|
|
2169
2169
|
simulate?: ExecuteRouteOptions["simulate"];
|
|
2170
|
+
disabledChainIds?: string[];
|
|
2171
|
+
enabledChainIds?: string[];
|
|
2170
2172
|
} & Pick<SignerGetters, "getCosmosSigner">): Promise<void>;
|
|
2171
2173
|
/**
|
|
2172
2174
|
*
|