solana-developers / pirate-bootcamp

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

Transition from Bundlr to Irys storage driver #6

Open Csonuzun opened 11 months ago

Csonuzun commented 11 months ago

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

avcdsld commented 10 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 9 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!