Command line interface for Solana Metaplex programs.

Overview

build status

Metaplex Command Line Interface

This is a command line interface for creating and managing non-fungible tokens on the Solana blockchain through the Metaplex programs.

Implemented commands

  • mint-create: create a new token mint - same command as in spl-token, included here for convenience.
  • mint-supply: display supply of tokens from mint - same command as in spl-token, included here for convenience.
  • mint-info: display information for an existing mint account.
  • metadata-info: display information for an existing metadata account.
  • metadata-create: create a new metadata account for an existing mint, including creators and shares.
  • metadata-update: update an existing metadata account by providing either a mint or metadata account address and providing values for one or more updatable fields:
    • new_update_authority
    • name
    • symbol
    • uri
    • seller_fee_basis_points
    • creators
    • primary_sale_happened
  • nft-create: create a de novo nft including mint, token account, metadata account and master edition.
  • arweave: upload files to the Arweave permaweb. - this is inop - post is successful but transaction isn't mined.

Getting Started

  1. cd rust/cli
  2. cargo build
  3. cargo run -- -help

Usage

Create an NFT

cargo-run -- nft-create

This brief command kicks off the process of minting a token, creating a token account, minting one token to the account, creating a metadata account and finally, creating a master edition. You can add one or more values for name, symbol, uri, or creators after nft-create. Creator shares have to sum to 100, values are specified in whole integer percentages and if you provide any creators, one of them has to be the same as the update authority. The update authority defaults to the wallet address in the local Solana config, but you can provide another one by flag.

View Metadata Info

cargo-run -- metadata-info Cbg5o1tarienqQeQ8FcS6inGw2edrZ73znyYhVFtXa8b

You can pass either the metadata account or token mint address. Without any values provided for the metadata fields, this produces a blank NFT, but it can be updated later since the --immutable flag wasn't set.


Address: qHFGEW7vnW61Arupoo4WcV3uqoDiRRhFv3fzHGPusBt
Key: MetadataV1
Update Authority: 61mVTaw6hBtwWnSaGXRSJePFWEQqipeCka3evytEVNUp
Mint: Cbg5o1tarienqQeQ8FcS6inGw2edrZ73znyYhVFtXa8b
Primary Sale Happened: false
Is Mutable: true
Edition Nonce: 255
Name:
Symbol:
Uri:
Seller Fee Basis Points: 0

If you want the output in json, you can add json or json-compact to the --output flag.

cargo run -- metadata-info --output json Cbg5o1tarienqQeQ8FcS6inGw2edrZ73znyYhVFtXa8b

{
  "address": "qHFGEW7vnW61Arupoo4WcV3uqoDiRRhFv3fzHGPusBt",
  "metadata": {
    "key": "MetadataV1",
    "updateAuthority": "61mVTaw6hBtwWnSaGXRSJePFWEQqipeCka3evytEVNUp",
    "mint": "Cbg5o1tarienqQeQ8FcS6inGw2edrZ73znyYhVFtXa8b",
    "name": "",
    "symbol": "",
    "uri": "",
    "sellerFeeBasisPoints": "0",
    "creators": null,
    "primarySaleHappened": false,
    "isMutable": true,
    "editionNonce": "255"
  }
}

Update Metadata

Metadata can be updated with the metadata-update command, providing at least one additional flag with the value to be updated. Creators are specified with an address followed by a colon and then the respective share. For example, if we wanted to update the above metadata, we could enter:

cargo run -- metadata-update qHFGEW7vnW61Arupoo4WcV3uqoDiRRhFv3fzHGPusBt \
    --name "My NFT" --symbol "NFT" \
    --creators 61mVTaw6hBtwWnSaGXRSJePFWEQqipeCka3evytEVNUp:50 7oHuVGKc5ZA2tdJX2xLxfUuZPf4RWMsEuNFWkByZNNs7:50 \
    --uri ipfs://tbd

Same as with nft-create, you can provide either the token mint address or the metadata account address.

cargo run -- metadata-info Cbg5o1tarienqQeQ8FcS6inGw2edrZ73znyYhVFtXa8b

to see the updates:

Address: qHFGEW7vnW61Arupoo4WcV3uqoDiRRhFv3fzHGPusBt
Key: MetadataV1
Update Authority: 61mVTaw6hBtwWnSaGXRSJePFWEQqipeCka3evytEVNUp
Mint: Cbg5o1tarienqQeQ8FcS6inGw2edrZ73znyYhVFtXa8b
Primary Sale Happened: false
Is Mutable: true
Edition Nonce: 255
Name: My NFT
Symbol: NFT
Uri: ipfs://tbd
Seller Fee Basis Points: 0
Creators: 2
  [0] Address: 61mVTaw6hBtwWnSaGXRSJePFWEQqipeCka3evytEVNUp
      Verified: false
      Share: 50

  [1] Address: 7oHuVGKc5ZA2tdJX2xLxfUuZPf4RWMsEuNFWkByZNNs7
      Verified: false
      Share: 50

You don't have to provide all of the arguments for updating. You can provide as few as one up to all, but if you update the creators, you have to provide the complete set. For example if we just wanted to update the uri, we could just run.

cargo run -- metadata-update Cbg5o1tarienqQeQ8FcS6inGw2edrZ73znyYhVFtXa8b --uri ipfs://updated_uri

