@chainflip/utils 2.1.2-beta.6 → 2.1.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.
@@ -165,13 +165,6 @@ const chainConstants = {
165
165
  "USDT",
166
166
  "WBTC"
167
167
  ],
168
- rpcAssets: [
169
- "ETH",
170
- "FLIP",
171
- "USDC",
172
- "USDT",
173
- "WBTC"
174
- ],
175
168
  gasAsset: "Eth",
176
169
  addressType: "Eth",
177
170
  blockTimeSeconds: 12
@@ -179,7 +172,6 @@ const chainConstants = {
179
172
  Bitcoin: {
180
173
  chainflipAssets: ["Btc"],
181
174
  assets: ["BTC"],
182
- rpcAssets: ["BTC"],
183
175
  gasAsset: "Btc",
184
176
  addressType: "Btc",
185
177
  blockTimeSeconds: 600
@@ -195,11 +187,6 @@ const chainConstants = {
195
187
  "USDT",
196
188
  "ETH"
197
189
  ],
198
- rpcAssets: [
199
- "USDC",
200
- "USDT",
201
- "ETH"
202
- ],
203
190
  gasAsset: "ArbEth",
204
191
  addressType: "Arb",
205
192
  blockTimeSeconds: .26
@@ -215,11 +202,6 @@ const chainConstants = {
215
202
  "USDC",
216
203
  "USDT"
217
204
  ],
218
- rpcAssets: [
219
- "SOL",
220
- "USDC",
221
- "USDT"
222
- ],
223
205
  gasAsset: "Sol",
224
206
  addressType: "Sol",
225
207
  blockTimeSeconds: .8
@@ -235,11 +217,6 @@ const chainConstants = {
235
217
  "USDT",
236
218
  "USDC"
237
219
  ],
238
- rpcAssets: [
239
- "DOT",
240
- "USDT",
241
- "USDC"
242
- ],
243
220
  gasAsset: "HubDot",
244
221
  addressType: "Hub",
245
222
  blockTimeSeconds: 3
@@ -250,7 +227,6 @@ const anyChainConstants = {
250
227
  Polkadot: {
251
228
  chainflipAssets: ["Dot"],
252
229
  assets: ["DOT"],
253
- rpcAssets: ["DOT"],
254
230
  gasAsset: "Dot",
255
231
  addressType: "Dot",
256
232
  blockTimeSeconds: 6
@@ -8,7 +8,6 @@ declare const priceAssets: readonly ["Btc", "Eth", "Sol", "Usdc", "Usdt", "Usd",
8
8
  type PriceAsset = (typeof priceAssets)[number];
9
9
  type BaseChainflipAsset = Exclude<ChainflipAsset, 'Usdc'>;
10
10
  type AnyBaseChainflipAsset = Exclude<AnyChainflipAsset, 'Usdc'>;
11
- type NonDeprecatedBaseChainflipAsset = Exclude<BaseChainflipAsset, LegacyChainflipAsset>;
12
11
  declare const baseChainflipAssets: BaseChainflipAsset[];
13
12
  declare const chainflipEvmChains: readonly ["Ethereum", "Arbitrum"];
14
13
  type ChainflipEvmChain = (typeof chainflipEvmChains)[number];
@@ -230,7 +229,6 @@ declare const chainConstants: {
230
229
  readonly Ethereum: {
231
230
  readonly chainflipAssets: ["Eth", "Flip", "Usdc", "Usdt", "Wbtc"];
232
231
  readonly assets: ["ETH", "FLIP", "USDC", "USDT", "WBTC"];
233
- readonly rpcAssets: ["ETH", "FLIP", "USDC", "USDT", "WBTC"];
234
232
  readonly gasAsset: "Eth";
235
233
  readonly addressType: "Eth";
236
234
  readonly blockTimeSeconds: 12;
@@ -238,7 +236,6 @@ declare const chainConstants: {
238
236
  readonly Bitcoin: {
239
237
  readonly chainflipAssets: ["Btc"];
240
238
  readonly assets: ["BTC"];
241
- readonly rpcAssets: ["BTC"];
242
239
  readonly gasAsset: "Btc";
243
240
  readonly addressType: "Btc";
244
241
  readonly blockTimeSeconds: number;
@@ -246,7 +243,6 @@ declare const chainConstants: {
246
243
  readonly Arbitrum: {
247
244
  readonly chainflipAssets: ["ArbUsdc", "ArbUsdt", "ArbEth"];
248
245
  readonly assets: ["USDC", "USDT", "ETH"];
249
- readonly rpcAssets: ["USDC", "USDT", "ETH"];
250
246
  readonly gasAsset: "ArbEth";
251
247
  readonly addressType: "Arb";
252
248
  readonly blockTimeSeconds: 0.26;
@@ -254,7 +250,6 @@ declare const chainConstants: {
254
250
  readonly Solana: {
255
251
  readonly chainflipAssets: ["Sol", "SolUsdc", "SolUsdt"];
256
252
  readonly assets: ["SOL", "USDC", "USDT"];
257
- readonly rpcAssets: ["SOL", "USDC", "USDT"];
258
253
  readonly gasAsset: "Sol";
259
254
  readonly addressType: "Sol";
260
255
  readonly blockTimeSeconds: 0.8;
@@ -262,7 +257,6 @@ declare const chainConstants: {
262
257
  readonly Assethub: {
263
258
  readonly chainflipAssets: ["HubDot", "HubUsdt", "HubUsdc"];
264
259
  readonly assets: ["DOT", "USDT", "USDC"];
265
- readonly rpcAssets: ["DOT", "USDT", "USDC"];
266
260
  readonly gasAsset: "HubDot";
267
261
  readonly addressType: "Hub";
268
262
  readonly blockTimeSeconds: 3;
@@ -272,7 +266,6 @@ declare const anyChainConstants: {
272
266
  readonly Polkadot: {
273
267
  readonly chainflipAssets: ["Dot"];
274
268
  readonly assets: ["DOT"];
275
- readonly rpcAssets: ["DOT"];
276
269
  readonly gasAsset: "Dot";
277
270
  readonly addressType: "Dot";
278
271
  readonly blockTimeSeconds: 6;
@@ -280,7 +273,6 @@ declare const anyChainConstants: {
280
273
  readonly Ethereum: {
281
274
  readonly chainflipAssets: ["Eth", "Flip", "Usdc", "Usdt", "Wbtc"];
282
275
  readonly assets: ["ETH", "FLIP", "USDC", "USDT", "WBTC"];
283
- readonly rpcAssets: ["ETH", "FLIP", "USDC", "USDT", "WBTC"];
284
276
  readonly gasAsset: "Eth";
285
277
  readonly addressType: "Eth";
286
278
  readonly blockTimeSeconds: 12;
@@ -288,7 +280,6 @@ declare const anyChainConstants: {
288
280
  readonly Bitcoin: {
289
281
  readonly chainflipAssets: ["Btc"];
290
282
  readonly assets: ["BTC"];
291
- readonly rpcAssets: ["BTC"];
292
283
  readonly gasAsset: "Btc";
293
284
  readonly addressType: "Btc";
294
285
  readonly blockTimeSeconds: number;
@@ -296,7 +287,6 @@ declare const anyChainConstants: {
296
287
  readonly Arbitrum: {
297
288
  readonly chainflipAssets: ["ArbUsdc", "ArbUsdt", "ArbEth"];
298
289
  readonly assets: ["USDC", "USDT", "ETH"];
299
- readonly rpcAssets: ["USDC", "USDT", "ETH"];
300
290
  readonly gasAsset: "ArbEth";
301
291
  readonly addressType: "Arb";
302
292
  readonly blockTimeSeconds: 0.26;
@@ -304,7 +294,6 @@ declare const anyChainConstants: {
304
294
  readonly Solana: {
305
295
  readonly chainflipAssets: ["Sol", "SolUsdc", "SolUsdt"];
306
296
  readonly assets: ["SOL", "USDC", "USDT"];
307
- readonly rpcAssets: ["SOL", "USDC", "USDT"];
308
297
  readonly gasAsset: "Sol";
309
298
  readonly addressType: "Sol";
310
299
  readonly blockTimeSeconds: 0.8;
@@ -312,7 +301,6 @@ declare const anyChainConstants: {
312
301
  readonly Assethub: {
313
302
  readonly chainflipAssets: ["HubDot", "HubUsdt", "HubUsdc"];
314
303
  readonly assets: ["DOT", "USDT", "USDC"];
315
- readonly rpcAssets: ["DOT", "USDT", "USDC"];
316
304
  readonly gasAsset: "HubDot";
317
305
  readonly addressType: "Hub";
318
306
  readonly blockTimeSeconds: 3;
@@ -366,4 +354,4 @@ declare function isChainflipChain(chain: string): chain is ChainflipChain;
366
354
  declare function isLegacyChainflipChain(chain: string): chain is LegacyChainflipChain;
367
355
  declare function isAnyChainflipChain(chain: string): chain is AnyChainflipChain;
368
356
  //#endregion
369
- export { AddressType, AnyAddressType, AnyAssetAndChain, AnyAssetOfChain, AnyBaseAssetAndChain, AnyBaseChainAssetMap, AnyBaseChainflipAsset, AnyChainAssetMap, AnyChainMap, AnyChainflipAsset, AnyChainflipChain, AnyInternalAssetMap, AnyUncheckedAssetAndChain, AssetAndChain, AssetOfChain, AssetSymbol, BaseAssetAndChain, BaseChainAssetMap, BaseChainflipAsset, ChainAssetMap, ChainMap, ChainflipAsset, ChainflipChain, ChainflipEvmChain, ChainflipNetwork, InternalAssetMap, LegacyAddressType, LegacyChainflipAsset, LegacyChainflipChain, NonDeprecatedBaseChainflipAsset, PriceAsset, UncheckedAssetAndChain, addressTypes, anyAssetConstants, anyChainConstants, anyInternalAssetToRpcAsset, assetConstants, assetContractId, assetSymbols, baseChainflipAssets, chainConstants, chainContractId, chainflipAssetToPriceAssetMap, chainflipAssets, chainflipChains, chainflipEvmChains, chainflipNetworks, getAnyInternalAsset, getInternalAsset, getInternalAssets, internalAssetToRpcAsset, isAnyChainflipAsset, isAnyChainflipChain, isChainflipAsset, isChainflipChain, isLegacyChainflipAsset, isLegacyChainflipChain, isValidAssetAndChain, legacyAddressTypes, legacyChainflipAssets, legacyChainflipChains, priceAssets, readAssetValue };
357
+ export { AddressType, AnyAddressType, AnyAssetAndChain, AnyAssetOfChain, AnyBaseAssetAndChain, AnyBaseChainAssetMap, AnyBaseChainflipAsset, AnyChainAssetMap, AnyChainMap, AnyChainflipAsset, AnyChainflipChain, AnyInternalAssetMap, AnyUncheckedAssetAndChain, AssetAndChain, AssetOfChain, AssetSymbol, BaseAssetAndChain, BaseChainAssetMap, BaseChainflipAsset, ChainAssetMap, ChainMap, ChainflipAsset, ChainflipChain, ChainflipEvmChain, ChainflipNetwork, InternalAssetMap, LegacyAddressType, LegacyChainflipAsset, LegacyChainflipChain, PriceAsset, UncheckedAssetAndChain, addressTypes, anyAssetConstants, anyChainConstants, anyInternalAssetToRpcAsset, assetConstants, assetContractId, assetSymbols, baseChainflipAssets, chainConstants, chainContractId, chainflipAssetToPriceAssetMap, chainflipAssets, chainflipChains, chainflipEvmChains, chainflipNetworks, getAnyInternalAsset, getInternalAsset, getInternalAssets, internalAssetToRpcAsset, isAnyChainflipAsset, isAnyChainflipChain, isChainflipAsset, isChainflipChain, isLegacyChainflipAsset, isLegacyChainflipChain, isValidAssetAndChain, legacyAddressTypes, legacyChainflipAssets, legacyChainflipChains, priceAssets, readAssetValue };
@@ -8,7 +8,6 @@ declare const priceAssets: readonly ["Btc", "Eth", "Sol", "Usdc", "Usdt", "Usd",
8
8
  type PriceAsset = (typeof priceAssets)[number];
9
9
  type BaseChainflipAsset = Exclude<ChainflipAsset, 'Usdc'>;
10
10
  type AnyBaseChainflipAsset = Exclude<AnyChainflipAsset, 'Usdc'>;
11
- type NonDeprecatedBaseChainflipAsset = Exclude<BaseChainflipAsset, LegacyChainflipAsset>;
12
11
  declare const baseChainflipAssets: BaseChainflipAsset[];
13
12
  declare const chainflipEvmChains: readonly ["Ethereum", "Arbitrum"];
14
13
  type ChainflipEvmChain = (typeof chainflipEvmChains)[number];
@@ -230,7 +229,6 @@ declare const chainConstants: {
230
229
  readonly Ethereum: {
231
230
  readonly chainflipAssets: ["Eth", "Flip", "Usdc", "Usdt", "Wbtc"];
232
231
  readonly assets: ["ETH", "FLIP", "USDC", "USDT", "WBTC"];
233
- readonly rpcAssets: ["ETH", "FLIP", "USDC", "USDT", "WBTC"];
234
232
  readonly gasAsset: "Eth";
235
233
  readonly addressType: "Eth";
236
234
  readonly blockTimeSeconds: 12;
@@ -238,7 +236,6 @@ declare const chainConstants: {
238
236
  readonly Bitcoin: {
239
237
  readonly chainflipAssets: ["Btc"];
240
238
  readonly assets: ["BTC"];
241
- readonly rpcAssets: ["BTC"];
242
239
  readonly gasAsset: "Btc";
243
240
  readonly addressType: "Btc";
244
241
  readonly blockTimeSeconds: number;
@@ -246,7 +243,6 @@ declare const chainConstants: {
246
243
  readonly Arbitrum: {
247
244
  readonly chainflipAssets: ["ArbUsdc", "ArbUsdt", "ArbEth"];
248
245
  readonly assets: ["USDC", "USDT", "ETH"];
249
- readonly rpcAssets: ["USDC", "USDT", "ETH"];
250
246
  readonly gasAsset: "ArbEth";
251
247
  readonly addressType: "Arb";
252
248
  readonly blockTimeSeconds: 0.26;
@@ -254,7 +250,6 @@ declare const chainConstants: {
254
250
  readonly Solana: {
255
251
  readonly chainflipAssets: ["Sol", "SolUsdc", "SolUsdt"];
256
252
  readonly assets: ["SOL", "USDC", "USDT"];
257
- readonly rpcAssets: ["SOL", "USDC", "USDT"];
258
253
  readonly gasAsset: "Sol";
259
254
  readonly addressType: "Sol";
260
255
  readonly blockTimeSeconds: 0.8;
@@ -262,7 +257,6 @@ declare const chainConstants: {
262
257
  readonly Assethub: {
263
258
  readonly chainflipAssets: ["HubDot", "HubUsdt", "HubUsdc"];
264
259
  readonly assets: ["DOT", "USDT", "USDC"];
265
- readonly rpcAssets: ["DOT", "USDT", "USDC"];
266
260
  readonly gasAsset: "HubDot";
267
261
  readonly addressType: "Hub";
268
262
  readonly blockTimeSeconds: 3;
@@ -272,7 +266,6 @@ declare const anyChainConstants: {
272
266
  readonly Polkadot: {
273
267
  readonly chainflipAssets: ["Dot"];
274
268
  readonly assets: ["DOT"];
275
- readonly rpcAssets: ["DOT"];
276
269
  readonly gasAsset: "Dot";
277
270
  readonly addressType: "Dot";
278
271
  readonly blockTimeSeconds: 6;
@@ -280,7 +273,6 @@ declare const anyChainConstants: {
280
273
  readonly Ethereum: {
281
274
  readonly chainflipAssets: ["Eth", "Flip", "Usdc", "Usdt", "Wbtc"];
282
275
  readonly assets: ["ETH", "FLIP", "USDC", "USDT", "WBTC"];
283
- readonly rpcAssets: ["ETH", "FLIP", "USDC", "USDT", "WBTC"];
284
276
  readonly gasAsset: "Eth";
285
277
  readonly addressType: "Eth";
286
278
  readonly blockTimeSeconds: 12;
@@ -288,7 +280,6 @@ declare const anyChainConstants: {
288
280
  readonly Bitcoin: {
289
281
  readonly chainflipAssets: ["Btc"];
290
282
  readonly assets: ["BTC"];
291
- readonly rpcAssets: ["BTC"];
292
283
  readonly gasAsset: "Btc";
293
284
  readonly addressType: "Btc";
294
285
  readonly blockTimeSeconds: number;
@@ -296,7 +287,6 @@ declare const anyChainConstants: {
296
287
  readonly Arbitrum: {
297
288
  readonly chainflipAssets: ["ArbUsdc", "ArbUsdt", "ArbEth"];
298
289
  readonly assets: ["USDC", "USDT", "ETH"];
299
- readonly rpcAssets: ["USDC", "USDT", "ETH"];
300
290
  readonly gasAsset: "ArbEth";
301
291
  readonly addressType: "Arb";
302
292
  readonly blockTimeSeconds: 0.26;
@@ -304,7 +294,6 @@ declare const anyChainConstants: {
304
294
  readonly Solana: {
305
295
  readonly chainflipAssets: ["Sol", "SolUsdc", "SolUsdt"];
306
296
  readonly assets: ["SOL", "USDC", "USDT"];
307
- readonly rpcAssets: ["SOL", "USDC", "USDT"];
308
297
  readonly gasAsset: "Sol";
309
298
  readonly addressType: "Sol";
310
299
  readonly blockTimeSeconds: 0.8;
@@ -312,7 +301,6 @@ declare const anyChainConstants: {
312
301
  readonly Assethub: {
313
302
  readonly chainflipAssets: ["HubDot", "HubUsdt", "HubUsdc"];
314
303
  readonly assets: ["DOT", "USDT", "USDC"];
315
- readonly rpcAssets: ["DOT", "USDT", "USDC"];
316
304
  readonly gasAsset: "HubDot";
317
305
  readonly addressType: "Hub";
318
306
  readonly blockTimeSeconds: 3;
@@ -366,4 +354,4 @@ declare function isChainflipChain(chain: string): chain is ChainflipChain;
366
354
  declare function isLegacyChainflipChain(chain: string): chain is LegacyChainflipChain;
367
355
  declare function isAnyChainflipChain(chain: string): chain is AnyChainflipChain;
368
356
  //#endregion
369
- export { AddressType, AnyAddressType, AnyAssetAndChain, AnyAssetOfChain, AnyBaseAssetAndChain, AnyBaseChainAssetMap, AnyBaseChainflipAsset, AnyChainAssetMap, AnyChainMap, AnyChainflipAsset, AnyChainflipChain, AnyInternalAssetMap, AnyUncheckedAssetAndChain, AssetAndChain, AssetOfChain, AssetSymbol, BaseAssetAndChain, BaseChainAssetMap, BaseChainflipAsset, ChainAssetMap, ChainMap, ChainflipAsset, ChainflipChain, ChainflipEvmChain, ChainflipNetwork, InternalAssetMap, LegacyAddressType, LegacyChainflipAsset, LegacyChainflipChain, NonDeprecatedBaseChainflipAsset, PriceAsset, UncheckedAssetAndChain, addressTypes, anyAssetConstants, anyChainConstants, anyInternalAssetToRpcAsset, assetConstants, assetContractId, assetSymbols, baseChainflipAssets, chainConstants, chainContractId, chainflipAssetToPriceAssetMap, chainflipAssets, chainflipChains, chainflipEvmChains, chainflipNetworks, getAnyInternalAsset, getInternalAsset, getInternalAssets, internalAssetToRpcAsset, isAnyChainflipAsset, isAnyChainflipChain, isChainflipAsset, isChainflipChain, isLegacyChainflipAsset, isLegacyChainflipChain, isValidAssetAndChain, legacyAddressTypes, legacyChainflipAssets, legacyChainflipChains, priceAssets, readAssetValue };
357
+ export { AddressType, AnyAddressType, AnyAssetAndChain, AnyAssetOfChain, AnyBaseAssetAndChain, AnyBaseChainAssetMap, AnyBaseChainflipAsset, AnyChainAssetMap, AnyChainMap, AnyChainflipAsset, AnyChainflipChain, AnyInternalAssetMap, AnyUncheckedAssetAndChain, AssetAndChain, AssetOfChain, AssetSymbol, BaseAssetAndChain, BaseChainAssetMap, BaseChainflipAsset, ChainAssetMap, ChainMap, ChainflipAsset, ChainflipChain, ChainflipEvmChain, ChainflipNetwork, InternalAssetMap, LegacyAddressType, LegacyChainflipAsset, LegacyChainflipChain, PriceAsset, UncheckedAssetAndChain, addressTypes, anyAssetConstants, anyChainConstants, anyInternalAssetToRpcAsset, assetConstants, assetContractId, assetSymbols, baseChainflipAssets, chainConstants, chainContractId, chainflipAssetToPriceAssetMap, chainflipAssets, chainflipChains, chainflipEvmChains, chainflipNetworks, getAnyInternalAsset, getInternalAsset, getInternalAssets, internalAssetToRpcAsset, isAnyChainflipAsset, isAnyChainflipChain, isChainflipAsset, isChainflipChain, isLegacyChainflipAsset, isLegacyChainflipChain, isValidAssetAndChain, legacyAddressTypes, legacyChainflipAssets, legacyChainflipChains, priceAssets, readAssetValue };
@@ -163,13 +163,6 @@ const chainConstants = {
163
163
  "USDT",
164
164
  "WBTC"
165
165
  ],
166
- rpcAssets: [
167
- "ETH",
168
- "FLIP",
169
- "USDC",
170
- "USDT",
171
- "WBTC"
172
- ],
173
166
  gasAsset: "Eth",
174
167
  addressType: "Eth",
175
168
  blockTimeSeconds: 12
@@ -177,7 +170,6 @@ const chainConstants = {
177
170
  Bitcoin: {
178
171
  chainflipAssets: ["Btc"],
179
172
  assets: ["BTC"],
180
- rpcAssets: ["BTC"],
181
173
  gasAsset: "Btc",
182
174
  addressType: "Btc",
183
175
  blockTimeSeconds: 600
@@ -193,11 +185,6 @@ const chainConstants = {
193
185
  "USDT",
194
186
  "ETH"
195
187
  ],
196
- rpcAssets: [
197
- "USDC",
198
- "USDT",
199
- "ETH"
200
- ],
201
188
  gasAsset: "ArbEth",
202
189
  addressType: "Arb",
203
190
  blockTimeSeconds: .26
@@ -213,11 +200,6 @@ const chainConstants = {
213
200
  "USDC",
214
201
  "USDT"
215
202
  ],
216
- rpcAssets: [
217
- "SOL",
218
- "USDC",
219
- "USDT"
220
- ],
221
203
  gasAsset: "Sol",
222
204
  addressType: "Sol",
223
205
  blockTimeSeconds: .8
@@ -233,11 +215,6 @@ const chainConstants = {
233
215
  "USDT",
234
216
  "USDC"
235
217
  ],
236
- rpcAssets: [
237
- "DOT",
238
- "USDT",
239
- "USDC"
240
- ],
241
218
  gasAsset: "HubDot",
242
219
  addressType: "Hub",
243
220
  blockTimeSeconds: 3
@@ -248,7 +225,6 @@ const anyChainConstants = {
248
225
  Polkadot: {
249
226
  chainflipAssets: ["Dot"],
250
227
  assets: ["DOT"],
251
- rpcAssets: ["DOT"],
252
228
  gasAsset: "Dot",
253
229
  addressType: "Dot",
254
230
  blockTimeSeconds: 6
package/dist/consts.cjs CHANGED
@@ -211,6 +211,10 @@ const brokerAliasMap = {
211
211
  cFNqDaZ9apGKt9uXaGQGucWuizVeTms2cXq8hnYM8g7y99Cpy: {
212
212
  name: "Trocador",
213
213
  twitter: "@TrocadorApp"
214
+ },
215
+ cFMDwBJmeivhWdYp6wSjDUdzqDV64A4efceRYHyHWTPHfQUZX: {
216
+ name: "Xverse",
217
+ twitter: "@xverse"
214
218
  }
215
219
  };
216
220
  const lpAliasMap = {
package/dist/consts.mjs CHANGED
@@ -209,6 +209,10 @@ const brokerAliasMap = {
209
209
  cFNqDaZ9apGKt9uXaGQGucWuizVeTms2cXq8hnYM8g7y99Cpy: {
210
210
  name: "Trocador",
211
211
  twitter: "@TrocadorApp"
212
+ },
213
+ cFMDwBJmeivhWdYp6wSjDUdzqDV64A4efceRYHyHWTPHfQUZX: {
214
+ name: "Xverse",
215
+ twitter: "@xverse"
212
216
  }
213
217
  };
214
218
  const lpAliasMap = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chainflip/utils",
3
- "version": "2.1.2-beta.6",
3
+ "version": "2.1.3",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist",