@rabby-wallet/gnosis-sdk 1.3.6 → 1.3.8
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 +12 -0
- package/package.json +2 -2
- package/src/api.ts +12 -0
package/dist/api.js
CHANGED
|
@@ -50,6 +50,18 @@ 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",
|
|
61
|
+
/**
|
|
62
|
+
* X Layer
|
|
63
|
+
*/
|
|
64
|
+
"196": "https://safe-transaction-xlayer.safe.global/api/v1",
|
|
53
65
|
};
|
|
54
66
|
export default class RequestProvider {
|
|
55
67
|
constructor(networkId, adapter) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rabby-wallet/gnosis-sdk",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.8",
|
|
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.
|
|
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,18 @@ 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",
|
|
107
|
+
/**
|
|
108
|
+
* X Layer
|
|
109
|
+
*/
|
|
110
|
+
"196": "https://safe-transaction-xlayer.safe.global/api/v1",
|
|
99
111
|
};
|
|
100
112
|
|
|
101
113
|
export default class RequestProvider {
|