@lifi/data-types 6.23.0-beta.0 → 6.24.0-beta.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.
@@ -174,6 +174,10 @@ export const basicCoins: BasicCoin[] = [
174
174
  address: '0x0000000000000000000000000000000000000000',
175
175
  decimals: 18,
176
176
  },
177
+ [ChainId.HPL]: {
178
+ address: '0x0000000000000000000000000000000000000000',
179
+ decimals: 18,
180
+ },
177
181
  },
178
182
  },
179
183
  // > MATIC
@@ -795,6 +799,11 @@ export const basicCoins: BasicCoin[] = [
795
799
  address: '0x43F2376D5D03553aE72F4A8093bbe9de4336EB08',
796
800
  decimals: 6,
797
801
  },
802
+ [ChainId.PLU]: {
803
+ address: '0xda6087E69C51E7D31b6DBAD276a3c44703DFdCAd',
804
+ decimals: 6,
805
+ name: 'Bridged USDT (Stargate)',
806
+ },
798
807
  },
799
808
  },
800
809
 
@@ -968,6 +977,10 @@ export const basicCoins: BasicCoin[] = [
968
977
  address: '0x0b7007c13325c48911f73a2dad5fa5dcbf808adc',
969
978
  decimals: 6,
970
979
  },
980
+ [ChainId.HPL]: {
981
+ address: '0xaf88d065e77c8cC2239327C5EDb3A432268e5831',
982
+ decimals: 6,
983
+ },
971
984
  },
972
985
  },
973
986
  // USDC.e
@@ -1119,6 +1132,11 @@ export const basicCoins: BasicCoin[] = [
1119
1132
  decimals: 6,
1120
1133
  name: 'Bridged USDC (Stargate)',
1121
1134
  },
1135
+ [ChainId.PLU]: {
1136
+ address: '0x78adD880A697070c1e765Ac44D65323a0DcCE913',
1137
+ decimals: 6,
1138
+ name: 'Bridged USDC (Stargate)',
1139
+ },
1122
1140
  },
1123
1141
  },
1124
1142
  // axlUSDC
@@ -1766,6 +1784,10 @@ export const basicCoins: BasicCoin[] = [
1766
1784
  address: '0xc99a6a985ed2cac1ef41640596c5a5f9f4e19ef5',
1767
1785
  decimals: 18,
1768
1786
  },
1787
+ [ChainId.PLU]: {
1788
+ address: '0xca59cA09E5602fAe8B629DeE83FfA819741f14be',
1789
+ decimals: 18,
1790
+ },
1769
1791
  },
1770
1792
  },
1771
1793
 
@@ -2609,13 +2631,41 @@ export const basicCoins: BasicCoin[] = [
2609
2631
  'https://static.debank.com/image/ron_token/logo_url/0xe514d9deb7966c8be0ca922de8a064264ea6bcd4/f65d4fdc17d5533c59ebcd6eb1f47320.png',
2610
2632
  verified: true,
2611
2633
  chains: {
2612
- [ChainId.NIB]: {
2634
+ [ChainId.RON]: {
2613
2635
  address: '0xe514d9deb7966c8be0ca922de8a064264ea6bcd4',
2614
2636
  decimals: 18,
2615
2637
  },
2616
2638
  },
2617
2639
  },
2618
2640
 
2641
+ // Plume
2642
+ {
2643
+ key: CoinKey.PLU,
2644
+ name: 'Plume',
2645
+ logoURI:
2646
+ 'https://static.debank.com/image/plume_token/logo_url/plume/20ecb01558edaac59ad4cd20b9ccc51d.png',
2647
+ verified: true,
2648
+ chains: {
2649
+ [ChainId.PLU]: {
2650
+ address: '0x0000000000000000000000000000000000000000',
2651
+ decimals: 18,
2652
+ },
2653
+ },
2654
+ },
2655
+ {
2656
+ key: CoinKey.WPLU,
2657
+ name: 'Wrapped Plume',
2658
+ logoURI:
2659
+ 'https://static.debank.com/image/plume_token/logo_url/plume/20ecb01558edaac59ad4cd20b9ccc51d.png',
2660
+ verified: true,
2661
+ chains: {
2662
+ [ChainId.PLU]: {
2663
+ address: '0xea237441c92cae6fc17caaf9a7acb3f953be4bd1',
2664
+ decimals: 18,
2665
+ },
2666
+ },
2667
+ },
2668
+
2619
2669
  // > Bitcoin
2620
2670
  {
2621
2671
  key: CoinKey.BTC,
@@ -3327,6 +3377,16 @@ export const wrappedTokens: { [ChainId: string]: StaticToken } = {
3327
3377
  logoURI:
3328
3378
  'https://static.debank.com/image/ron_token/logo_url/0xe514d9deb7966c8be0ca922de8a064264ea6bcd4/f65d4fdc17d5533c59ebcd6eb1f47320.png',
3329
3379
  },
3380
+ [ChainId.PLU]: {
3381
+ address: '0xea237441c92cae6fc17caaf9a7acb3f953be4bd1',
3382
+ symbol: CoinKey.WPLU,
3383
+ decimals: 18,
3384
+ chainId: ChainId.PLU,
3385
+ coinKey: CoinKey.WPLU,
3386
+ name: 'Wrapped Plume',
3387
+ logoURI:
3388
+ 'https://static.debank.com/image/plume_token/logo_url/plume/20ecb01558edaac59ad4cd20b9ccc51d.png',
3389
+ },
3330
3390
  }
3331
3391
  export const findDefaultCoin = (coinKey: CoinKey): Coin => {
3332
3392
  const coin = defaultCoins.find((coin) => coin.key === coinKey)
package/src/multicall.ts CHANGED
@@ -70,6 +70,8 @@ export const multicallAddresses: { [ChainId: number]: string } = {
70
70
  [ChainId.VAN]: '0xD8d2dFca27E8797fd779F8547166A2d3B29d360E',
71
71
  [ChainId.NIB]: '0xcA11bde05977b3631167028862bE2a173976CA11',
72
72
  [ChainId.RON]: '0xcA11bde05977b3631167028862bE2a173976CA11',
73
+ [ChainId.PLU]: '0xcA11bde05977b3631167028862bE2a173976CA11',
74
+ [ChainId.HPL]: '0xcA11bde05977b3631167028862bE2a173976CA11',
73
75
 
74
76
  // TODO
75
77
  // [ChainId.EXP]: '', // TODO