@instadapp/avocado-base 0.0.39 → 0.0.41

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.
@@ -28,9 +28,9 @@ const formattedAmount = computed(() =>
28
28
  <div class="flex items-center gap-5" v-else>
29
29
  <span v-if="!compact" class="capitalize text-xs sm:text-sm">{{ metadata.type }}</span>
30
30
  <span class="inline-flex gap-2.5 items-center">
31
- <img width="20" height="20" class="w-5 h-5" :src="token?.logo_url" />
32
31
  {{ formattedAmount }}
33
32
  <span class="uppercase">{{ token?.symbol }}</span>
33
+ <img width="20" height="20" class="w-5 h-5" :src="token?.logo_url" />
34
34
  <SvgoArrowRight class="w-4 h-4 text-slate-400 mx-2" />
35
35
  <NuxtLink
36
36
  class="text-primary"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instadapp/avocado-base",
3
- "version": "0.0.39",
3
+ "version": "0.0.41",
4
4
  "type": "module",
5
5
  "main": "./nuxt.config.ts",
6
6
  "types": "global.d.ts",
package/utils/network.ts CHANGED
@@ -268,6 +268,21 @@ export const networks: Network[] = [
268
268
  },
269
269
  ];
270
270
 
271
+ export const chainUsdcAddresses = [
272
+ { chainId: 1, address: '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48' },
273
+ { chainId: 10, address: '0x7f5c764cbc14f9669b88837ca1490cca17c31607' },
274
+ { chainId: 56, address: '0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d' },
275
+ { chainId: 100, address: '0xddafbb505ad214d7b80b1f830fccc89b60fb7a83' },
276
+ { chainId: 137, address: '0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174' },
277
+ { chainId: 250, address: '0x04068da6c83afcfa0e13ba15a6696662335d5b75' },
278
+ { chainId: 42161, address: '0xff970a61a04b1ca14834a43f5de4533ebddb5cc8' },
279
+ { chainId: 42161, address: '0xaf88d065e77c8cc2239327c5edb3a432268e5831' },
280
+ { chainId: 43114, address: '0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e' },
281
+ { chainId: 43114, address: '0xa7d7079b0fead91f3e65f86e8915cb59c1a4c664' },
282
+ { chainId: 1101, address: '0xa8ce8aee21bc2a48a5ef670afcc9274c7bbbc035' },
283
+ { chainId: 1313161554, address: '0xB12BFcA5A55806AaF64E99521918A4bf0fC40802' },
284
+ ];
285
+
271
286
  export const getNetworkByChainId = (
272
287
  chainId: ChainId | number | string
273
288
  ): Network => {