MVX_NETWORK
: (e.g., “devnet”) — sets which MultiversX network to use.MVX_WALLET
: absolute path to your MultiversX wallet PEM file.Tools provided by this Server | Short Description |
---|---|
create-sft-nft-mesdt-tokens | Create a transaction to issue a semi-fungible token (SFT), or a non-fungible token (NFT), or a MetaESDT token for a collection and send it. |
create-wallet | Create a new wallet and save it as a PEM file. |
get-balance-of-address | Get the balance for a MultiversX address. |
get-network | Get the network set in the environment config. |
get-tokens-of-address | Get the tokens of an address. |
get-wallet-address | Get the bech32 address of the wallet set in the environment config. |
issue-fungible-token | Create a transaction to issue a fungible token and send it. |
issue-meta-esdt-collection | Create a transaction to issue a MetaESDT token collection (MESDT) and send it. |
issue-nft-collection | Create a transaction to issue a non-fungible token collection (NFT) and send it. |
issue-semi-fungible-collection | Create a transaction to issue a semi-fungible collection (SFT) and send it. |
send-egld | Create a move balance transaction and send it. |
send-egld-to-multiple-receivers | Create move balance transactions and send them. |
send-fungible-tokens | Create a fungible token transfer transaction and send it. |
send-sft-nft-meta-tokens | Create a nft, sft or meta esdt transfer transaction and send it. |
create-sft-nft-mesdt-tokens
initialQuantity
(string): The initial quantity (number of tokens) to mint (default: 1).name
(string): Name of the token.tokenIdentifier
(string): ID of the collection.royalties
(string, optional): Royalties you’ll receive.create-wallet
get-balance-of-address
address
(string): The bech32 representation of the address.get-network
get-tokens-of-address
address
(string): The bech32 address of the account (erd1…).size
(number, optional): Number of each token type to return (default: 25).get-wallet-address
issue-fungible-token
initialSupply
(string): The initial supply to mint.numDecimals
(string): Number of decimals for the token.tokenName
(string): Name of the token.tokenTicker
(string): Ticker of the token.issue-meta-esdt-collection
numDecimals
(string): Number of decimals.tokenName
(string): Name of the collection.tokenTicker
(string): Ticker of the collection.issue-nft-collection
tokenName
(string): Name of the collection.tokenTicker
(string): Ticker of the collection.issue-semi-fungible-collection
tokenName
(string): Name of the collection.tokenTicker
(string): Ticker of the collection.send-egld
amount
(string): Amount of EGLD to send.receiver
(string): Bech32 address of the receiver (erd1…).send-egld-to-multiple-receivers
amount
(string): Amount of EGLD to send.receivers
(array): Array of bech32 addresses of receivers.send-fungible-tokens
amount
(string): Amount to send.receiver
(string): Bech32 address of receiver.token
(string): Identifier of the token.send-sft-nft-meta-tokens
receiver
(string): The bech32 address of the receiver.token
(string): The extended identifier of the token (e.g. NFTEST-123456-0a).amount
(string, optional): Amount to send (needed for SFT or Meta-ESDT only).