and then to see that just the uri has been updated.

cargo run -- metadata-info Cbg5o1tarienqQeQ8FcS6inGw2edrZ73znyYhVFtXa8b
Address: qHFGEW7vnW61Arupoo4WcV3uqoDiRRhFv3fzHGPusBt
Key: MetadataV1
Update Authority: 61mVTaw6hBtwWnSaGXRSJePFWEQqipeCka3evytEVNUp
Mint: Cbg5o1tarienqQeQ8FcS6inGw2edrZ73znyYhVFtXa8b
Primary Sale Happened: false
Is Mutable: true
Edition Nonce: 255
Name: My NFT
Symbol: NFT
Uri: ipfs://updated_uri
Seller Fee Basis Points: 0
Creators: 2
  [0] Address: 61mVTaw6hBtwWnSaGXRSJePFWEQqipeCka3evytEVNUp
      Verified: false
      Share: 50

  [1] Address: 7oHuVGKc5ZA2tdJX2xLxfUuZPf4RWMsEuNFWkByZNNs7
      Verified: false
      Share: 50

Todo

  • Upload to storage
  • Proper tests for arweave module
  • Add individual commands for minting tokens and creating master editions
  • Display edition info
  • Create and update from json files
  • Integration tests
  • Bulkify
  • Vault
  • Auction
  • Candy Store
  • Fractionalization
  • Custom Edition Metadata
  • Remote Wallet

Implementation Details

The command line interface includes output features and cli tooling from the Solana token program cli, including the ability to produce output for display or json, either normal or compact, and use default values from solana-cli local config. It also makes use of solana-clap-utils for efficient validation and argument parsing.

You might also like...
Gix is a command-line interface (CLI) to access git repositories

gix is a command-line interface (CLI) to access git repositories. It's written to optimize the user-experience, and perform as good or better than the

The official command-line interface for the makedeb Package Repository

mpr-cli This is the repository for the MPR CLI, the official command-line interface for the makedeb Package Repository. Installation Users have a few

A command line interface for trash written in Rust (WIP)

trashctl A command line interface for trash Features Add file to trash List files Permanently delete a file Restore file Empty the trash Documentation

A command-line interface for Trane

trane-cli This repository contains the code for the command-line interface to Trane. Documentation The latest documentation for trane-cli can be found

Command-line interface to Microsoft To Do

⚠ This is a hackathon project with no official support or quality guarantee Hackathon 2022 tdi The command-line interface, for some, is the natural wa

The awesome-app Command Line Interface

Rust CLI to create Awesome Applications with Rust. More info at awesomeapp.org Install cargo install awesome-app Create your first app: # Create you

This is a simple command-line interface tool that allows you to interact with ChatGPT from OpenAI or Azure.

HeyGPT This is a simple command-line interface tool that allows you to interact with ChatGPT from OpenAI or Azure. You can use it to: Chat with ChatGP

A command-line interface for interacting with the ChatGPT API from OpenAI
A command-line interface for interacting with the ChatGPT API from OpenAI

cligpt cligpt is a command-line interface for interacting with the ChatGPT API from OpenAI. With cligpt, you can quickly and easily generate text by s

tmplt is a command-line interface tool that allows you to quickly and easily set up project templates for various programming languages and frameworks
tmplt is a command-line interface tool that allows you to quickly and easily set up project templates for various programming languages and frameworks

tmplt A User Friendly CLI Tool For Creating New Projects With Templates About tmplt is a command-line tool that lets users quickly create new projects

