@dhedge/trading-widget 4.0.9 → 4.0.10

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.
@@ -15,3 +15,4 @@ export declare const GMX_MARKET_ASSETS_MAP: {
15
15
  export type GmxMarketAsset = (typeof GMX_MARKET_ASSETS_MAP)[keyof typeof GMX_MARKET_ASSETS_MAP];
16
16
  export declare const GMX_MARKET_ASSETS: GmxMarketAsset[];
17
17
  export declare const GMX_WITHDRAW_ASSET_MAP: Record<GmxMarketAsset, TradingToken>;
18
+ export declare const GMX_WITHDRAW_ASSET_MAP_BY_VAULT_ADDRESS: Record<string, TradingToken>;
@@ -1,3 +1,4 @@
1
1
  import type { Address } from 'viem';
2
2
  export declare const isGmxLeveragedAsset: (address: Address) => boolean;
3
3
  export declare const getGmxWithdrawAssetByLeverageAddress: (address: string) => import("../types").TradingToken;
4
+ export declare const getGmxWithdrawAssetByVaultAddress: (address: Address) => import("../types").TradingToken | undefined;