@rabby-wallet/gnosis-sdk 1.3.6 → 1.3.7

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/dist/api.js CHANGED
@@ -50,6 +50,14 @@ const HOST_MAP = {
50
50
  * zksync era
51
51
  */
52
52
  "324": "https://safe-transaction-zksync.safe.global/api/v1",
53
+ /**
54
+ * scroll
55
+ */
56
+ "534352": "https://safe-transaction-scroll.safe.global/api/v1",
57
+ /**
58
+ * linea
59
+ */
60
+ "59144": "https://safe-transaction-linea.safe.global/api/v1",
53
61
  };
54
62
  export default class RequestProvider {
55
63
  constructor(networkId, adapter) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rabby-wallet/gnosis-sdk",
3
- "version": "1.3.6",
3
+ "version": "1.3.7",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -16,7 +16,7 @@
16
16
  "@ethersproject/solidity": "^5.5.0",
17
17
  "@gnosis.pm/safe-core-sdk": "^1.0.0",
18
18
  "@gnosis.pm/safe-core-sdk-types": "^0.1.1",
19
- "@safe-global/safe-deployments": "^1.25.0",
19
+ "@safe-global/safe-deployments": "^1.37.2",
20
20
  "axios": "^0.24.0",
21
21
  "bignumber.js": "^9.0.2",
22
22
  "ethereumjs-util": "^7.1.3",
package/src/api.ts CHANGED
@@ -96,6 +96,14 @@ const HOST_MAP = {
96
96
  * zksync era
97
97
  */
98
98
  "324": "https://safe-transaction-zksync.safe.global/api/v1",
99
+ /**
100
+ * scroll
101
+ */
102
+ "534352": "https://safe-transaction-scroll.safe.global/api/v1",
103
+ /**
104
+ * linea
105
+ */
106
+ "59144": "https://safe-transaction-linea.safe.global/api/v1",
99
107
  };
100
108
 
101
109
  export default class RequestProvider {