@chainflip/utils 0.7.2-assethub.2 → 0.7.3

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.
@@ -36,36 +36,23 @@ __export(chainflip_exports, {
36
36
  });
37
37
  module.exports = __toCommonJS(chainflip_exports);
38
38
  var chainflipAssets = [
39
- "Btc",
40
- "Dot",
41
- // Ethereum
42
- "Eth",
43
39
  "Usdc",
44
- "Flip",
45
40
  "Usdt",
46
- // Arbitrum
41
+ "Flip",
42
+ "Dot",
43
+ "Eth",
44
+ "Btc",
47
45
  "ArbUsdc",
48
46
  "ArbEth",
49
- // Solana
50
47
  "Sol",
51
- "SolUsdc",
52
- // AssetHub
53
- "HubDot",
54
- "HubUsdc",
55
- "HubUsdt"
48
+ "SolUsdc"
56
49
  ];
57
50
  var rpcAssets = ["USDC", "USDT", "FLIP", "DOT", "ETH", "BTC", "SOL"];
58
51
  var baseChainflipAssets = chainflipAssets.filter(
59
52
  (asset) => asset !== "Usdc"
60
53
  );
61
54
  var chainflipEvmChains = ["Ethereum", "Arbitrum"];
62
- var chainflipChains = [
63
- ...chainflipEvmChains,
64
- "Bitcoin",
65
- "Polkadot",
66
- "Solana",
67
- "Assethub"
68
- ];
55
+ var chainflipChains = [...chainflipEvmChains, "Bitcoin", "Polkadot", "Solana"];
69
56
  var chainflipNetworks = ["backspin", "sisyphos", "perseverance", "mainnet"];
70
57
  var addressTypes = ["Eth", "Btc", "Dot", "Arb", "Sol"];
71
58
  function readAssetValue(map, asset) {
@@ -122,21 +109,6 @@ var assetConstants = {
122
109
  chain: "Solana",
123
110
  rpcAsset: "USDC",
124
111
  decimals: 6
125
- },
126
- HubDot: {
127
- chain: "Assethub",
128
- rpcAsset: "DOT",
129
- decimals: 10
130
- },
131
- HubUsdc: {
132
- chain: "Assethub",
133
- rpcAsset: "USDC",
134
- decimals: 6
135
- },
136
- HubUsdt: {
137
- chain: "Assethub",
138
- rpcAsset: "USDT",
139
- decimals: 6
140
112
  }
141
113
  };
142
114
  var chainConstants = {
@@ -169,40 +141,26 @@ var chainConstants = {
169
141
  gasAsset: "Sol",
170
142
  addressType: "Sol",
171
143
  blockTimeSeconds: 0.8
172
- },
173
- Assethub: {
174
- assets: ["HubDot", "HubUsdc", "HubUsdt"],
175
- gasAsset: "HubDot",
176
- addressType: "Dot",
177
- blockTimeSeconds: 12
178
144
  }
179
145
  };
180
146
  var internalAssetToRpcAsset = {
181
- Btc: { chain: "Bitcoin", asset: "BTC" },
182
- Dot: { chain: "Polkadot", asset: "DOT" },
183
- // Ethereum
184
147
  Eth: { chain: "Ethereum", asset: "ETH" },
185
- Usdc: { chain: "Ethereum", asset: "USDC" },
186
148
  Flip: { chain: "Ethereum", asset: "FLIP" },
149
+ Usdc: { chain: "Ethereum", asset: "USDC" },
187
150
  Usdt: { chain: "Ethereum", asset: "USDT" },
188
- // Arbitrum
151
+ Dot: { chain: "Polkadot", asset: "DOT" },
152
+ Btc: { chain: "Bitcoin", asset: "BTC" },
189
153
  ArbUsdc: { chain: "Arbitrum", asset: "USDC" },
190
154
  ArbEth: { chain: "Arbitrum", asset: "ETH" },
191
- // Solana
192
155
  Sol: { chain: "Solana", asset: "SOL" },
193
- SolUsdc: { chain: "Solana", asset: "USDC" },
194
- // AssetHub
195
- HubDot: { chain: "Assethub", asset: "DOT" },
196
- HubUsdc: { chain: "Assethub", asset: "USDC" },
197
- HubUsdt: { chain: "Assethub", asset: "USDT" }
156
+ SolUsdc: { chain: "Solana", asset: "USDC" }
198
157
  };
