superstack-wallet-sdk 0.5.9 → 0.6.0

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.
@@ -219,7 +219,7 @@ export interface DeBridgeDlnCreateTxRequest {
219
219
  srcChainPriorityLevel?: string | null;
220
220
  }
221
221
  export type BuildTransactionRequest = {
222
- wallet_address?: string | null;
222
+ wallet_address: string;
223
223
  } & ({
224
224
  type: "HyperbeatVaultApprove";
225
225
  data: {
@@ -468,11 +468,11 @@ export interface ExchangeRequest {
468
468
  vaultAddress?: string | null;
469
469
  expiresAfter?: number | null;
470
470
  isMainnet?: boolean | null;
471
- walletAddress?: string | null;
471
+ walletAddress: string | null;
472
472
  }
473
473
  export interface ExportInitRequest {
474
474
  user_nonce: string;
475
- account_index?: number;
475
+ account_index: number;
476
476
  }
477
477
  export interface ExportInitResponse {
478
478
  server_nonce: string;
@@ -480,7 +480,7 @@ export interface ExportInitResponse {
480
480
  export interface ExportFinishRequest {
481
481
  user_nonce?: string;
482
482
  server_nonce?: string;
483
- account_index?: number;
483
+ account_index: number;
484
484
  is_export: boolean;
485
485
  }
486
486
  export interface ExportWallet {