@dhedge/trading-widget 1.2.3 → 1.2.4

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.
@@ -44,6 +44,10 @@ export declare const PoolManagerLogicAbi: readonly [{
44
44
  readonly internalType: "uint256";
45
45
  readonly name: "";
46
46
  readonly type: "uint256";
47
+ }, {
48
+ readonly internalType: "uint256";
49
+ readonly name: "";
50
+ readonly type: "uint256";
47
51
  }];
48
52
  readonly stateMutability: "view";
49
53
  readonly type: "function";
@@ -47,6 +47,10 @@ export declare const usePoolManagerDynamic: ({ address, chainId, }: PoolContract
47
47
  readonly internalType: "uint256";
48
48
  readonly name: "";
49
49
  readonly type: "uint256";
50
+ }, {
51
+ readonly internalType: "uint256";
52
+ readonly name: "";
53
+ readonly type: "uint256";
50
54
  }];
51
55
  readonly stateMutability: "view";
52
56
  readonly type: "function";
@@ -47,6 +47,10 @@ export declare const usePoolManagerStatic: ({ address, chainId, }: PoolContractC
47
47
  readonly internalType: "uint256";
48
48
  readonly name: "";
49
49
  readonly type: "uint256";
50
+ }, {
51
+ readonly internalType: "uint256";
52
+ readonly name: "";
53
+ readonly type: "uint256";
50
54
  }];
51
55
  readonly stateMutability: "view";
52
56
  readonly type: "function";
@@ -121,6 +125,10 @@ export declare const usePoolManagerStatic: ({ address, chainId, }: PoolContractC
121
125
  readonly internalType: "uint256";
122
126
  readonly name: "";
123
127
  readonly type: "uint256";
128
+ }, {
129
+ readonly internalType: "uint256";
130
+ readonly name: "";
131
+ readonly type: "uint256";
124
132
  }];
125
133
  readonly stateMutability: "view";
126
134
  readonly type: "function";
@@ -148,6 +156,6 @@ export declare const usePoolManagerStatic: ({ address, chainId, }: PoolContractC
148
156
  readonly functionName: "minDepositUSD";
149
157
  readonly chainId: number;
150
158
  }], true, {
151
- getFeeIncreaseInfo: readonly [bigint, bigint, bigint, bigint] | undefined;
159
+ getFeeIncreaseInfo: readonly [bigint, bigint, bigint, bigint, bigint] | undefined;
152
160
  minDepositUSD: bigint | undefined;
153
161
  }>;
@@ -13,6 +13,7 @@ export declare const usePoolDynamicContractData: ({ address, chainId, }: PoolDyn
13
13
  performanceFee?: string | undefined;
14
14
  streamingFee?: string | undefined;
15
15
  entryFee?: string | undefined;
16
+ exitFee?: string | undefined;
16
17
  cooldownActive: boolean;
17
18
  cooldownEndsInTime: string;
18
19
  };
@@ -8,5 +8,7 @@ export declare const usePoolFees: ({ address, chainId }: PoolFeesParams) => {
8
8
  streamingFee: string;
9
9
  entryFee: string;
10
10
  hasPoolEntryFee: boolean;
11
+ exitFee: string;
12
+ exitFeeNumber: number;
11
13
  };
12
14
  export {};
@@ -3,6 +3,7 @@ export declare const normalizeFeeIncreaseInfo: (feeIncreaseInfo?: readonly bigin
3
3
  announcedPerformanceFee: string;
4
4
  announcedStreamingFee: string;
5
5
  announcedEntryFee: string;
6
+ announcedExitFee: string;
6
7
  announcedTimestamp: string;
7
8
  };
8
9
  export declare const usePoolManagerLogicData: (poolAddress: Address, chainId: ChainId) => {
@@ -10,5 +11,6 @@ export declare const usePoolManagerLogicData: (poolAddress: Address, chainId: Ch
10
11
  announcedPerformanceFee: string;
11
12
  announcedStreamingFee: string;
12
13
  announcedEntryFee: string;
14
+ announcedExitFee: string;
13
15
  announcedTimestamp: string;
14
16
  };
@@ -26,4 +26,8 @@ export interface PoolFallbackData {
26
26
  value: number;
27
27
  currency: ApyCurrency;
28
28
  };
29
+ performanceFeeNumerator?: string | null;
30
+ streamingFeeNumerator?: string | null;
31
+ entryFeeNumerator?: string | null;
32
+ exitFeeNumerator?: string | null;
29
33
  }
@@ -48,4 +48,5 @@ export interface DynamicPoolContractData {
48
48
  performanceFee: string | undefined;
49
49
  streamingFee: string | undefined;
50
50
  entryFee: string | undefined;
51
+ exitFee: string | undefined;
51
52
  }