199
158
  var chainContractId = {
200
159
  Ethereum: 1,
201
160
  Polkadot: 2,
202
161
  Bitcoin: 3,
203
162
  Arbitrum: 4,
204
- Solana: 5,
205
- Assethub: 6
163
+ Solana: 5
206
164
  };
207
165
  var assetContractId = {
208
166
  Eth: 1,
@@ -214,10 +172,7 @@ var assetContractId = {
214
172
  ArbEth: 6,
215
173
  ArbUsdc: 7,
216
174
  Sol: 9,
217
- SolUsdc: 10,
218
- HubDot: 11,
219
- HubUsdt: 12,
220
- HubUsdc: 13
175
+ SolUsdc: 10
221
176
  };
222
177
  // Annotate the CommonJS export names for ESM import in node:
223
178
  0 && (module.exports = {
@@ -1,11 +1,11 @@
1
- declare const chainflipAssets: readonly ["Btc", "Dot", "Eth", "Usdc", "Flip", "Usdt", "ArbUsdc", "ArbEth", "Sol", "SolUsdc", "HubDot", "HubUsdc", "HubUsdt"];
1
+ declare const chainflipAssets: readonly ["Usdc", "Usdt", "Flip", "Dot", "Eth", "Btc", "ArbUsdc", "ArbEth", "Sol", "SolUsdc"];
2
2
  type ChainflipAsset = (typeof chainflipAssets)[number];
3
3
  declare const rpcAssets: readonly ["USDC", "USDT", "FLIP", "DOT", "ETH", "BTC", "SOL"];
4
4
  type BaseChainflipAsset = Exclude<ChainflipAsset, 'Usdc'>;
5
5
  declare const baseChainflipAssets: BaseChainflipAsset[];
6
6
  declare const chainflipEvmChains: readonly ["Ethereum", "Arbitrum"];
7
7
  type ChainflipEvmChain = (typeof chainflipEvmChains)[number];
8
- declare const chainflipChains: readonly ["Ethereum", "Arbitrum", "Bitcoin", "Polkadot", "Solana", "Assethub"];
8
+ declare const chainflipChains: readonly ["Ethereum", "Arbitrum", "Bitcoin", "Polkadot", "Solana"];
9
9
  type ChainflipChain = (typeof chainflipChains)[number];
10
10
  declare const chainflipNetworks: readonly ["backspin", "sisyphos", "perseverance", "mainnet"];
11
11
  type ChainflipNetwork = (typeof chainflipNetworks)[number];
@@ -82,21 +82,6 @@ declare const assetConstants: {
82
82
  readonly rpcAsset: "USDC";
83
83
  readonly decimals: 6;
84
84
  };
85
- readonly HubDot: {
86
- readonly chain: "Assethub";
87
- readonly rpcAsset: "DOT";
88
- readonly decimals: 10;
89
- };
90
- readonly HubUsdc: {
91
- readonly chain: "Assethub";
92
- readonly rpcAsset: "USDC";
93
- readonly decimals: 6;
94
- };
95
- readonly HubUsdt: {
96
- readonly chain: "Assethub";
97
- readonly rpcAsset: "USDT";
98
- readonly decimals: 6;
99
- };
100
85
  };
101
86
  declare const chainConstants: {
102
87
  readonly Ethereum: {
@@ -129,12 +114,6 @@ declare const chainConstants: {
129
114
  readonly addressType: "Sol";
130
115
  readonly blockTimeSeconds: 0.8;
131
116
  };
132
- readonly Assethub: {
133
- readonly assets: ["HubDot", "HubUsdc", "HubUsdt"];
134
- readonly gasAsset: "HubDot";
135
- readonly addressType: "Dot";
136
- readonly blockTimeSeconds: 12;
137
- };
138
117
  };
139
118
  declare const internalAssetToRpcAsset: Record<ChainflipAsset, AssetAndChain>;
140
119
  declare const chainContractId: Record<ChainflipChain, number>;
@@ -1,11 +1,11 @@
1
- declare const chainflipAssets: readonly ["Btc", "Dot", "Eth", "Usdc", "Flip", "Usdt", "ArbUsdc", "ArbEth", "Sol", "SolUsdc", "HubDot", "HubUsdc", "HubUsdt"];
1
+ declare const chainflipAssets: readonly ["Usdc", "Usdt", "Flip", "Dot", "Eth", "Btc", "ArbUsdc", "ArbEth", "Sol", "SolUsdc"];
2
2
  type ChainflipAsset = (typeof chainflipAssets)[number];
3
3
  declare const rpcAssets: readonly ["USDC", "USDT", "FLIP", "DOT", "ETH", "BTC", "SOL"];
4
4
  type BaseChainflipAsset = Exclude<ChainflipAsset, 'Usdc'>;
5
5
  declare const baseChainflipAssets: BaseChainflipAsset[];
6
6
  declare const chainflipEvmChains: readonly ["Ethereum", "Arbitrum"];
7
7
  type ChainflipEvmChain = (typeof chainflipEvmChains)[number];
8
- declare const chainflipChains: readonly ["Ethereum", "Arbitrum", "Bitcoin", "Polkadot", "Solana", "Assethub"];
8
+ declare const chainflipChains: readonly ["Ethereum", "Arbitrum", "Bitcoin", "Polkadot", "Solana"];
9
9
  type ChainflipChain = (typeof chainflipChains)[number];
10
10
  declare const chainflipNetworks: readonly ["backspin", "sisyphos", "perseverance", "mainnet"];
11
11
  type ChainflipNetwork = (typeof chainflipNetworks)[number];
@@ -82,21 +82,6 @@ declare const assetConstants: {
82
82
  readonly rpcAsset: "USDC";
83
83
  readonly decimals: 6;
84
84
  };
85
- readonly HubDot: {
86
- readonly chain: "Assethub";
87
- readonly rpcAsset: "DOT";
88
- readonly decimals: 10;
89
- };
90
- readonly HubUsdc: {
91
- readonly chain: "Assethub";
92
- readonly rpcAsset: "USDC";
93
- readonly decimals: 6;
94
- };
95
- readonly HubUsdt: {
96
- readonly chain: "Assethub";
97
- readonly rpcAsset: "USDT";
98
- readonly decimals: 6;
99
- };
100
85
  };
101
86
  declare const chainConstants: {
102
87
  readonly Ethereum: {
@@ -129,12 +114,6 @@ declare const chainConstants: {
129
114
  readonly addressType: "Sol";
130
115
  readonly blockTimeSeconds: 0.8;
131
116
  };
132
- readonly Assethub: {
133
- readonly assets: ["HubDot", "HubUsdc", "HubUsdt"];
134
- readonly gasAsset: "HubDot";
135
- readonly addressType: "Dot";
136
- readonly blockTimeSeconds: 12;
137
- };
138
117
  };
139
118
  declare const internalAssetToRpcAsset: Record<ChainflipAsset, AssetAndChain>;
140
119
  declare const chainContractId: Record<ChainflipChain, number>;
package/dist/chainflip.js CHANGED
@@ -12,7 +12,7 @@ import {
12
12
  internalAssetToRpcAsset,
13
13
  readAssetValue,
14
14
  rpcAssets
15
- } from "./chunk-26AL7ZVB.js";
15
+ } from "./chunk-YOAHWTE7.js";
16
16
  export {
17
17
  addressTypes,
18
18
  assetConstants,
@@ -1,35 +1,22 @@
1
1
  // src/chainflip.ts
2
2
  var chainflipAssets = [
3
- "Btc",
4
- "Dot",
5
- // Ethereum
6
- "Eth",
7
3
  "Usdc",
8
- "Flip",
9
4
  "Usdt",
10
- // Arbitrum
5
+ "Flip",
6
+ "Dot",
7
+ "Eth",
8
+ "Btc",
11
9
  "ArbUsdc",
12
10
  "ArbEth",
13
- // Solana
14
11
  "Sol",
15
- "SolUsdc",
16
- // AssetHub
17
- "HubDot",
18
- "HubUsdc",
19
- "HubUsdt"
12
+ "SolUsdc"
20
13
  ];
21
14
  var rpcAssets = ["USDC", "USDT", "FLIP", "DOT", "ETH", "BTC", "SOL"];
22
15
  var baseChainflipAssets = chainflipAssets.filter(
23
16
  (asset) => asset !== "Usdc"
24
17
  );
25
18
  var chainflipEvmChains = ["Ethereum", "Arbitrum"];
26
- var chainflipChains = [
27
- ...chainflipEvmChains,
28
- "Bitcoin",
29
- "Polkadot",
30
- "Solana",
31
- "Assethub"
32
- ];
19
+ var chainflipChains = [...chainflipEvmChains, "Bitcoin", "Polkadot", "Solana"];
33
20
  var chainflipNetworks = ["backspin", "sisyphos", "perseverance", "mainnet"];
34
21
  var addressTypes = ["Eth", "Btc", "Dot", "Arb", "Sol"];
35
22
  function readAssetValue(map, asset) {
@@ -86,21 +73,6 @@ var assetConstants = {
86
73
  chain: "Solana",
87
74
  rpcAsset: "USDC",
88
75
  decimals: 6
89
- },
90
- HubDot: {
91
- chain: "Assethub",
92
- rpcAsset: "DOT",
93
- decimals: 10
94
- },
95
- HubUsdc: {
96
- chain: "Assethub",
97
- rpcAsset: "USDC",
98
- decimals: 6
99
- },
100
- HubUsdt: {
101
- chain: "Assethub",
102
- rpcAsset: "USDT",
103
- decimals: 6
104
76
  }
105
77
  };
106
78
  var chainConstants = {
@@ -133,40 +105,26 @@ var chainConstants = {
133
105
  gasAsset: "Sol",
134
106
  addressType: "Sol",
135
107
  blockTimeSeconds: 0.8
136
- },
137
- Assethub: {
138
- assets: ["HubDot", "HubUsdc", "HubUsdt"],
139
- gasAsset: "HubDot",
140
- addressType: "Dot",
141
- blockTimeSeconds: 12
142
108
  }
143
109
  };
144
110
  var internalAssetToRpcAsset = {
145
- Btc: { chain: "Bitcoin", asset: "BTC" },
146
- Dot: { chain: "Polkadot", asset: "DOT" },
147
- // Ethereum
148
111
  Eth: { chain: "Ethereum", asset: "ETH" },
149
- Usdc: { chain: "Ethereum", asset: "USDC" },
150
112
  Flip: { chain: "Ethereum", asset: "FLIP" },
113
+ Usdc: { chain: "Ethereum", asset: "USDC" },
151
114
  Usdt: { chain: "Ethereum", asset: "USDT" },
152
- // Arbitrum
115
+ Dot: { chain: "Polkadot", asset: "DOT" },
116
+ Btc: { chain: "Bitcoin", asset: "BTC" },
153
117
  ArbUsdc: { chain: "Arbitrum", asset: "USDC" },
154
118
  ArbEth: { chain: "Arbitrum", asset: "ETH" },
155
- // Solana
156
119
  Sol: { chain: "Solana", asset: "SOL" },
157
- SolUsdc: { chain: "Solana", asset: "USDC" },
158
- // AssetHub
159
- HubDot: { chain: "Assethub", asset: "DOT" },
160
- HubUsdc: { chain: "Assethub", asset: "USDC" },
161
- HubUsdt: { chain: "Assethub", asset: "USDT" }
120
+ SolUsdc: { chain: "Solana", asset: "USDC" }
162
121
  };
163
122
  var chainContractId = {
164
123
  Ethereum: 1,
165
124
  Polkadot: 2,
166
125
  Bitcoin: 3,
167
126
  Arbitrum: 4,
168
- Solana: 5,
169
- Assethub: 6
127
+ Solana: 5
170
128
  };
171
129
  var assetContractId = {
172
130
  Eth: 1,
@@ -178,10 +136,7 @@ var assetContractId = {
178
136
  ArbEth: 6,
179
137
  ArbUsdc: 7,
180
138
  Sol: 9,
181
- SolUsdc: 10,
182
- HubDot: 11,
183
- HubUsdt: 12,
184
- HubUsdc: 13
139
+ SolUsdc: 10
185
140
  };
186
141
 
187
142
  export {
package/dist/consts.cjs CHANGED
@@ -29,7 +29,8 @@ __export(consts_exports, {
29
29
  brokerAliasMap: () => brokerAliasMap,
30
30
  chainflipCommunityLinks: () => chainflipCommunityLinks,
31
31
  chainflipLinks: () => chainflipLinks,
32
- lpAliasMap: () => lpAliasMap
32
+ lpAliasMap: () => lpAliasMap,
33
+ smartContractAliasMap: () => smartContractAliasMap
33
34
  });
34
35
  module.exports = __toCommonJS(consts_exports);
35
36
  var HEARTBEAT_BLOCK_INTERVAL = 150;
@@ -50,6 +51,10 @@ var chainflipCommunityLinks = {
50
51
  twitter: "https://twitter.com/chainflip",
51
52
  telegram: "https://t.me/chainflip_io_chat"
52
53
  };
54
+ var smartContractAliasMap = {
55
+ "0xce16F69375520ab01377ce7B88f5BA8C48F8D666": "Squid",
56
+ "0xd99ac0681b904991169a4f398b9043781adbe0c3": "Symbiosis"
57
+ };
53
58
  var brokerAliasMap = {
54
59
  cFLRQDfEdmnv6d2XfHJNRBQHi4fruPMReLSfvB8WWD2ENbqj7: {
55
60
  name: "Chainflip Swapping",
@@ -205,5 +210,6 @@ var GENESIS_LP_ACCOUNT_IDS = [
205
210
  brokerAliasMap,
206
211
  chainflipCommunityLinks,
207
212
  chainflipLinks,
208
- lpAliasMap
213
+ lpAliasMap,
214
+ smartContractAliasMap
209
215
  });
package/dist/consts.d.cts CHANGED
@@ -22,8 +22,12 @@ type AccountAliasMap = {
22
22
  twitter: string | null;
23
23
  };
24
24
  };
25
+ declare const smartContractAliasMap: {
26
+ '0xce16F69375520ab01377ce7B88f5BA8C48F8D666': string;
27
+ '0xd99ac0681b904991169a4f398b9043781adbe0c3': string;
28
+ };
25
29
  declare const brokerAliasMap: AccountAliasMap;
26
30
  declare const lpAliasMap: AccountAliasMap;
27
31
  declare const GENESIS_LP_ACCOUNT_IDS: string[];
28
32
 
29
- export { CHAINFLIP_BLOCKS_PER_YEAR, CHAINFLIP_BLOCK_TIME_SECONDS, CHAINFLIP_SS58_PREFIX, GENESIS_LP_ACCOUNT_IDS, HEARTBEAT_BLOCK_INTERVAL, POLKADOT_SS58_PREFIX, brokerAliasMap, chainflipCommunityLinks, chainflipLinks, lpAliasMap };
33
+ export { CHAINFLIP_BLOCKS_PER_YEAR, CHAINFLIP_BLOCK_TIME_SECONDS, CHAINFLIP_SS58_PREFIX, GENESIS_LP_ACCOUNT_IDS, HEARTBEAT_BLOCK_INTERVAL, POLKADOT_SS58_PREFIX, brokerAliasMap, chainflipCommunityLinks, chainflipLinks, lpAliasMap, smartContractAliasMap };
package/dist/consts.d.ts CHANGED
@@ -22,8 +22,12 @@ type AccountAliasMap = {
22
22
  twitter: string | null;
23
23
  };
24
24
  };
25
+ declare const smartContractAliasMap: {
26
+ '0xce16F69375520ab01377ce7B88f5BA8C48F8D666': string;
27
+ '0xd99ac0681b904991169a4f398b9043781adbe0c3': string;
28
+ };
25
29
  declare const brokerAliasMap: AccountAliasMap;
26
30
  declare const lpAliasMap: AccountAliasMap;
27
31
  declare const GENESIS_LP_ACCOUNT_IDS: string[];
28
32
 
29
- export { CHAINFLIP_BLOCKS_PER_YEAR, CHAINFLIP_BLOCK_TIME_SECONDS, CHAINFLIP_SS58_PREFIX, GENESIS_LP_ACCOUNT_IDS, HEARTBEAT_BLOCK_INTERVAL, POLKADOT_SS58_PREFIX, brokerAliasMap, chainflipCommunityLinks, chainflipLinks, lpAliasMap };
33
+ export { CHAINFLIP_BLOCKS_PER_YEAR, CHAINFLIP_BLOCK_TIME_SECONDS, CHAINFLIP_SS58_PREFIX, GENESIS_LP_ACCOUNT_IDS, HEARTBEAT_BLOCK_INTERVAL, POLKADOT_SS58_PREFIX, brokerAliasMap, chainflipCommunityLinks, chainflipLinks, lpAliasMap, smartContractAliasMap };
package/dist/consts.js CHANGED
@@ -17,6 +17,10 @@ var chainflipCommunityLinks = {
17
17
  twitter: "https://twitter.com/chainflip",
18
18
  telegram: "https://t.me/chainflip_io_chat"
19
19
  };
20
+ var smartContractAliasMap = {
21
+ "0xce16F69375520ab01377ce7B88f5BA8C48F8D666": "Squid",
22
+ "0xd99ac0681b904991169a4f398b9043781adbe0c3": "Symbiosis"
23
+ };
20
24
  var brokerAliasMap = {
21
25
  cFLRQDfEdmnv6d2XfHJNRBQHi4fruPMReLSfvB8WWD2ENbqj7: {
22
26
  name: "Chainflip Swapping",
@@ -171,5 +175,6 @@ export {
171
175
  brokerAliasMap,
172
176
  chainflipCommunityLinks,
173
177
  chainflipLinks,
174
- lpAliasMap
178
+ lpAliasMap,
179
+ smartContractAliasMap
175
180
  };
package/dist/tickMath.cjs CHANGED
@@ -33,35 +33,22 @@ var import_bignumber = require("bignumber.js");
33
33
 
34
34
  // src/chainflip.ts
35
35
  var chainflipAssets = [
36
- "Btc",
37
- "Dot",
38
- // Ethereum
39
- "Eth",
40
36
  "Usdc",
41
- "Flip",
42
37
  "Usdt",
43
- // Arbitrum
38
+ "Flip",
39
+ "Dot",
40
+ "Eth",
41
+ "Btc",
44
42
  "ArbUsdc",
45
43
  "ArbEth",
46
- // Solana
47
44
  "Sol",
48
- "SolUsdc",
49
- // AssetHub
50
- "HubDot",
51
- "HubUsdc",
52
- "HubUsdt"
45
+ "SolUsdc"
53
46
  ];
54
47
  var baseChainflipAssets = chainflipAssets.filter(
55
48
  (asset) => asset !== "Usdc"
56
49
  );
57
50
  var chainflipEvmChains = ["Ethereum", "Arbitrum"];
58
- var chainflipChains = [
59
- ...chainflipEvmChains,
60
- "Bitcoin",
61
- "Polkadot",
62
- "Solana",
63
- "Assethub"
64
- ];
51
+ var chainflipChains = [...chainflipEvmChains, "Bitcoin", "Polkadot", "Solana"];
65
52
  var assetConstants = {
66
53
  Eth: {
67
54
  chain: "Ethereum",
@@ -112,21 +99,6 @@ var assetConstants = {
112
99
  chain: "Solana",
113
100
  rpcAsset: "USDC",
114
101
  decimals: 6
115
- },
116
- HubDot: {
117
- chain: "Assethub",
118
- rpcAsset: "DOT",
119
- decimals: 10
120
- },
121
- HubUsdc: {
122
- chain: "Assethub",
123
- rpcAsset: "USDC",
124
- decimals: 6
125
- },
126
- HubUsdt: {
127
- chain: "Assethub",
128
- rpcAsset: "USDT",
129
- decimals: 6
130
102
  }
131
103
  };
132
104
  var chainConstants = {
@@ -159,12 +131,6 @@ var chainConstants = {
159
131
  gasAsset: "Sol",
160
132
  addressType: "Sol",
161
133
  blockTimeSeconds: 0.8
162
- },
163
- Assethub: {
164
- assets: ["HubDot", "HubUsdc", "HubUsdt"],
165
- gasAsset: "HubDot",
166
- addressType: "Dot",
167
- blockTimeSeconds: 12
168
134
  }
169
135
  };
170
136
 
package/dist/tickMath.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  assetConstants
3
- } from "./chunk-26AL7ZVB.js";
3
+ } from "./chunk-YOAHWTE7.js";
4
4
 
5
5
  // src/tickMath.ts
6
6
  import { BigNumber } from "bignumber.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chainflip/utils",
3
- "version": "0.7.2-assethub.2",
3
+ "version": "0.7.3",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist",
@@ -20,7 +20,7 @@
20
20
  },
21
21
  "devDependencies": {
22
22
  "@noble/hashes": "^1.7.1",
23
- "@vitest/ui": "3.0.8"
23
+ "@vitest/ui": "3.0.9"
24
24
  },
25
25
  "dependencies": {
26
26
  "@date-fns/utc": "^2.1.0",