Skip to content

Commit

Permalink
fix: force package resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
QEDK committed Oct 22, 2024
1 parent 74ff5c5 commit c507c34
Show file tree
Hide file tree
Showing 3 changed files with 176 additions and 1,945 deletions.
4 changes: 2 additions & 2 deletions index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ const sendBlobTx = async (
);
if (typeof network !== "undefined") {
console.log(
`🧭 Link to explorer: https://${network as string}.avail.tools/#/explorer/query/${String(result.status.asInBlock)}`,
`🧭 Link to explorer: ${EXPLORER_URLS[network]}/#/explorer/query/${String(result.status.asInBlock)}`,
);
}
resolve();
Expand All @@ -164,7 +164,7 @@ const sendBlobTx = async (
);
if (typeof network !== "undefined") {
console.log(
`🧭 Link to explorer: https://${network as string}.avail.tools/#/explorer/query/${String(result.status.asFinalized)}`,
`🧭 Link to explorer: ${EXPLORER_URLS[network]}/#/explorer/query/${String(result.status.asFinalized)}`,
);
}
resolve();
Expand Down
Loading

0 comments on commit c507c34

Please sign in to comment.