Comments
  • AccountNotFound

    AccountNotFound

    No matter what command I run I get AccountNotFound: pubkey=9W6gByZVnd9MTRTQDba2aUkcPPgdM3Fs7iwegQWiky8L Not sure where this pubkey is coming from but it is not mine

    opened by mdstevens044 2
  • Build fails

    Build fails

    This project looks really cool! But the build fails with an error. The full transcript is below...

    $ cargo --version
    cargo 1.56.0 (4ed5d137b 2021-10-04)
    
    $ git clone [email protected]:CalebEverett/metaplex-cli.git
    Cloning into 'metaplex-cli'...
    remote: Enumerating objects: 411, done.
    remote: Counting objects: 100% (411/411), done.
    remote: Compressing objects: 100% (224/224), done.
    remote: Total 411 (delta 218), reused 347 (delta 154), pack-reused 0
    Receiving objects: 100% (411/411), 1.13 MiB | 2.21 MiB/s, done.
    Resolving deltas: 100% (218/218), done.
    
    $ cd metaplex-cli/
    
    $ cargo build
        Updating crates.io index
        Updating git repository `https://github.com/metaplex-foundation/metaplex`
      Downloaded arrayvec v0.5.2
      Downloaded async-trait v0.1.51
      Downloaded backtrace v0.3.63
      Downloaded autocfg v1.0.1
      Downloaded atty v0.2.14
      Downloaded arrayref v0.3.6
      Downloaded aliasable v0.1.3
      Downloaded bitflags v1.3.2
      Downloaded bincode v1.3.3
      Downloaded block-buffer v0.9.0
      Downloaded dirs-sys-next v0.1.2
      Downloaded filetime v0.2.15
      Downloaded generic-array v0.14.4
      Downloaded proc-macro-error-attr v1.0.4
      Downloaded proc-macro-error v1.0.4
      Downloaded unicode-xid v0.2.2
      Downloaded input_buffer v0.3.1
      Downloaded libsecp256k1-gen-genmult v0.2.1
      Downloaded rpassword v4.0.5
      Downloaded rustc-demangle v0.1.21
      Downloaded num-integer v0.1.44
      Downloaded block-buffer v0.7.3
      Downloaded digest v0.8.1
      Downloaded failure_derive v0.1.8
      Downloaded hyper-tls v0.5.0
      Downloaded proc-macro-crate v1.1.0
      Downloaded quote v0.6.13
      Downloaded rand_chacha v0.2.2
      Downloaded proc-macro2 v0.4.30
      Downloaded sct v0.7.0
      Downloaded rayon v1.5.1
      Downloaded regex v1.5.4
      Downloaded flate2 v1.0.22
      Downloaded either v1.6.1
      Downloaded env_logger v0.8.4
      Downloaded form_urlencoded v1.0.1
      Downloaded fnv v1.0.7
      Downloaded instant v0.1.12
      Downloaded http-body v0.4.4
      Downloaded getrandom v0.2.3
      Downloaded lock_api v0.4.5
      Downloaded log v0.4.14
      Downloaded chrono v0.4.19
      Downloaded thiserror v1.0.30
      Downloaded scopeguard v1.1.0
      Downloaded semver v0.11.0
      Downloaded tar v0.4.37
      Downloaded tinyvec_macros v0.1.0
      Downloaded thiserror-impl v1.0.30
      Downloaded solana-client v1.8.5
      Downloaded time v0.1.43
      Downloaded libsecp256k1 v0.5.0
      Downloaded nix v0.20.0
      Downloaded console v0.11.3
      Downloaded libloading v0.6.7
      Downloaded infer v0.5.0
      Downloaded memmap2 v0.1.0
      Downloaded bzip2 v0.3.3
      Downloaded bytes v1.1.0
      Downloaded byte-tools v0.3.1
      Downloaded constant_time_eq v0.1.5
      Downloaded fake-simd v0.1.2
      Downloaded ed25519-dalek v1.0.1
      Downloaded futures-task v0.3.18
      Downloaded glob v0.3.0
      Downloaded linked-hash-map v0.5.4
      Downloaded semver-parser v0.7.0
      Downloaded itertools v0.9.0
      Downloaded futures-macro v0.3.18
      Downloaded base32 v0.4.0
      Downloaded rand v0.7.3
      Downloaded reqwest v0.11.7
      Downloaded qstring v0.7.2
      Downloaded hmac v0.8.1
      Downloaded dir-diff v0.3.2
      Downloaded unicode-width v0.1.9
      Downloaded assert_matches v1.5.0
      Downloaded jsonwebkey v0.3.4
      Downloaded cfg-if v0.1.10
      Downloaded rustc_version v0.2.3
      Downloaded hashbrown v0.9.1
      Downloaded ucd-trie v0.1.3
      Downloaded futures-sink v0.3.18
      Downloaded spin v0.5.2
      Downloaded serde-aux v2.3.0
      Downloaded borsh-schema-derive-internal v0.9.1
      Downloaded libsecp256k1-gen-ecmult v0.2.1
      Downloaded gethostname v0.2.1
      Downloaded keccak v0.1.0
      Downloaded solana-ed25519-program v1.8.5
      Downloaded failure v0.1.8
      Downloaded unicode-normalization v0.1.19
      Downloaded bytemuck_derive v1.0.1
      Downloaded tinyvec v1.5.1
      Downloaded crc32fast v1.3.0
      Downloaded clap v2.34.0
      Downloaded sha3 v0.9.1
      Downloaded bytes v0.4.12
      Downloaded futures-util v0.3.18
      Downloaded tungstenite v0.10.1
      Downloaded solana-cli-output v1.8.5
      Downloaded solana-transaction-status v1.8.5
      Downloaded solana-logger v1.8.5
      Downloaded solana-faucet v1.8.5
      Downloaded solana-config-program v1.8.5
      Downloaded walkdir v2.3.2
      Downloaded dlopen_derive v0.1.4
      Downloaded crossbeam-channel v0.4.4
      Downloaded adler v1.0.2
      Downloaded core-foundation-sys v0.8.3
      Downloaded rustversion v1.0.5
      Downloaded slab v0.4.5
      Downloaded ppv-lite86 v0.2.15
      Downloaded rustc-hash v1.1.0
      Downloaded proc-macro-crate v0.1.5
      Downloaded parking_lot_core v0.8.5
      Downloaded solana-sdk-macro v1.8.5
      Downloaded number_prefix v0.4.0
      Downloaded webpki v0.22.0
      Downloaded socket2 v0.4.2
      Downloaded rand_core v0.5.1
      Downloaded solana-frozen-abi-macro v1.8.5
      Downloaded pest v2.1.3
      Downloaded rand_chacha v0.3.1
      Downloaded want v0.3.0
      Downloaded tokio-macros v1.6.0
      Downloaded hex v0.4.3
      Downloaded semver v0.9.0
      Downloaded same-file v1.0.6
      Downloaded serde_urlencoded v0.7.0
      Downloaded semver-parser v0.10.2
      Downloaded zeroize v1.4.3
      Downloaded opaque-debug v0.2.3
      Downloaded sha2 v0.9.8
      Downloaded zeroize_derive v1.2.2
      Downloaded zstd v0.5.4+zstd.1.4.7
      Downloaded sha-1 v0.8.2
      Downloaded zstd-safe v2.0.6+zstd.1.4.7
      Downloaded num-bigint v0.4.3
      Downloaded symlink v0.1.0
      Downloaded synstructure v0.12.6
      Downloaded tempfile v3.2.0
      Downloaded untrusted v0.7.1
      Downloaded try-lock v0.2.3
      Downloaded subtle v2.4.1
      Downloaded aho-corasick v0.7.18
      Downloaded serde_derive v1.0.130
      Downloaded solana-sdk v1.8.5
      Downloaded solana-perf v1.8.5
      Downloaded signal-hook-registry v1.4.0
      Downloaded solana-account-decoder v1.8.5
      Downloaded dlopen v0.1.8
      Downloaded percent-encoding v2.1.0
      Downloaded maybe-uninit v2.0.0
      Downloaded webpki v0.21.4
      Downloaded terminal_size v0.1.17
      Downloaded stable_deref_trait v1.2.0
      Downloaded signature v1.4.0
      Downloaded hmac v0.9.0
      Downloaded dialoguer v0.6.2
      Downloaded curve25519-dalek v3.2.0
      Downloaded curve25519-dalek v2.1.3
      Downloaded serde_json v1.0.72
      Downloaded encoding_rs v0.8.29
      Downloaded termios v0.3.3
      Downloaded unicode-xid v0.1.0
      Downloaded strsim v0.8.0
      Downloaded solana-stake-program v1.8.5
      Downloaded solana-vote-program v1.8.5
      Downloaded solana-net-utils v1.8.5
      Downloaded libsecp256k1-core v0.2.2
      Downloaded ouroboros v0.10.1
      Downloaded number_prefix v0.3.0
      Downloaded ryu v1.0.6
      Downloaded bzip2-sys v0.1.11+1.0.8
      Downloaded ahash v0.4.7
      Downloaded pkg-config v0.3.22
      Downloaded crunchy v0.2.2
      Downloaded rayon-core v1.9.1
      Downloaded rand_core v0.6.3
      Downloaded object v0.27.1
      Downloaded num_cpus v1.13.0
      Downloaded memchr v2.4.1
      Downloaded crypto-mac v0.9.1
      Downloaded syn v1.0.82
      Downloaded regex-syntax v0.6.25
      Downloaded idna v0.2.3
      Downloaded syn v0.15.44
      Downloaded once_cell v1.8.0
      Downloaded num_enum v0.5.4
      Downloaded crypto-mac v0.8.0
      Downloaded num_enum_derive v0.5.4
      Downloaded gimli v0.26.1
      Downloaded ring v0.16.20
      Downloaded crossbeam-epoch v0.9.5
      Downloaded humantime v2.1.0
      Downloaded httparse v1.5.1
      Downloaded matches v0.1.9
      Downloaded indexmap v1.7.0
      Downloaded mime v0.3.16
      Downloaded miniz_oxide v0.4.4
      Downloaded mio v0.7.14
      Downloaded webpki-roots v0.21.1
      Downloaded utf-8 v0.7.6
      Downloaded uriparse v0.6.3
      Downloaded solana-cli-config v1.8.5
      Downloaded tiny-bip39 v0.8.2
      Downloaded pbkdf2 v0.6.0
      Downloaded jsonrpc-core v18.0.0
      Downloaded hmac-drbg v0.3.0
      Downloaded toml v0.5.8
      Downloaded tower-service v0.3.1
      Downloaded socket2 v0.3.19
      Downloaded memoffset v0.6.4
      Downloaded ipnet v2.3.1
      Downloaded crossbeam-deque v0.8.1
      Downloaded num-traits v0.2.14
      Downloaded num-derive v0.3.3
      Downloaded hidapi v1.3.0
      Downloaded vec_map v0.8.2
      Downloaded unicode-bidi v0.3.7
      Downloaded typenum v1.14.0
      Downloaded tracing-core v0.1.21
      Downloaded tracing v0.1.29
      Downloaded itoa v0.4.8
      Downloaded url v2.2.2
      Downloaded serde_bytes v0.11.5
      Downloaded tokio-rustls v0.23.1
      Downloaded solana-secp256k1-program v1.8.5
      Downloaded solana-rayon-threadlimit v1.8.5
      Downloaded spl-token v3.2.0
      Downloaded spl-memo v3.0.1
      Downloaded spl-associated-token-account v1.0.3
      Downloaded solana-version v1.8.5
      Downloaded solana-metrics v1.8.5
      Downloaded solana-measure v1.8.5
      Downloaded solana-frozen-abi v1.8.5
      Downloaded rustls-pemfile v0.2.1
      Downloaded tokio-native-tls v0.3.0
      Downloaded smallvec v1.7.0
      Downloaded native-tls v0.2.8
      Downloaded net2 v0.2.37
      Downloaded lock_api v0.3.4
      Downloaded jobserver v0.1.24
      Downloaded hyper-rustls v0.23.0
      Downloaded tokio-util v0.6.9
      Downloaded solana-program v1.8.5
      Downloaded solana-remote-wallet v1.8.5
      Downloaded crossbeam-utils v0.8.5
      Downloaded yaml-rust v0.4.5
      Downloaded yasna v0.4.0
      Downloaded xattr v0.2.2
      Downloaded pin-utils v0.1.0
      Downloaded pbkdf2 v0.4.0
      Downloaded quote v1.0.10
      Downloaded rustls v0.20.2
      Downloaded cpufeatures v0.2.1
      Downloaded addr2line v0.17.0
      Downloaded tokio v1.14.0
      Downloaded libc v0.2.108
      Downloaded solana-runtime v1.8.5
      Downloaded winapi v0.3.9
      Downloaded serde_yaml v0.8.21
      Downloaded core-foundation v0.9.2
      Downloaded crossbeam-utils v0.7.2
      Downloaded version_check v0.9.3
      Downloaded solana-compute-budget-program v1.8.5
      Downloaded ouroboros_macro v0.10.1
      Downloaded proc-macro2 v1.0.32
      Downloaded parking_lot v0.11.2
      Downloaded opaque-debug v0.3.0
      Downloaded solana-clap-utils v1.8.5
      Downloaded zstd-sys v1.4.18+zstd.1.4.7
      Downloaded parking_lot v0.10.2
      Downloaded console v0.15.0
      Downloaded console v0.14.1
      Downloaded derivation-path v0.1.3
      Downloaded dashmap v4.0.2
      Downloaded crypto-mac v0.10.1
      Downloaded bs58 v0.3.1
      Downloaded blake3 v0.3.8
      Downloaded solana-crate-features v1.8.5
      Downloaded httpdate v1.0.2
      Downloaded getrandom v0.1.16
      Downloaded lazy_static v1.4.0
      Downloaded hmac v0.10.1
      Downloaded futures-channel v0.3.18
      Downloaded futures-executor v0.3.18
      Downloaded bytes v0.5.6
      Downloaded dtoa v0.4.8
      Downloaded bytemuck v1.7.2
      Downloaded bs58 v0.4.0
      Downloaded arrayvec v0.7.2
      Downloaded ansi_term v0.12.1
      Downloaded borsh-derive-internal v0.9.1
      Downloaded indicatif v0.16.2
      Downloaded ed25519-dalek-bip32 v0.1.1
      Downloaded borsh v0.9.1
      Downloaded blake3 v1.2.0
      Downloaded serde v1.0.130
      Downloaded security-framework v2.4.2
      Downloaded security-framework-sys v2.4.2
      Downloaded remove_dir_all v0.5.3
      Downloaded termcolor v1.1.2
      Downloaded h2 v0.3.7
      Downloaded http v0.2.5
      Downloaded crossbeam-channel v0.5.1
      Downloaded cc v1.0.72
      Downloaded cfg-if v1.0.0
      Downloaded hyper v0.14.15
      Downloaded base64 v0.12.3
      Downloaded iovec v0.1.4
      Downloaded generic-array v0.12.4
      Downloaded parking_lot_core v0.7.2
      Downloaded futures v0.3.18
      Downloaded env_logger v0.9.0
      Downloaded futures-core v0.3.18
      Downloaded ed25519 v1.3.0
      Downloaded block-padding v0.2.1
      Downloaded block-padding v0.1.5
      Downloaded base64 v0.11.0
      Downloaded derivative v2.2.0
      Downloaded rand v0.8.4
      Downloaded futures-io v0.3.18
      Downloaded feature-probe v0.1.1
      Downloaded bv v0.11.1
      Downloaded borsh-derive v0.9.1
      Downloaded indicatif v0.15.0
      Downloaded textwrap v0.11.0
      Downloaded pin-project-lite v0.2.7
      Downloaded hashbrown v0.11.2
      Downloaded dirs-next v2.0.0
      Downloaded digest v0.9.0
      Downloaded byteorder v1.4.3
      Downloaded base64 v0.13.0
      Downloaded anyhow v1.0.51
      Downloaded Inflector v0.11.4
      Downloaded 337 crates (25.9 MB) in 4.57s (largest was `ring` at 5.1 MB)
       Compiling libc v0.2.108
       Compiling proc-macro2 v1.0.32
       Compiling unicode-xid v0.2.2
       Compiling syn v1.0.82
       Compiling cfg-if v1.0.0
       Compiling serde_derive v1.0.130
       Compiling serde v1.0.130
       Compiling autocfg v1.0.1
       Compiling spin v0.5.2
       Compiling version_check v0.9.3
       Compiling typenum v1.14.0
       Compiling memchr v2.4.1
       Compiling subtle v2.4.1
       Compiling log v0.4.14
       Compiling semver-parser v0.7.0
       Compiling ppv-lite86 v0.2.15
       Compiling regex-syntax v0.6.25
       Compiling scopeguard v1.1.0
       Compiling getrandom v0.1.16
       Compiling either v1.6.1
       Compiling pin-project-lite v0.2.7
       Compiling smallvec v1.7.0
       Compiling block-padding v0.2.1
       Compiling once_cell v1.8.0
       Compiling byteorder v1.4.3
       Compiling futures-core v0.3.18
       Compiling itoa v0.4.8
       Compiling opaque-debug v0.3.0
       Compiling parking_lot_core v0.8.5
       Compiling crunchy v0.2.2
       Compiling bytes v1.1.0
       Compiling futures-task v0.3.18
       Compiling cpufeatures v0.2.1
       Compiling futures-sink v0.3.18
       Compiling futures-channel v0.3.18
       Compiling cfg-if v0.1.10
       Compiling futures-util v0.3.18
       Compiling core-foundation-sys v0.8.3
       Compiling pin-utils v0.1.0
       Compiling termcolor v1.1.2
       Compiling humantime v2.1.0
       Compiling base64 v0.13.0
       Compiling futures-io v0.3.18
       Compiling fnv v1.0.7
       Compiling slab v0.4.5
       Compiling untrusted v0.7.1
       Compiling bitflags v1.3.2
       Compiling hashbrown v0.11.2
       Compiling arrayref v0.3.6
       Compiling ryu v1.0.6
       Compiling feature-probe v0.1.1
       Compiling tinyvec_macros v0.1.0
       Compiling ahash v0.4.7
       Compiling constant_time_eq v0.1.5
       Compiling matches v0.1.9
       Compiling rustversion v1.0.5
       Compiling httparse v1.5.1
       Compiling percent-encoding v2.1.0
       Compiling remove_dir_all v0.5.3
       Compiling serde_json v1.0.72
       Compiling native-tls v0.2.8
       Compiling bs58 v0.3.1
       Compiling keccak v0.1.0
       Compiling adler v1.0.2
       Compiling base64 v0.12.3
       Compiling try-lock v0.2.3
       Compiling unicode-bidi v0.3.7
       Compiling proc-macro2 v0.4.30
       Compiling arrayvec v0.5.2
       Compiling unicode-xid v0.1.0
       Compiling hex v0.4.3
       Compiling tower-service v0.3.1
       Compiling gimli v0.26.1
       Compiling httpdate v1.0.2
       Compiling syn v0.15.44
       Compiling failure_derive v0.1.8
       Compiling encoding_rs v0.8.29
       Compiling rustc-demangle v0.1.21
       Compiling signature v1.4.0
       Compiling mime v0.3.16
       Compiling winapi v0.3.9
       Compiling ipnet v2.3.1
       Compiling assert_matches v1.5.0
       Compiling bs58 v0.4.0
       Compiling crossbeam-utils v0.8.5
       Compiling pkg-config v0.3.22
       Compiling unicode-width v0.1.9
       Compiling crossbeam-epoch v0.9.5
       Compiling rayon-core v1.9.1
       Compiling glob v0.3.0
       Compiling anyhow v1.0.51
       Compiling zstd-safe v2.0.6+zstd.1.4.7
       Compiling solana-perf v1.8.5
       Compiling maybe-uninit v2.0.0
       Compiling crc32fast v1.3.0
       Compiling strsim v0.8.0
       Compiling linked-hash-map v0.5.4
       Compiling rustc-hash v1.1.0
       Compiling vec_map v0.8.2
       Compiling byte-tools v0.3.1
       Compiling same-file v1.0.6
       Compiling ansi_term v0.12.1
       Compiling base32 v0.4.0
       Compiling aliasable v0.1.3
       Compiling ucd-trie v0.1.3
       Compiling dtoa v0.4.8
       Compiling stable_deref_trait v1.2.0
       Compiling opaque-debug v0.2.3
       Compiling fake-simd v0.1.2
       Compiling symlink v0.1.0
       Compiling bytes v0.5.6
       Compiling number_prefix v0.3.0
       Compiling async-trait v0.1.51
       Compiling base64 v0.11.0
       Compiling utf-8 v0.7.6
       Compiling arrayvec v0.7.2
       Compiling number_prefix v0.4.0
       Compiling infer v0.5.0
       Compiling instant v0.1.12
       Compiling libloading v0.6.7
       Compiling lazy_static v1.4.0
       Compiling num-traits v0.2.14
       Compiling tokio v1.14.0
       Compiling indexmap v1.7.0
       Compiling num-integer v0.1.44
       Compiling miniz_oxide v0.4.4
       Compiling memoffset v0.6.4
       Compiling rayon v1.5.1
       Compiling crossbeam-utils v0.7.2
       Compiling num-bigint v0.4.3
       Compiling generic-array v0.14.4
       Compiling proc-macro-error-attr v1.0.4
       Compiling proc-macro-error v1.0.4
       Compiling lock_api v0.4.5
       Compiling lock_api v0.3.4
       Compiling itertools v0.9.0
       Compiling semver v0.9.0
       Compiling http v0.2.5
       Compiling rustls-pemfile v0.2.1
       Compiling tinyvec v1.5.1
       Compiling hashbrown v0.9.1
       Compiling bv v0.11.1
       Compiling form_urlencoded v1.0.1
       Compiling qstring v0.7.2
       Compiling textwrap v0.11.0
       Compiling yaml-rust v0.4.5
       Compiling block-padding v0.1.5
       Compiling walkdir v2.3.2
       Compiling pest v2.1.3
       Compiling input_buffer v0.3.1
       Compiling tracing-core v0.1.21
       Compiling uriparse v0.6.3
       Compiling addr2line v0.17.0
       Compiling rustc_version v0.2.3
       Compiling unicode-normalization v0.1.19
       Compiling dir-diff v0.3.2
       Compiling tracing v0.1.29
       Compiling http-body v0.4.4
       Compiling semver-parser v0.10.2
       Compiling want v0.3.0
       Compiling quote v1.0.10
       Compiling aho-corasick v0.7.18
       Compiling object v0.27.1
       Compiling solana-frozen-abi-macro v1.8.5
       Compiling solana-frozen-abi v1.8.5
       Compiling solana-program v1.8.5
       Compiling solana-sdk v1.8.5
       Compiling solana-vote-program v1.8.5
       Compiling solana-version v1.8.5
       Compiling solana-stake-program v1.8.5
       Compiling solana-runtime v1.8.5
       Compiling generic-array v0.12.4
       Compiling jobserver v0.1.24
       Compiling num_cpus v1.13.0
       Compiling atty v0.2.14
       Compiling getrandom v0.2.3
       Compiling mio v0.7.14
       Compiling signal-hook-registry v1.4.0
       Compiling core-foundation v0.9.2
       Compiling security-framework-sys v2.4.2
       Compiling memmap2 v0.1.0
       Compiling socket2 v0.4.2
       Compiling time v0.1.43
       Compiling iovec v0.1.4
       Compiling gethostname v0.2.1
       Compiling terminal_size v0.1.17
       Compiling termios v0.3.3
       Compiling parking_lot_core v0.7.2
       Compiling rpassword v4.0.5
       Compiling dirs-sys-next v0.1.2
       Compiling xattr v0.2.2
       Compiling filetime v0.2.15
       Compiling socket2 v0.3.19
       Compiling nix v0.20.0
       Compiling net2 v0.2.37
       Compiling crossbeam-channel v0.5.1
       Compiling quote v0.6.13
       Compiling idna v0.2.3
       Compiling crossbeam-channel v0.4.4
       Compiling flate2 v1.0.22
       Compiling semver v0.11.0
       Compiling regex v1.5.4
       Compiling cc v1.0.72
       Compiling solana-rayon-threadlimit v1.8.5
       Compiling rand_core v0.5.1
       Compiling digest v0.8.1
       Compiling block-buffer v0.7.3
       Compiling clap v2.34.0
       Compiling parking_lot v0.11.2
       Compiling rand_core v0.6.3
       Compiling security-framework v2.4.2
       Compiling bytes v0.4.12
       Compiling dirs-next v2.0.0
       Compiling parking_lot v0.10.2
       Compiling tar v0.4.37
       Compiling crossbeam-deque v0.8.1
       Compiling url v2.2.2
       Compiling rand_chacha v0.2.2
       Compiling sha-1 v0.8.2
       Compiling rand_chacha v0.3.1
       Compiling env_logger v0.8.4
       Compiling Inflector v0.11.4
       Compiling console v0.11.3
       Compiling console v0.14.1
       Compiling console v0.15.0
       Compiling env_logger v0.9.0
       Compiling ring v0.16.20
       Compiling blake3 v0.3.8
       Compiling backtrace v0.3.63
       Compiling zstd-sys v1.4.18+zstd.1.4.7
       Compiling hidapi v1.3.0
       Compiling bzip2-sys v0.1.11+1.0.8
       Compiling blake3 v1.2.0
       Compiling rand v0.7.3
       Compiling rand v0.8.4
       Compiling solana-logger v1.8.5
       Compiling synstructure v0.12.6
       Compiling borsh-schema-derive-internal v0.9.1
       Compiling borsh-derive-internal v0.9.1
       Compiling indicatif v0.15.0
       Compiling indicatif v0.16.2
       Compiling tempfile v3.2.0
       Compiling dialoguer v0.6.2
       Compiling zeroize_derive v1.2.2
       Compiling thiserror-impl v1.0.30
       Compiling futures-macro v0.3.18
       Compiling tokio-macros v1.6.0
       Compiling bytemuck_derive v1.0.1
       Compiling solana-sdk-macro v1.8.5
       Compiling num-derive v0.3.3
       Compiling derivative v2.2.0
       Compiling ouroboros_macro v0.10.1
       Compiling tungstenite v0.10.1
       Compiling zeroize v1.4.3
       Compiling dashmap v4.0.2
       Compiling dlopen_derive v0.1.4
       Compiling bytemuck v1.7.2
       Compiling thiserror v1.0.30
       Compiling curve25519-dalek v2.1.3
       Compiling dlopen v0.1.8
       Compiling ouroboros v0.10.1
       Compiling bzip2 v0.3.3
       Compiling webpki v0.22.0
       Compiling sct v0.7.0
       Compiling webpki v0.21.4
       Compiling futures-executor v0.3.18
       Compiling rustls v0.20.2
       Compiling futures v0.3.18
       Compiling webpki-roots v0.21.1
       Compiling tokio-util v0.6.9
       Compiling tokio-native-tls v0.3.0
       Compiling h2 v0.3.7
       Compiling toml v0.5.8
       Compiling serde_bytes v0.11.5
       Compiling bincode v1.3.3
       Compiling ed25519 v1.3.0
       Compiling serde_urlencoded v0.7.0
       Compiling chrono v0.4.19
       Compiling serde_yaml v0.8.21
       Compiling tokio-rustls v0.23.1
       Compiling digest v0.9.0
       Compiling block-buffer v0.9.0
       Compiling crypto-mac v0.8.0
       Compiling crypto-mac v0.10.1
       Compiling crypto-mac v0.9.1
       Compiling proc-macro-crate v0.1.5
       Compiling proc-macro-crate v1.1.0
       Compiling hyper v0.14.15
       Compiling jsonrpc-core v18.0.0
       Compiling failure v0.1.8
       Compiling libsecp256k1-core v0.2.2
       Compiling curve25519-dalek v3.2.0
       Compiling hmac v0.8.1
       Compiling pbkdf2 v0.4.0
       Compiling sha2 v0.9.8
       Compiling sha3 v0.9.1
       Compiling solana-cli-config v1.8.5
       Compiling serde-aux v2.3.0
       Compiling hmac v0.10.1
       Compiling pbkdf2 v0.6.0
       Compiling hmac v0.9.0
       Compiling borsh-derive v0.9.1
       Compiling num_enum_derive v0.5.4
       Compiling yasna v0.4.0
       Compiling derivation-path v0.1.3
       Compiling hmac-drbg v0.3.0
       Compiling libsecp256k1-gen-ecmult v0.2.1
       Compiling libsecp256k1-gen-genmult v0.2.1
       Compiling ed25519-dalek v1.0.1
       Compiling tiny-bip39 v0.8.2
       Compiling libsecp256k1 v0.5.0
       Compiling jsonwebkey v0.3.4
       Compiling borsh v0.9.1
       Compiling ed25519-dalek-bip32 v0.1.1
       Compiling num_enum v0.5.4
       Compiling hyper-rustls v0.23.0
       Compiling hyper-tls v0.5.0
       Compiling reqwest v0.11.7
       Compiling zstd v0.5.4+zstd.1.4.7
       Compiling solana-crate-features v1.8.5
       Compiling arweave_rs v0.1.0 (/Users/emerson/Code/metaplex-cli/arweave_rs)
    error[E0554]: `#![feature]` may not be used on the stable release channel
     --> arweave_rs/src/lib.rs:1:1
      |
    1 | #![feature(derive_default_enum)]
      | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    
    For more information about this error, try `rustc --explain E0554`.
    error: could not compile `arweave_rs` due to previous error
    warning: build failed, waiting for other jobs to finish...
    error: build failed
    
    opened by emersonthis 2
  • Change creators

    Change creators

    hy, I would like to set this account : DEVQ8kAcY9MvqtmXar5HHKD1jgqrLvKAkfUTdDBnUfVo as the only creator of this nft 7HD4ksK3fW7xJ2ksukgpfCGC33evjXgX626FzJhbRjQz.

    How should I do that? With this code: cargo run -- metadata-update 7HD4ksK3fW7xJ2ksukgpfCGC33evjXgX626FzJhbRjQz --creators DEVQ8kAcY9MvqtmXar5HHKD1jgqrLvKAkfUTdDBnUfVo:100

    I'm reciving this error error: process didn't exit successfully: target\debug\metaplex_cli.exe metadata-update DvhbvYMUZ2cJ4UBD19d6ZMQDZwoEWfQicceet5RESjTF --creators DEVQ8kAcY9MvqtmXar5HHKD1jgqrLvKAkfUTdDBnUfVo:100 (exit code: 1)

    opened by lucastoian 1
