git clone [email protected]:metaplex-foundation/metaplex.git
cd metaplex/rust
cargo build-bpf
solana config set --url localhost
solana-test-validator
git clone [email protected]:metaplex-foundation/metaplex.git
cd metaplex/rust
cargo build-bpf
solana config set --url localhost
solana-test-validator
| #!/bin/bash | |
| # bash generate random alphanumeric string | |
| # | |
| # bash generate random 32 character alphanumeric string (upper and lowercase) and | |
| NEW_UUID=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 64 | head -n 1) | |
| # bash generate random 32 character alphanumeric string (lowercase only) | |
| cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 64 | head -n 1 |
| #!/usr/bin/env python | |
| """ | |
| Bundle the site-packages of the current python environment into a zip file | |
| If you have any wheels at `$(pwd)/wheels`, those will be used instead of | |
| of the locally installed packages. For instance, if my pwd looked like | |
| wheels/ | |
| |-- numpy-1.11.2-cp27-cp27mu-manylinux1_x86_64.whl |