@safe-global/api-kit 1.0.0 → 1.1.0
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/LICENSE.md +9 -9
- package/README.md +311 -311
- package/dist/src/SafeApiKit.d.ts +1 -1
- package/dist/src/SafeApiKit.js +2 -2
- package/dist/src/types/safeTransactionServiceTypes.d.ts +2 -1
- package/dist/src/utils/httpRequests.d.ts +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +62 -62
package/LICENSE.md
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2021-2023 Safe Ecosystem Foundation
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
6
|
-
|
|
7
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
8
|
-
|
|
9
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2021-2023 Safe Ecosystem Foundation
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
6
|
+
|
|
7
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
8
|
+
|
|
9
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,311 +1,311 @@
|
|
|
1
|
-
# Safe API Kit
|
|
2
|
-
|
|
3
|
-
[](https://badge.fury.io/js/%40safe-global%2Fapi-kit)
|
|
4
|
-
[](https://github.com/safe-global/safe-core-sdk/releases)
|
|
5
|
-
[](https://github.com/safe-global/safe-core-sdk/blob/main/LICENSE.md)
|
|
6
|
-
|
|
7
|
-
Software development kit that facilitates the interaction with the [Safe Transaction Service API](https://github.com/safe-global/safe-transaction-service).
|
|
8
|
-
|
|
9
|
-
## Table of contents
|
|
10
|
-
|
|
11
|
-
- [Installation](#installation)
|
|
12
|
-
- [Build](#build)
|
|
13
|
-
- [Initialization](#initialization)
|
|
14
|
-
- [API Reference](#api-reference)
|
|
15
|
-
- [License](#license)
|
|
16
|
-
- [Contributors](#contributors)
|
|
17
|
-
|
|
18
|
-
## <a name="installation">Installation</a>
|
|
19
|
-
|
|
20
|
-
Install the package with yarn or npm:
|
|
21
|
-
|
|
22
|
-
```bash
|
|
23
|
-
yarn install
|
|
24
|
-
npm install
|
|
25
|
-
```
|
|
26
|
-
|
|
27
|
-
## <a name="build">Build</a>
|
|
28
|
-
|
|
29
|
-
Build the package with yarn or npm:
|
|
30
|
-
|
|
31
|
-
```bash
|
|
32
|
-
yarn build
|
|
33
|
-
npm build
|
|
34
|
-
```
|
|
35
|
-
|
|
36
|
-
## <a name="initialization">Initialization</a>
|
|
37
|
-
|
|
38
|
-
### Instantiate an EthAdapter
|
|
39
|
-
|
|
40
|
-
First of all, we need to create an `EthAdapter`, which contains all the required utilities for the SDKs to interact with the blockchain. It acts as a wrapper for [web3.js](https://web3js.readthedocs.io/) or [ethers.js](https://docs.ethers.io/v5/) Ethereum libraries.
|
|
41
|
-
|
|
42
|
-
Depending on the library used by the Dapp, there are two options:
|
|
43
|
-
|
|
44
|
-
- [Create an `EthersAdapter` instance](https://github.com/safe-global/safe-core-sdk/tree/main/packages/protocol-kit/src/adapters/ethers)
|
|
45
|
-
- [Create a `Web3Adapter` instance](https://github.com/safe-global/safe-core-sdk/tree/main/packages/protocol-kit/src/adapters/web3)
|
|
46
|
-
|
|
47
|
-
Once the instance of `EthersAdapter` or `Web3Adapter` is created, it can be used in the SDK initialization.
|
|
48
|
-
|
|
49
|
-
### Initialize the SafeApiKit
|
|
50
|
-
|
|
51
|
-
```js
|
|
52
|
-
import SafeApiKit from '@safe-global/api-kit'
|
|
53
|
-
|
|
54
|
-
const safeService = new SafeApiKit({
|
|
55
|
-
txServiceUrl: 'https://safe-transaction-mainnet.safe.global',
|
|
56
|
-
ethAdapter
|
|
57
|
-
})
|
|
58
|
-
```
|
|
59
|
-
|
|
60
|
-
## <a name="api-reference">API Reference</a>
|
|
61
|
-
|
|
62
|
-
### getServiceInfo
|
|
63
|
-
|
|
64
|
-
Returns the information and configuration of the service.
|
|
65
|
-
|
|
66
|
-
```js
|
|
67
|
-
const serviceInfo: SafeServiceInfoResponse = await safeService.getServiceInfo()
|
|
68
|
-
```
|
|
69
|
-
|
|
70
|
-
### getServiceMasterCopiesInfo
|
|
71
|
-
|
|
72
|
-
Returns the list of Safe master copies.
|
|
73
|
-
|
|
74
|
-
```js
|
|
75
|
-
const masterCopies: MasterCopyResponse = await safeService.getServiceMasterCopiesInfo()
|
|
76
|
-
```
|
|
77
|
-
|
|
78
|
-
### decodeData
|
|
79
|
-
|
|
80
|
-
Decodes the specified Safe transaction data.
|
|
81
|
-
|
|
82
|
-
```js
|
|
83
|
-
const decodedData = await safeService.decodeData(data)
|
|
84
|
-
```
|
|
85
|
-
|
|
86
|
-
### getSafesByOwner
|
|
87
|
-
|
|
88
|
-
Returns the list of Safes where the address provided is an owner.
|
|
89
|
-
|
|
90
|
-
```js
|
|
91
|
-
const safes: OwnerResponse = await safeService.getSafesByOwner(ownerAddress)
|
|
92
|
-
```
|
|
93
|
-
|
|
94
|
-
### getSafesByModule
|
|
95
|
-
|
|
96
|
-
Returns the list of Safes where the module address provided is enabled.
|
|
97
|
-
|
|
98
|
-
```js
|
|
99
|
-
const safes: ModulesResponse = await getSafesByModule(moduleAddress)
|
|
100
|
-
```
|
|
101
|
-
|
|
102
|
-
### getTransaction
|
|
103
|
-
|
|
104
|
-
Returns all the information of a Safe transaction.
|
|
105
|
-
|
|
106
|
-
```js
|
|
107
|
-
const tx: SafeMultisigTransactionResponse = await safeService.getTransaction(safeTxHash)
|
|
108
|
-
```
|
|
109
|
-
|
|
110
|
-
### getTransactionConfirmations
|
|
111
|
-
|
|
112
|
-
Returns the list of confirmations for a given a Safe transaction.
|
|
113
|
-
|
|
114
|
-
```js
|
|
115
|
-
const confirmations: SafeMultisigConfirmationListResponse =
|
|
116
|
-
await safeService.getTransactionConfirmations(safeTxHash)
|
|
117
|
-
```
|
|
118
|
-
|
|
119
|
-
### confirmTransaction
|
|
120
|
-
|
|
121
|
-
Adds a confirmation for a Safe transaction.
|
|
122
|
-
|
|
123
|
-
```js
|
|
124
|
-
const signature: SignatureResponse = await safeService.confirmTransaction(safeTxHash, signature)
|
|
125
|
-
```
|
|
126
|
-
|
|
127
|
-
### getSafeInfo
|
|
128
|
-
|
|
129
|
-
Returns the information and configuration of the provided Safe address.
|
|
130
|
-
|
|
131
|
-
```js
|
|
132
|
-
const safeInfo: SafeInfoResponse = await safeService.getSafeInfo(safeAddress)
|
|
133
|
-
```
|
|
134
|
-
|
|
135
|
-
### getSafeDelegates
|
|
136
|
-
|
|
137
|
-
Returns the list of delegates for a given Safe address.
|
|
138
|
-
|
|
139
|
-
```js
|
|
140
|
-
const delegateConfig: GetSafeDelegateProps = {
|
|
141
|
-
safeAddress, // Optional
|
|
142
|
-
delegateAddress, // Optional
|
|
143
|
-
delegatorAddress, // Optional
|
|
144
|
-
label, // Optional
|
|
145
|
-
limit, // Optional
|
|
146
|
-
offset // Optional
|
|
147
|
-
}
|
|
148
|
-
const delegates: SafeDelegateListResponse = await safeService.getSafeDelegates(delegateConfig)
|
|
149
|
-
```
|
|
150
|
-
|
|
151
|
-
### addSafeDelegate
|
|
152
|
-
|
|
153
|
-
Adds a new delegate for a given Safe address.
|
|
154
|
-
|
|
155
|
-
```js
|
|
156
|
-
const delegateConfig: AddSafeDelegateProps = {
|
|
157
|
-
safeAddress, // Optional
|
|
158
|
-
delegateAddress,
|
|
159
|
-
delegatorAddress,
|
|
160
|
-
label,
|
|
161
|
-
signer
|
|
162
|
-
}
|
|
163
|
-
await safeService.addSafeDelegate(delegateConfig)
|
|
164
|
-
```
|
|
165
|
-
|
|
166
|
-
### removeSafeDelegate
|
|
167
|
-
|
|
168
|
-
Removes a delegate for a given Safe address.
|
|
169
|
-
|
|
170
|
-
```js
|
|
171
|
-
const delegateConfig: DeleteSafeDelegateProps = {
|
|
172
|
-
delegateAddress,
|
|
173
|
-
delegatorAddress,
|
|
174
|
-
signer
|
|
175
|
-
}
|
|
176
|
-
await safeService.removeSafeDelegate(delegateConfig)
|
|
177
|
-
```
|
|
178
|
-
|
|
179
|
-
### getSafeCreationInfo
|
|
180
|
-
|
|
181
|
-
Returns the creation information of a Safe.
|
|
182
|
-
|
|
183
|
-
```js
|
|
184
|
-
const safeCreationInfo: SafeCreationInfoResponse = await safeService.getSafeCreationInfo(
|
|
185
|
-
safeAddress
|
|
186
|
-
)
|
|
187
|
-
```
|
|
188
|
-
|
|
189
|
-
### estimateSafeTransaction
|
|
190
|
-
|
|
191
|
-
Estimates the safeTxGas for a given Safe multi-signature transaction.
|
|
192
|
-
|
|
193
|
-
```js
|
|
194
|
-
const estimateTx: SafeMultisigTransactionEstimateResponse =
|
|
195
|
-
await safeService.estimateSafeTransaction(safeAddress, safeTransaction)
|
|
196
|
-
```
|
|
197
|
-
|
|
198
|
-
### proposeTransaction
|
|
199
|
-
|
|
200
|
-
Creates a new multi-signature transaction and stores it in the Safe Transaction Service.
|
|
201
|
-
|
|
202
|
-
```js
|
|
203
|
-
const transactionConfig: ProposeTransactionProps = {
|
|
204
|
-
safeAddress,
|
|
205
|
-
safeTxHash,
|
|
206
|
-
safeTransactionData,
|
|
207
|
-
senderAddress,
|
|
208
|
-
senderSignature,
|
|
209
|
-
origin
|
|
210
|
-
}
|
|
211
|
-
await safeService.proposeTransaction(transactionConfig)
|
|
212
|
-
```
|
|
213
|
-
|
|
214
|
-
### getIncomingTransactions
|
|
215
|
-
|
|
216
|
-
Returns the history of incoming transactions of a Safe account.
|
|
217
|
-
|
|
218
|
-
```js
|
|
219
|
-
const incomingTxs: TransferListResponse = await safeService.getIncomingTransactions(safeAddress)
|
|
220
|
-
```
|
|
221
|
-
|
|
222
|
-
### getModuleTransactions
|
|
223
|
-
|
|
224
|
-
Returns the history of module transactions of a Safe account.
|
|
225
|
-
|
|
226
|
-
```js
|
|
227
|
-
const moduleTxs: SafeModuleTransactionListResponse = await safeService.getModuleTransactions(
|
|
228
|
-
safeAddress
|
|
229
|
-
)
|
|
230
|
-
```
|
|
231
|
-
|
|
232
|
-
### getMultisigTransactions
|
|
233
|
-
|
|
234
|
-
Returns the history of multi-signature transactions of a Safe account.
|
|
235
|
-
|
|
236
|
-
```js
|
|
237
|
-
const multisigTxs: SafeMultisigTransactionListResponse = await safeService.getMultisigTransactions(
|
|
238
|
-
safeAddress
|
|
239
|
-
)
|
|
240
|
-
```
|
|
241
|
-
|
|
242
|
-
### getPendingTransactions
|
|
243
|
-
|
|
244
|
-
Returns the list of multi-signature transactions that are waiting for the confirmation of the Safe owners.
|
|
245
|
-
|
|
246
|
-
```js
|
|
247
|
-
const pendingTxs: SafeMultisigTransactionListResponse = await safeService.getPendingTransactions(
|
|
248
|
-
safeAddress
|
|
249
|
-
)
|
|
250
|
-
```
|
|
251
|
-
|
|
252
|
-
```js
|
|
253
|
-
const pendingTxs: SafeMultisigTransactionListResponse = await safeService.getPendingTransactions(
|
|
254
|
-
safeAddress,
|
|
255
|
-
currentNonce
|
|
256
|
-
)
|
|
257
|
-
```
|
|
258
|
-
|
|
259
|
-
### getAllTransactions
|
|
260
|
-
|
|
261
|
-
Returns a list of transactions for a Safe. The list has different structures depending on the transaction type.
|
|
262
|
-
|
|
263
|
-
```js
|
|
264
|
-
const allTxs: SafeMultisigTransactionListResponse = await safeService.getAllTransactions(
|
|
265
|
-
safeAddress
|
|
266
|
-
)
|
|
267
|
-
```
|
|
268
|
-
|
|
269
|
-
```js
|
|
270
|
-
const allTxsOptions: AllTransactionsOptions = {
|
|
271
|
-
executed,
|
|
272
|
-
queued,
|
|
273
|
-
trusted
|
|
274
|
-
}
|
|
275
|
-
const allTxs: SafeMultisigTransactionListResponse = await safeService.getAllTransactions(
|
|
276
|
-
safeAddress,
|
|
277
|
-
allTxsOptions
|
|
278
|
-
)
|
|
279
|
-
```
|
|
280
|
-
|
|
281
|
-
### getNextNonce
|
|
282
|
-
|
|
283
|
-
Returns the right nonce to propose a new transaction right after the last pending transaction.
|
|
284
|
-
|
|
285
|
-
```js
|
|
286
|
-
const nextNonce = await safeService.getNextNonce(safeAddress)
|
|
287
|
-
```
|
|
288
|
-
|
|
289
|
-
### getTokenList
|
|
290
|
-
|
|
291
|
-
Returns the list of all the ERC20 tokens handled by the Safe.
|
|
292
|
-
|
|
293
|
-
```js
|
|
294
|
-
const tokens: TokenInfoListResponse = await safeService.getTokenList()
|
|
295
|
-
```
|
|
296
|
-
|
|
297
|
-
### getToken
|
|
298
|
-
|
|
299
|
-
Returns the information of a given ERC20 token.
|
|
300
|
-
|
|
301
|
-
```js
|
|
302
|
-
const token: TokenInfoResponse = await safeService.getToken(tokenAddress)
|
|
303
|
-
```
|
|
304
|
-
|
|
305
|
-
## <a name="license">License</a>
|
|
306
|
-
|
|
307
|
-
This library is released under MIT.
|
|
308
|
-
|
|
309
|
-
## <a name="contributors">Contributors</a>
|
|
310
|
-
|
|
311
|
-
- Germán Martínez ([germartinez](https://github.com/germartinez))
|
|
1
|
+
# Safe API Kit
|
|
2
|
+
|
|
3
|
+
[](https://badge.fury.io/js/%40safe-global%2Fapi-kit)
|
|
4
|
+
[](https://github.com/safe-global/safe-core-sdk/releases)
|
|
5
|
+
[](https://github.com/safe-global/safe-core-sdk/blob/main/LICENSE.md)
|
|
6
|
+
|
|
7
|
+
Software development kit that facilitates the interaction with the [Safe Transaction Service API](https://github.com/safe-global/safe-transaction-service).
|
|
8
|
+
|
|
9
|
+
## Table of contents
|
|
10
|
+
|
|
11
|
+
- [Installation](#installation)
|
|
12
|
+
- [Build](#build)
|
|
13
|
+
- [Initialization](#initialization)
|
|
14
|
+
- [API Reference](#api-reference)
|
|
15
|
+
- [License](#license)
|
|
16
|
+
- [Contributors](#contributors)
|
|
17
|
+
|
|
18
|
+
## <a name="installation">Installation</a>
|
|
19
|
+
|
|
20
|
+
Install the package with yarn or npm:
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
yarn install
|
|
24
|
+
npm install
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
## <a name="build">Build</a>
|
|
28
|
+
|
|
29
|
+
Build the package with yarn or npm:
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
yarn build
|
|
33
|
+
npm build
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
## <a name="initialization">Initialization</a>
|
|
37
|
+
|
|
38
|
+
### Instantiate an EthAdapter
|
|
39
|
+
|
|
40
|
+
First of all, we need to create an `EthAdapter`, which contains all the required utilities for the SDKs to interact with the blockchain. It acts as a wrapper for [web3.js](https://web3js.readthedocs.io/) or [ethers.js](https://docs.ethers.io/v5/) Ethereum libraries.
|
|
41
|
+
|
|
42
|
+
Depending on the library used by the Dapp, there are two options:
|
|
43
|
+
|
|
44
|
+
- [Create an `EthersAdapter` instance](https://github.com/safe-global/safe-core-sdk/tree/main/packages/protocol-kit/src/adapters/ethers)
|
|
45
|
+
- [Create a `Web3Adapter` instance](https://github.com/safe-global/safe-core-sdk/tree/main/packages/protocol-kit/src/adapters/web3)
|
|
46
|
+
|
|
47
|
+
Once the instance of `EthersAdapter` or `Web3Adapter` is created, it can be used in the SDK initialization.
|
|
48
|
+
|
|
49
|
+
### Initialize the SafeApiKit
|
|
50
|
+
|
|
51
|
+
```js
|
|
52
|
+
import SafeApiKit from '@safe-global/api-kit'
|
|
53
|
+
|
|
54
|
+
const safeService = new SafeApiKit({
|
|
55
|
+
txServiceUrl: 'https://safe-transaction-mainnet.safe.global',
|
|
56
|
+
ethAdapter
|
|
57
|
+
})
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
## <a name="api-reference">API Reference</a>
|
|
61
|
+
|
|
62
|
+
### getServiceInfo
|
|
63
|
+
|
|
64
|
+
Returns the information and configuration of the service.
|
|
65
|
+
|
|
66
|
+
```js
|
|
67
|
+
const serviceInfo: SafeServiceInfoResponse = await safeService.getServiceInfo()
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
### getServiceMasterCopiesInfo
|
|
71
|
+
|
|
72
|
+
Returns the list of Safe master copies.
|
|
73
|
+
|
|
74
|
+
```js
|
|
75
|
+
const masterCopies: MasterCopyResponse = await safeService.getServiceMasterCopiesInfo()
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
### decodeData
|
|
79
|
+
|
|
80
|
+
Decodes the specified Safe transaction data.
|
|
81
|
+
|
|
82
|
+
```js
|
|
83
|
+
const decodedData = await safeService.decodeData(data)
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
### getSafesByOwner
|
|
87
|
+
|
|
88
|
+
Returns the list of Safes where the address provided is an owner.
|
|
89
|
+
|
|
90
|
+
```js
|
|
91
|
+
const safes: OwnerResponse = await safeService.getSafesByOwner(ownerAddress)
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
### getSafesByModule
|
|
95
|
+
|
|
96
|
+
Returns the list of Safes where the module address provided is enabled.
|
|
97
|
+
|
|
98
|
+
```js
|
|
99
|
+
const safes: ModulesResponse = await getSafesByModule(moduleAddress)
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
### getTransaction
|
|
103
|
+
|
|
104
|
+
Returns all the information of a Safe transaction.
|
|
105
|
+
|
|
106
|
+
```js
|
|
107
|
+
const tx: SafeMultisigTransactionResponse = await safeService.getTransaction(safeTxHash)
|
|
108
|
+
```
|
|
109
|
+
|
|
110
|
+
### getTransactionConfirmations
|
|
111
|
+
|
|
112
|
+
Returns the list of confirmations for a given a Safe transaction.
|
|
113
|
+
|
|
114
|
+
```js
|
|
115
|
+
const confirmations: SafeMultisigConfirmationListResponse =
|
|
116
|
+
await safeService.getTransactionConfirmations(safeTxHash)
|
|
117
|
+
```
|
|
118
|
+
|
|
119
|
+
### confirmTransaction
|
|
120
|
+
|
|
121
|
+
Adds a confirmation for a Safe transaction.
|
|
122
|
+
|
|
123
|
+
```js
|
|
124
|
+
const signature: SignatureResponse = await safeService.confirmTransaction(safeTxHash, signature)
|
|
125
|
+
```
|
|
126
|
+
|
|
127
|
+
### getSafeInfo
|
|
128
|
+
|
|
129
|
+
Returns the information and configuration of the provided Safe address.
|
|
130
|
+
|
|
131
|
+
```js
|
|
132
|
+
const safeInfo: SafeInfoResponse = await safeService.getSafeInfo(safeAddress)
|
|
133
|
+
```
|
|
134
|
+
|
|
135
|
+
### getSafeDelegates
|
|
136
|
+
|
|
137
|
+
Returns the list of delegates for a given Safe address.
|
|
138
|
+
|
|
139
|
+
```js
|
|
140
|
+
const delegateConfig: GetSafeDelegateProps = {
|
|
141
|
+
safeAddress, // Optional
|
|
142
|
+
delegateAddress, // Optional
|
|
143
|
+
delegatorAddress, // Optional
|
|
144
|
+
label, // Optional
|
|
145
|
+
limit, // Optional
|
|
146
|
+
offset // Optional
|
|
147
|
+
}
|
|
148
|
+
const delegates: SafeDelegateListResponse = await safeService.getSafeDelegates(delegateConfig)
|
|
149
|
+
```
|
|
150
|
+
|
|
151
|
+
### addSafeDelegate
|
|
152
|
+
|
|
153
|
+
Adds a new delegate for a given Safe address.
|
|
154
|
+
|
|
155
|
+
```js
|
|
156
|
+
const delegateConfig: AddSafeDelegateProps = {
|
|
157
|
+
safeAddress, // Optional
|
|
158
|
+
delegateAddress,
|
|
159
|
+
delegatorAddress,
|
|
160
|
+
label,
|
|
161
|
+
signer
|
|
162
|
+
}
|
|
163
|
+
await safeService.addSafeDelegate(delegateConfig)
|
|
164
|
+
```
|
|
165
|
+
|
|
166
|
+
### removeSafeDelegate
|
|
167
|
+
|
|
168
|
+
Removes a delegate for a given Safe address.
|
|
169
|
+
|
|
170
|
+
```js
|
|
171
|
+
const delegateConfig: DeleteSafeDelegateProps = {
|
|
172
|
+
delegateAddress,
|
|
173
|
+
delegatorAddress,
|
|
174
|
+
signer
|
|
175
|
+
}
|
|
176
|
+
await safeService.removeSafeDelegate(delegateConfig)
|
|
177
|
+
```
|
|
178
|
+
|
|
179
|
+
### getSafeCreationInfo
|
|
180
|
+
|
|
181
|
+
Returns the creation information of a Safe.
|
|
182
|
+
|
|
183
|
+
```js
|
|
184
|
+
const safeCreationInfo: SafeCreationInfoResponse = await safeService.getSafeCreationInfo(
|
|
185
|
+
safeAddress
|
|
186
|
+
)
|
|
187
|
+
```
|
|
188
|
+
|
|
189
|
+
### estimateSafeTransaction
|
|
190
|
+
|
|
191
|
+
Estimates the safeTxGas for a given Safe multi-signature transaction.
|
|
192
|
+
|
|
193
|
+
```js
|
|
194
|
+
const estimateTx: SafeMultisigTransactionEstimateResponse =
|
|
195
|
+
await safeService.estimateSafeTransaction(safeAddress, safeTransaction)
|
|
196
|
+
```
|
|
197
|
+
|
|
198
|
+
### proposeTransaction
|
|
199
|
+
|
|
200
|
+
Creates a new multi-signature transaction and stores it in the Safe Transaction Service.
|
|
201
|
+
|
|
202
|
+
```js
|
|
203
|
+
const transactionConfig: ProposeTransactionProps = {
|
|
204
|
+
safeAddress,
|
|
205
|
+
safeTxHash,
|
|
206
|
+
safeTransactionData,
|
|
207
|
+
senderAddress,
|
|
208
|
+
senderSignature,
|
|
209
|
+
origin
|
|
210
|
+
}
|
|
211
|
+
await safeService.proposeTransaction(transactionConfig)
|
|
212
|
+
```
|
|
213
|
+
|
|
214
|
+
### getIncomingTransactions
|
|
215
|
+
|
|
216
|
+
Returns the history of incoming transactions of a Safe account.
|
|
217
|
+
|
|
218
|
+
```js
|
|
219
|
+
const incomingTxs: TransferListResponse = await safeService.getIncomingTransactions(safeAddress)
|
|
220
|
+
```
|
|
221
|
+
|
|
222
|
+
### getModuleTransactions
|
|
223
|
+
|
|
224
|
+
Returns the history of module transactions of a Safe account.
|
|
225
|
+
|
|
226
|
+
```js
|
|
227
|
+
const moduleTxs: SafeModuleTransactionListResponse = await safeService.getModuleTransactions(
|
|
228
|
+
safeAddress
|
|
229
|
+
)
|
|
230
|
+
```
|
|
231
|
+
|
|
232
|
+
### getMultisigTransactions
|
|
233
|
+
|
|
234
|
+
Returns the history of multi-signature transactions of a Safe account.
|
|
235
|
+
|
|
236
|
+
```js
|
|
237
|
+
const multisigTxs: SafeMultisigTransactionListResponse = await safeService.getMultisigTransactions(
|
|
238
|
+
safeAddress
|
|
239
|
+
)
|
|
240
|
+
```
|
|
241
|
+
|
|
242
|
+
### getPendingTransactions
|
|
243
|
+
|
|
244
|
+
Returns the list of multi-signature transactions that are waiting for the confirmation of the Safe owners.
|
|
245
|
+
|
|
246
|
+
```js
|
|
247
|
+
const pendingTxs: SafeMultisigTransactionListResponse = await safeService.getPendingTransactions(
|
|
248
|
+
safeAddress
|
|
249
|
+
)
|
|
250
|
+
```
|
|
251
|
+
|
|
252
|
+
```js
|
|
253
|
+
const pendingTxs: SafeMultisigTransactionListResponse = await safeService.getPendingTransactions(
|
|
254
|
+
safeAddress,
|
|
255
|
+
currentNonce
|
|
256
|
+
)
|
|
257
|
+
```
|
|
258
|
+
|
|
259
|
+
### getAllTransactions
|
|
260
|
+
|
|
261
|
+
Returns a list of transactions for a Safe. The list has different structures depending on the transaction type.
|
|
262
|
+
|
|
263
|
+
```js
|
|
264
|
+
const allTxs: SafeMultisigTransactionListResponse = await safeService.getAllTransactions(
|
|
265
|
+
safeAddress
|
|
266
|
+
)
|
|
267
|
+
```
|
|
268
|
+
|
|
269
|
+
```js
|
|
270
|
+
const allTxsOptions: AllTransactionsOptions = {
|
|
271
|
+
executed,
|
|
272
|
+
queued,
|
|
273
|
+
trusted
|
|
274
|
+
}
|
|
275
|
+
const allTxs: SafeMultisigTransactionListResponse = await safeService.getAllTransactions(
|
|
276
|
+
safeAddress,
|
|
277
|
+
allTxsOptions
|
|
278
|
+
)
|
|
279
|
+
```
|
|
280
|
+
|
|
281
|
+
### getNextNonce
|
|
282
|
+
|
|
283
|
+
Returns the right nonce to propose a new transaction right after the last pending transaction.
|
|
284
|
+
|
|
285
|
+
```js
|
|
286
|
+
const nextNonce = await safeService.getNextNonce(safeAddress)
|
|
287
|
+
```
|
|
288
|
+
|
|
289
|
+
### getTokenList
|
|
290
|
+
|
|
291
|
+
Returns the list of all the ERC20 tokens handled by the Safe.
|
|
292
|
+
|
|
293
|
+
```js
|
|
294
|
+
const tokens: TokenInfoListResponse = await safeService.getTokenList()
|
|
295
|
+
```
|
|
296
|
+
|
|
297
|
+
### getToken
|
|
298
|
+
|
|
299
|
+
Returns the information of a given ERC20 token.
|
|
300
|
+
|
|
301
|
+
```js
|
|
302
|
+
const token: TokenInfoResponse = await safeService.getToken(tokenAddress)
|
|
303
|
+
```
|
|
304
|
+
|
|
305
|
+
## <a name="license">License</a>
|
|
306
|
+
|
|
307
|
+
This library is released under MIT.
|
|
308
|
+
|
|
309
|
+
## <a name="contributors">Contributors</a>
|
|
310
|
+
|
|
311
|
+
- Germán Martínez ([germartinez](https://github.com/germartinez))
|
package/dist/src/SafeApiKit.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AddSafeDelegateProps, AllTransactionsListResponse, AllTransactionsOptions, DeleteSafeDelegateProps, GetSafeDelegateProps, MasterCopyResponse, ModulesResponse, OwnerResponse, ProposeTransactionProps, SafeCreationInfoResponse, SafeDelegateListResponse, SafeDelegateResponse, SafeInfoResponse, SafeModuleTransactionListResponse, SafeMultisigTransactionEstimate, SafeMultisigTransactionEstimateResponse, SafeMultisigTransactionListResponse, SafeServiceInfoResponse, SignatureResponse, TokenInfoListResponse, TokenInfoResponse, TransferListResponse } from '
|
|
1
|
+
import { AddSafeDelegateProps, AllTransactionsListResponse, AllTransactionsOptions, DeleteSafeDelegateProps, GetSafeDelegateProps, MasterCopyResponse, ModulesResponse, OwnerResponse, ProposeTransactionProps, SafeCreationInfoResponse, SafeDelegateListResponse, SafeDelegateResponse, SafeInfoResponse, SafeModuleTransactionListResponse, SafeMultisigTransactionEstimate, SafeMultisigTransactionEstimateResponse, SafeMultisigTransactionListResponse, SafeServiceInfoResponse, SignatureResponse, TokenInfoListResponse, TokenInfoResponse, TransferListResponse } from './types/safeTransactionServiceTypes';
|
|
2
2
|
import { EthAdapter, SafeMultisigConfirmationListResponse, SafeMultisigTransactionResponse } from '@safe-global/safe-core-sdk-types';
|
|
3
3
|
export interface SafeApiKitConfig {
|
|
4
4
|
/** txServiceUrl - Safe Transaction Service URL */
|
package/dist/src/SafeApiKit.js
CHANGED
|
@@ -12,8 +12,8 @@ var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (
|
|
|
12
12
|
};
|
|
13
13
|
var _SafeApiKit_txServiceBaseUrl, _SafeApiKit_ethAdapter;
|
|
14
14
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
-
const utils_1 = require("
|
|
16
|
-
const httpRequests_1 = require("
|
|
15
|
+
const utils_1 = require("./utils");
|
|
16
|
+
const httpRequests_1 = require("./utils/httpRequests");
|
|
17
17
|
class SafeApiKit {
|
|
18
18
|
constructor({ txServiceUrl, ethAdapter }) {
|
|
19
19
|
_SafeApiKit_txServiceBaseUrl.set(this, void 0);
|
|
@@ -32,6 +32,7 @@ export type SafeInfoResponse = {
|
|
|
32
32
|
readonly masterCopy: string;
|
|
33
33
|
readonly modules: string[];
|
|
34
34
|
readonly fallbackHandler: string;
|
|
35
|
+
readonly guard: string;
|
|
35
36
|
readonly version: string;
|
|
36
37
|
};
|
|
37
38
|
export type OwnerResponse = {
|
|
@@ -165,7 +166,7 @@ export type TokenInfoListResponse = {
|
|
|
165
166
|
readonly count: number;
|
|
166
167
|
readonly next?: string;
|
|
167
168
|
readonly previous?: string;
|
|
168
|
-
readonly results:
|
|
169
|
+
readonly results: TokenInfoResponse[];
|
|
169
170
|
};
|
|
170
171
|
export type TransferWithTokenInfoResponse = TransferResponse & {
|
|
171
172
|
readonly tokenInfo: TokenInfoResponse;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../node_modules/typescript/lib/lib.scripthost.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/typescript/lib/lib.es2019.full.d.ts","../../../node_modules/@ethersproject/bytes/lib/index.d.ts","../../../node_modules/@ethersproject/bignumber/lib/bignumber.d.ts","../../../node_modules/@ethersproject/bignumber/lib/fixednumber.d.ts","../../../node_modules/@ethersproject/bignumber/lib/index.d.ts","../../../node_modules/@ethersproject/networks/lib/types.d.ts","../../../node_modules/@ethersproject/networks/lib/index.d.ts","../../../node_modules/@ethersproject/properties/lib/index.d.ts","../../../node_modules/@ethersproject/transactions/lib/index.d.ts","../../../node_modules/@ethersproject/web/lib/index.d.ts","../../../node_modules/@ethersproject/abstract-provider/lib/index.d.ts","../../../node_modules/@ethersproject/abstract-signer/lib/index.d.ts","../../safe-core-sdk-types/dist/src/contracts/CompatibilityFallbackHandlerContract.d.ts","../../../node_modules/@ethersproject/abi/lib/fragments.d.ts","../../../node_modules/@ethersproject/abi/lib/coders/abstract-coder.d.ts","../../../node_modules/@ethersproject/abi/lib/abi-coder.d.ts","../../../node_modules/@ethersproject/abi/lib/interface.d.ts","../../../node_modules/@ethersproject/abi/lib/index.d.ts","../../../node_modules/@ethersproject/contracts/lib/index.d.ts","../../../node_modules/web3-core-helpers/types/index.d.ts","../../../node_modules/web3-core-method/types/index.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/dom-events.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/globals.global.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@types/bn.js/index.d.ts","../../../node_modules/bignumber.js/bignumber.d.ts","../../../node_modules/web3-core/types/index.d.ts","../../safe-core-sdk-types/src/types.ts","../../safe-core-sdk-types/dist/src/contracts/CreateCallContract.d.ts","../../safe-core-sdk-types/dist/src/contracts/GnosisSafeContract.d.ts","../../safe-core-sdk-types/dist/src/contracts/GnosisSafeProxyFactoryContract.d.ts","../../safe-core-sdk-types/dist/src/contracts/MultiSendCallOnlyContract.d.ts","../../safe-core-sdk-types/dist/src/contracts/MultiSendContract.d.ts","../../safe-core-sdk-types/dist/src/contracts/SignMessageLibContract.d.ts","../../../node_modules/@safe-global/safe-deployments/dist/types.d.ts","../../../node_modules/@safe-global/safe-deployments/dist/safes.d.ts","../../../node_modules/@safe-global/safe-deployments/dist/factories.d.ts","../../../node_modules/@safe-global/safe-deployments/dist/libs.d.ts","../../../node_modules/@safe-global/safe-deployments/dist/handler.d.ts","../../../node_modules/@safe-global/safe-deployments/dist/index.d.ts","../../../node_modules/web3-utils/types/index.d.ts","../../safe-core-sdk-types/src/contracts/CompatibilityFallbackHandlerContract.ts","../../safe-core-sdk-types/src/contracts/CreateCallContract.ts","../../safe-core-sdk-types/src/contracts/GnosisSafeContract.ts","../../safe-core-sdk-types/src/contracts/GnosisSafeProxyFactoryContract.ts","../../safe-core-sdk-types/src/contracts/MultiSendCallOnlyContract.ts","../../safe-core-sdk-types/src/contracts/MultiSendContract.ts","../../safe-core-sdk-types/src/contracts/SignMessageLibContract.ts","../../safe-core-sdk-types/dist/src/ethereumLibs/EthAdapter.d.ts","../../safe-core-sdk-types/dist/src/types.d.ts","../../safe-core-sdk-types/dist/src/index.d.ts","../src/types/safeTransactionServiceTypes.ts","../src/utils/index.ts","../../../node_modules/@types/node-fetch/node_modules/form-data/index.d.ts","../../../node_modules/@types/node-fetch/externals.d.ts","../../../node_modules/@types/node-fetch/index.d.ts","../src/utils/httpRequests.ts","../src/SafeApiKit.ts","../src/index.ts","../../../node_modules/@types/abstract-leveldown/index.d.ts","../../../node_modules/@types/accepts/index.d.ts","../../../node_modules/@types/async-eventemitter/index.d.ts","../../../node_modules/@babel/types/lib/index.d.ts","../../../node_modules/@types/babel__generator/index.d.ts","../../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../../node_modules/@types/babel__template/index.d.ts","../../../node_modules/@types/babel__traverse/index.d.ts","../../../node_modules/@types/babel__core/index.d.ts","../../../node_modules/@types/connect/index.d.ts","../../../node_modules/@types/body-parser/index.d.ts","../../../node_modules/keyv/src/index.d.ts","../../../node_modules/@types/http-cache-semantics/index.d.ts","../../../node_modules/@types/responselike/index.d.ts","../../../node_modules/@types/cacheable-request/index.d.ts","../../../node_modules/@types/chai/index.d.ts","../../../node_modules/@types/chai-as-promised/index.d.ts","../../../node_modules/@types/cors/index.d.ts","../../../node_modules/@types/range-parser/index.d.ts","../../../node_modules/@types/qs/index.d.ts","../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/@types/mime/Mime.d.ts","../../../node_modules/@types/mime/index.d.ts","../../../node_modules/@types/serve-static/index.d.ts","../../../node_modules/@types/express/node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/@types/express/index.d.ts","../../../node_modules/@types/graceful-fs/index.d.ts","../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../node_modules/@types/istanbul-lib-report/index.d.ts","../../../node_modules/@types/istanbul-reports/index.d.ts","../../../node_modules/@jest/expect-utils/build/index.d.ts","../../../node_modules/chalk/index.d.ts","../../../node_modules/@sinclair/typebox/typebox.d.ts","../../../node_modules/@jest/schemas/build/index.d.ts","../../../node_modules/pretty-format/build/index.d.ts","../../../node_modules/jest-diff/build/index.d.ts","../../../node_modules/jest-matcher-utils/build/index.d.ts","../../../node_modules/expect/build/index.d.ts","../../../node_modules/@types/jest/index.d.ts","../../../node_modules/parse5/dist/common/html.d.ts","../../../node_modules/parse5/dist/common/token.d.ts","../../../node_modules/parse5/dist/common/error-codes.d.ts","../../../node_modules/parse5/dist/tokenizer/preprocessor.d.ts","../../../node_modules/parse5/dist/tokenizer/index.d.ts","../../../node_modules/parse5/dist/tree-adapters/interface.d.ts","../../../node_modules/parse5/dist/parser/open-element-stack.d.ts","../../../node_modules/parse5/dist/parser/formatting-element-list.d.ts","../../../node_modules/parse5/dist/parser/index.d.ts","../../../node_modules/parse5/dist/tree-adapters/default.d.ts","../../../node_modules/parse5/dist/serializer/index.d.ts","../../../node_modules/parse5/dist/common/foreign-content.d.ts","../../../node_modules/parse5/dist/index.d.ts","../../../node_modules/@types/tough-cookie/index.d.ts","../../../node_modules/@types/jsdom/base.d.ts","../../../node_modules/@types/jsdom/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/@types/keyv/index.d.ts","../../../node_modules/@types/level-errors/index.d.ts","../../../node_modules/@types/levelup/index.d.ts","../../../node_modules/@types/long/index.d.ts","../../../node_modules/@types/lru-cache/index.d.ts","../../../node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/minimist/index.d.ts","../../../node_modules/@types/mkdirp/index.d.ts","../../../node_modules/@types/mocha/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts","../../../node_modules/@types/parse-json/index.d.ts","../../../node_modules/@types/pbkdf2/index.d.ts","../../../node_modules/@types/prettier/index.d.ts","../../../node_modules/@types/resolve/index.d.ts","../../../node_modules/@types/secp256k1/index.d.ts","../../../node_modules/@types/seedrandom/index.d.ts","../../../node_modules/@types/semver/classes/semver.d.ts","../../../node_modules/@types/semver/functions/parse.d.ts","../../../node_modules/@types/semver/functions/valid.d.ts","../../../node_modules/@types/semver/functions/clean.d.ts","../../../node_modules/@types/semver/functions/inc.d.ts","../../../node_modules/@types/semver/functions/diff.d.ts","../../../node_modules/@types/semver/functions/major.d.ts","../../../node_modules/@types/semver/functions/minor.d.ts","../../../node_modules/@types/semver/functions/patch.d.ts","../../../node_modules/@types/semver/functions/prerelease.d.ts","../../../node_modules/@types/semver/functions/compare.d.ts","../../../node_modules/@types/semver/functions/rcompare.d.ts","../../../node_modules/@types/semver/functions/compare-loose.d.ts","../../../node_modules/@types/semver/functions/compare-build.d.ts","../../../node_modules/@types/semver/functions/sort.d.ts","../../../node_modules/@types/semver/functions/rsort.d.ts","../../../node_modules/@types/semver/functions/gt.d.ts","../../../node_modules/@types/semver/functions/lt.d.ts","../../../node_modules/@types/semver/functions/eq.d.ts","../../../node_modules/@types/semver/functions/neq.d.ts","../../../node_modules/@types/semver/functions/gte.d.ts","../../../node_modules/@types/semver/functions/lte.d.ts","../../../node_modules/@types/semver/functions/cmp.d.ts","../../../node_modules/@types/semver/functions/coerce.d.ts","../../../node_modules/@types/semver/classes/comparator.d.ts","../../../node_modules/@types/semver/classes/range.d.ts","../../../node_modules/@types/semver/functions/satisfies.d.ts","../../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../../node_modules/@types/semver/ranges/min-version.d.ts","../../../node_modules/@types/semver/ranges/valid.d.ts","../../../node_modules/@types/semver/ranges/outside.d.ts","../../../node_modules/@types/semver/ranges/gtr.d.ts","../../../node_modules/@types/semver/ranges/ltr.d.ts","../../../node_modules/@types/semver/ranges/intersects.d.ts","../../../node_modules/@types/semver/ranges/simplify.d.ts","../../../node_modules/@types/semver/ranges/subset.d.ts","../../../node_modules/@types/semver/internals/identifiers.d.ts","../../../node_modules/@types/semver/index.d.ts","../../../node_modules/@types/sinonjs__fake-timers/index.d.ts","../../../node_modules/@types/sinon/index.d.ts","../../../node_modules/@types/sinon-chai/index.d.ts","../../../node_modules/@types/stack-utils/index.d.ts","../../../node_modules/@types/underscore/index.d.ts","../../../node_modules/@types/web3/providers.d.ts","../../../node_modules/@types/web3/types.d.ts","../../../node_modules/@types/web3/promiEvent.d.ts","../../../node_modules/@types/web3/eth/abi.d.ts","../../../node_modules/@types/web3/eth/types.d.ts","../../../node_modules/@types/web3/utils.d.ts","../../../node_modules/@types/web3/eth/contract.d.ts","../../../node_modules/@types/web3/eth/accounts.d.ts","../../../node_modules/@types/web3/eth/index.d.ts","../../../node_modules/@types/web3/index.d.ts","../../../node_modules/@types/ws/index.d.ts","../../../node_modules/@types/yargs-parser/index.d.ts","../../../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"f3d4da15233e593eacb3965cde7960f3fddf5878528d882bcedd5cbaba0193c7","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"1f03b495671c3a1bd24510f38b8947f0991dfd6bf0278c68eca14af15b306e1f","1fcb8b15db812281d69a3090d488903f9e93033004aef9d8889ca3ad0753a96f","bdf5a95eb0a2dd1d39805bdf51b46ba012bb9b92b2ddaae16219595bba7678a5","9f794a0e8550a03baff865a3961cc22afbd85bc4ba9672bdda036971928f85f4","66a697d1e4cdbf25cdce4644a8085a8563041fa8c7731d4d9f5e8f22e66ba72c","4f1ae3f24125216cf07c5211a3f00d2bb4782d7cc76c0681603f8249f9232ff0","d3fb92a5640f83f7844d60b35317a0f95c27e3658a749d76d218c461ad091668","8bc2cad630da1033c1fd8d7df2bffb18af0da6113bd086a8bbec04a2471a1e00","d1f8bfcd91b284657ef8187c55ace7db91a3c43e642c3f14e54364154932f7e4","f54c92bfcae54f360fe79514746efce4870e4ddabc064e95d406bba291e9f672","175fd7186fa6a70f9db9b270a04a503cae23cf01cb77e3905bac115c38424cf7","c993f7ed1b8e1023c1f2ee5b262dbc3b70b27475674e40a53a58591f9972dacc","e57d368ee6936f86ecb30c88752b073cb4a56b53f40bbecb482146a6a0bb4052","a0c8e17f4d1ea2704c62d7349bc3b8d9a12e3761b5960cb44144d3f0333b3fcb","3471c0df3d0391e1dffe6e8bf150294531b2b71a2afa5f2b86e52bf84a5db60a","5d4df4de055eddf3187094f938a640f8d96e4c551a47d6686596fdb6ba4c3014","a1059d1bbc8ad46bfe668b8450e7e8002887c4ab987bdb96d6108d8023f8bb8f","5134885e9648e2c6745f8aa1c3e7f5ab3b3617258b3d81ca02de6655ede3d74e","c914014ab7c7001178663f29d31a495398234a41219af61f26d7e8e91b46af96","1acfc1c5a9f95332a2c17a1e665661a049c818e1c7b0bb7cc2dacfdbf08f79af","3170c0416dd2064d848fe1f06a2e1e53ed55030e93cb91ca451ad56b06354ff8","7e771891adaa85b690266bc37bd6eb43bc57eecc4b54693ead36467e7369952a","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"57b6cb95756d1fe3bfeb20205de27b0c5406e4a86e130c6dfa6bd92af641e09d","affectsGlobalScope":true},"11e2d554398d2bd460e7d06b2fa5827a297c8acfbe00b4f894a224ac0862857f",{"version":"e193e634a99c9c1d71f1c6e4e1567a4a73584328d21ea02dd5cddbaad6693f61","affectsGlobalScope":true},"374ca798f244e464346f14301dc2a8b4b111af1a83b49fffef5906c338a1f922","5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713",{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","e596c9bb2f29a2699fdd4ae89139612652245192f67f45617c5a4b20832aaae9","bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","1cdcfc1f624d6c08aa12c73935f6e13f095919cd99edf95752951796eb225729","216717f17c095cde1dc19375e1ab3af0a4a485355860c077a4f9d6ea59fab5b5","14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"816ad2e607a96de5bcac7d437f843f5afd8957f1fa5eefa6bba8e4ed7ca8fd84","affectsGlobalScope":true},"80473bd0dd90ca1e166514c2dfead9d5803f9c51418864ca35abbeec6e6847e1","1c84b46267610a34028edfd0d035509341751262bac1062857f3c8df7aff7153","e6c86d83bd526c8bdb5d0bf935b8e72ce983763d600743f74d812fdf4abf4df6","a3d541d303ee505053f5dcbf9fafb65cac3d5631037501cd616195863a6c5740","8d3c583a07e0c37e876908c2d5da575019f689df8d9fa4c081d99119d53dba22","2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58",{"version":"e630e5528e899219ae319e83bef54bf3bcb91b01d76861ecf881e8e614b167f0","affectsGlobalScope":true},"bcebb922784739bdb34c18ee51095d25a92b560c78ccd2eaacd6bd00f7443d83","7ee6ed878c4528215c82b664fe0cfe80e8b4da6c0d4cc80869367868774db8b1","b0973c3cbcdc59b37bf477731d468696ecaf442593ec51bab497a613a580fe30",{"version":"4989e92ba5b69b182d2caaea6295af52b7dc73a4f7a2e336a676722884e7139d","affectsGlobalScope":true},{"version":"0715e4cd28ad471b2a93f3e552ff51a3ae423417a01a10aa1d3bc7c6b95059d6","affectsGlobalScope":true},"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","210d54cd652ec0fec8c8916e4af59bb341065576ecda039842f9ffb2e908507c","36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","7d55d78cd47cf5280643b53434b16c2d9d11d144126932759fbdd51da525eec4","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","69ee23dd0d215b09907ad30d23f88b7790c93329d1faf31d7835552a10cf7cbf","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","f69ff39996a61a0dd10f4bce73272b52e8024a4d58b13ab32bf4712909d0a2b7",{"version":"3c4ba1dd9b12ffa284b565063108f2f031d150ea15b8fafbdc17f5d2a07251f3","affectsGlobalScope":true},"e10177274a35a9d07c825615340b2fcde2f610f53f3fb40269fd196b4288dda6","c4577fb855ca259bdbf3ea663ca73988ce5f84251a92b4aef80a1f4122b6f98e","3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2",{"version":"f0900cd5d00fe1263ff41201fb8073dbeb984397e4af3b8002a5c207a30bdc33","affectsGlobalScope":true},{"version":"ff07a9a03c65732ccc59b3c65bc584173da093bd563a6565411c01f5703bd3cb","affectsGlobalScope":true},"6de4a219df57d2b27274d59b67708f13c2cbf7ed211abe57d8f9ab8b25cde776","0fe8985a28f82c450a04a6edf1279d7181c0893f37da7d2a27f8efd4fd5edb03","e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa",{"version":"da26af7362f53d122283bc69fed862b9a9fe27e01bc6a69d1d682e0e5a4df3e6","affectsGlobalScope":true},"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"d8d555f3d607ecaa18d55de6995ea8f206342ecc93305919eac945c7c78c78c6","01f7828047b5c6703d3c601473618b448f5506a88fcac852638b0715c3abf4eb","a2d875a97eeee8872d7a6d30c65fc2c19aee4fca3b98edda1c2f5ce7323c16da","05b7a6078128cb7a116def6153e7b012da36ad755db16e1d9d0e778ff743c898","9f69bbace650a5d4176d30b842ec201b56abb35be38c7248480f89a82e0d2336","1b8217a42dd978dda2b46c9f386fb3f0cf9b9d18563ea741e2db232e6c05cba7","241fe99e40814c55279e085646cf08e92bd115b7ad84b38002206675a698967e","e18bd8c2eb4a0c5ad8a9d568258f5f1f5bbaedc582e85457855d8728c1f59a39","fadded92012d86ccf0bb1e3c3fb763f3256b5eefca799c326d1c573f0e8988f0","f75532567ea8cea3cf5e62a55146a291021da1f769592c0f0556c60b27731d77","b4c8b5bac3229485192d1f227b852c09b665496a7c69f1fe6dde06491a9d9268","73b6faac275671e0a2bc8c0e13d07278ec31d1d560cbf38231ee40ecbc9d62f4","028b0c9599c68c920c2e24bf0a7a7c946c33903e34276a49b604c73ad7fc8086","b43a4737fda432745d01a9a31b4799f1cb1874a6eb17b96d53f7b6b59449c600","13aeb6bfa3c945a9854a0b81c9d58e04361b5c7422f447884cf1302314418632","820e6be224849f48893eff195d7b7f7ef512956d9ce5b0fb98248cd518744d4b","c7ffb807f424f486d7d5ccbe17461cf62419a142e941db0a036c8d91ad79ccf2","72eb4bdd0e291d1ad0df9b31e4074d87906661b92cece6f88b702c9e17ae5112","a17329ad2016fcb1907597b40f200aeb2710b6c3b48f9c83732088c941352f35","ff386cf04eeba397af575c08231172ec1efe78f3372e2ddc5540193c2a2290a5","ae863895de4d947d573d155535996c484a863397a2641864efc9c47d7b2b5b03","f7280770a2f549abdd524d87555428814accdeca7db089d7b052a693cd347e05","2a96ab1644e9366811755b5fcbd42b5f68aac802baca6e685880f16a69f3800c","1ed392860d0da604c6d4a12a303839e771652727c7916d4a7a98eaad7cdb216e","e84108673637b590e1707712541ef3006624bbe157459aea6307406cd6f41e34","1e236f08c3182305a09edc24f73760d680d68e1fb97e590a57bd0ce06f373128","ac4c316315018d75cc8c959df27b59153a203978bfdb8bac9294066f0edd8dea","e2ab4a953bf7eac45d1e75569d77fbfd1362b3105505341a7aed587243ada9da",{"version":"6d6cc28a844f827e5e790ddaf353ac5359dfcca968ea4079c9f1ed0477a2be8d","signature":"5087221022183858c13945854a633f3739ea2583bc6a0ba0ca5f8dfe4c40df10"},{"version":"7debfb1b05963bd5cdbf58fbf843f380509a6484fe7db7081a921159893ca221","signature":"ba8812055c66fd1965dfbf6d1efa7a2bec461a9471e6e35ebfb6696d4a174091"},"736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","c8a34d0c858532a9fab7f0b65f3cff6507df055a0cd8b965c4fd5667b5a0cf7d","3663d1b50f356656a314e5df169bb51cb9d5fd75905fa703f75db6bb32030568",{"version":"703c810a08a50cde1ab133ab428a81c2fc10df978a84514302c4bd0e92a22410","signature":"caadd579db9a56b372c8342a6e939e4b470d2bde4794de4935a18297eb3436de"},{"version":"32dfe6b31e897e651ad7fb975e8743033251256e6aecbc96ffafc11e15e18027","signature":"e8482bf22dd1d0da269a8ebaf8ccbbd959b085a7d0ac39769ddbffd0fc0c5964"},{"version":"2a3df3dcfc9554c53561b455474581f8475142dbea8a45b520b72a3f8ac25b68","signature":"98ac90356e1b5d84860d9400020289e1fc82a5384f619fd4dfafc370d25e8ce7"},"409b21f3d0c198cc4866b941cd9303809a13230e2b9b3c1508fe61348a8b43ed","6738101ae8e56cd3879ab3f99630ada7d78097fc9fd334df7e766216778ca219","2393897426427755447c9b91e33955764a791834462751c01b6e527a93859c01","3078727fed04c123165efdb42deeac5dceaa42ac62216ca13cb809dc7e13415f","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","b4f76b34637d79cefad486127115fed843762c69512d7101b7096e1293699679","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","dae3d1adc67ac3dbd1cd471889301339ec439837b5df565982345be20c8fca9a","b6ddf3a46ccfa4441d8be84d2e9bf3087573c48804196faedbd4a25b60631beb","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","92edb6e257fa64d3baae647490e041912684f5dc1f243d0aedd60b4b383ff50b","cab425b5559edac18327eb2c3c0f47e7e9f71b667290b7689faafd28aac69eae","3cfb0cb51cc2c2e1b313d7c4df04dbf7e5bda0a133c6b309bf6af77cf614b971","f992cd6cc0bcbaa4e6c810468c90f2d8595f8c6c3cf050c806397d3de8585562",{"version":"b9734142a4b241cfb505be4a2eb0261d211647df7c73043f817f4fdd8d96c846","affectsGlobalScope":true},{"version":"63e2182615c513e89bb8a3e749d08f7c379e86490fcdbf6d35f2c14b3507a6e8","affectsGlobalScope":true},"6fbd58e4015b9ae31ea977d4d549eb24a1102cc798b57ec5d70868b542c06612","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"ae3fe461989bbd951344efc1f1fe932360ce7392e6126bdb225a82a1bbaf15ee","affectsGlobalScope":true},"5b9ecf7da4d71cf3832dbb8336150fa924631811f488ad4690c2dfec2b4fb1d7","951c85f75aac041dddbedfedf565886a7b494e29ec1532e2a9b4a6180560b50e","f47887b61c6cf2f48746980390d6cb5b8013518951d912cfb37fe748071942be",{"version":"c5dd1fef4cd4aaffc78786047bed5ae6fc1200d19a1946cbc4e2d3ed4d62c8fa","affectsGlobalScope":true},"15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae","bf88ef4208a770ca39a844b182b3695df536326ea566893fdc5b8418702a331e","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","6c1e688f95fcaf53b1e41c0fdadf2c1cfc96fa924eaf7f9fdb60f96deb0a4986","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","db25694be959314fd1e868d72e567746db1db9e2001fae545d12d2a8c1bba1b8","43883cf3635bb1846cbdc6c363787b76227677388c74f7313e3f0edb380840fa","2d47012580f859dae201d2eef898a416bdae719dffc087dfd06aefe3de2f9c8d","3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","2cec1a31729b9b01e9294c33fc9425d336eff067282809761ad2e74425d6d2a5",{"version":"458e2fd1185e659cb800ef68d01ef77de70dcab8860bedf6d94eaebe736751f1","affectsGlobalScope":true},"ba600bf38b5c1a5dffa1b99dd7a783549082bbba3b4fe9497eaaf5e4c1764b20","ae8cd6af37275eac75f5369cdb5f01063bcf1f48d74cb434303ee50ec446acfe","2518830a2fda9c272ba48798d0e7b857037443b06594db8e42c87e86944ee9e4","95c1cf650d16b197525b5bfdf8dd7abba0a49d99ddb12a4ba66466a8a6903e49","1fe0aabe758d56ad72495d6e6c7b6ae75619faaeaaf03f0ddf1948eea4cfac84","bbc57966c8c48ee78fd58aadb893784025be056ae538ae22d1e83c502a987e68","5e5d6f6697e378b0660b567866bf67d099d0ea754f8810c0dabe737805f5cf03","99ab49d4732fdc98cf5c495925e65e796544cb4086fe42afc235dfc02bcf2351","af8339d509c40da075088e544c28ed37b519876e5c4d36a48644ebfb3c6ae6c8","d393adc32e520d4274bb4c3dfdcdb342b806a230b66ef0f82b35bffbc4aa2590","c26af7eaedb4f710984634e419ab15e54e5bb99a0b3cae71188c2fff572276de","38b58ef018d0aeee42ef74c42978bb5805503233fdeeb82cd2aed2199fb0d013","3b6040253231d44e6778eb6861cc86c1758562e77783d21b7ecbc73322ded539","cc256fd958b33576ed32c7338c64adb0d08fc0c2c6525010202fab83f32745da","fd0589ca571ad090b531d8c095e26caa53d4825c64d3ff2b2b1ab95d72294175",{"version":"669843ecafb89ae1e944df06360e8966219e4c1c34c0d28aa2503272cdd444a7","affectsGlobalScope":true},"f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","fec943fdb3275eb6e006b35e04a8e2e99e9adf3f4b969ddf15315ac7575a93e4","49afdedca00d22b171678e3cf9c47b7e0c1846fd4905a01d68f0145eb90add94","f76664b98868fc7c62a83e62cecb8db7c3a2d44bc1d9250b368bd799ec370d47","0e60e0cbf2283adfd5a15430ae548cd2f662d581b5da6ecd98220203e7067c70","6d727c1f6a7122c04e4f7c164c5e6f460c21ada618856894cdaa6ac25e95f38c","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","6396a7a06f3ef0fc31a7c89330e015146b78a2256b030c698b6d404594c37b8f",{"version":"677646e2620795c98a539fb12fb531f10331c217cef1492132b2518f894fa92d","affectsGlobalScope":true},"6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","a73a445c1e0a6d0f8b48e8eb22dc9d647896783a7f8991cbbc31c0d94bf1f5a2","bc88e4049153bc4dddb4503ed7e624eb141edfa9064b3659d6c86e900fe9e621","2880728492d6a6baa55411d14cc42fa55714a24b1d1d27ff9a8a610abd47c761","3dce33e7eb25594863b8e615f14a45ab98190d85953436750644212d8a18c066","782e0d7224de8a4c01319edb13a0f20ed496048e15aa9d8a50b5d47b4e04e549","2b93035328f7778d200252681c1d86285d501ed424825a18f81e4c3028aa51d9","2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","77c1d91a129ba60b8c405f9f539e42df834afb174fe0785f89d92a2c7c16b77a","7a9e0a564fee396cacf706523b5aeed96e04c6b871a8bebefad78499fbffc5bc","906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","71405cc70f183d029cc5018375f6c35117ffdaf11846c35ebf85ee3956b1b2a6","c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","c649ea79205c029a02272ef55b7ab14ada0903db26144d2205021f24727ac7a3","38e2b02897c6357bbcff729ef84c736727b45cc152abe95a7567caccdfad2a1d","d6610ea7e0b1a7686dba062a1e5544dd7d34140f4545305b7c6afaebfb348341","3dee35db743bdba2c8d19aece7ac049bde6fa587e195d86547c882784e6ba34c","b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","843dd7b6a7c6269fd43827303f5cbe65c1fecabc30b4670a50d5a15d57daeeb9","f06d8b8567ee9fd799bf7f806efe93b67683ef24f4dea5b23ef12edff4434d9d","6017384f697ff38bc3ef6a546df5b230c3c31329db84cbfe686c83bec011e2b2","e1a5b30d9248549ca0c0bb1d653bafae20c64c4aa5928cc4cd3017b55c2177b0","a593632d5878f17295bd53e1c77f27bf4c15212822f764a2bfc1702f4b413fa0","a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","da7545aba8f54a50fde23e2ede00158dc8112560d934cee58098dfb03aae9b9d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","6aee496bf0ecfbf6731aa8cca32f4b6e92cdc0a444911a7d88410408a45ecc5d","f83b320cceccfc48457a818d18fc9a006ab18d0bdd727aa2c2e73dc1b4a45e98","354abbae08f72ea982b1a767a8908f1b3efe8bbe53955c64f9c0c249c8832d5d",{"version":"4f0ad52a7fbd6bfba88ec22ec719b6956a0fc647030462f9db490e74236d116f","affectsGlobalScope":true},"b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298",{"version":"0609dda5350cd6d8c42daef710dffe3b51521ffbd00109e234f7bfb7533194e7","affectsGlobalScope":true},"0f9f94b7caca60b16c514a8bf49a57dcded0d6abc74a4d210ce9c65dc3e04359","b3a0aa09f97a4f9716b424f2dc54b1680186defd8a8c08521fda12e47aa23c1d","8f0104c65272dba2fb78eb38c7718cbd162a7eb095112fc9a5b3d9081653ceac","52dbd8586a877a6269dd7082e6b4b792b8fc89c0a655cb82b85730969bc8b235","06fab790131435efcd395e72db60da8fe24822c49a2bbd1ccac75d8404b9caec","2fea9e03353d630c4644dc84b57cb36d666c725f3f37c1f60f8bc18bd9b38cdb","e3dc9302cbaba64212b443b0fea8f59454733a077f17528c13873dfe112752a5","2d5a33fcc690c375ede77d8c485f1a982f433be2bedf0bf43c172a710047d74d","ac78c2de46d5c3b988a3da4d34bc47d4506b2fa0a278046f94e34b0ff7b2e4ef","58c4efcc340056638dad7542333fc50d0109eb86e84b0618a9f20fe020e45e49","bc81aff061c53a7140270555f4b22da4ecfe8601e8027cf5aa175fbdc7927c31","70e9a18da08294f75bf23e46c7d69e67634c0765d355887b9b41f0d959e1426e","149ebd778196c03e9c75b630866543501e0e9e62a146c1a17ce91ade4cdfb0ba"],"options":{"allowSyntheticDefaultImports":true,"alwaysStrict":true,"composite":true,"declaration":true,"esModuleInterop":true,"experimentalDecorators":true,"module":1,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitReturns":true,"noImplicitThis":true,"noUnusedParameters":true,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"strictBindCallApply":true,"strictFunctionTypes":true,"strictNullChecks":true,"strictPropertyInitialization":true,"target":6},"fileIdsList":[[113,159],[113],[47,59,60,113],[47,50,113],[50,113],[59,61,62,113],[47,50,53,59,60,61,113],[47,50,52,53,54,55,113],[47,50,53,56,113],[47,113],[47,48,113],[48,49,113],[47,50,54,56,57,63,113],[51,113],[113,188],[113,131],[113,131,132,133,134,135],[86,113,120],[83,113],[113,159,160,161,162,163],[113,159,161],[113,120],[86,113,120,165],[83,86,112,113,120,167,168,169],[113,171],[86,113],[83,86,113,120,174,175],[113,166,175,176,179,180],[84,113,120],[113,183],[113,184],[113,190,193],[83,113,115,120,207,208,210],[113,209],[83,113,120],[83,113,120,156,213],[113,178],[113,177],[86,112,113,120,150,151],[86,101,113,120],[67,113],[70,113],[71,76,104,113],[72,83,84,91,101,112,113],[72,73,83,91,113],[74,113],[75,76,84,92,113],[76,101,109,113],[77,79,83,91,113],[78,113],[79,80,113],[81,83,113],[83,84,85,101,112,113],[83,84,85,98,101,104,113],[113,117],[79,86,91,101,112,113],[83,84,86,87,91,101,109,112,113],[86,88,101,109,112,113],[67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119],[83,89,113],[90,112,113],[79,83,91,101,113],[92,113],[93,113],[70,94,113],[95,111,113,117],[96,113],[97,113],[83,98,99,113],[98,100,113,115],[71,83,101,102,103,104,113],[71,101,103,113],[101,102,113],[104,113],[105,113],[83,107,108,113],[107,108,113],[76,91,101,109,113],[110,113],[91,111,113],[71,86,97,112,113],[76,113],[101,113,114],[113,115],[113,116],[71,76,83,85,94,101,112,113,115,117],[101,113,118],[113,228,267],[113,228,252,267],[113,267],[113,228],[113,228,253,267],[113,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266],[113,253,267],[86,113,120,178],[113,171,269],[113,268],[113,277],[113,273,274,276,277],[113,121,273,274,275,276,277,279,280],[113,274,275,276],[113,273,274,277,278,281],[113,274],[113,121,272],[83,86,88,91,101,109,112,113,118,120],[113,284],[113,186,192],[113,190],[113,187,191],[113,196],[113,195,196],[113,195],[113,195,196,197,199,200,203,204,205,206],[113,196,200],[113,195,196,197,199,200,201,202],[113,195,200],[113,200,204],[113,196,197,198],[113,197],[113,195,196,200],[113,189],[86,88,91,113],[65,113],[65,66,91,113,121,122],[113,121],[113,147,148,149,153],[113,148,154],[57,113,147],[113,152],[113,124],[50,113,124],[50,113,124,136,137,138,139,140,141,142,143,144],[58,113,125,126,127,128,129,130,145,146],[50,64,113,123],[147,148],[148,154],[57,147]],"referencedMap":[[161,1],[159,2],[61,3],[60,4],[59,5],[63,6],[62,7],[56,8],[57,9],[48,10],[49,11],[50,12],[47,2],[64,13],[52,14],[51,2],[53,2],[54,4],[55,2],[186,2],[189,15],[133,16],[135,16],[136,17],[134,16],[132,16],[131,2],[188,2],[156,2],[157,18],[158,19],[164,20],[160,1],[162,21],[163,1],[121,22],[166,23],[170,24],[172,25],[171,2],[165,18],[173,26],[176,27],[181,28],[180,27],[182,29],[168,2],[183,2],[184,30],[185,31],[194,32],[209,33],[210,34],[211,2],[212,35],[213,2],[214,36],[215,2],[216,2],[177,37],[178,38],[217,2],[218,2],[219,29],[220,2],[151,2],[152,39],[150,40],[67,41],[68,41],[70,42],[71,43],[72,44],[73,45],[74,46],[75,47],[76,48],[77,49],[78,50],[79,51],[80,51],[82,19],[81,52],[83,19],[84,53],[85,54],[69,55],[119,2],[86,56],[87,57],[88,58],[120,59],[89,60],[90,61],[91,62],[92,63],[93,64],[94,65],[95,66],[96,67],[97,68],[98,69],[99,69],[100,70],[101,71],[103,72],[102,73],[104,74],[105,75],[106,2],[107,76],[108,77],[109,78],[110,79],[111,80],[112,81],[113,82],[114,83],[115,84],[116,85],[117,86],[118,87],[221,2],[222,2],[223,22],[224,2],[175,2],[174,2],[225,22],[169,40],[226,22],[227,2],[252,88],[253,89],[228,90],[231,90],[250,88],[251,88],[241,88],[240,91],[238,88],[233,88],[246,88],[244,88],[248,88],[232,88],[245,88],[249,88],[234,88],[235,88],[247,88],[229,88],[236,88],[237,88],[239,88],[243,88],[254,92],[242,88],[230,88],[267,93],[266,2],[261,92],[263,94],[262,92],[255,92],[256,92],[258,92],[260,92],[264,94],[265,94],[257,94],[259,94],[179,95],[270,96],[269,97],[268,2],[271,2],[208,2],[272,2],[276,2],[280,98],[279,99],[281,100],[277,101],[282,102],[275,103],[273,2],[274,2],[278,104],[283,105],[284,2],[285,106],[122,2],[187,2],[193,107],[191,108],[192,109],[167,19],[197,110],[206,111],[195,2],[196,112],[207,113],[202,114],[203,115],[201,116],[205,117],[199,118],[198,119],[204,120],[200,111],[190,121],[8,2],[9,2],[13,2],[12,2],[2,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[3,2],[4,2],[25,2],[22,2],[23,2],[24,2],[26,2],[27,2],[28,2],[5,2],[29,2],[30,2],[31,2],[32,2],[6,2],[46,2],[36,2],[33,2],[34,2],[35,2],[37,2],[7,2],[38,2],[43,2],[44,2],[39,2],[40,2],[41,2],[42,2],[1,2],[45,2],[11,2],[10,2],[65,122],[66,123],[123,124],[137,125],[154,126],[155,127],[148,128],[153,129],[149,2],[58,2],[125,130],[126,131],[127,130],[128,2],[129,2],[130,130],[145,132],[147,133],[146,134],[138,2],[139,130],[140,131],[141,130],[142,2],[143,2],[144,130],[124,134]],"exportedModulesMap":[[161,1],[159,2],[61,3],[60,4],[59,5],[63,6],[62,7],[56,8],[57,9],[48,10],[49,11],[50,12],[47,2],[64,13],[52,14],[51,2],[53,2],[54,4],[55,2],[186,2],[189,15],[133,16],[135,16],[136,17],[134,16],[132,16],[131,2],[188,2],[156,2],[157,18],[158,19],[164,20],[160,1],[162,21],[163,1],[121,22],[166,23],[170,24],[172,25],[171,2],[165,18],[173,26],[176,27],[181,28],[180,27],[182,29],[168,2],[183,2],[184,30],[185,31],[194,32],[209,33],[210,34],[211,2],[212,35],[213,2],[214,36],[215,2],[216,2],[177,37],[178,38],[217,2],[218,2],[219,29],[220,2],[151,2],[152,39],[150,40],[67,41],[68,41],[70,42],[71,43],[72,44],[73,45],[74,46],[75,47],[76,48],[77,49],[78,50],[79,51],[80,51],[82,19],[81,52],[83,19],[84,53],[85,54],[69,55],[119,2],[86,56],[87,57],[88,58],[120,59],[89,60],[90,61],[91,62],[92,63],[93,64],[94,65],[95,66],[96,67],[97,68],[98,69],[99,69],[100,70],[101,71],[103,72],[102,73],[104,74],[105,75],[106,2],[107,76],[108,77],[109,78],[110,79],[111,80],[112,81],[113,82],[114,83],[115,84],[116,85],[117,86],[118,87],[221,2],[222,2],[223,22],[224,2],[175,2],[174,2],[225,22],[169,40],[226,22],[227,2],[252,88],[253,89],[228,90],[231,90],[250,88],[251,88],[241,88],[240,91],[238,88],[233,88],[246,88],[244,88],[248,88],[232,88],[245,88],[249,88],[234,88],[235,88],[247,88],[229,88],[236,88],[237,88],[239,88],[243,88],[254,92],[242,88],[230,88],[267,93],[266,2],[261,92],[263,94],[262,92],[255,92],[256,92],[258,92],[260,92],[264,94],[265,94],[257,94],[259,94],[179,95],[270,96],[269,97],[268,2],[271,2],[208,2],[272,2],[276,2],[280,98],[279,99],[281,100],[277,101],[282,102],[275,103],[273,2],[274,2],[278,104],[283,105],[284,2],[285,106],[122,2],[187,2],[193,107],[191,108],[192,109],[167,19],[197,110],[206,111],[195,2],[196,112],[207,113],[202,114],[203,115],[201,116],[205,117],[199,118],[198,119],[204,120],[200,111],[190,121],[8,2],[9,2],[13,2],[12,2],[2,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[3,2],[4,2],[25,2],[22,2],[23,2],[24,2],[26,2],[27,2],[28,2],[5,2],[29,2],[30,2],[31,2],[32,2],[6,2],[46,2],[36,2],[33,2],[34,2],[35,2],[37,2],[7,2],[38,2],[43,2],[44,2],[39,2],[40,2],[41,2],[42,2],[1,2],[45,2],[11,2],[10,2],[65,122],[66,123],[123,124],[137,125],[154,135],[155,136],[148,137],[58,2],[125,130],[126,131],[127,130],[128,2],[129,2],[130,130],[145,132],[147,133],[146,134],[138,2],[139,130],[140,131],[141,130],[142,2],[143,2],[144,130],[124,134]],"semanticDiagnosticsPerFile":[161,159,61,60,59,63,62,56,57,48,49,50,47,64,52,51,53,54,55,186,189,133,135,136,134,132,131,188,156,157,158,164,160,162,163,121,166,170,172,171,165,173,176,181,180,182,168,183,184,185,194,209,210,211,212,213,214,215,216,177,178,217,218,219,220,151,152,150,67,68,70,71,72,73,74,75,76,77,78,79,80,82,81,83,84,85,69,119,86,87,88,120,89,90,91,92,93,94,95,96,97,98,99,100,101,103,102,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,221,222,223,224,175,174,225,169,226,227,252,253,228,231,250,251,241,240,238,233,246,244,248,232,245,249,234,235,247,229,236,237,239,243,254,242,230,267,266,261,263,262,255,256,258,260,264,265,257,259,179,270,269,268,271,208,272,276,280,279,281,277,282,275,273,274,278,283,284,285,122,187,193,191,192,167,197,206,195,196,207,202,203,201,205,199,198,204,200,190,8,9,13,12,2,14,15,16,17,18,19,20,21,3,4,25,22,23,24,26,27,28,5,29,30,31,32,6,46,36,33,34,35,37,7,38,43,44,39,40,41,42,1,45,11,10,65,66,123,137,154,155,148,153,149,58,125,126,127,128,129,130,145,147,146,138,139,140,141,142,143,144,124],"latestChangedDtsFile":"./src/index.d.ts"},"version":"4.9.5"}
|
|
1
|
+
{"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../node_modules/typescript/lib/lib.scripthost.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/typescript/lib/lib.es2019.full.d.ts","../../../node_modules/@ethersproject/bytes/lib/index.d.ts","../../../node_modules/@ethersproject/bignumber/lib/bignumber.d.ts","../../../node_modules/@ethersproject/bignumber/lib/fixednumber.d.ts","../../../node_modules/@ethersproject/bignumber/lib/index.d.ts","../../../node_modules/@ethersproject/networks/lib/types.d.ts","../../../node_modules/@ethersproject/networks/lib/index.d.ts","../../../node_modules/@ethersproject/properties/lib/index.d.ts","../../../node_modules/@ethersproject/transactions/lib/index.d.ts","../../../node_modules/@ethersproject/web/lib/index.d.ts","../../../node_modules/@ethersproject/abstract-provider/lib/index.d.ts","../../../node_modules/@ethersproject/abstract-signer/lib/index.d.ts","../../safe-core-sdk-types/dist/src/contracts/CompatibilityFallbackHandlerContract.d.ts","../../../node_modules/@ethersproject/abi/lib/fragments.d.ts","../../../node_modules/@ethersproject/abi/lib/coders/abstract-coder.d.ts","../../../node_modules/@ethersproject/abi/lib/abi-coder.d.ts","../../../node_modules/@ethersproject/abi/lib/interface.d.ts","../../../node_modules/@ethersproject/abi/lib/index.d.ts","../../../node_modules/@ethersproject/contracts/lib/index.d.ts","../../../node_modules/web3-core/node_modules/web3-core-helpers/types/index.d.ts","../../../node_modules/web3-core/node_modules/web3-core-method/types/index.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/dom-events.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/globals.global.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@types/bn.js/index.d.ts","../../../node_modules/bignumber.js/bignumber.d.ts","../../../node_modules/web3-core/types/index.d.ts","../../safe-core-sdk-types/dist/src/types.d.ts","../../safe-core-sdk-types/dist/src/contracts/CreateCallContract.d.ts","../../safe-core-sdk-types/dist/src/contracts/GnosisSafeContract.d.ts","../../safe-core-sdk-types/dist/src/contracts/GnosisSafeProxyFactoryContract.d.ts","../../safe-core-sdk-types/dist/src/contracts/MultiSendCallOnlyContract.d.ts","../../safe-core-sdk-types/dist/src/contracts/MultiSendContract.d.ts","../../safe-core-sdk-types/dist/src/contracts/SignMessageLibContract.d.ts","../../../node_modules/@safe-global/safe-deployments/dist/types.d.ts","../../../node_modules/@safe-global/safe-deployments/dist/safes.d.ts","../../../node_modules/@safe-global/safe-deployments/dist/factories.d.ts","../../../node_modules/@safe-global/safe-deployments/dist/libs.d.ts","../../../node_modules/@safe-global/safe-deployments/dist/handler.d.ts","../../../node_modules/@safe-global/safe-deployments/dist/index.d.ts","../../safe-core-sdk-types/node_modules/web3-utils/types/index.d.ts","../../safe-core-sdk-types/dist/src/ethereumLibs/EthAdapter.d.ts","../../safe-core-sdk-types/dist/src/index.d.ts","../src/types/safeTransactionServiceTypes.ts","../src/utils/index.ts","../../../node_modules/@types/node-fetch/node_modules/form-data/index.d.ts","../../../node_modules/@types/node-fetch/externals.d.ts","../../../node_modules/@types/node-fetch/index.d.ts","../src/utils/httpRequests.ts","../src/SafeApiKit.ts","../src/index.ts","../../../node_modules/@types/abstract-leveldown/index.d.ts","../../../node_modules/@types/accepts/index.d.ts","../../../node_modules/@babel/types/lib/index.d.ts","../../../node_modules/@types/babel__generator/index.d.ts","../../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../../node_modules/@types/babel__template/index.d.ts","../../../node_modules/@types/babel__traverse/index.d.ts","../../../node_modules/@types/babel__core/index.d.ts","../../../node_modules/@types/connect/index.d.ts","../../../node_modules/@types/body-parser/index.d.ts","../../../node_modules/keyv/src/index.d.ts","../../../node_modules/@types/http-cache-semantics/index.d.ts","../../../node_modules/@types/responselike/index.d.ts","../../../node_modules/@types/cacheable-request/index.d.ts","../../../node_modules/@types/chai/index.d.ts","../../../node_modules/@types/chai-as-promised/index.d.ts","../../../node_modules/@types/cors/index.d.ts","../../../node_modules/@types/range-parser/index.d.ts","../../../node_modules/@types/qs/index.d.ts","../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/@types/mime/Mime.d.ts","../../../node_modules/@types/mime/index.d.ts","../../../node_modules/@types/serve-static/index.d.ts","../../../node_modules/@types/express/node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/@types/express/index.d.ts","../../../node_modules/@types/graceful-fs/index.d.ts","../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../node_modules/@types/istanbul-lib-report/index.d.ts","../../../node_modules/@types/istanbul-reports/index.d.ts","../../../node_modules/@jest/expect-utils/build/index.d.ts","../../../node_modules/chalk/index.d.ts","../../../node_modules/@sinclair/typebox/typebox.d.ts","../../../node_modules/@jest/schemas/build/index.d.ts","../../../node_modules/pretty-format/build/index.d.ts","../../../node_modules/jest-diff/build/index.d.ts","../../../node_modules/jest-matcher-utils/build/index.d.ts","../../../node_modules/expect/build/index.d.ts","../../../node_modules/@types/jest/index.d.ts","../../../node_modules/parse5/dist/common/html.d.ts","../../../node_modules/parse5/dist/common/token.d.ts","../../../node_modules/parse5/dist/common/error-codes.d.ts","../../../node_modules/parse5/dist/tokenizer/preprocessor.d.ts","../../../node_modules/parse5/dist/tokenizer/index.d.ts","../../../node_modules/parse5/dist/tree-adapters/interface.d.ts","../../../node_modules/parse5/dist/parser/open-element-stack.d.ts","../../../node_modules/parse5/dist/parser/formatting-element-list.d.ts","../../../node_modules/parse5/dist/parser/index.d.ts","../../../node_modules/parse5/dist/tree-adapters/default.d.ts","../../../node_modules/parse5/dist/serializer/index.d.ts","../../../node_modules/parse5/dist/common/foreign-content.d.ts","../../../node_modules/parse5/dist/index.d.ts","../../../node_modules/@types/tough-cookie/index.d.ts","../../../node_modules/@types/jsdom/base.d.ts","../../../node_modules/@types/jsdom/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/@types/keyv/index.d.ts","../../../node_modules/@types/level-errors/index.d.ts","../../../node_modules/@types/levelup/index.d.ts","../../../node_modules/@types/long/index.d.ts","../../../node_modules/@types/lru-cache/index.d.ts","../../../node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/minimist/index.d.ts","../../../node_modules/@types/mkdirp/index.d.ts","../../../node_modules/@types/mocha/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts","../../../node_modules/@types/parse-json/index.d.ts","../../../node_modules/@types/pbkdf2/index.d.ts","../../../node_modules/@types/prettier/index.d.ts","../../../node_modules/@types/readable-stream/node_modules/safe-buffer/index.d.ts","../../../node_modules/@types/readable-stream/index.d.ts","../../../node_modules/@types/resolve/index.d.ts","../../../node_modules/@types/secp256k1/index.d.ts","../../../node_modules/@types/seedrandom/index.d.ts","../../../node_modules/@types/semver/classes/semver.d.ts","../../../node_modules/@types/semver/functions/parse.d.ts","../../../node_modules/@types/semver/functions/valid.d.ts","../../../node_modules/@types/semver/functions/clean.d.ts","../../../node_modules/@types/semver/functions/inc.d.ts","../../../node_modules/@types/semver/functions/diff.d.ts","../../../node_modules/@types/semver/functions/major.d.ts","../../../node_modules/@types/semver/functions/minor.d.ts","../../../node_modules/@types/semver/functions/patch.d.ts","../../../node_modules/@types/semver/functions/prerelease.d.ts","../../../node_modules/@types/semver/functions/compare.d.ts","../../../node_modules/@types/semver/functions/rcompare.d.ts","../../../node_modules/@types/semver/functions/compare-loose.d.ts","../../../node_modules/@types/semver/functions/compare-build.d.ts","../../../node_modules/@types/semver/functions/sort.d.ts","../../../node_modules/@types/semver/functions/rsort.d.ts","../../../node_modules/@types/semver/functions/gt.d.ts","../../../node_modules/@types/semver/functions/lt.d.ts","../../../node_modules/@types/semver/functions/eq.d.ts","../../../node_modules/@types/semver/functions/neq.d.ts","../../../node_modules/@types/semver/functions/gte.d.ts","../../../node_modules/@types/semver/functions/lte.d.ts","../../../node_modules/@types/semver/functions/cmp.d.ts","../../../node_modules/@types/semver/functions/coerce.d.ts","../../../node_modules/@types/semver/classes/comparator.d.ts","../../../node_modules/@types/semver/classes/range.d.ts","../../../node_modules/@types/semver/functions/satisfies.d.ts","../../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../../node_modules/@types/semver/ranges/min-version.d.ts","../../../node_modules/@types/semver/ranges/valid.d.ts","../../../node_modules/@types/semver/ranges/outside.d.ts","../../../node_modules/@types/semver/ranges/gtr.d.ts","../../../node_modules/@types/semver/ranges/ltr.d.ts","../../../node_modules/@types/semver/ranges/intersects.d.ts","../../../node_modules/@types/semver/ranges/simplify.d.ts","../../../node_modules/@types/semver/ranges/subset.d.ts","../../../node_modules/@types/semver/internals/identifiers.d.ts","../../../node_modules/@types/semver/index.d.ts","../../../node_modules/@types/sinonjs__fake-timers/index.d.ts","../../../node_modules/@types/sinon/index.d.ts","../../../node_modules/@types/sinon-chai/index.d.ts","../../../node_modules/@types/stack-utils/index.d.ts","../../../node_modules/@types/underscore/index.d.ts","../../../node_modules/@types/web3/providers.d.ts","../../../node_modules/@types/web3/types.d.ts","../../../node_modules/@types/web3/promiEvent.d.ts","../../../node_modules/@types/web3/eth/abi.d.ts","../../../node_modules/@types/web3/eth/types.d.ts","../../../node_modules/@types/web3/utils.d.ts","../../../node_modules/@types/web3/eth/contract.d.ts","../../../node_modules/@types/web3/eth/accounts.d.ts","../../../node_modules/@types/web3/eth/index.d.ts","../../../node_modules/@types/web3/index.d.ts","../../../node_modules/@types/ws/index.d.ts","../../../node_modules/@types/yargs-parser/index.d.ts","../../../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"f3d4da15233e593eacb3965cde7960f3fddf5878528d882bcedd5cbaba0193c7","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"1f03b495671c3a1bd24510f38b8947f0991dfd6bf0278c68eca14af15b306e1f","1fcb8b15db812281d69a3090d488903f9e93033004aef9d8889ca3ad0753a96f","bdf5a95eb0a2dd1d39805bdf51b46ba012bb9b92b2ddaae16219595bba7678a5","9f794a0e8550a03baff865a3961cc22afbd85bc4ba9672bdda036971928f85f4","66a697d1e4cdbf25cdce4644a8085a8563041fa8c7731d4d9f5e8f22e66ba72c","4f1ae3f24125216cf07c5211a3f00d2bb4782d7cc76c0681603f8249f9232ff0","d3fb92a5640f83f7844d60b35317a0f95c27e3658a749d76d218c461ad091668","8bc2cad630da1033c1fd8d7df2bffb18af0da6113bd086a8bbec04a2471a1e00","d1f8bfcd91b284657ef8187c55ace7db91a3c43e642c3f14e54364154932f7e4","f54c92bfcae54f360fe79514746efce4870e4ddabc064e95d406bba291e9f672","175fd7186fa6a70f9db9b270a04a503cae23cf01cb77e3905bac115c38424cf7","c993f7ed1b8e1023c1f2ee5b262dbc3b70b27475674e40a53a58591f9972dacc","e57d368ee6936f86ecb30c88752b073cb4a56b53f40bbecb482146a6a0bb4052","a0c8e17f4d1ea2704c62d7349bc3b8d9a12e3761b5960cb44144d3f0333b3fcb","3471c0df3d0391e1dffe6e8bf150294531b2b71a2afa5f2b86e52bf84a5db60a","5d4df4de055eddf3187094f938a640f8d96e4c551a47d6686596fdb6ba4c3014","a1059d1bbc8ad46bfe668b8450e7e8002887c4ab987bdb96d6108d8023f8bb8f","5134885e9648e2c6745f8aa1c3e7f5ab3b3617258b3d81ca02de6655ede3d74e","c914014ab7c7001178663f29d31a495398234a41219af61f26d7e8e91b46af96","d22b49f8270b572e27a0e02854270c7b9848f693a5c93f7dccf4b08543b913dd","40078da83a42f1a86159eedf5e52e2f5ee76fce83e9a389f400989ceae8c877b","7e771891adaa85b690266bc37bd6eb43bc57eecc4b54693ead36467e7369952a","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"57b6cb95756d1fe3bfeb20205de27b0c5406e4a86e130c6dfa6bd92af641e09d","affectsGlobalScope":true},"11e2d554398d2bd460e7d06b2fa5827a297c8acfbe00b4f894a224ac0862857f",{"version":"e193e634a99c9c1d71f1c6e4e1567a4a73584328d21ea02dd5cddbaad6693f61","affectsGlobalScope":true},"374ca798f244e464346f14301dc2a8b4b111af1a83b49fffef5906c338a1f922","5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713",{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","e596c9bb2f29a2699fdd4ae89139612652245192f67f45617c5a4b20832aaae9","bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","1cdcfc1f624d6c08aa12c73935f6e13f095919cd99edf95752951796eb225729","216717f17c095cde1dc19375e1ab3af0a4a485355860c077a4f9d6ea59fab5b5","14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"816ad2e607a96de5bcac7d437f843f5afd8957f1fa5eefa6bba8e4ed7ca8fd84","affectsGlobalScope":true},"80473bd0dd90ca1e166514c2dfead9d5803f9c51418864ca35abbeec6e6847e1","1c84b46267610a34028edfd0d035509341751262bac1062857f3c8df7aff7153","e6c86d83bd526c8bdb5d0bf935b8e72ce983763d600743f74d812fdf4abf4df6","a3d541d303ee505053f5dcbf9fafb65cac3d5631037501cd616195863a6c5740","8d3c583a07e0c37e876908c2d5da575019f689df8d9fa4c081d99119d53dba22","2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58",{"version":"e630e5528e899219ae319e83bef54bf3bcb91b01d76861ecf881e8e614b167f0","affectsGlobalScope":true},"bcebb922784739bdb34c18ee51095d25a92b560c78ccd2eaacd6bd00f7443d83","7ee6ed878c4528215c82b664fe0cfe80e8b4da6c0d4cc80869367868774db8b1","b0973c3cbcdc59b37bf477731d468696ecaf442593ec51bab497a613a580fe30",{"version":"4989e92ba5b69b182d2caaea6295af52b7dc73a4f7a2e336a676722884e7139d","affectsGlobalScope":true},{"version":"0715e4cd28ad471b2a93f3e552ff51a3ae423417a01a10aa1d3bc7c6b95059d6","affectsGlobalScope":true},"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","210d54cd652ec0fec8c8916e4af59bb341065576ecda039842f9ffb2e908507c","36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","7d55d78cd47cf5280643b53434b16c2d9d11d144126932759fbdd51da525eec4","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","69ee23dd0d215b09907ad30d23f88b7790c93329d1faf31d7835552a10cf7cbf","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","f69ff39996a61a0dd10f4bce73272b52e8024a4d58b13ab32bf4712909d0a2b7",{"version":"3c4ba1dd9b12ffa284b565063108f2f031d150ea15b8fafbdc17f5d2a07251f3","affectsGlobalScope":true},"e10177274a35a9d07c825615340b2fcde2f610f53f3fb40269fd196b4288dda6","c4577fb855ca259bdbf3ea663ca73988ce5f84251a92b4aef80a1f4122b6f98e","3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2",{"version":"f0900cd5d00fe1263ff41201fb8073dbeb984397e4af3b8002a5c207a30bdc33","affectsGlobalScope":true},{"version":"ff07a9a03c65732ccc59b3c65bc584173da093bd563a6565411c01f5703bd3cb","affectsGlobalScope":true},"6de4a219df57d2b27274d59b67708f13c2cbf7ed211abe57d8f9ab8b25cde776","0fe8985a28f82c450a04a6edf1279d7181c0893f37da7d2a27f8efd4fd5edb03","e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa",{"version":"da26af7362f53d122283bc69fed862b9a9fe27e01bc6a69d1d682e0e5a4df3e6","affectsGlobalScope":true},"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"d8d555f3d607ecaa18d55de6995ea8f206342ecc93305919eac945c7c78c78c6","01f7828047b5c6703d3c601473618b448f5506a88fcac852638b0715c3abf4eb","a2d875a97eeee8872d7a6d30c65fc2c19aee4fca3b98edda1c2f5ce7323c16da","a4094460554a9af9b1b83722e84406dee3a9ee8d006e026fa420469b967fac35","ea0073193ec3eecfa2a19d0648ef34aae4739a312c56447942b4ed15509a242c","d58102c04b14035f9562840a878ecd854540a0ee79e4d91d344146c35f9ec049","98b638e5a6ee4d005463741b14cd0380a960ee924ad52410c5a1ecb7dadeba3f","7673470ac1bee8a1b9d7428e9d06e280e83c839b75a120a95a623f8cb7cc59cf","fadded92012d86ccf0bb1e3c3fb763f3256b5eefca799c326d1c573f0e8988f0","f75532567ea8cea3cf5e62a55146a291021da1f769592c0f0556c60b27731d77","322409004f1d4e62ceed9adf8080296512c00a82d57fff8c8100ac5dcc80b603","73b6faac275671e0a2bc8c0e13d07278ec31d1d560cbf38231ee40ecbc9d62f4","028b0c9599c68c920c2e24bf0a7a7c946c33903e34276a49b604c73ad7fc8086","b43a4737fda432745d01a9a31b4799f1cb1874a6eb17b96d53f7b6b59449c600","13aeb6bfa3c945a9854a0b81c9d58e04361b5c7422f447884cf1302314418632","820e6be224849f48893eff195d7b7f7ef512956d9ce5b0fb98248cd518744d4b","c7ffb807f424f486d7d5ccbe17461cf62419a142e941db0a036c8d91ad79ccf2","4fca445f2728aec405f55462cb3ecdc1c8f73c1ed25f49ffd7aa01879c9f04a1","91b48d5ddb6ef5566785c0d1514588ed7259049f6220867f9d21d552a6790250","e2ab4a953bf7eac45d1e75569d77fbfd1362b3105505341a7aed587243ada9da",{"version":"3c3f427c08e4e75c786fbe4f6bd6228af378ba20c8fff10cebf24cacce4bb696","signature":"dfdb34e7262fd504171fd297ba344b59cd35943527456485373ad1316a62757f"},{"version":"d8d74b78ea19bdbe9e1e6dfaa67c42fccfab1b7f940e9e280a4a2eef806c17bc","signature":"ba8812055c66fd1965dfbf6d1efa7a2bec461a9471e6e35ebfb6696d4a174091"},"736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","c8a34d0c858532a9fab7f0b65f3cff6507df055a0cd8b965c4fd5667b5a0cf7d","3663d1b50f356656a314e5df169bb51cb9d5fd75905fa703f75db6bb32030568",{"version":"2e6392bb700af6cf18e60991e2e88d56ff0413eabc0fa6e6da671d7dae6eabbd","signature":"4a44c9f8b253f47b93137176093a5c21476923fe7f14b4f4cf09839ed0d6f36d"},{"version":"1e419afebdc76936915cb81854ca77379287ae46253b7b91d33ff7594a54ea84","signature":"e8482bf22dd1d0da269a8ebaf8ccbbd959b085a7d0ac39769ddbffd0fc0c5964"},{"version":"eef35561b7001c7ea5db14bcd8449690f3869a7b93611a67ee50057f72adfe7a","signature":"98ac90356e1b5d84860d9400020289e1fc82a5384f619fd4dfafc370d25e8ce7"},"409b21f3d0c198cc4866b941cd9303809a13230e2b9b3c1508fe61348a8b43ed","6738101ae8e56cd3879ab3f99630ada7d78097fc9fd334df7e766216778ca219","3078727fed04c123165efdb42deeac5dceaa42ac62216ca13cb809dc7e13415f","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","b4f76b34637d79cefad486127115fed843762c69512d7101b7096e1293699679","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","dae3d1adc67ac3dbd1cd471889301339ec439837b5df565982345be20c8fca9a","b6ddf3a46ccfa4441d8be84d2e9bf3087573c48804196faedbd4a25b60631beb","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","92edb6e257fa64d3baae647490e041912684f5dc1f243d0aedd60b4b383ff50b","cab425b5559edac18327eb2c3c0f47e7e9f71b667290b7689faafd28aac69eae","3cfb0cb51cc2c2e1b313d7c4df04dbf7e5bda0a133c6b309bf6af77cf614b971","f992cd6cc0bcbaa4e6c810468c90f2d8595f8c6c3cf050c806397d3de8585562",{"version":"b9734142a4b241cfb505be4a2eb0261d211647df7c73043f817f4fdd8d96c846","affectsGlobalScope":true},{"version":"63e2182615c513e89bb8a3e749d08f7c379e86490fcdbf6d35f2c14b3507a6e8","affectsGlobalScope":true},"6fbd58e4015b9ae31ea977d4d549eb24a1102cc798b57ec5d70868b542c06612","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"ae3fe461989bbd951344efc1f1fe932360ce7392e6126bdb225a82a1bbaf15ee","affectsGlobalScope":true},"5b9ecf7da4d71cf3832dbb8336150fa924631811f488ad4690c2dfec2b4fb1d7","951c85f75aac041dddbedfedf565886a7b494e29ec1532e2a9b4a6180560b50e","e6f0cb9d8cb2e38bec66e032e73caa3e7c6671f21ed7196acb821aec462051f2",{"version":"c5dd1fef4cd4aaffc78786047bed5ae6fc1200d19a1946cbc4e2d3ed4d62c8fa","affectsGlobalScope":true},"15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae","bf88ef4208a770ca39a844b182b3695df536326ea566893fdc5b8418702a331e","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","6c1e688f95fcaf53b1e41c0fdadf2c1cfc96fa924eaf7f9fdb60f96deb0a4986","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","db25694be959314fd1e868d72e567746db1db9e2001fae545d12d2a8c1bba1b8","43883cf3635bb1846cbdc6c363787b76227677388c74f7313e3f0edb380840fa","2d47012580f859dae201d2eef898a416bdae719dffc087dfd06aefe3de2f9c8d","3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","2cec1a31729b9b01e9294c33fc9425d336eff067282809761ad2e74425d6d2a5",{"version":"458e2fd1185e659cb800ef68d01ef77de70dcab8860bedf6d94eaebe736751f1","affectsGlobalScope":true},"ba600bf38b5c1a5dffa1b99dd7a783549082bbba3b4fe9497eaaf5e4c1764b20","ae8cd6af37275eac75f5369cdb5f01063bcf1f48d74cb434303ee50ec446acfe","2518830a2fda9c272ba48798d0e7b857037443b06594db8e42c87e86944ee9e4","95c1cf650d16b197525b5bfdf8dd7abba0a49d99ddb12a4ba66466a8a6903e49","1fe0aabe758d56ad72495d6e6c7b6ae75619faaeaaf03f0ddf1948eea4cfac84","bbc57966c8c48ee78fd58aadb893784025be056ae538ae22d1e83c502a987e68","5e5d6f6697e378b0660b567866bf67d099d0ea754f8810c0dabe737805f5cf03","99ab49d4732fdc98cf5c495925e65e796544cb4086fe42afc235dfc02bcf2351","af8339d509c40da075088e544c28ed37b519876e5c4d36a48644ebfb3c6ae6c8","d393adc32e520d4274bb4c3dfdcdb342b806a230b66ef0f82b35bffbc4aa2590","c26af7eaedb4f710984634e419ab15e54e5bb99a0b3cae71188c2fff572276de","38b58ef018d0aeee42ef74c42978bb5805503233fdeeb82cd2aed2199fb0d013","3b6040253231d44e6778eb6861cc86c1758562e77783d21b7ecbc73322ded539","cc256fd958b33576ed32c7338c64adb0d08fc0c2c6525010202fab83f32745da","fd0589ca571ad090b531d8c095e26caa53d4825c64d3ff2b2b1ab95d72294175",{"version":"669843ecafb89ae1e944df06360e8966219e4c1c34c0d28aa2503272cdd444a7","affectsGlobalScope":true},"f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","fec943fdb3275eb6e006b35e04a8e2e99e9adf3f4b969ddf15315ac7575a93e4","49afdedca00d22b171678e3cf9c47b7e0c1846fd4905a01d68f0145eb90add94","f76664b98868fc7c62a83e62cecb8db7c3a2d44bc1d9250b368bd799ec370d47","0e60e0cbf2283adfd5a15430ae548cd2f662d581b5da6ecd98220203e7067c70","6d727c1f6a7122c04e4f7c164c5e6f460c21ada618856894cdaa6ac25e95f38c","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","6396a7a06f3ef0fc31a7c89330e015146b78a2256b030c698b6d404594c37b8f",{"version":"677646e2620795c98a539fb12fb531f10331c217cef1492132b2518f894fa92d","affectsGlobalScope":true},"6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","a73a445c1e0a6d0f8b48e8eb22dc9d647896783a7f8991cbbc31c0d94bf1f5a2","bc88e4049153bc4dddb4503ed7e624eb141edfa9064b3659d6c86e900fe9e621","5e379df3d61561c2ed7789b5995b9ba2143bbba21a905e2381e16efe7d1fa424","f07a137bbe2de7a122c37bfea00e761975fb264c49f18003d398d71b3fb35a5f","2880728492d6a6baa55411d14cc42fa55714a24b1d1d27ff9a8a610abd47c761","3dce33e7eb25594863b8e615f14a45ab98190d85953436750644212d8a18c066","782e0d7224de8a4c01319edb13a0f20ed496048e15aa9d8a50b5d47b4e04e549","2b93035328f7778d200252681c1d86285d501ed424825a18f81e4c3028aa51d9","2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","77c1d91a129ba60b8c405f9f539e42df834afb174fe0785f89d92a2c7c16b77a","7a9e0a564fee396cacf706523b5aeed96e04c6b871a8bebefad78499fbffc5bc","906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","71405cc70f183d029cc5018375f6c35117ffdaf11846c35ebf85ee3956b1b2a6","c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","c649ea79205c029a02272ef55b7ab14ada0903db26144d2205021f24727ac7a3","38e2b02897c6357bbcff729ef84c736727b45cc152abe95a7567caccdfad2a1d","d6610ea7e0b1a7686dba062a1e5544dd7d34140f4545305b7c6afaebfb348341","3dee35db743bdba2c8d19aece7ac049bde6fa587e195d86547c882784e6ba34c","b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","843dd7b6a7c6269fd43827303f5cbe65c1fecabc30b4670a50d5a15d57daeeb9","f06d8b8567ee9fd799bf7f806efe93b67683ef24f4dea5b23ef12edff4434d9d","6017384f697ff38bc3ef6a546df5b230c3c31329db84cbfe686c83bec011e2b2","e1a5b30d9248549ca0c0bb1d653bafae20c64c4aa5928cc4cd3017b55c2177b0","a593632d5878f17295bd53e1c77f27bf4c15212822f764a2bfc1702f4b413fa0","a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","da7545aba8f54a50fde23e2ede00158dc8112560d934cee58098dfb03aae9b9d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","6aee496bf0ecfbf6731aa8cca32f4b6e92cdc0a444911a7d88410408a45ecc5d","f83b320cceccfc48457a818d18fc9a006ab18d0bdd727aa2c2e73dc1b4a45e98","354abbae08f72ea982b1a767a8908f1b3efe8bbe53955c64f9c0c249c8832d5d",{"version":"4f0ad52a7fbd6bfba88ec22ec719b6956a0fc647030462f9db490e74236d116f","affectsGlobalScope":true},"b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298",{"version":"0609dda5350cd6d8c42daef710dffe3b51521ffbd00109e234f7bfb7533194e7","affectsGlobalScope":true},"0f9f94b7caca60b16c514a8bf49a57dcded0d6abc74a4d210ce9c65dc3e04359","b3a0aa09f97a4f9716b424f2dc54b1680186defd8a8c08521fda12e47aa23c1d","8f0104c65272dba2fb78eb38c7718cbd162a7eb095112fc9a5b3d9081653ceac","52dbd8586a877a6269dd7082e6b4b792b8fc89c0a655cb82b85730969bc8b235","06fab790131435efcd395e72db60da8fe24822c49a2bbd1ccac75d8404b9caec","2fea9e03353d630c4644dc84b57cb36d666c725f3f37c1f60f8bc18bd9b38cdb","e3dc9302cbaba64212b443b0fea8f59454733a077f17528c13873dfe112752a5","2d5a33fcc690c375ede77d8c485f1a982f433be2bedf0bf43c172a710047d74d","ac78c2de46d5c3b988a3da4d34bc47d4506b2fa0a278046f94e34b0ff7b2e4ef","58c4efcc340056638dad7542333fc50d0109eb86e84b0618a9f20fe020e45e49","bc81aff061c53a7140270555f4b22da4ecfe8601e8027cf5aa175fbdc7927c31","70e9a18da08294f75bf23e46c7d69e67634c0765d355887b9b41f0d959e1426e","149ebd778196c03e9c75b630866543501e0e9e62a146c1a17ce91ade4cdfb0ba"],"options":{"allowSyntheticDefaultImports":true,"alwaysStrict":true,"composite":true,"declaration":true,"esModuleInterop":true,"experimentalDecorators":true,"module":1,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitReturns":true,"noImplicitThis":true,"noUnusedParameters":true,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"strictBindCallApply":true,"strictFunctionTypes":true,"strictNullChecks":true,"strictPropertyInitialization":true,"target":6},"fileIdsList":[[113,150],[113],[47,59,60,113],[47,50,113],[50,113],[59,61,62,113],[47,50,53,59,60,61,113],[47,50,52,53,54,55,113],[47,50,53,56,113],[47,113],[47,48,113],[48,49,113],[47,50,54,56,57,63,113],[51,113],[113,179],[113,131],[113,131,132,133,134,135],[86,113,120],[113,150,151,152,153,154],[113,150,152],[113,120],[86,113,120,156],[83,86,112,113,120,158,159,160],[113,162],[86,113],[83,86,113,120,165,166],[113,157,166,167,170,171],[84,113,120],[113,174],[113,175],[113,181,184],[83,113,115,120,198,199,201],[113,200],[83,113,120],[83,113,120,148,204],[113,169],[113,168],[86,112,113,120,142,143],[86,101,113,120],[67,113],[70,113],[71,76,104,113],[72,83,84,91,101,112,113],[72,73,83,91,113],[74,113],[75,76,84,92,113],[76,101,109,113],[77,79,83,91,113],[78,113],[79,80,113],[83,113],[81,83,113],[83,84,85,101,112,113],[83,84,85,98,101,104,113],[113,117],[79,86,91,101,112,113],[83,84,86,87,91,101,109,112,113],[86,88,101,109,112,113],[67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119],[83,89,113],[90,112,113],[79,83,91,101,113],[92,113],[93,113],[70,94,113],[95,111,113,117],[96,113],[97,113],[83,98,99,113],[98,100,113,115],[71,83,101,102,103,104,113],[71,101,103,113],[101,102,113],[104,113],[105,113],[83,107,108,113],[107,108,113],[76,91,101,109,113],[110,113],[91,111,113],[71,86,97,112,113],[76,113],[101,113,114],[113,115],[113,116],[71,76,83,85,94,101,112,113,115,117],[101,113,118],[113,120,216],[113,221,260],[113,221,245,260],[113,260],[113,221],[113,221,246,260],[113,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259],[113,246,260],[86,113,120,169],[113,162,262],[113,261],[113,270],[113,266,267,269,270],[113,121,266,267,268,269,270,272,273],[113,267,268,269],[113,266,267,270,271,274],[113,267],[113,121,265],[83,86,88,91,101,109,112,113,118,120],[113,277],[113,177,183],[113,181],[113,178,182],[113,187],[113,186,187],[113,186],[113,186,187,188,190,191,194,195,196,197],[113,187,191],[113,186,187,188,190,191,192,193],[113,186,191],[113,191,195],[113,187,188,189],[113,188],[113,186,187,191],[113,180],[86,88,91,113],[65,113],[65,66,91,113,121,122],[113,139,140,141,145],[113,140,146],[57,113,139],[113,144],[113,124],[50,113,124],[50,58,113,124,125,126,127,128,129,130,136,137],[58,113,124,125,126,127,128,129,130,138],[64,113,123],[113,121],[139,140],[140,146],[57,139]],"referencedMap":[[152,1],[150,2],[61,3],[60,4],[59,5],[63,6],[62,7],[56,8],[57,9],[48,10],[49,11],[50,12],[47,2],[64,13],[52,14],[51,2],[53,2],[54,4],[55,2],[177,2],[180,15],[133,16],[135,16],[136,17],[134,16],[132,16],[131,2],[179,2],[148,2],[149,18],[155,19],[151,1],[153,20],[154,1],[121,21],[157,22],[161,23],[163,24],[162,2],[156,18],[164,25],[167,26],[172,27],[171,26],[173,28],[159,2],[174,2],[175,29],[176,30],[185,31],[200,32],[201,33],[202,2],[203,34],[204,2],[205,35],[206,2],[207,2],[168,36],[169,37],[208,2],[209,2],[210,28],[211,2],[143,2],[144,38],[142,39],[67,40],[68,40],[70,41],[71,42],[72,43],[73,44],[74,45],[75,46],[76,47],[77,48],[78,49],[79,50],[80,50],[82,51],[81,52],[83,51],[84,53],[85,54],[69,55],[119,2],[86,56],[87,57],[88,58],[120,59],[89,60],[90,61],[91,62],[92,63],[93,64],[94,65],[95,66],[96,67],[97,68],[98,69],[99,69],[100,70],[101,71],[103,72],[102,73],[104,74],[105,75],[106,2],[107,76],[108,77],[109,78],[110,79],[111,80],[112,81],[113,82],[114,83],[115,84],[116,85],[117,86],[118,87],[212,2],[213,2],[214,21],[215,2],[166,2],[165,2],[217,88],[216,2],[218,21],[160,39],[219,21],[220,2],[245,89],[246,90],[221,91],[224,91],[243,89],[244,89],[234,89],[233,92],[231,89],[226,89],[239,89],[237,89],[241,89],[225,89],[238,89],[242,89],[227,89],[228,89],[240,89],[222,89],[229,89],[230,89],[232,89],[236,89],[247,93],[235,89],[223,89],[260,94],[259,2],[254,93],[256,95],[255,93],[248,93],[249,93],[251,93],[253,93],[257,95],[258,95],[250,95],[252,95],[170,96],[263,97],[262,98],[261,2],[264,2],[199,2],[265,2],[269,2],[273,99],[272,100],[274,101],[270,102],[275,103],[268,104],[266,2],[267,2],[271,105],[276,106],[277,2],[278,107],[122,2],[178,2],[184,108],[182,109],[183,110],[158,51],[188,111],[197,112],[186,2],[187,113],[198,114],[193,115],[194,116],[192,117],[196,118],[190,119],[189,120],[195,121],[191,112],[181,122],[8,2],[9,2],[13,2],[12,2],[2,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[3,2],[4,2],[25,2],[22,2],[23,2],[24,2],[26,2],[27,2],[28,2],[5,2],[29,2],[30,2],[31,2],[32,2],[6,2],[46,2],[36,2],[33,2],[34,2],[35,2],[37,2],[7,2],[38,2],[43,2],[44,2],[39,2],[40,2],[41,2],[42,2],[1,2],[45,2],[11,2],[10,2],[65,123],[66,124],[123,125],[146,126],[147,127],[140,128],[145,129],[141,2],[58,2],[125,130],[126,131],[127,130],[128,2],[129,2],[130,130],[138,132],[139,133],[124,134],[137,135]],"exportedModulesMap":[[152,1],[150,2],[61,3],[60,4],[59,5],[63,6],[62,7],[56,8],[57,9],[48,10],[49,11],[50,12],[47,2],[64,13],[52,14],[51,2],[53,2],[54,4],[55,2],[177,2],[180,15],[133,16],[135,16],[136,17],[134,16],[132,16],[131,2],[179,2],[148,2],[149,18],[155,19],[151,1],[153,20],[154,1],[121,21],[157,22],[161,23],[163,24],[162,2],[156,18],[164,25],[167,26],[172,27],[171,26],[173,28],[159,2],[174,2],[175,29],[176,30],[185,31],[200,32],[201,33],[202,2],[203,34],[204,2],[205,35],[206,2],[207,2],[168,36],[169,37],[208,2],[209,2],[210,28],[211,2],[143,2],[144,38],[142,39],[67,40],[68,40],[70,41],[71,42],[72,43],[73,44],[74,45],[75,46],[76,47],[77,48],[78,49],[79,50],[80,50],[82,51],[81,52],[83,51],[84,53],[85,54],[69,55],[119,2],[86,56],[87,57],[88,58],[120,59],[89,60],[90,61],[91,62],[92,63],[93,64],[94,65],[95,66],[96,67],[97,68],[98,69],[99,69],[100,70],[101,71],[103,72],[102,73],[104,74],[105,75],[106,2],[107,76],[108,77],[109,78],[110,79],[111,80],[112,81],[113,82],[114,83],[115,84],[116,85],[117,86],[118,87],[212,2],[213,2],[214,21],[215,2],[166,2],[165,2],[217,88],[216,2],[218,21],[160,39],[219,21],[220,2],[245,89],[246,90],[221,91],[224,91],[243,89],[244,89],[234,89],[233,92],[231,89],[226,89],[239,89],[237,89],[241,89],[225,89],[238,89],[242,89],[227,89],[228,89],[240,89],[222,89],[229,89],[230,89],[232,89],[236,89],[247,93],[235,89],[223,89],[260,94],[259,2],[254,93],[256,95],[255,93],[248,93],[249,93],[251,93],[253,93],[257,95],[258,95],[250,95],[252,95],[170,96],[263,97],[262,98],[261,2],[264,2],[199,2],[265,2],[269,2],[273,99],[272,100],[274,101],[270,102],[275,103],[268,104],[266,2],[267,2],[271,105],[276,106],[277,2],[278,107],[122,2],[178,2],[184,108],[182,109],[183,110],[158,51],[188,111],[197,112],[186,2],[187,113],[198,114],[193,115],[194,116],[192,117],[196,118],[190,119],[189,120],[195,121],[191,112],[181,122],[8,2],[9,2],[13,2],[12,2],[2,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[3,2],[4,2],[25,2],[22,2],[23,2],[24,2],[26,2],[27,2],[28,2],[5,2],[29,2],[30,2],[31,2],[32,2],[6,2],[46,2],[36,2],[33,2],[34,2],[35,2],[37,2],[7,2],[38,2],[43,2],[44,2],[39,2],[40,2],[41,2],[42,2],[1,2],[45,2],[11,2],[10,2],[65,123],[66,124],[123,125],[146,136],[147,137],[140,138],[58,2],[125,130],[126,131],[127,130],[128,2],[129,2],[130,130],[138,132],[139,133],[124,134],[137,135]],"semanticDiagnosticsPerFile":[152,150,61,60,59,63,62,56,57,48,49,50,47,64,52,51,53,54,55,177,180,133,135,136,134,132,131,179,148,149,155,151,153,154,121,157,161,163,162,156,164,167,172,171,173,159,174,175,176,185,200,201,202,203,204,205,206,207,168,169,208,209,210,211,143,144,142,67,68,70,71,72,73,74,75,76,77,78,79,80,82,81,83,84,85,69,119,86,87,88,120,89,90,91,92,93,94,95,96,97,98,99,100,101,103,102,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,212,213,214,215,166,165,217,216,218,160,219,220,245,246,221,224,243,244,234,233,231,226,239,237,241,225,238,242,227,228,240,222,229,230,232,236,247,235,223,260,259,254,256,255,248,249,251,253,257,258,250,252,170,263,262,261,264,199,265,269,273,272,274,270,275,268,266,267,271,276,277,278,122,178,184,182,183,158,188,197,186,187,198,193,194,192,196,190,189,195,191,181,8,9,13,12,2,14,15,16,17,18,19,20,21,3,4,25,22,23,24,26,27,28,5,29,30,31,32,6,46,36,33,34,35,37,7,38,43,44,39,40,41,42,1,45,11,10,65,66,123,146,147,140,145,141,58,125,126,127,128,129,130,138,139,124,137],"latestChangedDtsFile":"./src/index.d.ts"},"version":"4.9.5"}
|
package/package.json
CHANGED
|
@@ -1,62 +1,62 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@safe-global/api-kit",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "Safe API Kit",
|
|
5
|
-
"main": "dist/src/index.js",
|
|
6
|
-
"typings": "dist/src/index.d.ts",
|
|
7
|
-
"keywords": [
|
|
8
|
-
"Ethereum",
|
|
9
|
-
"Safe",
|
|
10
|
-
"Service",
|
|
11
|
-
"API"
|
|
12
|
-
],
|
|
13
|
-
"scripts": {
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"test
|
|
17
|
-
"test:
|
|
18
|
-
"test": "
|
|
19
|
-
"test:ci
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
},
|
|
25
|
-
"repository": {
|
|
26
|
-
"type": "git",
|
|
27
|
-
"url": "git+https://github.com/safe-global/safe-core-sdk.git"
|
|
28
|
-
},
|
|
29
|
-
"author": "Safe (https://safe.global)",
|
|
30
|
-
"license": "MIT",
|
|
31
|
-
"bugs": {
|
|
32
|
-
"url": "https://github.com/safe-global/safe-core-sdk/issues"
|
|
33
|
-
},
|
|
34
|
-
"files": [
|
|
35
|
-
"dist"
|
|
36
|
-
],
|
|
37
|
-
"homepage": "https://github.com/safe-global/safe-core-sdk#readme",
|
|
38
|
-
"devDependencies": {
|
|
39
|
-
"@nomiclabs/hardhat-ethers": "^2.2.2",
|
|
40
|
-
"@nomiclabs/hardhat-web3": "^2.0.0",
|
|
41
|
-
"@safe-global/protocol-kit": "^
|
|
42
|
-
"@types/chai": "^4.3.4",
|
|
43
|
-
"@types/chai-as-promised": "^7.1.5",
|
|
44
|
-
"@types/mocha": "^10.0.1",
|
|
45
|
-
"@types/sinon-chai": "^3.2.9",
|
|
46
|
-
"@types/yargs": "^16.0.1",
|
|
47
|
-
"chai": "^4.3.7",
|
|
48
|
-
"chai-as-promised": "^7.1.1",
|
|
49
|
-
"hardhat": "^2.12.6",
|
|
50
|
-
"mocha": "^10.2.0",
|
|
51
|
-
"sinon": "^14.0.0",
|
|
52
|
-
"sinon-chai": "^3.7.0",
|
|
53
|
-
"ts-generator": "^0.1.1",
|
|
54
|
-
"tsconfig-paths": "^4.1.2",
|
|
55
|
-
"yargs": "^17.6.2"
|
|
56
|
-
},
|
|
57
|
-
"dependencies": {
|
|
58
|
-
"@ethersproject/abstract-signer": "^5.7.0",
|
|
59
|
-
"@safe-global/safe-core-sdk-types": "^
|
|
60
|
-
"node-fetch": "^2.6.6"
|
|
61
|
-
}
|
|
62
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@safe-global/api-kit",
|
|
3
|
+
"version": "1.1.0",
|
|
4
|
+
"description": "Safe API Kit",
|
|
5
|
+
"main": "dist/src/index.js",
|
|
6
|
+
"typings": "dist/src/index.d.ts",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"Ethereum",
|
|
9
|
+
"Safe",
|
|
10
|
+
"Service",
|
|
11
|
+
"API"
|
|
12
|
+
],
|
|
13
|
+
"scripts": {
|
|
14
|
+
"test:web3": "export TESTS_PATH=tests/endpoint && export ETH_LIB=web3 && nyc hardhat test",
|
|
15
|
+
"test:ethers": "export TESTS_PATH=tests/endpoint && export ETH_LIB=ethers && nyc hardhat test",
|
|
16
|
+
"test": "yarn test:ethers",
|
|
17
|
+
"test:ci:web3": "export TESTS_PATH=tests/e2e && export ETH_LIB=web3 && nyc hardhat test",
|
|
18
|
+
"test:ci:ethers": "export TESTS_PATH=tests/e2e && export ETH_LIB=ethers && nyc hardhat test",
|
|
19
|
+
"test:ci": "yarn test:ci:ethers",
|
|
20
|
+
"format:check": "prettier --check \"*/**/*.{js,json,md,ts}\"",
|
|
21
|
+
"format": "prettier --write \"*/**/*.{js,json,md,ts}\"",
|
|
22
|
+
"unbuild": "rimraf dist .nyc_output cache",
|
|
23
|
+
"build": "yarn unbuild && tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json"
|
|
24
|
+
},
|
|
25
|
+
"repository": {
|
|
26
|
+
"type": "git",
|
|
27
|
+
"url": "git+https://github.com/safe-global/safe-core-sdk.git"
|
|
28
|
+
},
|
|
29
|
+
"author": "Safe (https://safe.global)",
|
|
30
|
+
"license": "MIT",
|
|
31
|
+
"bugs": {
|
|
32
|
+
"url": "https://github.com/safe-global/safe-core-sdk/issues"
|
|
33
|
+
},
|
|
34
|
+
"files": [
|
|
35
|
+
"dist"
|
|
36
|
+
],
|
|
37
|
+
"homepage": "https://github.com/safe-global/safe-core-sdk#readme",
|
|
38
|
+
"devDependencies": {
|
|
39
|
+
"@nomiclabs/hardhat-ethers": "^2.2.2",
|
|
40
|
+
"@nomiclabs/hardhat-web3": "^2.0.0",
|
|
41
|
+
"@safe-global/protocol-kit": "^1.0.0",
|
|
42
|
+
"@types/chai": "^4.3.4",
|
|
43
|
+
"@types/chai-as-promised": "^7.1.5",
|
|
44
|
+
"@types/mocha": "^10.0.1",
|
|
45
|
+
"@types/sinon-chai": "^3.2.9",
|
|
46
|
+
"@types/yargs": "^16.0.1",
|
|
47
|
+
"chai": "^4.3.7",
|
|
48
|
+
"chai-as-promised": "^7.1.1",
|
|
49
|
+
"hardhat": "^2.12.6",
|
|
50
|
+
"mocha": "^10.2.0",
|
|
51
|
+
"sinon": "^14.0.0",
|
|
52
|
+
"sinon-chai": "^3.7.0",
|
|
53
|
+
"ts-generator": "^0.1.1",
|
|
54
|
+
"tsconfig-paths": "^4.1.2",
|
|
55
|
+
"yargs": "^17.6.2"
|
|
56
|
+
},
|
|
57
|
+
"dependencies": {
|
|
58
|
+
"@ethersproject/abstract-signer": "^5.7.0",
|
|
59
|
+
"@safe-global/safe-core-sdk-types": "^2.0.0",
|
|
60
|
+
"node-fetch": "^2.6.6"
|
|
61
|
+
}
|
|
62
|
+
}
|