Skip to content

Solana Mixer enhances transaction privacy on Solana by mixing fixed amounts of SOL. This tool provides anonymity by pooling and redistributing funds, making transactions harder to trace.

Notifications You must be signed in to change notification settings

albertoslavicadev/solana-mixer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Solana Mixer

Introduction

Solana Mixer enhances privacy on the Solana blockchain by mixing fixed amounts of SOL to anonymize transactions. This README outlines the steps to install the Solana CLI, build, and deploy the Solana Mixer program.

Prerequisites

Installation

  1. Install Solana CLI (Only for MacOS and Linux)

    sh -c "$(curl -sSfL https://release.solana.com/v1.18.4/install)"
  2. Set Solana to use the Devnet

    solana config set --url devnet
  3. Clone the Repository

    git clone https://github.com/albertoslavicadev/solana-mixer.git
    cd Solana-Mixer
  4. Build the Program

    cargo build-bpf --bpf-out-dir=dist/program

Deployment

  1. Generate a new keypair for your program (if you don't have one)

    solana-keygen new --outfile dist/program-keypair.json
  2. Deploy the Program

    solana program deploy dist/program/your_program.so --keypair dist/program-keypair.json

Usage

After deployment, take note of the program ID output by the deployment command. You will need it to interact with your program.

Interacting with the Program

  1. Fund Your Wallet
    solana airdrop 2 $(solana-keygen pubkey dist/program-keypair.json)

Support

For support, please open an issue on the GitHub repository.

Contribution

Contributions are welcome! Please fork the repository and submit a pull request with your enhancements.

License

Solana Mixer is open source and available under the MIT License.

About

Solana Mixer enhances transaction privacy on Solana by mixing fixed amounts of SOL. This tool provides anonymity by pooling and redistributing funds, making transactions harder to trace.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages