solana-developers / pirate-bootcamp

A pirate-theme bootcamp for getting up to speed on Solana programming!
235 stars 145 forks source link

Transition from Bundlr to Irys storage driver #6

Open Csonuzun opened 9 months ago

Csonuzun commented 9 months ago

This transition causes problems at quest-1 scripts 6. So updating the BootCamp code might be good.

avcdsld commented 8 months ago

The solution is simple, but I struggled until I found it. I hope this information can be helpful to someone.

Before:

import { bundlrStorage } from "@metaplex-foundation/js";

After:

import { irysStorage } from "@metaplex-foundation/js";
WillEtheridge commented 7 months ago

The solution is simple, but I struggled until I found it. I hope this information can be helpful to someone.

Before:

import { bundlrStorage } from "@metaplex-foundation/js";

After:

import { irysStorage } from "@metaplex-foundation/js";

This was useful for me, thanks!