@dhedge/trading-widget 1.1.6 → 1.2.1

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.
@@ -1,3 +1,5 @@
1
1
  import type { Address, ChainId } from '../types';
2
2
  export declare const FLATMONEY_LEVERAGED_RETH_ASSET_MAP: Record<ChainId, Address>;
3
3
  export declare const FLATMONEY_COLLATERAL_SYMBOL_MAP: Record<ChainId, string>;
4
+ export declare const FLATMONEY_UNIT_SYMBOL_MAP: Record<ChainId, string>;
5
+ export declare const FLATMONEY_UNIT_ADDRESS_MAP: Record<ChainId, Address>;
@@ -1 +1,2 @@
1
1
  export declare const PYTH_API_LINK = "https://hermes.pyth.network";
2
+ export declare const FLAT_MONEY_UNIT_LINK = "https://flat.money/flatcoin";
@@ -1,3 +1,4 @@
1
1
  import type { Address } from 'viem';
2
2
  export declare const isFlatMoneyEarlyDepositorAddress: (address: Address) => boolean;
3
3
  export declare const isFlatMoneyLeveragedRethAsset: (address: Address) => boolean;
4
+ export declare const getFlatMonetUnitSymbol: (chainId: number) => string;