@gardenfi/orderbook 0.2.0-beta.21 → 0.2.0-beta.23

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,5 +1,5 @@
1
1
  import { Chain } from 'viem';
2
- import { Asset } from './asset';
2
+ import { Asset, NetworkType } from './asset';
3
3
 
4
4
  export declare const ArbitrumLocalnet: Chain;
5
5
  export declare const EthereumLocalnet: Chain;
@@ -7,8 +7,8 @@ export declare const bitcoinRegtestAsset: Asset;
7
7
  export declare const WBTCArbitrumLocalnetAsset: Asset;
8
8
  export declare const WBTCEthereumLocalnetAsset: Asset;
9
9
  type SupportedAssets = {
10
- [chain: string]: {
11
- [asset: string]: Asset;
10
+ [chain in NetworkType]: {
11
+ [chain_asset: string]: Asset;
12
12
  };
13
13
  };
14
14
  export declare const SupportedAssets: SupportedAssets;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gardenfi/orderbook",
3
- "version": "0.2.0-beta.21",
3
+ "version": "0.2.0-beta.23",
4
4
  "type": "module",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.js",