@skip-go/client 0.16.0 → 0.16.2

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
@@ -322,12 +322,14 @@ type GoFastTransferInfoJSON = {
322
322
  to_chain_id: string;
323
323
  state: GoFastTransferState;
324
324
  txs: GoFastTransferTransactionsJSON;
325
+ error_message: string | null;
325
326
  };
326
327
  type GoFastTransferInfo = {
327
328
  fromChainID: string;
328
329
  toChainID: string;
329
330
  state: GoFastTransferState;
330
331
  txs: GoFastTransferTransactions;
332
+ errorMessage: string | null;
331
333
  };
332
334
  type StargateTransferState = "STARGATE_TRANSFER_UNKNOWN" | "STARGATE_TRANSFER_SENT" | "STARGATE_TRANSFER_RECEIVED" | "STARGATE_TRANSFER_FAILED";
333
335
  type StargateTransferTransactionsJSON = {