@gearbox-protocol/deploy-tools 5.57.6 → 5.57.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.mjs +6 -3
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -366805,10 +366805,13 @@ var SafeApiWrapper = class {
|
|
|
366805
366805
|
async #getSafeTransactions(api, hashes) {
|
|
366806
366806
|
let transactions = [];
|
|
366807
366807
|
if (hashes) {
|
|
366808
|
-
for (
|
|
366808
|
+
for (let i = 0; i < hashes.length; i++) {
|
|
366809
|
+
const hash4 = hashes[i];
|
|
366810
|
+
this.#logger?.debug(`[${i + 1}/${hashes.length}] getting tx ${hash4}`);
|
|
366809
366811
|
const tx = await api.getTransaction(hash4);
|
|
366810
366812
|
transactions.push(tx);
|
|
366811
|
-
|
|
366813
|
+
this.#logger?.info(`[${i + 1}/${hashes.length}] got tx ${hash4}`);
|
|
366814
|
+
await sleep(5e3);
|
|
366812
366815
|
}
|
|
366813
366816
|
} else {
|
|
366814
366817
|
const resp = await api.getPendingTransactions();
|
|
@@ -374630,7 +374633,7 @@ function getRenderer(opts) {
|
|
|
374630
374633
|
var package_default = {
|
|
374631
374634
|
name: "@gearbox-protocol/deploy-tools",
|
|
374632
374635
|
description: "Gearbox deploy tools",
|
|
374633
|
-
version: "5.57.
|
|
374636
|
+
version: "5.57.7",
|
|
374634
374637
|
homepage: "https://gearbox.fi",
|
|
374635
374638
|
keywords: [
|
|
374636
374639
|
"gearbox"
|