@instadapp/avocado-base 0.0.67 → 0.0.69

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instadapp/avocado-base",
3
- "version": "0.0.67",
3
+ "version": "0.0.69",
4
4
  "type": "module",
5
5
  "main": "./nuxt.config.ts",
6
6
  "types": "global.d.ts",
package/utils/metadata.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  import { ethers, utils } from "ethers";
2
2
  import { Forwarder__factory, MultisigForwarder__factory } from "../contracts";
3
+ import { toBN } from "./bignumber";
3
4
 
4
5
  export const MetadataEnums = {
5
6
  "transfer": "transfer",
package/utils/network.ts CHANGED
@@ -10,7 +10,9 @@ import {
10
10
  AVO_STAGING_EXPLORER_URL,
11
11
  } from './avocado'
12
12
 
13
- export const bridgeDisabledNetworks = [1101];
13
+ export const bridgeDisabledNetworks = [];
14
+
15
+ export const networksSimulationNotSupported = [1313161554, 1101]
14
16
 
15
17
  export const networks: Network[] = [
16
18
  {
@@ -88,6 +90,7 @@ export const networks: Network[] = [
88
90
  name: 'Base',
89
91
  chainId: 8453,
90
92
  color: '#1E2024',
93
+ ankrName:'base',
91
94
  explorerUrl: 'https://basescan.org',
92
95
  apiURL: 'https://api.basescan.org',
93
96
  get serverRpcUrl() {
@@ -133,6 +136,7 @@ export const networks: Network[] = [
133
136
  name: "Polygon zkEVM",
134
137
  chainId: 1101,
135
138
  color: "#8544f6",
139
+ ankrName: 'polygon_zkevm',
136
140
  explorerUrl: "https://zkevm.polygonscan.com",
137
141
  apiURL: 'https://api-zkevm.polygonscan.com',
138
142
  balanceResolverAddress: "0x48D1Fa5Ee6691a1E0B45d2B515650997BEA27a01",
@@ -225,6 +229,7 @@ export const networks: Network[] = [
225
229
  debankName: "xdai",
226
230
  zerionName: "xdai",
227
231
  color: "#04795C",
232
+ ankrName: 'gnosis',
228
233
  chainId: 100,
229
234
  balanceResolverAddress: "0xfaa244e276b1597f663975ed007ee4ff70d27849",
230
235
  explorerUrl: "https://gnosisscan.io",