@lifi/data-types 6.18.0 → 6.19.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.
@@ -1561,7 +1561,7 @@ export const supportedEVMChains: EVMChain[] = [
1561
1561
  mainnet: true,
1562
1562
  logoURI:
1563
1563
  'https://raw.githubusercontent.com/lifinance/types/main/src/assets/icons/chains/katana.svg',
1564
- multicallAddress: multicallAddresses[ChainId.FLR],
1564
+ multicallAddress: multicallAddresses[ChainId.KAT],
1565
1565
  relayerSupported: false,
1566
1566
 
1567
1567
  metamask: {
@@ -1576,4 +1576,29 @@ export const supportedEVMChains: EVMChain[] = [
1576
1576
  rpcUrls: ['https://rpc.katana.network'],
1577
1577
  },
1578
1578
  },
1579
+
1580
+ {
1581
+ key: ChainKey.VAN,
1582
+ chainType: ChainType.EVM,
1583
+ name: 'Vana',
1584
+ coin: CoinKey.VAN,
1585
+ id: ChainId.VAN,
1586
+ mainnet: true,
1587
+ logoURI:
1588
+ 'https://raw.githubusercontent.com/lifinance/types/main/src/assets/icons/chains/vana.svg',
1589
+ multicallAddress: multicallAddresses[ChainId.VAN],
1590
+ relayerSupported: false,
1591
+
1592
+ metamask: {
1593
+ chainId: prefixChainId(ChainId.VAN),
1594
+ blockExplorerUrls: ['https://vanascan.io/'],
1595
+ chainName: 'Vana',
1596
+ nativeCurrency: {
1597
+ name: CoinKey.VAN,
1598
+ symbol: CoinKey.VAN,
1599
+ decimals: 18,
1600
+ },
1601
+ rpcUrls: ['https://rpc.vana.org'],
1602
+ },
1603
+ },
1579
1604
  ]
@@ -783,6 +783,10 @@ export const basicCoins: BasicCoin[] = [
783
783
  address: '0x2DCa96907fde857dd3D816880A0df407eeB2D2F2',
784
784
  decimals: 6,
785
785
  },
786
+ [ChainId.VAN]: {
787
+ address: '0x88853d410299bcbfe5fcc9eef93c03115e908279',
788
+ decimals: 6,
789
+ },
786
790
  },
787
791
  },
788
792
 
@@ -1093,6 +1097,11 @@ export const basicCoins: BasicCoin[] = [
1093
1097
  decimals: 6,
1094
1098
  name: 'Vault Bridge USDC',
1095
1099
  },
1100
+ [ChainId.VAN]: {
1101
+ address: '0xf1815bd50389c46847f0bda824ec8da914045d14',
1102
+ decimals: 6,
1103
+ name: 'Bridged USDC (Stargate)',
1104
+ },
1096
1105
  },
1097
1106
  },
1098
1107
  // axlUSDC
@@ -1681,6 +1690,10 @@ export const basicCoins: BasicCoin[] = [
1681
1690
  address: '0xEE7D8BCFb72bC1880D0Cf19822eB0A2e6577aB62',
1682
1691
  decimals: 18,
1683
1692
  },
1693
+ [ChainId.VAN]: {
1694
+ address: '0x2f6f07cdcf3588944bf4c42ac74ff24bf56e7590',
1695
+ decimals: 18,
1696
+ },
1684
1697
  },
1685
1698
  },
1686
1699
 
@@ -2447,6 +2460,34 @@ export const basicCoins: BasicCoin[] = [
2447
2460
  },
2448
2461
  },
2449
2462
 
2463
+ // Vana
2464
+ {
2465
+ key: CoinKey.VAN,
2466
+ name: 'Vana',
2467
+ logoURI:
2468
+ 'https://static.debank.com/image/vana_token/logo_url/vana/4e286c230ccb1e83967dc85edefbc513.png',
2469
+ verified: true,
2470
+ chains: {
2471
+ [ChainId.VAN]: {
2472
+ address: '0x0000000000000000000000000000000000000000',
2473
+ decimals: 18,
2474
+ },
2475
+ },
2476
+ },
2477
+ {
2478
+ key: CoinKey.WVAN,
2479
+ name: 'Wrapped Vana',
2480
+ logoURI:
2481
+ 'https://static.debank.com/image/vana_token/logo_url/0x00eddd9621fb08436d0331c149d1690909a5906d/732f5948570498c551fb29bc71c88296.png',
2482
+ verified: true,
2483
+ chains: {
2484
+ [ChainId.VAN]: {
2485
+ address: '0x00eddd9621fb08436d0331c149d1690909a5906d',
2486
+ decimals: 18,
2487
+ },
2488
+ },
2489
+ },
2490
+
2450
2491
  // > Bitcoin
2451
2492
  {
2452
2493
  key: CoinKey.BTC,
@@ -3128,6 +3169,16 @@ export const wrappedTokens: { [ChainId: string]: StaticToken } = {
3128
3169
  logoURI:
3129
3170
  'https://static.debank.com/image/eth_token/logo_url/0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2/61844453e63cf81301f845d7864236f6.png',
3130
3171
  },
3172
+ [ChainId.VAN]: {
3173
+ address: '0x00eddd9621fb08436d0331c149d1690909a5906d',
3174
+ symbol: CoinKey.WVAN,
3175
+ decimals: 18,
3176
+ chainId: ChainId.VAN,
3177
+ coinKey: CoinKey.WVAN,
3178
+ name: 'Wrapped Vana',
3179
+ logoURI:
3180
+ 'https://static.debank.com/image/vana_token/logo_url/0x00eddd9621fb08436d0331c149d1690909a5906d/732f5948570498c551fb29bc71c88296.png',
3181
+ },
3131
3182
  }
3132
3183
  export const findDefaultCoin = (coinKey: CoinKey): Coin => {
3133
3184
  const coin = defaultCoins.find((coin) => coin.key === coinKey)
package/src/multicall.ts CHANGED
@@ -67,6 +67,7 @@ export const multicallAddresses: { [ChainId: number]: string } = {
67
67
  [ChainId.VIC]: '0xcA11bde05977b3631167028862bE2a173976CA11',
68
68
  [ChainId.FLR]: '0xcA11bde05977b3631167028862bE2a173976CA11',
69
69
  [ChainId.KAT]: '0xcA11bde05977b3631167028862bE2a173976CA11',
70
+ [ChainId.VAN]: '0xD8d2dFca27E8797fd779F8547166A2d3B29d360E',
70
71
 
71
72
  // TODO
72
73
  // [ChainId.EXP]: '', // TODO