You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Go to file
Revertron 6676c0779f Made peer connections more reliable. 3 years ago
src Made peer connections more reliable. 3 years ago
.gitignore First correct working serialization. 5 years ago
Cargo.toml Implemented DNS on blockchain. Beautified a lot of code, fixed some things. 3 years ago
LICENSE Added license file. 3 years ago
README.md Updated README with steps to build Alfis. 3 years ago
alfis.cfg Implemented DNS on blockchain. Beautified a lot of code, fixed some things. 3 years ago
alfis_ie10.reg Made a full refactoring of synchronization primitives between settings, keystore, blockchain and miner. 4 years ago
build.rs Implemented loading Settings from file. Implemented mining of Keystore (key pair). Changed Transaction structure a lot. Added an icon to windows build. Changed some HTML. 3 years ago
globe_icon.ico Implemented loading Settings from file. Implemented mining of Keystore (key pair). Changed Transaction structure a lot. Added an icon to windows build. Changed some HTML. 3 years ago

README.md

Alfis

Alternative Free Identity System

This project represents a minimal blockchain with no coin, capable of sustaining any number of domain name zones and domains.

Building

On every OS

You can build Alfis by issuing cargo build and cargo run commands in a directory of cloned repository. If you want to build release version you need to do cargo build --release as usual.

On Windows

You don't need any additional steps to build Alfis, just stick to the MSVC version of Rust.

On Windows (MINGW64)

If you'd rather use Gnu version of Rust you can build Alfis by these steps:

pacman -S git
pacman -Ss rust
pacman -S mingw64/mingw-w64-x86_64-rust
pacman -Ss cargo
pacman -S mingw64/mingw-w64-x86_64-cargo-c
git clone https://github.com/Revertron/Alfis.git
cd Alfis
cargo build
cargo run

On Linux

If you are building on Linux you must ensure that you have libwebkitgtk library installed. You can do it by issuing this command: sudo apt install libwebkit2gtk-4.0-dev (on Debian/Ubuntu and derivatives).