@rabby-wallet/gnosis-sdk 1.4.3 → 1.4.4
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.d.ts +12 -0
- package/dist/api.js +13 -1
- package/package.json +2 -2
- package/src/api.ts +13 -1
package/dist/api.d.ts
CHANGED
|
@@ -122,6 +122,18 @@ export declare const HOST_MAP: {
|
|
|
122
122
|
* Berachain
|
|
123
123
|
*/
|
|
124
124
|
"80094": string;
|
|
125
|
+
/**
|
|
126
|
+
* ink
|
|
127
|
+
*/
|
|
128
|
+
"57073": string;
|
|
129
|
+
/**
|
|
130
|
+
* Hemi
|
|
131
|
+
*/
|
|
132
|
+
"43111": string;
|
|
133
|
+
/**
|
|
134
|
+
* Katana
|
|
135
|
+
*/
|
|
136
|
+
"747474": string;
|
|
125
137
|
};
|
|
126
138
|
export default class RequestProvider {
|
|
127
139
|
host: string;
|
package/dist/api.js
CHANGED
|
@@ -81,7 +81,19 @@ export const HOST_MAP = {
|
|
|
81
81
|
/**
|
|
82
82
|
* Berachain
|
|
83
83
|
*/
|
|
84
|
-
"80094": "https://safe-transaction-berachain.safe.global/api"
|
|
84
|
+
"80094": "https://safe-transaction-berachain.safe.global/api",
|
|
85
|
+
/**
|
|
86
|
+
* ink
|
|
87
|
+
*/
|
|
88
|
+
"57073": "https://safe-transaction-ink.safe.global/api",
|
|
89
|
+
/**
|
|
90
|
+
* Hemi
|
|
91
|
+
*/
|
|
92
|
+
"43111": "https://safe-transaction-hemi.safe.global/api",
|
|
93
|
+
/**
|
|
94
|
+
* Katana
|
|
95
|
+
*/
|
|
96
|
+
"747474": "https://safe-transaction-katana.safe.global/api"
|
|
85
97
|
};
|
|
86
98
|
export default class RequestProvider {
|
|
87
99
|
constructor(networkId, adapter) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rabby-wallet/gnosis-sdk",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.4",
|
|
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
|
"@safe-global/api-kit": "2.5.8",
|
|
18
18
|
"@safe-global/protocol-kit": "5.2.1",
|
|
19
|
-
"@safe-global/safe-deployments": "1.37.
|
|
19
|
+
"@safe-global/safe-deployments": "1.37.36",
|
|
20
20
|
"@safe-global/types-kit": "1.0.2",
|
|
21
21
|
"axios": "0.24.0",
|
|
22
22
|
"ethereumjs-util": "7.1.3",
|
package/src/api.ts
CHANGED
|
@@ -127,7 +127,19 @@ export const HOST_MAP = {
|
|
|
127
127
|
/**
|
|
128
128
|
* Berachain
|
|
129
129
|
*/
|
|
130
|
-
"80094": "https://safe-transaction-berachain.safe.global/api"
|
|
130
|
+
"80094": "https://safe-transaction-berachain.safe.global/api",
|
|
131
|
+
/**
|
|
132
|
+
* ink
|
|
133
|
+
*/
|
|
134
|
+
"57073": "https://safe-transaction-ink.safe.global/api",
|
|
135
|
+
/**
|
|
136
|
+
* Hemi
|
|
137
|
+
*/
|
|
138
|
+
"43111": "https://safe-transaction-hemi.safe.global/api",
|
|
139
|
+
/**
|
|
140
|
+
* Katana
|
|
141
|
+
*/
|
|
142
|
+
"747474": "https://safe-transaction-katana.safe.global/api"
|
|
131
143
|
};
|
|
132
144
|
|
|
133
145
|
export default class RequestProvider {
|