17535250630 / collider

Fastest atomicamls miner

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Collider

A High-Performance, Open-Source FT Mint Tool for the Atomicals Protocol

Make Atomicals Great Again

License Release GitHub tag (latest by date) GitHub code lines GitHub last commit

Telegram

Collider is a fast and efficient FT (Fungible Token) Mint tool designed for the Atomicals protocol. It harnesses the power of GPU parallel computing to significantly boost the computational performance of the FT Mint process.

In the past, we have seen many FT Mint tools being monopolized by a few individuals or organizations, which is detrimental to the healthy development of the Atomicals ecosystem. To promote the prosperity of the Atomicals community, we have created Collider as an open-source project.

By open-sourcing Collider, we aim to:

Provide a high-performance FT Mint tool that benefits all users of the Atomicals protocol.

Foster openness and inclusivity within the Atomicals community, preventing tool monopolization.

Encourage more developers to participate in building the Atomicals ecosystem, driving its growth together.

Continuously optimize and enhance Collider through the power of the community, making it the standard FT Mint tool for the Atomicals protocol.

We sincerely invite everyone interested in the Atomicals protocol to join the Collider project. Whether you are a developer, designer, or general user, your contributions will be invaluable. Let us work hand in hand to strive for a brighter future for Atomicals!

Mine Mine the Infinity (888888888.14) within 3 minutes (Lucky)

Features

  • Customizable verbosity level for detailed logging
  • Support for both mainnet and testnet environments
  • Configurable base fee for transactions
  • Primary wallet and funding wallet management
  • Ticker symbol specification
  • Choice of mining algorithm (CPU or GPU or custom by your self)

Getting Started

Prerequisites

  • Rust programming language (latest stable version)
  • Cargo package manager

Installation

Option 1: Using Pre-compiled Binaries

  1. Download the pre-compiled binary for your operating system from the releases page.

  2. Extract the downloaded archive to a directory of your choice.

  3. Open a terminal and navigate to the directory where you extracted the binary.

Option 2: Building from Source

  1. Clone the repository:

    git clone https://github.com/yourusername/collider.git
  2. Change to the project directory:

    cd collider
  3. Build the project:

    cargo build --release
  4. The compiled binary will be located at target/release/collider.

Usage

To run the Collider, use the following command:

./collider [OPTIONS]

Usage

Collider 0.2.8
A collider for atomicals.

USAGE:
    collider [FLAGS] [OPTIONS] --funding-wallet <funding-wallet> --miner <miner> --primary-wallet <primary-wallet>

FLAGS:
        --benchmark    
    -h, --help         Prints help information
    -V, --version      Prints version information
    -v, --verbose      Sets the level of verbosity

OPTIONS:
    -a, --api-url <api-url>                   [env: API_URL=]
    -b, --base-fee <base-fee>                 [env: BASE_FEE=]  [default: 50]
    -f, --funding-wallet <funding-wallet>     [env: FUNDING_WALLET=]
    -m, --miner <miner>                       [env: MINER=]  [default: cpu]  [possible values: cpu, gpu]
    -p, --primary-wallet <primary-wallet>     [env: PRIMARY_WALLET=]
        --testnet <testnet>                   [env: TESTNET=]
    -t, --ticker <ticker>                     [env: TICKER=]

Do not use any wallet containing inscriptions or other assets as a funding wallet !!!!!

You can set these environment variables in a .env file in the project root directory. The Collider will automatically load the variables from this file.

Example .env file:

API_URL=https://api.example.com
TESTNET=true
BASE_FEE=100
PRIMARY_WALLET=your_primary_wallet_address
FUNDING_WALLET=your_funding_wallet_private_key
TICKER=YOUR_TICKER
MINER=cpu

Performance

The following table shows the performance benchmarks

CPU Name: Apple M3 Max
GPU Name: Apple M3 Max (OpenCL Version: 1.2)
+--------+------------------------+------------------------+
| Device | Commit Hash Rate (M/s) | Reveal Hash Rate (M/s) |
+--------+------------------------+------------------------+
| CPU    | 91.41M/s               | 150.45M/s              |
+--------+------------------------+------------------------+
| GPU    | 462.07M/s              | 604.54M/s              |
+--------+------------------------+------------------------+
CPU Name: AMD Ryzen 7 7800X3D 8-Core Processor
GPU Name: NVIDIA GeForce RTX 4090 (OpenCL Version: 3.0)
+--------+------------------------+------------------------+
| Device | Commit Hash Rate (M/s) | Reveal Hash Rate (M/s) |
+--------+------------------------+------------------------+
| CPU    | 69.96M/s               | 97.92M/s               |
+--------+------------------------+------------------------+
| GPU    | 1.16B/s                | 1.49B/s                |
+--------+------------------------+------------------------+

You can test your device by running the following command:

./collider --benchmark

Contributing

Contributions are welcome! If you find any issues or have suggestions for improvements, please open an issue or submit a pull request.

Roadmap

[] Add multi mint feature - it will allow user use one utxo to mint 100 times in less gas and time.

[] Improve the performance - The high performance version is currently closed source, if you are interested you can contact me.

[] Add pure mode - By using public rpc for higher speed calculations, pure mode will not recognize any assets of the funding wallet.

License

This project is licensed under the GNU AFFERO GENERAL PUBLIC LICENSE.

Acknowledgements

Atomicals - The Atomicals protocol

Atomicalsir - For providing the foundation and inspiration for this project

Contact

For any inquiries or questions, please contact boxmrchen@fastmail.com.

About

Fastest atomicamls miner

License:GNU Affero General Public License v3.0


Languages

Language:Rust 85.5%Language:C 14.5%