@lifi/types 3.2.6 → 3.2.8

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,20 @@
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
+ ### [3.2.8](https://github.com/lifinance/types/compare/v3.2.7...v3.2.8) (2023-04-21)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * add cbridge testnet USDC ([#163](https://github.com/lifinance/types/issues/163)) ([f039d8d](https://github.com/lifinance/types/commit/f039d8d19e1a70c66531cae501143e6c03a6f530))
11
+
12
+ ### [3.2.7](https://github.com/lifinance/types/compare/v3.2.6...v3.2.7) (2023-04-19)
13
+
14
+
15
+ ### Bug Fixes
16
+
17
+ * add BUSD to BSCT ([#162](https://github.com/lifinance/types/issues/162)) ([08bb821](https://github.com/lifinance/types/commit/08bb821f4751633197d37bd97e1e5563e27d3f75))
18
+
5
19
  ### [3.2.6](https://github.com/lifinance/types/compare/v3.2.5...v3.2.6) (2023-04-18)
6
20
 
7
21
 
package/dist/base.d.ts CHANGED
@@ -32,6 +32,7 @@ export declare enum CoinKey {
32
32
  EVM = "EVM",
33
33
  USDT = "USDT",
34
34
  USDC = "USDC",
35
+ cbtUSDC = "cbtUSDC",
35
36
  BUSD = "BUSD",
36
37
  TEST = "TEST",
37
38
  KAL = "KAL",
package/dist/base.js CHANGED
@@ -32,6 +32,7 @@ export var CoinKey;
32
32
  // Stable coins
33
33
  CoinKey["USDT"] = "USDT";
34
34
  CoinKey["USDC"] = "USDC";
35
+ CoinKey["cbtUSDC"] = "cbtUSDC";
35
36
  CoinKey["BUSD"] = "BUSD";
36
37
  // Testnet
37
38
  CoinKey["TEST"] = "TEST";
@@ -32,6 +32,7 @@ export declare enum CoinKey {
32
32
  EVM = "EVM",
33
33
  USDT = "USDT",
34
34
  USDC = "USDC",
35
+ cbtUSDC = "cbtUSDC",
35
36
  BUSD = "BUSD",
36
37
  TEST = "TEST",
37
38
  KAL = "KAL",
package/dist/cjs/base.js CHANGED
@@ -35,6 +35,7 @@ var CoinKey;
35
35
  // Stable coins
36
36
  CoinKey["USDT"] = "USDT";
37
37
  CoinKey["USDC"] = "USDC";
38
+ CoinKey["cbtUSDC"] = "cbtUSDC";
38
39
  CoinKey["BUSD"] = "BUSD";
39
40
  // Testnet
40
41
  CoinKey["TEST"] = "TEST";
package/dist/cjs/coins.js CHANGED
@@ -594,6 +594,27 @@ const basicCoins = [
594
594
  },
595
595
  },
596
596
  },
597
+ // cBridge USDC testtoken
598
+ {
599
+ key: base_1.CoinKey.cbtUSDC,
600
+ name: base_1.CoinKey.cbtUSDC,
601
+ logoURI: 'https://raw.githubusercontent.com/trustwallet/assets/master/blockchains/ethereum/assets/0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48/logo.png',
602
+ verified: true,
603
+ chains: {
604
+ [base_1.ChainId.MUM]: {
605
+ address: '0x6de33698e9e9b787e09d3bd7771ef63557e148bb',
606
+ decimals: 6,
607
+ },
608
+ [base_1.ChainId.AVA]: {
609
+ address: '0x2979a1cb90EEB9e75d7fB4f9813FCC40E4a7fD8b',
610
+ decimals: 6,
611
+ },
612
+ [base_1.ChainId.BSCT]: {
613
+ address: '0x317F8d18FB16E49a958Becd0EA72f8E153d25654',
614
+ decimals: 6,
615
+ },
616
+ },
617
+ },
597
618
  // USDC
598
619
  {
599
620
  key: base_1.CoinKey.USDC,
@@ -759,6 +780,10 @@ const basicCoins = [
759
780
  decimals: 18,
760
781
  },
761
782
  // testnets
783
+ [base_1.ChainId.BSCT]: {
784
+ address: '0xeB3Eb991D39Dac92616da64b7c6D5af5cCFf1627',
785
+ decimals: 18,
786
+ },
762
787
  [base_1.ChainId.LNAT]: {
763
788
  address: '0x7d43AABC515C356145049227CeE54B608342c0ad',
764
789
  decimals: 18,
package/dist/coins.js CHANGED
@@ -591,6 +591,27 @@ const basicCoins = [
591
591
  },
592
592
  },
593
593
  },
594
+ // cBridge USDC testtoken
595
+ {
596
+ key: CoinKey.cbtUSDC,
597
+ name: CoinKey.cbtUSDC,
598
+ logoURI: 'https://raw.githubusercontent.com/trustwallet/assets/master/blockchains/ethereum/assets/0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48/logo.png',
599
+ verified: true,
600
+ chains: {
601
+ [ChainId.MUM]: {
602
+ address: '0x6de33698e9e9b787e09d3bd7771ef63557e148bb',
603
+ decimals: 6,
604
+ },
605
+ [ChainId.AVA]: {
606
+ address: '0x2979a1cb90EEB9e75d7fB4f9813FCC40E4a7fD8b',
607
+ decimals: 6,
608
+ },
609
+ [ChainId.BSCT]: {
610
+ address: '0x317F8d18FB16E49a958Becd0EA72f8E153d25654',
611
+ decimals: 6,
612
+ },
613
+ },
614
+ },
594
615
  // USDC
595
616
  {
596
617
  key: CoinKey.USDC,
@@ -756,6 +777,10 @@ const basicCoins = [
756
777
  decimals: 18,
757
778
  },
758
779
  // testnets
780
+ [ChainId.BSCT]: {
781
+ address: '0xeB3Eb991D39Dac92616da64b7c6D5af5cCFf1627',
782
+ decimals: 18,
783
+ },
759
784
  [ChainId.LNAT]: {
760
785
  address: '0x7d43AABC515C356145049227CeE54B608342c0ad',
761
786
  decimals: 18,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lifi/types",
3
- "version": "3.2.6",
3
+ "version": "3.2.8",
4
4
  "description": "Types for the LI.FI stack",
5
5
  "main": "./dist/cjs/index.js",
6
6
  "module": "./dist/index.js",