浏览代码

Merge pull request #310 from metaplex-foundation/fix/sem-rush-fixes

Fix/sem rush fixes
Tony Boyle 10 月之前
父节点
当前提交
1661ba4ab9

+ 1 - 1
src/pages/candy-machine/guards/freeze-token-payment.md

@@ -680,7 +680,7 @@ route(umi, {
 })
 ```
 
-API References: [route](https://mpl-candy-machine.typedoc.metaplex.com/functions/route.html), [freezeTokenPaymentRouteArgsUnlockFunds](https://mpl-candy-machine.typedoc.metaplex.com/types/freezeTokenPaymentRouteArgsUnlockFunds.html)
+API References: [route](https://mpl-candy-machine.typedoc.metaplex.com/functions/route.html), [freezeTokenPaymentRouteArgsUnlockFunds](https://mpl-candy-machine.typedoc.metaplex.com/types/FreezeTokenPaymentRouteArgsUnlockFunds.html)
 
 {% /totem %}
 {% /dialect %}

+ 1 - 1
src/pages/core/json-schema.md

@@ -211,7 +211,7 @@ If you miss some fields that you knew from Metaplex Token Metadata those are pro
 - **external_url**: Link to an external website for the NFT
   - Example: `https://www.myproject.io/nft/123`
 
-- **attributes**: Array of traits and their values. These can alternatively be stored onchain using the [Attributes Plugin](/core/plugins/attributes)
+- **attributes**: Array of traits and their values. These can alternatively be stored onchain using the [Attributes Plugin](/core/plugins/attribute)
   - Example:
     ```json
     {

+ 1 - 1
src/pages/core/sdk/index.md

@@ -8,7 +8,7 @@ Select the language / library you want to use below to get started with the new
 
 {% quick-links %}
 
-{% quick-link title="JavaScript" icon="JavaScript" href="/core/getting-started/js" description="Get started with our JavaScript library for MPL-Core based on the Umi framework." /%}
+{% quick-link title="JavaScript" icon="JavaScript" href="/core/sdk/js" description="Get started with our JavaScript library for MPL-Core based on the Umi framework." /%}
 
 {% quick-link title="Rust" icon="Rust" href="/core/sdk/rust" description="Get started using our MPL-Core Rust crate." /%}
 

+ 1 - 1
src/pages/guides/javascript/how-to-create-an-nft-on-solana.md

@@ -20,7 +20,7 @@ Token Metadata is a protocol within Metaplex that focuses on the metadata aspect
 - Plugins: Core provides an advanced plugin system that allows Core Assets and Collections to store extra state, provide lifecycle validations, and an enhanced dynamic experience. The possibilities here are endless!
 - Cost: While not as cheap as Bubblegum, Core is **significantly cheaper** to create and mint compared to Token Metadata due to the optimized account structures.
 
-[Create An NFT with Core](/core/guides/javascript/how-to-create-a-core-nft-asset)
+[Create An NFT with Core](/core/guides/javascript/how-to-create-a-core-nft-asset-with-javascript)
 
 ## Token Metadata NFT/pNFT
 

+ 1 - 1
src/pages/rpc-providers.md

@@ -76,7 +76,7 @@ These lists are in alphabetical order. Please choose the RPC provider that best
 - [Ankr](https://www.ankr.com/protocol/public/solana/)
 - [Blockdaemon](https://blockdaemon.com/marketplace/solana/)
 - [Chainstack](https://chainstack.com/build-better-with-solana/)
-- [Figment](https://figment.io/datahub/solana/)
+- [Figment](https://figment.io/)
 - [GetBlock](https://getblock.io/)
 - [NOWNodes](https://nownodes.io/)
 - [Syndica](https://syndica.io/)

+ 1 - 1
src/pages/umi/transactions.md

@@ -17,7 +17,7 @@ Umi defines its own set of interfaces for transactions, instructions and all oth
 - [TransactionMessage](https://umi.typedoc.metaplex.com/interfaces/umi.TransactionMessage.html): A transaction message is composed of all required public keys, one or many compiled instructions using indexes instead of public keys, a recent blockhash and other attributes such as its version. A transaction message can have one of the following versions:
   - Version: "legacy": The first Solana iteration of the transaction message.
   - Version: 0: The first transaction message version that introduces transaction versioning. It also introduces address lookup tables.
-- [Instruction](https://umi.typedoc.metaplex.com/interfaces/umi.Instruction.html): An instruction is composed of a program id, a list of [AccountMeta](https://umi.typedoc.metaplex.com/types/umi.AccountMeta.html) and some serialized data. Each account `AccountMeta` is composed of a public key, a boolean indicating whether it will be signing the transaction and another boolean indicating whether it's writable or not.
+- [Instruction](https://umi.typedoc.metaplex.com/types/umi.Instruction.html): An instruction is composed of a program id, a list of [AccountMeta](https://umi.typedoc.metaplex.com/types/umi.AccountMeta.html) and some serialized data. Each account `AccountMeta` is composed of a public key, a boolean indicating whether it will be signing the transaction and another boolean indicating whether it's writable or not.
 
 To create a new transaction, you may use the `create` method of the `TransactionFactoryInterface`. For instance, here's how you'd create a version `0` transaction with a single instruction: