@voltr/vault-sdk 0.2.0 → 1.0.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.
@@ -7,6 +7,9 @@ export interface VaultConfig {
7
7
  managerPerformanceFee: number;
8
8
  adminManagementFee: number;
9
9
  adminPerformanceFee: number;
10
+ redemptionFee: number;
11
+ issuanceFee: number;
12
+ withdrawalWaitingPeriod: BN;
10
13
  }
11
14
  export interface VaultParams {
12
15
  config: VaultConfig;
@@ -26,11 +29,8 @@ export interface WithdrawStrategyArgs extends InitializeStrategyArgs {
26
29
  export interface InitializeDirectWithdrawStrategyArgs extends InitializeStrategyArgs {
27
30
  allowUserArgs?: boolean;
28
31
  }
29
- export interface WithdrawVaultArgs {
32
+ export interface RequestWithdrawVaultArgs {
30
33
  amount: BN;
31
34
  isAmountInLp: boolean;
32
35
  isWithdrawAll: boolean;
33
36
  }
34
- export interface DirectWithdrawStrategyArgs extends WithdrawVaultArgs {
35
- userArgs?: Buffer | null;
36
- }