Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
sorydima authored Dec 1, 2024
1 parent 3e8a769 commit 9ccb6e2
Show file tree
Hide file tree
Showing 5 changed files with 129 additions and 0 deletions.
14 changes: 14 additions & 0 deletions rechain_coin_CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@

# Changelog

## [Unreleased]
### Added
- Initial implementation of the rechain_coin project.
- Core blockchain logic for transaction validation.
- Wallet management and encryption.

### Fixed
- N/A

### Removed
- N/A
15 changes: 15 additions & 0 deletions rechain_coin_CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@

# Code of Conduct

## Our Pledge
We are committed to providing a welcoming and inclusive environment for all contributors.

## Our Standards
- Be respectful.
- Provide constructive feedback.
- Refrain from offensive language.

## Enforcement
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the repository maintainers.

Thank you for making this a welcoming space!
32 changes: 32 additions & 0 deletions rechain_coin_CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@

# Contributing to rechain_coin

We welcome contributions to **rechain_coin**!

## How to Contribute
1. Fork the repository.
2. Create a new branch for your feature or bug fix:
```bash
git checkout -b feature/your-feature
```
3. Write clean, well-documented code.
4. Test your changes:
```bash
cmake ..
make
```
5. Commit your changes:
```bash
git commit -m "Add your message here"
```
6. Submit a pull request.

## Code Style
- **C++**: Follow the [Google C++ Style Guide](https://google.github.io/styleguide/cppguide.html).
- **Python**: Adhere to [PEP 8](https://pep8.org/).
- **Qt**: Use best practices for Qt GUI development.

## Reporting Issues
Use the GitHub Issues tab to report bugs or suggest features.

Thank you for contributing!
22 changes: 22 additions & 0 deletions rechain_coin_LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@

# MIT License

Copyright (c) 2024

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
46 changes: 46 additions & 0 deletions rechain_coin_README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@

# rechain_coin - Cryptocurrency Project

The **rechain_coin** project is a cryptocurrency implementation using **C**, **C++**, **Qt**, and **Python**. It implements core blockchain functionality including decentralized transactions, wallet management, secure peer-to-peer communication, and more.

## Features
- Decentralized ledger and transaction validation.
- Wallet management and private key encryption.
- Cross-platform Qt-based GUI.
- Python APIs for scripting and automation.

## Installation
1. Clone the repository:
```bash
git clone https://github.com/sorydima/rechain_coin.git
cd rechain_coin
```
2. Install dependencies:
- On Debian/Ubuntu:
```bash
sudo apt-get install build-essential qt5-default libssl-dev cmake python3
```
- On macOS:
```bash
brew install qt openssl cmake python
```
- On Windows:
Use **vcpkg** or manually download Qt and OpenSSL.

3. Build the project:
```bash
mkdir build && cd build
cmake ..
make
```

4. Run the application:
```bash
./rechain_coin
```

## Contributing
See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.

## License
This project is licensed under the [MIT License](LICENSE.md).

0 comments on commit 9ccb6e2

Please sign in to comment.