Install the tools
Install Tapedrive, then follow Solana’s Install Solana CLI section. The Solana CLI includes the wallet tools used below. You only need that section for this setup; the Rust, Anchor, and Surfpool sections are for developing Solana programs. After following each installer’s PATH instructions, check that both commands work:Create a wallet
A wallet consists of a public address, which can receive funds, and a private keypair file, which authorizes transactions. Create one if you do not already have a wallet you want to use with Tapenet:Configure the connection
Tapenet uses Solana devnet for transactions. Configure both tools to use that network and the same keypair. If your wallet is saved elsewhere, replace the keypair path in both settings:tape has its own connection settings; changing solana config does not change them.
The exports apply to the current terminal. Run them again in a new terminal, or use
the CLI configuration options to save your
settings. Explicit tape --url and --keypair flags override these exports.
Print the wallet’s public address:
Get devnet SOL
Open the Solana faucet, choose devnet, and request SOL for your wallet’s public address. This covers transaction fees; it does not supply TAPE. For a CLI wallet, check that the SOL arrived:Get TAPE
Open the TAPE faucet and sign in with GitHub.- Enter the public address of the wallet you will use with Tapedrive.
- Submit the claim.
- Wait for the claim result; a successful claim links to its transaction.
Check your setup
In the terminal you configured above, check both balances:pubkey should match solana address, and rpc should point to Solana devnet.
The sol and tape lines show the funds available to that wallet. If a balance is
missing, check the claim’s recipient and transaction, then check the network and
keypair settings. A balance in a different wallet or on a different Solana network
cannot pay for this wallet’s transactions on Tapenet.
Return to your task once both assets have arrived. Storage costs TAPE per MiB per epoch,
so the amount depends on the capacity and duration you reserve; SOL pays account rent and
transaction fees. At the current Tapenet price, reserving 100 MiB for a week and
deploying a small static site to it spends about 0.016 TAPE and 0.006 SOL, so one 10 TAPE
faucet claim covers many small reservations.
To see the exact cost next to your balances before spending anything, add --dry-run:
tape create, tape extend, and tape resize also check the wallet before signing and
stop with the amount needed if it is short.
Connect your tools
- CLI quickstart
- Static-site hosting
- Git with a
tape://remote - S3-compatible tooling
- SDK quickstart (Rust)