Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

lock web3js at 1 #247

Merged
merged 1 commit into from
Oct 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/pages/bubblegum/getting-started/js.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ To get started, you'll need to [install the Umi framework](https://github.com/me
npm install \
@metaplex-foundation/umi \
@metaplex-foundation/umi-bundle-defaults \
@solana/web3.js \
@solana/web3.js@1 \
@metaplex-foundation/mpl-bubblegum
```

Expand Down
2 changes: 1 addition & 1 deletion src/pages/candy-machine/getting-started/js.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ To get started, you'll need to [install the Umi framework](https://github.com/me
npm install \
@metaplex-foundation/umi \
@metaplex-foundation/umi-bundle-defaults \
@solana/web3.js \
@solana/web3.js@1 \
@metaplex-foundation/mpl-candy-machine
```

Expand Down
2 changes: 1 addition & 1 deletion src/pages/core/getting-started/js.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ To get started, you'll need to [install the Umi framework](https://github.com/me
npm install \
@metaplex-foundation/umi \
@metaplex-foundation/umi-bundle-defaults \
@solana/web3.js \
@solana/web3.js@1 \
@metaplex-foundation/mpl-core
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ npm init

### Required Packages

Install the required pacakges for this guide.
Install the required packages for this guide.

{% packagesUsed packages=["umi", "umiDefaults" ,"toolbox"] type="npm" /%}

Expand Down
2 changes: 1 addition & 1 deletion src/pages/inscription/getting-started/js.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ To get started, you'll need to [install the Umi framework](https://github.com/me
npm install \
@metaplex-foundation/umi \
@metaplex-foundation/umi-bundle-defaults \
@solana/web3.js \
@solana/web3.js@1 \
@metaplex-foundation/mpl-inscription
```

Expand Down
2 changes: 1 addition & 1 deletion src/pages/token-metadata/getting-started/js.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ To get started, you'll need to [install the Umi framework](https://github.com/me
npm install \
@metaplex-foundation/umi \
@metaplex-foundation/umi-bundle-defaults \
@solana/web3.js \
@solana/web3.js@1 \
@metaplex-foundation/mpl-token-metadata
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ npm init

### Required Packages

Install the required pacakges for this guide.
Install the required packages for this guide.

{% packagesUsed packages=["umi", "umiDefaults" ,"tokenMetadata", "core", "@solana/spl-token"] type="npm" /%}

Expand Down
2 changes: 1 addition & 1 deletion src/pages/umi/getting-started/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ To use Umi you need to install Umi and all the external plugins you'll want to u

### Required Packages

{% packagesUsed packages=["umi", "umiDefaults", "@solana/web3.js"] type="npm" /%}
{% packagesUsed packages=["umi", "umiDefaults", "@solana/web3.js@1"] type="npm" /%}

To install them, use the following commands:

Expand Down