@lifi/types 1.6.0 → 1.7.0

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.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,14 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ## [1.7.0](https://github.com/lifinance/types/compare/v1.6.0...v1.7.0) (2022-09-13)
6
+
7
+
8
+ ### Features
9
+
10
+ * **api:** add bridgeExplorerLink ([#96](https://github.com/lifinance/types/issues/96)) ([9f37087](https://github.com/lifinance/types/commit/9f37087fe5815512104b3a78d00526188de2c341))
11
+ * **exchanges:** add soulswap on FTM ([#95](https://github.com/lifinance/types/issues/95)) ([3fdf438](https://github.com/lifinance/types/commit/3fdf438066af9f09ff89942613dde0876d638a7f))
12
+
5
13
  ## [1.6.0](https://github.com/lifinance/types/compare/v1.5.1...v1.6.0) (2022-09-02)
6
14
 
7
15
 
package/dist/api.d.ts CHANGED
@@ -178,6 +178,7 @@ export interface StatusResponse extends StatusInformation {
178
178
  sending: TransactionInfo;
179
179
  receiving?: TransactionInfo;
180
180
  tool?: string;
181
+ bridgeExplorerLink?: string;
181
182
  }
182
183
  export interface ChainsResponse {
183
184
  chains: Chain[];
package/dist/cjs/api.d.ts CHANGED
@@ -178,6 +178,7 @@ export interface StatusResponse extends StatusInformation {
178
178
  sending: TransactionInfo;
179
179
  receiving?: TransactionInfo;
180
180
  tool?: string;
181
+ bridgeExplorerLink?: string;
181
182
  }
182
183
  export interface ChainsResponse {
183
184
  chains: Chain[];
@@ -337,6 +337,26 @@ exports.supportedExchanges = [
337
337
  (0, _1.findDefaultToken)(_1.CoinKey.DAI, _1.ChainId.FTM),
338
338
  ],
339
339
  },
340
+ {
341
+ key: 'soulswap-ftm',
342
+ name: 'SoulSwap',
343
+ chainId: _1.ChainId.FTM,
344
+ webUrl: 'https://app.soulswap.finance/',
345
+ logoURI: 'https://raw.githubusercontent.com/soulswapfinance/assets/prod/blockchains/fantom/assets/0xe2fb177009FF39F52C0134E8007FA0e4BaAcBd07/logo.png',
346
+ tokenlistUrl: 'https://raw.githubusercontent.com/soulswapfinance/default-token-list/master/soulswap.tokenlist.json',
347
+ routerAddress: '0x6b3d631B87FE27aF29efeC61d2ab8CE4d621cCBF',
348
+ factoryAddress: '0x1120e150dA9def6Fe930f4fEDeD18ef57c0CA7eF',
349
+ initCodeHash: '0xf3dcc3c6c6e34d3981dd429ac942301b9ebdd05de1be17f646b55476c44dc951',
350
+ baseTokens: [
351
+ (0, _1.findWrappedGasOnChain)(_1.ChainId.FTM),
352
+ {
353
+ address: '0xe2fb177009FF39F52C0134E8007FA0e4BaAcBd07',
354
+ symbol: 'SOUL',
355
+ decimals: 18,
356
+ chainId: _1.ChainId.FTM,
357
+ },
358
+ ],
359
+ },
340
360
  // 1666600000 - Harmony Mainnet Shard 0
341
361
  {
342
362
  key: 'viperswap-one',
package/dist/exchanges.js CHANGED
@@ -334,6 +334,26 @@ export const supportedExchanges = [
334
334
  findDefaultToken(CoinKey.DAI, ChainId.FTM),
335
335
  ],
336
336
  },
337
+ {
338
+ key: 'soulswap-ftm',
339
+ name: 'SoulSwap',
340
+ chainId: ChainId.FTM,
341
+ webUrl: 'https://app.soulswap.finance/',
342
+ logoURI: 'https://raw.githubusercontent.com/soulswapfinance/assets/prod/blockchains/fantom/assets/0xe2fb177009FF39F52C0134E8007FA0e4BaAcBd07/logo.png',
343
+ tokenlistUrl: 'https://raw.githubusercontent.com/soulswapfinance/default-token-list/master/soulswap.tokenlist.json',
344
+ routerAddress: '0x6b3d631B87FE27aF29efeC61d2ab8CE4d621cCBF',
345
+ factoryAddress: '0x1120e150dA9def6Fe930f4fEDeD18ef57c0CA7eF',
346
+ initCodeHash: '0xf3dcc3c6c6e34d3981dd429ac942301b9ebdd05de1be17f646b55476c44dc951',
347
+ baseTokens: [
348
+ findWrappedGasOnChain(ChainId.FTM),
349
+ {
350
+ address: '0xe2fb177009FF39F52C0134E8007FA0e4BaAcBd07',
351
+ symbol: 'SOUL',
352
+ decimals: 18,
353
+ chainId: ChainId.FTM,
354
+ },
355
+ ],
356
+ },
337
357
  // 1666600000 - Harmony Mainnet Shard 0
338
358
  {
339
359
  key: 'viperswap-one',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lifi/types",
3
- "version": "1.6.0",
3
+ "version": "1.7.0",
4
4
  "description": "Types for the LI.FI stack",
5
5
  "main": "./dist/cjs/index.js",
6
6
  "module": "./dist/index.js",