@lifi/data-types 6.55.2 → 6.56.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.
@@ -212,11 +212,14 @@ export const basicCoins: BasicCoin[] = [
212
212
  decimals: 18,
213
213
  name: 'Matic Token',
214
214
  },
215
- // https://evmexplorer.velas.com/token/0x6ab0B8C1a35F9F4Ce107cCBd05049CB1Dbd99Ec5/
216
215
  [ChainId.VEL]: {
217
216
  address: '0x6ab0b8c1a35f9f4ce107ccbd05049cb1dbd99ec5',
218
217
  decimals: 18,
219
218
  },
219
+ [ChainId.TLO]: {
220
+ address: '0xA0fB8cd450c8Fd3a11901876cD5f17eB47C6bc50',
221
+ decimals: 18,
222
+ },
220
223
  },
221
224
  },
222
225
  // > POL migrated from MATIC
@@ -294,6 +297,10 @@ export const basicCoins: BasicCoin[] = [
294
297
  address: '0x24cd1762978Ed41920d3194dC3A945C50B9a2F5E',
295
298
  decimals: 18,
296
299
  },
300
+ [ChainId.TLO]: {
301
+ address: '0x26Ed0F16e777C94A6FE798F9E20298034930Bae8',
302
+ decimals: 18,
303
+ },
297
304
  },
298
305
  },
299
306
  // > DAI
@@ -848,6 +855,10 @@ export const basicCoins: BasicCoin[] = [
848
855
  address: '0xbB0D083fb1be0A9f6157ec484b6C79E0A4e31C2e',
849
856
  decimals: 6,
850
857
  },
858
+ [ChainId.TLO]: {
859
+ address: '0x975Ed13fa16857E83e7C493C7741D556eaaD4A3f',
860
+ decimals: 6,
861
+ },
851
862
  },
852
863
  },
853
864
 
@@ -1047,6 +1058,10 @@ export const basicCoins: BasicCoin[] = [
1047
1058
  address: '0x222365EF19F7947e5484218551B56bb3965Aa7aF',
1048
1059
  decimals: 6,
1049
1060
  },
1061
+ [ChainId.TLO]: {
1062
+ address: '0x8D97Cea50351Fb4329d591682b148D43a0C3611b',
1063
+ decimals: 6,
1064
+ },
1050
1065
  },
1051
1066
  },
1052
1067
  // USDC.e
@@ -2025,6 +2040,10 @@ export const basicCoins: BasicCoin[] = [
2025
2040
  address: '0x29dfce9c22003a4999930382fd00f9fd6133acd1',
2026
2041
  decimals: 18,
2027
2042
  },
2043
+ [ChainId.TLO]: {
2044
+ address: '0x922d641a426dcffaef11680e5358f34d97d112e1',
2045
+ decimals: 18,
2046
+ },
2028
2047
  },
2029
2048
  },
2030
2049
 
@@ -3108,6 +3127,36 @@ export const basicCoins: BasicCoin[] = [
3108
3127
  },
3109
3128
  },
3110
3129
 
3130
+ // Tlos Telos native token
3131
+ {
3132
+ key: CoinKey.TLOS,
3133
+ name: 'TLOS',
3134
+ logoURI:
3135
+ 'https://raw.githubusercontent.com/telosnetwork/token-list/main/logos/telos.png',
3136
+ verified: true,
3137
+ chains: {
3138
+ [ChainId.TLO]: {
3139
+ address: '0x0000000000000000000000000000000000001000',
3140
+ decimals: 18,
3141
+ },
3142
+ },
3143
+ },
3144
+
3145
+ // WTLOS (wrapped Telos native)
3146
+ {
3147
+ key: CoinKey.WTLOS,
3148
+ name: 'Wrapped Telos',
3149
+ logoURI:
3150
+ 'https://static.debank.com/image/tlos_token/logo_url/0xd102ce6a4db07d247fcc28f366a623df0938ca9e/c32b2fda6bf1cc523d518481038d8f08.png',
3151
+ verified: true,
3152
+ chains: {
3153
+ [ChainId.TLO]: {
3154
+ address: '0xD102cE6A4dB07D247fcc28F366A623Df0938CA9E',
3155
+ decimals: 18,
3156
+ },
3157
+ },
3158
+ },
3159
+
3111
3160
  // > Bitcoin
3112
3161
  {
3113
3162
  key: CoinKey.BTC,
@@ -3937,6 +3986,17 @@ export const wrappedTokens: { [ChainId: string]: StaticToken } = {
3937
3986
  logoURI:
3938
3987
  'https://static.debank.com/image/botanix_token/logo_url/0x0d2437f93fed6ea64ef01ccde385fb1263910c56/5a41d4f22c915deb64fc82beedb14895.png',
3939
3988
  },
3989
+ [ChainId.TLO]: {
3990
+ // https://www.teloscan.io/address/0xD102cE6A4dB07D247fcc28F366A623Df0938CA9E
3991
+ address: '0xD102cE6A4dB07D247fcc28F366A623Df0938CA9E',
3992
+ symbol: 'WTLOS',
3993
+ decimals: 18,
3994
+ chainId: ChainId.TLO,
3995
+ coinKey: CoinKey.WTLOS,
3996
+ name: 'Wrapped Telos',
3997
+ logoURI:
3998
+ 'https://static.debank.com/image/tlos_token/logo_url/0xd102ce6a4db07d247fcc28f366a623df0938ca9e/c32b2fda6bf1cc523d518481038d8f08.png',
3999
+ },
3940
4000
  }
3941
4001
  export const findDefaultCoin = (coinKey: CoinKey): Coin => {
3942
4002
  const coin = defaultCoins.find((coin) => coin.key === coinKey)
package/src/multicall.ts CHANGED
@@ -80,13 +80,13 @@ export const multicallAddresses: { [ChainId: number]: string } = {
80
80
  [ChainId.MEG]: '0xcA11bde05977b3631167028862bE2a173976CA11',
81
81
  [ChainId.BOT]: '0xcA11bde05977b3631167028862bE2a173976CA11',
82
82
  [ChainId.HPL]: '0xcA11bde05977b3631167028862bE2a173976CA11', // HyperLiquid is not EVM compatible, but we support it via our EVM-compatible API wrapper.
83
+ [ChainId.TLO]: '0xcA11bde05977b3631167028862bE2a173976CA11',
83
84
 
84
85
  // TODO
85
86
  // [ChainId.EXP]: '', // TODO
86
87
  // [ChainId.TCH]: '', // TODO
87
88
  // [ChainId.UBQ]: '', // TODO
88
89
  // [ChainId.DIO]: '', // TODO
89
- // [ChainId.TLO]: '', // TODO
90
90
  // [ChainId.SHI]: '', // TODO
91
91
  // [ChainId.GL1]: '', // TODO
92
92
  // [ChainId.TBW]: '', // TODO