Skip to content
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 docs/developers/relayed-transactions.md
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ Decoding the arguments ([useful resources here](/developers/sc-calls-format/)) w
## Relayed transactions version 3

:::note
This feature is not available at the moment on Mainnet.
This feature is not yet available on **Mainnet**. See [Spica Protocol Upgrade](https://governance.multiversx.com/proposal/erd1qqqqqqqqqqqqqpgq4qvrwlr2e6ld50f3qfc94am38p8298kthg4s3f0vfn/1).
:::

Relayed transactions v3 feature comes with a change on the entire transaction structure, adding a new optional field `InnerTransactions`, which is a collection of inner transactions. That being said, relayed transactions v3 allow the user to send multiple inner transactions on the same relayed transaction which will be executed as normal transactions, without the gas consuming data field of the old relayed transactions versions.
Expand Down
8 changes: 6 additions & 2 deletions docs/tokens/nft-tokens.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ import TableWrapper from "@site/src/components/TableWrapper";

MultiversX NFTs(non-fungible tokens) are a breed of digital assets that are revolutionizing the world of art, collectibles, and more. These NFTs are unique, one-of-a-kind tokens that are built on blockchain technology, allowing for secure ownership and transfer of these assets. With MultiversX NFTs, every token is assigned a unique identification code(ticker) and metadata that distinguishes it from every other token, making each NFT truly one-of-a-kind. Read the full page for a comprehensive guide on how to brand, issue, transfer, assign roles and many other features, for both NFTs and SFTs.

:::note
Features related to dynamic NFTs are not yet available on **Mainnet**. See [Spica Protocol Upgrade](https://governance.multiversx.com/proposal/erd1qqqqqqqqqqqqqpgq4qvrwlr2e6ld50f3qfc94am38p8298kthg4s3f0vfn/1).
:::

[comment]: # (mx-context-auto)

### NFT and SFT
Expand Down Expand Up @@ -900,7 +904,7 @@ This can be done using a transaction like this:
RegisterDynamicTransaction {
Sender: <account address of the token manager>
Receiver: erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqzllls8a5w6u
Value: 0
Value: 50000000000000000 # (0.05 EGLD)
GasLimit: 60000000
Data: "registerDynamic" +
"@" + <token name in hexadecimal encoding> +
Expand All @@ -923,7 +927,7 @@ This can be done using a transaction like this:
RegisterAndSetAllRolesDynamicTransaction {
Sender: <account address of the token manager>
Receiver: erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqzllls8a5w6u
Value: 0
Value: 50000000000000000 # (0.05 EGLD)
GasLimit: 60000000
Data: "registerAndSetAllRolesDynamic" +
"@" + <token name in hexadecimal encoding> +
Expand Down