Owner
Caleb Everett
Caleb Everett
Sugar is an alternative to the current Metaplex Candy Machine CLI

Sugar: A Candy Machine CLI Sugar is an alternative to the current Metaplex Candy Machine CLI. It has been written from the ground up and includes seve

Metaplex Foundation 152 Dec 23, 2022
Small command-line tool to switch monitor inputs from command line

swmon Small command-line tool to switch monitor inputs from command line Installation git clone https://github.com/cr1901/swmon cargo install --path .

William D. Jones 5 Aug 20, 2022
Low-level Rust library for implementing terminal command line interface, like in embedded systems.

Terminal CLI Need to build an interactive command prompt, with commands, properties and with full autocomplete? This is for you. Example, output only

HashMismatch 47 Nov 25, 2022
Crunch is a command-line interface (CLI) to claim staking rewards every X hours for Substrate-based chains

crunch · crunch is a command-line interface (CLI) to claim staking rewards every X hours for Substrate-based chains. Why use crunch To automate payout

null 39 Dec 8, 2022
Railway CLI - This is the command line interface for Railway.

Railway CLI This is the command line interface for Railway. Use it to connect your code to Railways infrastructure without needing to worry about envi

Nebula 4 Mar 20, 2022
Command line interface as a function.

Command line interface as a function. fncmd fncmd is an opinionated command line parser frontend that wraps around clap. The functionality is mostly i

Yu Shimura 67 Dec 7, 2022
A silly program written in Rust to output nonsensical sentences in the command line interface.

A silly program written in Rust to output nonsensical sentences in the command line interface.

Rachael Ava 1 Dec 13, 2021
Scouty is a command-line interface (CLI) to keep an eye on substrate-based chains and hook things up

scouty is a command-line interface (CLI) to keep an eye on substrate-based chains and hook things up

TurboFlakes 15 Aug 6, 2022
A standalone Command Line Interface debugging tool for The Witcher 3 written in Rust

A standalone Command Line Interface debugging tool for The Witcher 3 written in Rust. This tool is intended for Witcher 3 modders who make mainly scri

Przemysław Cedro 5 Apr 20, 2022
A command line interface meant to bridge the gap between Rust and shell scripting

clawbang A command line interface meant to bridge the gap between Rust and shell scripting. Intended for use with HEREDOCs and shebangs: $ clawbang <<

Chris Dickinson 52 Mar 25, 2022