Skip to content

Commit

Permalink
Merge pull request #164 from metaplex-foundation/fix/umi-uploader-irys
Browse files Browse the repository at this point in the history
Import fix for umi-uploader-irys involving PromisePool
  • Loading branch information
tonyboylehub authored Feb 10, 2025
2 parents 3722027 + caf1cd8 commit 5103ef6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .changeset/early-chairs-hunt.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@metaplex-foundation/umi-uploader-irys': patch
---

Updated PromisePool import method for umi-uploader-irys which would error out on default import. Changing to a named import as per the docs seems to fix this issue.
1 change: 0 additions & 1 deletion packages/umi-uploader-cascade/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,3 @@
### Patch Changes

- [`e84c9e`](https://github.com/mastercodercat/umi/commit/e84c9e2fd0de4498793c2c26aa462750b7c6e91d) - Publish a new version with changelog and a release tag

2 changes: 1 addition & 1 deletion packages/umi-uploader-irys/src/createIrysUploader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ import {
} from '@solana/web3.js';
import BigNumber from 'bignumber.js';
import { Buffer } from 'buffer';
import PromisePool from '@supercharge/promise-pool';
import { PromisePool } from '@supercharge/promise-pool';
import {
AssetUploadFailedError,
IrysWithdrawError,
Expand Down

0 comments on commit 5103ef6

Please sign in to comment.